false
false
5713000

Contract Address Details

0xebd3B8b345A325B0fcE339aeEa9996A6a5a947dc

Token
FoxGaming (FXG)
Creator
0x407ec3–145ff4 at 0x8d868a–c0f8df
Balance
0 FX ( )
Tokens
Fetching tokens...
Transactions
425 Transactions
Transfers
2 Transfers
Gas Used
21,043,651
Last Balance Update
15237794
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
FoxToken




Optimization enabled
true
Compiler version
v0.6.12+commit.27d51765




Optimization runs
200
EVM Version
default




Verified at
2023-01-27T19:08:29.933825Z

Contract source code

// File: contracts/foxtaxfixed.sol


pragma solidity ^0.6.12;


/**
 * @dev Collection of functions related to the address type
 */
library Address {
    
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

   
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

   
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

   
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
 
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

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

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

        return c;
    }

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

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


interface IERC20 {

    function totalSupply() external view returns (uint256);

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

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

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

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

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

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


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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

contract FoxToken is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

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

    mapping (address => bool) private _isExcludedFromFee;

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 100000000 * 10**18;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "FoxGaming";
    string private _symbol = "FXG";
    uint8 private _decimals = 18;

    uint256 public _reflectionFee = 1;
    uint256 private _previousReflectionFee = _reflectionFee;
 
   constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;

        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

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

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

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

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

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


    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function exclude(address _address, bool _toggle) external onlyOwner {
        _isExcludedFromFee[_address] = _toggle;
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);        
       
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
     
     //to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee,  _getRate());
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee);
    }

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256) {
        uint256 tFee = calculateReflectionFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee);
        return (tTransferAmount, tFee);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;      
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }

    function calculateReflectionFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_reflectionFee).div(
            10**2
        );
    }

    function removeAllFee() private {
        if(_reflectionFee == 0) return;
        
        _previousReflectionFee = _reflectionFee;
        
        _reflectionFee = 0;
    }
    
    function restoreAllFee() private {
        _reflectionFee = _previousReflectionFee;
    }
    

    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
 
        //indicates if fee should be deducted from transfer
        bool takeFee = true;
        
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
            takeFee = false;
        }
        
        //transfer amount, it will take tax, burn
        _tokenTransfer(from,to,amount,takeFee);
    }

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {
        if(!takeFee)
            removeAllFee();
        
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
        
        if(!takeFee)
            restoreAllFee();
    }
    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
   
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
    
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
   
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
}
        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"_reflectionFee","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"deliver","inputs":[{"type":"uint256","name":"tAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"exclude","inputs":[{"type":"address","name":"_address","internalType":"address"},{"type":"bool","name":"_toggle","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"reflectionFromToken","inputs":[{"type":"uint256","name":"tAmount","internalType":"uint256"},{"type":"bool","name":"deductTransferFee","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenFromReflection","inputs":[{"type":"uint256","name":"rAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"receive","stateMutability":"payable"}]
              

Contract Creation Code

0x6a52b7d2dcc80cd2e40000006008556a34f8e1f3adab5d4bffffff19600990815560c0604052608081905268466f7847616d696e6760b81b60a09081526200004b91600b9190620001ef565b506040805180820190915260038082526246584760e81b60209092019182526200007891600c91620001ef565b50600d805460ff191660121790556001600e819055600f553480156200009d57600080fd5b506000620000aa620001dc565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506009546002600062000105620001dc565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506001600560006200013f620001e060201b60201c565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152600590925290208054909116600117905562000189620001dc565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6008546040518082815260200191505060405180910390a36200028b565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200023257805160ff191683800117855562000262565b8280016001018555821562000262579182015b828111156200026257825182559160200191906001019062000245565b506200027092915062000274565b5090565b5b8082111562000270576000815560010162000275565b6118dd806200029b6000396000f3fe6080604052600436106101185760003560e01c80634549b039116100a057806395d89b411161006457806395d89b411461041a578063a457c2d71461042f578063a9059cbb14610468578063dd62ed3e146104a1578063f2fde38b146104dc5761011f565b80634549b0391461033457806370a0823114610366578063715018a6146103995780637647b90d146103ae5780638da5cb5b146103e95761011f565b80632d838119116100e75780632d83811914610265578063313ce5671461028f5780633206b4aa146102ba57806339509351146102cf5780633bd5d173146103085761011f565b806306fdde0314610124578063095ea7b3146101ae57806318160ddd146101fb57806323b872dd146102225761011f565b3661011f57005b600080fd5b34801561013057600080fd5b5061013961050f565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017357818101518382015260200161015b565b50505050905090810190601f1680156101a05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ba57600080fd5b506101e7600480360360408110156101d157600080fd5b506001600160a01b0381351690602001356105a5565b604080519115158252519081900360200190f35b34801561020757600080fd5b506102106105c3565b60408051918252519081900360200190f35b34801561022e57600080fd5b506101e76004803603606081101561024557600080fd5b506001600160a01b038135811691602081013590911690604001356105c9565b34801561027157600080fd5b506102106004803603602081101561028857600080fd5b5035610650565b34801561029b57600080fd5b506102a46106b2565b6040805160ff9092168252519081900360200190f35b3480156102c657600080fd5b506102106106bb565b3480156102db57600080fd5b506101e7600480360360408110156102f257600080fd5b506001600160a01b0381351690602001356106c1565b34801561031457600080fd5b506103326004803603602081101561032b57600080fd5b503561070f565b005b34801561034057600080fd5b506102106004803603604081101561035757600080fd5b508035906020013515156107e7565b34801561037257600080fd5b506102106004803603602081101561038957600080fd5b50356001600160a01b0316610877565b3480156103a557600080fd5b506103326108d9565b3480156103ba57600080fd5b50610332600480360360408110156103d157600080fd5b506001600160a01b038135169060200135151561098d565b3480156103f557600080fd5b506103fe610a22565b604080516001600160a01b039092168252519081900360200190f35b34801561042657600080fd5b50610139610a31565b34801561043b57600080fd5b506101e76004803603604081101561045257600080fd5b506001600160a01b038135169060200135610a92565b34801561047457600080fd5b506101e76004803603604081101561048b57600080fd5b506001600160a01b038135169060200135610afa565b3480156104ad57600080fd5b50610210600480360360408110156104c457600080fd5b506001600160a01b0381358116916020013516610b0e565b3480156104e857600080fd5b50610332600480360360208110156104ff57600080fd5b50356001600160a01b0316610b39565b600b8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561059b5780601f106105705761010080835404028352916020019161059b565b820191906000526020600020905b81548152906001019060200180831161057e57829003601f168201915b5050505050905090565b60006105b96105b2610c43565b8484610c47565b5060015b92915050565b60085490565b60006105d6848484610d33565b610646846105e2610c43565b610641856040518060600160405280602881526020016117bd602891396001600160a01b038a16600090815260046020526040812090610620610c43565b6001600160a01b031681526020810191909152604001600020549190610e59565b610c47565b5060019392505050565b60006009548211156106935760405162461bcd60e51b815260040180806020018281038252602a81526020018061172a602a913960400191505060405180910390fd5b600061069d610ef0565b90506106a98382610f13565b9150505b919050565b600d5460ff1690565b600e5481565b60006105b96106ce610c43565b8461064185600460006106df610c43565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f5c565b6000610719610c43565b6001600160a01b03811660009081526006602052604090205490915060ff16156107745760405162461bcd60e51b815260040180806020018281038252602c815260200180611857602c913960400191505060405180910390fd5b600061077f83610fb6565b505050506001600160a01b0383166000908152600260205260409020549091506107a99082610ffc565b6001600160a01b0383166000908152600260205260409020556009546107cf9082610ffc565b600955600a546107df9084610f5c565b600a55505050565b6000600854831115610840576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161085e57600061085084610fb6565b509294506105bd9350505050565b600061086984610fb6565b509194506105bd9350505050565b6001600160a01b03811660009081526006602052604081205460ff16156108b757506001600160a01b0381166000908152600360205260409020546106ad565b6001600160a01b0382166000908152600260205260409020546105bd90610650565b6108e1610c43565b6000546001600160a01b03908116911614610943576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610995610c43565b6000546001600160a01b039081169116146109f7576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03919091166000908152600560205260409020805460ff1916911515919091179055565b6000546001600160a01b031690565b600c8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561059b5780601f106105705761010080835404028352916020019161059b565b60006105b9610a9f610c43565b84610641856040518060600160405280602581526020016118836025913960046000610ac9610c43565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610e59565b60006105b9610b07610c43565b8484610d33565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b610b41610c43565b6000546001600160a01b03908116911614610ba3576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610be85760405162461bcd60e51b81526004018080602001828103825260268152602001806117546026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316610c8c5760405162461bcd60e51b81526004018080602001828103825260248152602001806118336024913960400191505060405180910390fd5b6001600160a01b038216610cd15760405162461bcd60e51b815260040180806020018281038252602281526020018061177a6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610d785760405162461bcd60e51b815260040180806020018281038252602581526020018061180e6025913960400191505060405180910390fd5b6001600160a01b038216610dbd5760405162461bcd60e51b81526004018080602001828103825260238152602001806117076023913960400191505060405180910390fd5b60008111610dfc5760405162461bcd60e51b81526004018080602001828103825260298152602001806117e56029913960400191505060405180910390fd5b6001600160a01b03831660009081526005602052604090205460019060ff1680610e3e57506001600160a01b03831660009081526005602052604090205460ff165b15610e47575060005b610e538484848461103e565b50505050565b60008184841115610ee85760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610ead578181015183820152602001610e95565b50505050905090810190601f168015610eda5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000610efd6111ac565b9092509050610f0c8282610f13565b9250505090565b6000610f5583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061130f565b9392505050565b600082820183811015610f55576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000610fca88611374565b915091506000806000610fe58b85610fe0610ef0565b61139b565b919d909c50909a5094985092965092945050505050565b6000610f5583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e59565b8061104b5761104b6113d7565b6001600160a01b03841660009081526006602052604090205460ff16801561108c57506001600160a01b03831660009081526006602052604090205460ff16155b156110a15761109c8484846113f1565b61119f565b6001600160a01b03841660009081526006602052604090205460ff161580156110e257506001600160a01b03831660009081526006602052604090205460ff165b156110f25761109c848484611508565b6001600160a01b03841660009081526006602052604090205460ff1615801561113457506001600160a01b03831660009081526006602052604090205460ff16155b156111445761109c8484846115ae565b6001600160a01b03841660009081526006602052604090205460ff16801561118457506001600160a01b03831660009081526006602052604090205460ff165b156111945761109c8484846115ef565b61119f8484846115ae565b80610e5357610e5361165f565b6009546008546000918291825b6007548110156112dd578260026000600784815481106111d557fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061123a575081600360006007848154811061121357fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611251576009546008549450945050505061130b565b611291600260006007848154811061126557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490610ffc565b92506112d360036000600784815481106112a757fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390610ffc565b91506001016111b9565b506008546009546112ed91610f13565b8210156113055760095460085493509350505061130b565b90925090505b9091565b6000818361135e5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610ead578181015183820152602001610e95565b50600083858161136a57fe5b0495945050505050565b600080600061138284611667565b905060006113908583610ffc565b935090915050915091565b60008080806113aa8786611689565b905060006113b88787611689565b905060006113c68383610ffc565b929992985090965090945050505050565b600e546113e3576113ef565b600e8054600f55600090555b565b600080600080600061140286610fb6565b6001600160a01b038d16600090815260036020526040902054949950929750909550935091506114329087610ffc565b6001600160a01b0389166000908152600360209081526040808320939093556002905220546114619086610ffc565b6001600160a01b03808a1660009081526002602052604080822093909355908916815220546114909085610f5c565b6001600160a01b0388166000908152600260205260409020556114b383826116e2565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061151986610fb6565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506115499086610ffc565b6001600160a01b03808a16600090815260026020908152604080832094909455918a1681526003909152205461157f9083610f5c565b6001600160a01b0388166000908152600360209081526040808320939093556002905220546114909085610f5c565b60008060008060006115bf86610fb6565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506114619086610ffc565b600080600080600061160086610fb6565b6001600160a01b038d16600090815260036020526040902054949950929750909550935091506116309087610ffc565b6001600160a01b0389166000908152600360209081526040808320939093556002905220546115499086610ffc565b600f54600e55565b60006105bd6064611683600e548561168990919063ffffffff16565b90610f13565b600082611698575060006105bd565b828202828482816116a557fe5b0414610f555760405162461bcd60e51b815260040180806020018281038252602181526020018061179c6021913960400191505060405180910390fd5b6009546116ef9083610ffc565b600955600a546116ff9082610f5c565b600a55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204e7022dc595863d4150ad6c13da22a38e9dfc5da9800428687680034413697f964736f6c634300060c0033

Deployed ByteCode

0x6080604052600436106101185760003560e01c80634549b039116100a057806395d89b411161006457806395d89b411461041a578063a457c2d71461042f578063a9059cbb14610468578063dd62ed3e146104a1578063f2fde38b146104dc5761011f565b80634549b0391461033457806370a0823114610366578063715018a6146103995780637647b90d146103ae5780638da5cb5b146103e95761011f565b80632d838119116100e75780632d83811914610265578063313ce5671461028f5780633206b4aa146102ba57806339509351146102cf5780633bd5d173146103085761011f565b806306fdde0314610124578063095ea7b3146101ae57806318160ddd146101fb57806323b872dd146102225761011f565b3661011f57005b600080fd5b34801561013057600080fd5b5061013961050f565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561017357818101518382015260200161015b565b50505050905090810190601f1680156101a05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ba57600080fd5b506101e7600480360360408110156101d157600080fd5b506001600160a01b0381351690602001356105a5565b604080519115158252519081900360200190f35b34801561020757600080fd5b506102106105c3565b60408051918252519081900360200190f35b34801561022e57600080fd5b506101e76004803603606081101561024557600080fd5b506001600160a01b038135811691602081013590911690604001356105c9565b34801561027157600080fd5b506102106004803603602081101561028857600080fd5b5035610650565b34801561029b57600080fd5b506102a46106b2565b6040805160ff9092168252519081900360200190f35b3480156102c657600080fd5b506102106106bb565b3480156102db57600080fd5b506101e7600480360360408110156102f257600080fd5b506001600160a01b0381351690602001356106c1565b34801561031457600080fd5b506103326004803603602081101561032b57600080fd5b503561070f565b005b34801561034057600080fd5b506102106004803603604081101561035757600080fd5b508035906020013515156107e7565b34801561037257600080fd5b506102106004803603602081101561038957600080fd5b50356001600160a01b0316610877565b3480156103a557600080fd5b506103326108d9565b3480156103ba57600080fd5b50610332600480360360408110156103d157600080fd5b506001600160a01b038135169060200135151561098d565b3480156103f557600080fd5b506103fe610a22565b604080516001600160a01b039092168252519081900360200190f35b34801561042657600080fd5b50610139610a31565b34801561043b57600080fd5b506101e76004803603604081101561045257600080fd5b506001600160a01b038135169060200135610a92565b34801561047457600080fd5b506101e76004803603604081101561048b57600080fd5b506001600160a01b038135169060200135610afa565b3480156104ad57600080fd5b50610210600480360360408110156104c457600080fd5b506001600160a01b0381358116916020013516610b0e565b3480156104e857600080fd5b50610332600480360360208110156104ff57600080fd5b50356001600160a01b0316610b39565b600b8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561059b5780601f106105705761010080835404028352916020019161059b565b820191906000526020600020905b81548152906001019060200180831161057e57829003601f168201915b5050505050905090565b60006105b96105b2610c43565b8484610c47565b5060015b92915050565b60085490565b60006105d6848484610d33565b610646846105e2610c43565b610641856040518060600160405280602881526020016117bd602891396001600160a01b038a16600090815260046020526040812090610620610c43565b6001600160a01b031681526020810191909152604001600020549190610e59565b610c47565b5060019392505050565b60006009548211156106935760405162461bcd60e51b815260040180806020018281038252602a81526020018061172a602a913960400191505060405180910390fd5b600061069d610ef0565b90506106a98382610f13565b9150505b919050565b600d5460ff1690565b600e5481565b60006105b96106ce610c43565b8461064185600460006106df610c43565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f5c565b6000610719610c43565b6001600160a01b03811660009081526006602052604090205490915060ff16156107745760405162461bcd60e51b815260040180806020018281038252602c815260200180611857602c913960400191505060405180910390fd5b600061077f83610fb6565b505050506001600160a01b0383166000908152600260205260409020549091506107a99082610ffc565b6001600160a01b0383166000908152600260205260409020556009546107cf9082610ffc565b600955600a546107df9084610f5c565b600a55505050565b6000600854831115610840576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161085e57600061085084610fb6565b509294506105bd9350505050565b600061086984610fb6565b509194506105bd9350505050565b6001600160a01b03811660009081526006602052604081205460ff16156108b757506001600160a01b0381166000908152600360205260409020546106ad565b6001600160a01b0382166000908152600260205260409020546105bd90610650565b6108e1610c43565b6000546001600160a01b03908116911614610943576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610995610c43565b6000546001600160a01b039081169116146109f7576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03919091166000908152600560205260409020805460ff1916911515919091179055565b6000546001600160a01b031690565b600c8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561059b5780601f106105705761010080835404028352916020019161059b565b60006105b9610a9f610c43565b84610641856040518060600160405280602581526020016118836025913960046000610ac9610c43565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610e59565b60006105b9610b07610c43565b8484610d33565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b610b41610c43565b6000546001600160a01b03908116911614610ba3576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610be85760405162461bcd60e51b81526004018080602001828103825260268152602001806117546026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316610c8c5760405162461bcd60e51b81526004018080602001828103825260248152602001806118336024913960400191505060405180910390fd5b6001600160a01b038216610cd15760405162461bcd60e51b815260040180806020018281038252602281526020018061177a6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610d785760405162461bcd60e51b815260040180806020018281038252602581526020018061180e6025913960400191505060405180910390fd5b6001600160a01b038216610dbd5760405162461bcd60e51b81526004018080602001828103825260238152602001806117076023913960400191505060405180910390fd5b60008111610dfc5760405162461bcd60e51b81526004018080602001828103825260298152602001806117e56029913960400191505060405180910390fd5b6001600160a01b03831660009081526005602052604090205460019060ff1680610e3e57506001600160a01b03831660009081526005602052604090205460ff165b15610e47575060005b610e538484848461103e565b50505050565b60008184841115610ee85760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610ead578181015183820152602001610e95565b50505050905090810190601f168015610eda5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000610efd6111ac565b9092509050610f0c8282610f13565b9250505090565b6000610f5583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061130f565b9392505050565b600082820183811015610f55576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000610fca88611374565b915091506000806000610fe58b85610fe0610ef0565b61139b565b919d909c50909a5094985092965092945050505050565b6000610f5583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e59565b8061104b5761104b6113d7565b6001600160a01b03841660009081526006602052604090205460ff16801561108c57506001600160a01b03831660009081526006602052604090205460ff16155b156110a15761109c8484846113f1565b61119f565b6001600160a01b03841660009081526006602052604090205460ff161580156110e257506001600160a01b03831660009081526006602052604090205460ff165b156110f25761109c848484611508565b6001600160a01b03841660009081526006602052604090205460ff1615801561113457506001600160a01b03831660009081526006602052604090205460ff16155b156111445761109c8484846115ae565b6001600160a01b03841660009081526006602052604090205460ff16801561118457506001600160a01b03831660009081526006602052604090205460ff165b156111945761109c8484846115ef565b61119f8484846115ae565b80610e5357610e5361165f565b6009546008546000918291825b6007548110156112dd578260026000600784815481106111d557fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061123a575081600360006007848154811061121357fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611251576009546008549450945050505061130b565b611291600260006007848154811061126557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490610ffc565b92506112d360036000600784815481106112a757fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390610ffc565b91506001016111b9565b506008546009546112ed91610f13565b8210156113055760095460085493509350505061130b565b90925090505b9091565b6000818361135e5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610ead578181015183820152602001610e95565b50600083858161136a57fe5b0495945050505050565b600080600061138284611667565b905060006113908583610ffc565b935090915050915091565b60008080806113aa8786611689565b905060006113b88787611689565b905060006113c68383610ffc565b929992985090965090945050505050565b600e546113e3576113ef565b600e8054600f55600090555b565b600080600080600061140286610fb6565b6001600160a01b038d16600090815260036020526040902054949950929750909550935091506114329087610ffc565b6001600160a01b0389166000908152600360209081526040808320939093556002905220546114619086610ffc565b6001600160a01b03808a1660009081526002602052604080822093909355908916815220546114909085610f5c565b6001600160a01b0388166000908152600260205260409020556114b383826116e2565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061151986610fb6565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506115499086610ffc565b6001600160a01b03808a16600090815260026020908152604080832094909455918a1681526003909152205461157f9083610f5c565b6001600160a01b0388166000908152600360209081526040808320939093556002905220546114909085610f5c565b60008060008060006115bf86610fb6565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506114619086610ffc565b600080600080600061160086610fb6565b6001600160a01b038d16600090815260036020526040902054949950929750909550935091506116309087610ffc565b6001600160a01b0389166000908152600360209081526040808320939093556002905220546115499086610ffc565b600f54600e55565b60006105bd6064611683600e548561168990919063ffffffff16565b90610f13565b600082611698575060006105bd565b828202828482816116a557fe5b0414610f555760405162461bcd60e51b815260040180806020018281038252602181526020018061179c6021913960400191505060405180910390fd5b6009546116ef9083610ffc565b600955600a546116ff9082610f5c565b600a55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204e7022dc595863d4150ad6c13da22a38e9dfc5da9800428687680034413697f964736f6c634300060c0033