FTM Price: $0.87 (+5.01%)
Gas: 156 GWei

Contract

0x141FaA507855E56396EAdBD25EC82656755CD61e
 

More Info

Private Name Tags

TokenTracker

SMELT (SMELT) (@$5.25)

Sponsored

Transaction Hash
Method
Block
From
To
Value
Approve775611362024-03-17 14:05:0138 hrs ago1710684301IN
Smelt: SMELT Token
0 FTM0.0046001794
Transfer775610752024-03-17 14:03:5538 hrs ago1710684235IN
Smelt: SMELT Token
0 FTM0.0053131694
Approve775298982024-03-17 4:30:2147 hrs ago1710649821IN
Smelt: SMELT Token
0 FTM0.00245536100.94396016
Approve775297862024-03-17 4:27:2847 hrs ago1710649648IN
Smelt: SMELT Token
0 FTM0.00470816101.01629787
Approve772593902024-03-13 14:43:565 days ago1710341036IN
Smelt: SMELT Token
0 FTM0.0013963330.14530872
Approve772513212024-03-13 11:30:205 days ago1710329420IN
Smelt: SMELT Token
0 FTM0.000773930.0194607
Transfer770753092024-03-10 14:45:028 days ago1710081902IN
Smelt: SMELT Token
0 FTM0.0007323119
Transfer770745922024-03-10 14:26:238 days ago1710080783IN
Smelt: SMELT Token
0 FTM0.0007325419
Approve770614602024-03-10 7:17:048 days ago1710055024IN
Smelt: SMELT Token
0 FTM0.0005416522.26833256
Approve770613402024-03-10 7:12:128 days ago1710054732IN
Smelt: SMELT Token
0 FTM0.0009895121.23056364
Transfer769889162024-03-08 13:22:1710 days ago1709904137IN
Smelt: SMELT Token
0 FTM0.001542240
Approve769087382024-03-07 9:01:1311 days ago1709802073IN
Smelt: SMELT Token
0 FTM0.0028393159.72484486
Approve769079702024-03-07 8:49:5311 days ago1709801393IN
Smelt: SMELT Token
0 FTM0.0027974560.021013
Approve769076382024-03-07 8:45:0011 days ago1709801100IN
Smelt: SMELT Token
0 FTM0.0030974665.8
Approve768984212024-03-07 5:10:5511 days ago1709788255IN
Smelt: SMELT Token
0 FTM0.0012025549.43904074
Approve768983552024-03-07 5:08:3111 days ago1709788111IN
Smelt: SMELT Token
0 FTM0.0022988649.32340767
Approve768688872024-03-06 18:26:3312 days ago1709749593IN
Smelt: SMELT Token
0 FTM0.0027684258.81
Approve767380552024-03-04 17:17:5114 days ago1709572671IN
Smelt: SMELT Token
0 FTM0.00586986126.69139044
Approve767009392024-03-04 6:19:5114 days ago1709533191IN
Smelt: SMELT Token
0 FTM0.01231332265.83174293
Approve766880682024-03-04 2:36:1015 days ago1709519770IN
Smelt: SMELT Token
0 FTM0.00890383304.84245108
Approve766307102024-03-02 12:12:4916 days ago1709381569IN
Smelt: SMELT Token
0 FTM0.01911171741.33883705
Approve766289392024-03-02 10:33:1116 days ago1709375591IN
Smelt: SMELT Token
0 FTM0.0007055429.00596494
Approve766160122024-03-01 22:09:3817 days ago1709330978IN
Smelt: SMELT Token
0 FTM0.0008249632
Approve766145792024-03-01 20:51:3217 days ago1709326292IN
Smelt: SMELT Token
0 FTM0.0007476130.73578288
Approve766145732024-03-01 20:51:1017 days ago1709326270IN
Smelt: SMELT Token
0 FTM0.0008879436.50505896
View all transactions

Latest 1 internal transaction

Parent Txn Hash Block From To Value
434689052022-07-24 19:43:27603 days ago1658691807  Contract Creation0 FTM
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Smelt

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 50 runs

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

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

import "./interfaces/IUniswapV2Router.sol";
import "./interfaces/IUniswapV2Factory.sol";

import "./lib/SafeMath8.sol";
import "./owner/Operator.sol";
import "./interfaces/IOracle.sol";

/*
__________                             .___   
\______   \_____     ______  ____    __| _/   
 |    |  _/\__  \   /  ___/_/ __ \  / __ |     
 |    |   \ / __ \_ \___ \ \  ___/ / /_/ |     
 |______  /(____  //____  > \___  >\____ |     
              
*/
contract Smelt is ERC20Burnable, Operator {
    using SafeMath for uint256;
    using SafeMath8 for uint8;


    // TOTAL MAX SUPPLY = 90,000 ISHAREs
    uint256 public constant FARMING_POOL_REWARD_ALLOCATION = 80000 ether;


    bool public rewardPoolDistributed = false;

    address public boilerRoomAddress = address(0); //Burner and recompunder
    uint256 public sellFee = 1000; //Sell fee
    uint256 public buyFee = 1000; //Buy fee

    mapping (address => bool) public isExcludedFromFees;    // Addresses excluded from fees
    mapping (address => bool) public marketLpPairs;         // LP Pairs


    constructor(

    ) ERC20("SMELT", "SMELT") {
        // mint 10000 SMELT for initial pools deployment and Exchange
        _mint(msg.sender, 10000 ether); 
     //SpookyRouter
        IUniswapV2Router _dexRouter = IUniswapV2Router(0xF491e7B69E4244ad4002BC14e878a34207E38c29);
        address dexPair = IUniswapV2Factory(_dexRouter.factory()).createPair(address(this), _dexRouter.WETH());
        setMarketLpPairs(dexPair,true);
        excludeFromFees(owner(),true);
        excludeFromFees(address(this),true);
    }

     function _transfer(address from, address to, uint256 amount) internal override {
        require(from != address(0), "zero address");
        require(to != address(0), "zero address");
        require(boilerRoomAddress != address(0),"require to set boiler address");

        uint256 fee = 0;

        if(marketLpPairs[from] && buyFee != 0 && !isExcludedFromFees[to])
        {
            fee = amount.mul(buyFee).div(10000);
        }
        else if(marketLpPairs[to] && sellFee != 0 && !isExcludedFromFees[from])
        {
            fee = amount.mul(sellFee).div(10000);
        }

        if(fee > 0)
        {
            amount = amount.sub(fee);
            super._transfer(from, boilerRoomAddress,fee);
        }

        super._transfer(from, to, amount);

    }

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

    function burn(uint256 amount) public override {
        super.burn(amount);
    }

    /**
     * @notice distribute to reward pool (only once)
     */
    function distributeReward(address _farmingIncentiveFund) external onlyOperator {
        require(!rewardPoolDistributed, "only can distribute once");
        require(_farmingIncentiveFund != address(0), "!_farmingIncentiveFund");
        rewardPoolDistributed = true;
        _mint(_farmingIncentiveFund, FARMING_POOL_REWARD_ALLOCATION);
    }



    //Add new LP's for selling / buying fees
    function setMarketLpPairs(address _pair, bool _value) public onlyOwner {
        marketLpPairs[_pair] = _value;
    }

    //Add boiler room address
    function setBoilerRoomAddress(address _boilerRoomAddress) public onlyOwner{
        boilerRoomAddress = _boilerRoomAddress;
    }
    
    //Add addresses for feeless sales and buys
    function excludeFromFees(address _account, bool _excluded) public onlyOwner {
        require(isExcludedFromFees[_account] != _excluded, "Already excluded");
        isExcludedFromFees[_account] = _excluded;
    }

    //Setup fees
    function setupTradingFees(uint256 _sellFee, uint256 _buyFee) public onlyOwner{
        require(_sellFee <= 2500, "Require fee <= 25%");
        require(_buyFee <= 2500, "Require fee <= 25%");
        sellFee = _sellFee;
        buyFee = _buyFee;
    }

    function governanceRecoverUnsupported(
        IERC20 _token,
        uint256 _amount,
        address _to
    ) external onlyOperator {
        _token.transfer(_to, _amount);
    }
}

File 2 of 13 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

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

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

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

File 3 of 13 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 13 : IUniswapV2Router.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IUniswapV2Router {
    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);

    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 5 of 13 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    function allPairsLength() external view returns (uint256);

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

File 6 of 13 : SafeMath8.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @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 SafeMath8 {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint8 a, uint8 b) internal pure returns (uint8) {
        uint8 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(uint8 a, uint8 b) internal pure returns (uint8) {
        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(uint8 a, uint8 b, string memory errorMessage) internal pure returns (uint8) {
        require(b <= a, errorMessage);
        uint8 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(uint8 a, uint8 b) internal pure returns (uint8) {
        // 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;
        }

        uint8 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(uint8 a, uint8 b) internal pure returns (uint8) {
        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(uint8 a, uint8 b, string memory errorMessage) internal pure returns (uint8) {
        require(b > 0, errorMessage);
        uint8 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(uint8 a, uint8 b) internal pure returns (uint8) {
        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(uint8 a, uint8 b, string memory errorMessage) internal pure returns (uint8) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

File 7 of 13 : Operator.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract Operator is Context, Ownable {
    address private _operator;

    event OperatorTransferred(address indexed previousOperator, address indexed newOperator);

    constructor() {
        _operator = _msgSender();
        emit OperatorTransferred(address(0), _operator);
    }

    function operator() public view returns (address) {
        return _operator;
    }

    modifier onlyOperator() {
        require(_operator == msg.sender, "operator: caller is not the operator");
        _;
    }

    function isOperator() public view returns (bool) {
        return _msgSender() == _operator;
    }

    function transferOperator(address newOperator_) public onlyOwner {
        _transferOperator(newOperator_);
    }

    function _transferOperator(address newOperator_) internal {
        require(newOperator_ != address(0), "operator: zero address given for new operator");
        emit OperatorTransferred(address(0), newOperator_);
        _operator = newOperator_;
    }

    function _renounceOperator() public onlyOwner {
        emit OperatorTransferred(_operator, address(0));
        _operator = address(0);
    }
}

File 8 of 13 : IOracle.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IOracle {
    function update() external;

    function consult(address _token, uint256 _amountIn) external view returns (uint144 amountOut);

    function twap(address _token, uint256 _amountIn) external view returns (uint144 _amountOut);
}

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

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 11 of 13 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 13 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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 {
        _transferOwnership(address(0));
    }

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FARMING_POOL_REWARD_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_renounceOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"boilerRoomAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_farmingIncentiveFund","type":"address"}],"name":"distributeReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"governanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"marketLpPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPoolDistributed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_boilerRoomAddress","type":"address"}],"name":"setBoilerRoomAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"setMarketLpPairs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFee","type":"uint256"},{"internalType":"uint256","name":"_buyFee","type":"uint256"}],"name":"setupTradingFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperator_","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526006805460ff60a01b19169055600780546001600160a01b03191690556103e860088190556009553480156200003957600080fd5b5060408051808201825260058082526414d351531560da1b6020808401828152855180870190965292855284015281519192916200007a916003916200056d565b508051620000909060049060208401906200056d565b505050620000ad620000a7620002de60201b60201c565b620002e2565b600680546001600160a01b031916339081179091556040516000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3620001033369021e19e0c9bab240000062000334565b600073f491e7b69e4244ad4002bc14e878a34207e38c2990506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200015857600080fd5b505afa1580156200016d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000193919062000613565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001dc57600080fd5b505afa158015620001f1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000217919062000613565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200026057600080fd5b505af115801562000275573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029b919062000613565b9050620002aa8160016200041d565b620002c9620002c16005546001600160a01b031690565b600162000493565b620002d630600162000493565b5050620006a9565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003905760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620003a4919062000645565b90915550506001600160a01b03821660009081526020819052604081208054839290620003d390849062000645565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6005546001600160a01b03163314620004685760405162461bcd60e51b8152602060048201819052602482015260008051602062001f0b833981519152604482015260640162000387565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004de5760405162461bcd60e51b8152602060048201819052602482015260008051602062001f0b833981519152604482015260640162000387565b6001600160a01b0382166000908152600a602052604090205460ff1615158115151415620005425760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e48195e18db1d59195960821b604482015260640162000387565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b8280546200057b906200066c565b90600052602060002090601f0160209004810192826200059f5760008555620005ea565b82601f10620005ba57805160ff1916838001178555620005ea565b82800160010185558215620005ea579182015b82811115620005ea578251825591602001919060010190620005cd565b50620005f8929150620005fc565b5090565b5b80821115620005f85760008155600101620005fd565b6000602082840312156200062657600080fd5b81516001600160a01b03811681146200063e57600080fd5b9392505050565b600082198211156200066757634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200068157607f821691505b60208210811415620006a357634e487b7160e01b600052602260045260246000fd5b50919050565b61185280620006b96000396000f3fe608060405234801561001057600080fd5b50600436106101bb5760003560e01c806370a08231116100fa578063a06160fd1161009d578063a06160fd14610399578063a457c2d7146103aa578063a9059cbb146103bd578063c0246668146103d0578063dd62ed3e146103e3578063de933017146103f6578063f2344a9e14610419578063f2fde38b1461042c578063f42c97691461043f57600080fd5b806370a0823114610316578063715018a61461033f57806379cc6790146103475780638a27f1031461035a5780638da5cb5b146103625780638e94e7a71461036a57806395d89b411461037d5780639662676c1461038557600080fd5b80633950935111610162578063395093511461026657806342966c68146102795780634456eda21461028c578063470624021461029f5780634fbee193146102a857806354575af4146102cb578063570ca735146102de5780635ed4f7cb1461030357600080fd5b806306fdde03146101c0578063092193ab146101de578063095ea7b3146101f357806318160ddd1461021657806323b872dd1461022857806329605e771461023b5780632b14ca561461024e578063313ce56714610257575b600080fd5b6101c8610452565b6040516101d59190611445565b60405180910390f35b6101f16101ec3660046114af565b6104e4565b005b6102066102013660046114cc565b6105e5565b60405190151581526020016101d5565b6002545b6040519081526020016101d5565b6102066102363660046114f8565b6105fd565b6101f16102493660046114af565b610642565b61021a60085481565b604051601281526020016101d5565b6102066102743660046114cc565b61067a565b6101f1610287366004611539565b6106b4565b6006546001600160a01b03163314610206565b61021a60095481565b6102066102b63660046114af565b600a6020526000908152604090205460ff1681565b6101f16102d9366004611552565b6106bd565b6006546001600160a01b03165b6040516001600160a01b0390911681526020016101d5565b6101f16103113660046115a2565b61076f565b61021a6103243660046114af565b6001600160a01b031660009081526020819052604090205490565b6101f16107c9565b6101f16103553660046114cc565b610804565b6101f161081d565b6102eb610896565b6007546102eb906001600160a01b031681565b6101c86108a5565b60065461020690600160a01b900460ff1681565b61021a6910f0cf064dd59200000081565b6102066103b83660046114cc565b6108b4565b6102066103cb3660046114cc565b610951565b6101f16103de3660046115a2565b61095f565b61021a6103f13660046115db565b610a1b565b6102066104043660046114af565b600b6020526000908152604090205460ff1681565b6101f1610427366004611609565b610a46565b6101f161043a3660046114af565b610ac4565b6101f161044d3660046114af565b610b61565b6060600380546104619061162b565b80601f016020809104026020016040519081016040528092919081815260200182805461048d9061162b565b80156104da5780601f106104af576101008083540402835291602001916104da565b820191906000526020600020905b8154815290600101906020018083116104bd57829003601f168201915b5050505050905090565b6006546001600160a01b031633146105175760405162461bcd60e51b815260040161050e90611666565b60405180910390fd5b600654600160a01b900460ff161561056c5760405162461bcd60e51b81526020600482015260186024820152776f6e6c792063616e2064697374726962757465206f6e636560401b604482015260640161050e565b6001600160a01b0381166105bb5760405162461bcd60e51b81526020600482015260166024820152750857d9985c9b5a5b99d25b98d95b9d1a5d99519d5b9960521b604482015260640161050e565b6006805460ff60a01b1916600160a01b1790556105e2816910f0cf064dd592000000610bb2565b50565b6000336105f3818585610c7f565b5060019392505050565b600061060a848484610da4565b6105f3843361063d856040518060600160405280602881526020016117d5602891396106368a33610a1b565b9190610f6a565b610c7f565b3361064b610896565b6001600160a01b0316146106715760405162461bcd60e51b815260040161050e906116aa565b6105e281610f96565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906105f3908290869061063d9087906116f5565b6105e28161105a565b6006546001600160a01b031633146106e75760405162461bcd60e51b815260040161050e90611666565b60405163a9059cbb60e01b81526001600160a01b0382811660048301526024820184905284169063a9059cbb90604401602060405180830381600087803b15801561073157600080fd5b505af1158015610745573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610769919061170d565b50505050565b33610778610896565b6001600160a01b03161461079e5760405162461bcd60e51b815260040161050e906116aa565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b336107d2610896565b6001600160a01b0316146107f85760405162461bcd60e51b815260040161050e906116aa565b6108026000611064565b565b61080f8233836110b6565b610819828261112a565b5050565b33610826610896565b6001600160a01b03161461084c5760405162461bcd60e51b815260040161050e906116aa565b6006546040516000916001600160a01b0316907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908390a3600680546001600160a01b0319169055565b6005546001600160a01b031690565b6060600480546104619061162b565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156109395760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161050e565b6109468286868403610c7f565b506001949350505050565b6000336105f3818585610da4565b33610968610896565b6001600160a01b03161461098e5760405162461bcd60e51b815260040161050e906116aa565b6001600160a01b0382166000908152600a602052604090205460ff16151581151514156109f05760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e48195e18db1d59195960821b604482015260640161050e565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b33610a4f610896565b6001600160a01b031614610a755760405162461bcd60e51b815260040161050e906116aa565b6109c4821115610a975760405162461bcd60e51b815260040161050e9061172a565b6109c4811115610ab95760405162461bcd60e51b815260040161050e9061172a565b600891909155600955565b33610acd610896565b6001600160a01b031614610af35760405162461bcd60e51b815260040161050e906116aa565b6001600160a01b038116610b585760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161050e565b6105e281611064565b33610b6a610896565b6001600160a01b031614610b905760405162461bcd60e51b815260040161050e906116aa565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216610c085760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161050e565b8060026000828254610c1a91906116f5565b90915550506001600160a01b03821660009081526020819052604081208054839290610c479084906116f5565b90915550506040518181526001600160a01b038316906000906000805160206117fd8339815191529060200160405180910390a35050565b6001600160a01b038316610ce15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161050e565b6001600160a01b038216610d425760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161050e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610dca5760405162461bcd60e51b815260040161050e90611756565b6001600160a01b038216610df05760405162461bcd60e51b815260040161050e90611756565b6007546001600160a01b0316610e485760405162461bcd60e51b815260206004820152601d60248201527f7265717569726520746f2073657420626f696c65722061646472657373000000604482015260640161050e565b6001600160a01b0383166000908152600b602052604081205460ff168015610e71575060095415155b8015610e9657506001600160a01b0383166000908152600a602052604090205460ff16155b15610ec357610ebc612710610eb66009548561125e90919063ffffffff16565b90611271565b9050610f34565b6001600160a01b0383166000908152600b602052604090205460ff168015610eec575060085415155b8015610f1157506001600160a01b0384166000908152600a602052604090205460ff16155b15610f3457610f31612710610eb66008548561125e90919063ffffffff16565b90505b8015610f5f57610f44828261127d565b600754909250610f5f9085906001600160a01b031683611289565b610769848484611289565b60008184841115610f8e5760405162461bcd60e51b815260040161050e9190611445565b505050900390565b6001600160a01b0381166110025760405162461bcd60e51b815260206004820152602d60248201527f6f70657261746f723a207a65726f206164647265737320676976656e20666f7260448201526c103732bb9037b832b930ba37b960991b606482015260840161050e565b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6105e2338261112a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006110c28484610a1b565b90506000198114610769578181101561111d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161050e565b6107698484848403610c7f565b6001600160a01b03821661118a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161050e565b6001600160a01b038216600090815260208190526040902054818110156111fe5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161050e565b6001600160a01b038316600090815260208190526040812083830390556002805484929061122d90849061177c565b90915550506040518281526000906001600160a01b038516906000805160206117fd83398151915290602001610d97565b600061126a8284611793565b9392505050565b600061126a82846117b2565b600061126a828461177c565b6001600160a01b0383166112ed5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161050e565b6001600160a01b03821661134f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161050e565b6001600160a01b038316600090815260208190526040902054818110156113c75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161050e565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906113fe9084906116f5565b92505081905550826001600160a01b0316846001600160a01b03166000805160206117fd8339815191528460405161143891815260200190565b60405180910390a3610769565b600060208083528351808285015260005b8181101561147257858101830151858201604001528201611456565b81811115611484576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146105e257600080fd5b6000602082840312156114c157600080fd5b813561126a8161149a565b600080604083850312156114df57600080fd5b82356114ea8161149a565b946020939093013593505050565b60008060006060848603121561150d57600080fd5b83356115188161149a565b925060208401356115288161149a565b929592945050506040919091013590565b60006020828403121561154b57600080fd5b5035919050565b60008060006060848603121561156757600080fd5b83356115728161149a565b92506020840135915060408401356115898161149a565b809150509250925092565b80151581146105e257600080fd5b600080604083850312156115b557600080fd5b82356115c08161149a565b915060208301356115d081611594565b809150509250929050565b600080604083850312156115ee57600080fd5b82356115f98161149a565b915060208301356115d08161149a565b6000806040838503121561161c57600080fd5b50508035926020909101359150565b600181811c9082168061163f57607f821691505b6020821081141561166057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526024908201527f6f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657260408201526330ba37b960e11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611708576117086116df565b500190565b60006020828403121561171f57600080fd5b815161126a81611594565b6020808252601290820152715265717569726520666565203c3d2032352560701b604082015260600190565b6020808252600c908201526b7a65726f206164647265737360a01b604082015260600190565b60008282101561178e5761178e6116df565b500390565b60008160001904831182151516156117ad576117ad6116df565b500290565b6000826117cf57634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212201e94a96be5c29d31ea031ba4d4d40608ae3f823cdcc3910084e545a812cafc1e64736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101bb5760003560e01c806370a08231116100fa578063a06160fd1161009d578063a06160fd14610399578063a457c2d7146103aa578063a9059cbb146103bd578063c0246668146103d0578063dd62ed3e146103e3578063de933017146103f6578063f2344a9e14610419578063f2fde38b1461042c578063f42c97691461043f57600080fd5b806370a0823114610316578063715018a61461033f57806379cc6790146103475780638a27f1031461035a5780638da5cb5b146103625780638e94e7a71461036a57806395d89b411461037d5780639662676c1461038557600080fd5b80633950935111610162578063395093511461026657806342966c68146102795780634456eda21461028c578063470624021461029f5780634fbee193146102a857806354575af4146102cb578063570ca735146102de5780635ed4f7cb1461030357600080fd5b806306fdde03146101c0578063092193ab146101de578063095ea7b3146101f357806318160ddd1461021657806323b872dd1461022857806329605e771461023b5780632b14ca561461024e578063313ce56714610257575b600080fd5b6101c8610452565b6040516101d59190611445565b60405180910390f35b6101f16101ec3660046114af565b6104e4565b005b6102066102013660046114cc565b6105e5565b60405190151581526020016101d5565b6002545b6040519081526020016101d5565b6102066102363660046114f8565b6105fd565b6101f16102493660046114af565b610642565b61021a60085481565b604051601281526020016101d5565b6102066102743660046114cc565b61067a565b6101f1610287366004611539565b6106b4565b6006546001600160a01b03163314610206565b61021a60095481565b6102066102b63660046114af565b600a6020526000908152604090205460ff1681565b6101f16102d9366004611552565b6106bd565b6006546001600160a01b03165b6040516001600160a01b0390911681526020016101d5565b6101f16103113660046115a2565b61076f565b61021a6103243660046114af565b6001600160a01b031660009081526020819052604090205490565b6101f16107c9565b6101f16103553660046114cc565b610804565b6101f161081d565b6102eb610896565b6007546102eb906001600160a01b031681565b6101c86108a5565b60065461020690600160a01b900460ff1681565b61021a6910f0cf064dd59200000081565b6102066103b83660046114cc565b6108b4565b6102066103cb3660046114cc565b610951565b6101f16103de3660046115a2565b61095f565b61021a6103f13660046115db565b610a1b565b6102066104043660046114af565b600b6020526000908152604090205460ff1681565b6101f1610427366004611609565b610a46565b6101f161043a3660046114af565b610ac4565b6101f161044d3660046114af565b610b61565b6060600380546104619061162b565b80601f016020809104026020016040519081016040528092919081815260200182805461048d9061162b565b80156104da5780601f106104af576101008083540402835291602001916104da565b820191906000526020600020905b8154815290600101906020018083116104bd57829003601f168201915b5050505050905090565b6006546001600160a01b031633146105175760405162461bcd60e51b815260040161050e90611666565b60405180910390fd5b600654600160a01b900460ff161561056c5760405162461bcd60e51b81526020600482015260186024820152776f6e6c792063616e2064697374726962757465206f6e636560401b604482015260640161050e565b6001600160a01b0381166105bb5760405162461bcd60e51b81526020600482015260166024820152750857d9985c9b5a5b99d25b98d95b9d1a5d99519d5b9960521b604482015260640161050e565b6006805460ff60a01b1916600160a01b1790556105e2816910f0cf064dd592000000610bb2565b50565b6000336105f3818585610c7f565b5060019392505050565b600061060a848484610da4565b6105f3843361063d856040518060600160405280602881526020016117d5602891396106368a33610a1b565b9190610f6a565b610c7f565b3361064b610896565b6001600160a01b0316146106715760405162461bcd60e51b815260040161050e906116aa565b6105e281610f96565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906105f3908290869061063d9087906116f5565b6105e28161105a565b6006546001600160a01b031633146106e75760405162461bcd60e51b815260040161050e90611666565b60405163a9059cbb60e01b81526001600160a01b0382811660048301526024820184905284169063a9059cbb90604401602060405180830381600087803b15801561073157600080fd5b505af1158015610745573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610769919061170d565b50505050565b33610778610896565b6001600160a01b03161461079e5760405162461bcd60e51b815260040161050e906116aa565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b336107d2610896565b6001600160a01b0316146107f85760405162461bcd60e51b815260040161050e906116aa565b6108026000611064565b565b61080f8233836110b6565b610819828261112a565b5050565b33610826610896565b6001600160a01b03161461084c5760405162461bcd60e51b815260040161050e906116aa565b6006546040516000916001600160a01b0316907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908390a3600680546001600160a01b0319169055565b6005546001600160a01b031690565b6060600480546104619061162b565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156109395760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161050e565b6109468286868403610c7f565b506001949350505050565b6000336105f3818585610da4565b33610968610896565b6001600160a01b03161461098e5760405162461bcd60e51b815260040161050e906116aa565b6001600160a01b0382166000908152600a602052604090205460ff16151581151514156109f05760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e48195e18db1d59195960821b604482015260640161050e565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b33610a4f610896565b6001600160a01b031614610a755760405162461bcd60e51b815260040161050e906116aa565b6109c4821115610a975760405162461bcd60e51b815260040161050e9061172a565b6109c4811115610ab95760405162461bcd60e51b815260040161050e9061172a565b600891909155600955565b33610acd610896565b6001600160a01b031614610af35760405162461bcd60e51b815260040161050e906116aa565b6001600160a01b038116610b585760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161050e565b6105e281611064565b33610b6a610896565b6001600160a01b031614610b905760405162461bcd60e51b815260040161050e906116aa565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216610c085760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161050e565b8060026000828254610c1a91906116f5565b90915550506001600160a01b03821660009081526020819052604081208054839290610c479084906116f5565b90915550506040518181526001600160a01b038316906000906000805160206117fd8339815191529060200160405180910390a35050565b6001600160a01b038316610ce15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161050e565b6001600160a01b038216610d425760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161050e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610dca5760405162461bcd60e51b815260040161050e90611756565b6001600160a01b038216610df05760405162461bcd60e51b815260040161050e90611756565b6007546001600160a01b0316610e485760405162461bcd60e51b815260206004820152601d60248201527f7265717569726520746f2073657420626f696c65722061646472657373000000604482015260640161050e565b6001600160a01b0383166000908152600b602052604081205460ff168015610e71575060095415155b8015610e9657506001600160a01b0383166000908152600a602052604090205460ff16155b15610ec357610ebc612710610eb66009548561125e90919063ffffffff16565b90611271565b9050610f34565b6001600160a01b0383166000908152600b602052604090205460ff168015610eec575060085415155b8015610f1157506001600160a01b0384166000908152600a602052604090205460ff16155b15610f3457610f31612710610eb66008548561125e90919063ffffffff16565b90505b8015610f5f57610f44828261127d565b600754909250610f5f9085906001600160a01b031683611289565b610769848484611289565b60008184841115610f8e5760405162461bcd60e51b815260040161050e9190611445565b505050900390565b6001600160a01b0381166110025760405162461bcd60e51b815260206004820152602d60248201527f6f70657261746f723a207a65726f206164647265737320676976656e20666f7260448201526c103732bb9037b832b930ba37b960991b606482015260840161050e565b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6105e2338261112a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006110c28484610a1b565b90506000198114610769578181101561111d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161050e565b6107698484848403610c7f565b6001600160a01b03821661118a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161050e565b6001600160a01b038216600090815260208190526040902054818110156111fe5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161050e565b6001600160a01b038316600090815260208190526040812083830390556002805484929061122d90849061177c565b90915550506040518281526000906001600160a01b038516906000805160206117fd83398151915290602001610d97565b600061126a8284611793565b9392505050565b600061126a82846117b2565b600061126a828461177c565b6001600160a01b0383166112ed5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161050e565b6001600160a01b03821661134f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161050e565b6001600160a01b038316600090815260208190526040902054818110156113c75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161050e565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906113fe9084906116f5565b92505081905550826001600160a01b0316846001600160a01b03166000805160206117fd8339815191528460405161143891815260200190565b60405180910390a3610769565b600060208083528351808285015260005b8181101561147257858101830151858201604001528201611456565b81811115611484576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146105e257600080fd5b6000602082840312156114c157600080fd5b813561126a8161149a565b600080604083850312156114df57600080fd5b82356114ea8161149a565b946020939093013593505050565b60008060006060848603121561150d57600080fd5b83356115188161149a565b925060208401356115288161149a565b929592945050506040919091013590565b60006020828403121561154b57600080fd5b5035919050565b60008060006060848603121561156757600080fd5b83356115728161149a565b92506020840135915060408401356115898161149a565b809150509250925092565b80151581146105e257600080fd5b600080604083850312156115b557600080fd5b82356115c08161149a565b915060208301356115d081611594565b809150509250929050565b600080604083850312156115ee57600080fd5b82356115f98161149a565b915060208301356115d08161149a565b6000806040838503121561161c57600080fd5b50508035926020909101359150565b600181811c9082168061163f57607f821691505b6020821081141561166057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526024908201527f6f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657260408201526330ba37b960e11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611708576117086116df565b500190565b60006020828403121561171f57600080fd5b815161126a81611594565b6020808252601290820152715265717569726520666565203c3d2032352560701b604082015260600190565b6020808252600c908201526b7a65726f206164647265737360a01b604082015260600190565b60008282101561178e5761178e6116df565b500390565b60008160001904831182151516156117ad576117ad6116df565b500290565b6000826117cf57634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212201e94a96be5c29d31ea031ba4d4d40608ae3f823cdcc3910084e545a812cafc1e64736f6c63430008090033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

Algorithmic token pegged to $FTM on the Fantom Network.

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.