ETH Price: $3,470.19 (-1.04%)
Gas: 3 Gwei

Token

Bobo Inu (BOBO)
 

Overview

Max Total Supply

827,325,775,542,587.04495682 BOBO

Holders

135

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
294,511,603,778.90177392 BOBO

Value
$0.00
0xec6307a2de4296f23a5dfe53b105b0b513e8a1d7
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BOBO

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-30
*/

pragma solidity ^0.6.12;

// SPDX-License-Identifier: MIT

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

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

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    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);
    }

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    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");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    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 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;

    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 BOBO 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 _isExcluded;
    address[] private _excluded;
    
    string  private constant _NAME = 'Bobo Inu';
    string  private constant _SYMBOL = 'BOBO';
    uint8   private constant _DECIMALS = 8;
   
    uint256 private constant _MAX = ~uint256(0);
    uint256 private constant _DECIMALFACTOR = 10 ** uint256(_DECIMALS);
    uint256 private constant _GRANULARITY = 100;
    
    uint256 private _tTotal = 1000000000000000 * _DECIMALFACTOR;
    uint256 private _rTotal = (_MAX - (_MAX % _tTotal));
    
    uint256 private _tFeeTotal;
    uint256 private _tBurnTotal;
    
    uint256 private      _TAX_FEE = 0;
    uint256 private     _BURN_FEE = 0;
    uint256 private     _MAX_TX_SIZE = 10000000000000 * _DECIMALFACTOR;

    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        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 isExcluded(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }
    
    function totalBurn() public view returns (uint256) {
        return _tBurnTotal;
    }

    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 excludeAccount(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeAccount(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    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 sender, address recipient, uint256 amount) private {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        
        if(sender != owner() && recipient != owner())
            require(amount <= _MAX_TX_SIZE, "Transfer amount exceeds the maxTxAmount.");
        
        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);
        }
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);       
        _reflectFee(rFee, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

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

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

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _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, rBurn, tFee, tBurn);
        emit Transfer(sender, recipient, tTransferAmount);
    }

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

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

    function _getTValues(uint256 tAmount, uint256 taxFee, uint256 burnFee) private pure returns (uint256, uint256, uint256) {
        uint256 tFee = ((tAmount.mul(taxFee)).div(_GRANULARITY)).div(100);
        uint256 tBurn = ((tAmount.mul(burnFee)).div(_GRANULARITY)).div(100);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tBurn);
        return (tTransferAmount, tFee, tBurn);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tBurn, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rBurn = tBurn.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rBurn);
        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 _getTaxFee() private view returns(uint256) {
        return _TAX_FEE;
    }

    function _setTaxFee(uint256 taxFee) external onlyOwner() {
        require(taxFee >= 50 && taxFee <= 1000, 'taxFee should be in 1 - 10');
        _TAX_FEE = taxFee;
    }

    function _setBurnFee(uint256 burnFee) external onlyOwner() {
        require(burnFee >= 50 && burnFee <= 1000, 'burnFee should be in 1 - 10');
        _BURN_FEE = burnFee;
    }

    function _getMaxTxAmount() private view returns(uint256) {
        return _MAX_TX_SIZE;
    }
    
    function getMaxTxAmount() public view returns(uint256) {
        return _getMaxTxAmount();
    }
    
    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _MAX_TX_SIZE = _tTotal.mul(maxTxPercent).div(
            10**2
        );
    }
}

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":"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":[{"internalType":"uint256","name":"burnFee","type":"uint256"}],"name":"_setBurnFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"_setTaxFee","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":"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":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMaxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405269152d02c7e14af680000060065569085afffa6ff50bffffff196007556000600a819055600b55683635c9adc5dea00000600c553480156200004557600080fd5b5060006200005262000124565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060075460016000620000ad62000124565b6001600160a01b03168152602081019190915260400160002055620000d162000124565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6006546040518082815260200191505060405180910390a362000128565b3390565b611ec280620001386000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80636d8b0527116100de578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e14610492578063f2cc0c18146104c0578063f2fde38b146104e6578063f84354f11461050c5761018e565b8063a9059cbb14610423578063cba0e9961461044f578063d543dbeb146104755761018e565b80636d8b05271461039557806370a082311461039d578063715018a6146103c35780638da5cb5b146103cb57806395d89b41146103ef578063a457c2d7146103f75761018e565b8063313ce5671161014b5780633bd5d173116101255780633bd5d1731461032e5780633c9f861d1461034b5780634549b039146103535780635880b873146103785761018e565b8063313ce567146102c557806339509351146102e35780633b6b19611461030f5761018e565b806306fdde0314610193578063095ea7b31461021057806313114a9d1461025057806318160ddd1461026a57806323b872dd146102725780632d838119146102a8575b600080fd5b61019b610532565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d55781810151838201526020016101bd565b50505050905090810190601f1680156102025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023c6004803603604081101561022657600080fd5b506001600160a01b038135169060200135610554565b604080519115158252519081900360200190f35b610258610572565b60408051918252519081900360200190f35b610258610578565b61023c6004803603606081101561028857600080fd5b506001600160a01b0381358116916020810135909116906040013561057e565b610258600480360360208110156102be57600080fd5b5035610605565b6102cd610667565b6040805160ff9092168252519081900360200190f35b61023c600480360360408110156102f957600080fd5b506001600160a01b03813516906020013561066c565b61032c6004803603602081101561032557600080fd5b50356106ba565b005b61032c6004803603602081101561034457600080fd5b503561077b565b610258610855565b6102586004803603604081101561036957600080fd5b5080359060200135151561085b565b61032c6004803603602081101561038e57600080fd5b50356108ed565b6102586109ae565b610258600480360360208110156103b357600080fd5b50356001600160a01b03166109bd565b61032c610a1f565b6103d3610ac1565b604080516001600160a01b039092168252519081900360200190f35b61019b610ad0565b61023c6004803603604081101561040d57600080fd5b506001600160a01b038135169060200135610aee565b61023c6004803603604081101561043957600080fd5b506001600160a01b038135169060200135610b56565b61023c6004803603602081101561046557600080fd5b50356001600160a01b0316610b6a565b61032c6004803603602081101561048b57600080fd5b5035610b88565b610258600480360360408110156104a857600080fd5b506001600160a01b0381358116916020013516610c06565b61032c600480360360208110156104d657600080fd5b50356001600160a01b0316610c31565b61032c600480360360208110156104fc57600080fd5b50356001600160a01b0316610e13565b61032c6004803603602081101561052257600080fd5b50356001600160a01b0316610f0b565b604080518082019091526008815267426f626f20496e7560c01b602082015290565b60006105686105616110cc565b84846110d0565b5060015b92915050565b60085490565b60065490565b600061058b8484846111bc565b6105fb846105976110cc565b6105f685604051806060016040528060288152602001611d60602891396001600160a01b038a166000908152600360205260408120906105d56110cc565b6001600160a01b031681526020810191909152604001600020549190611466565b6110d0565b5060019392505050565b60006007548211156106485760405162461bcd60e51b815260040180806020018281038252602a815260200180611ca5602a913960400191505060405180910390fd5b60006106526114fd565b905061065e8382611520565b9150505b919050565b600890565b60006105686106796110cc565b846105f6856003600061068a6110cc565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611569565b6106c26110cc565b6000546001600160a01b03908116911614610712576040805162461bcd60e51b81526020600482018190526024820152600080516020611d88833981519152604482015290519081900360640190fd5b6032811015801561072557506103e88111155b610776576040805162461bcd60e51b815260206004820152601b60248201527f6275726e4665652073686f756c6420626520696e2031202d2031300000000000604482015290519081900360640190fd5b600b55565b60006107856110cc565b6001600160a01b03811660009081526004602052604090205490915060ff16156107e05760405162461bcd60e51b815260040180806020018281038252602c815260200180611e3c602c913960400191505060405180910390fd5b60006107eb836115c3565b505050506001600160a01b03841660009081526001602052604090205491925061081791905082611620565b6001600160a01b03831660009081526001602052604090205560075461083d9082611620565b60075560085461084d9084611569565b600855505050565b60095490565b60006006548311156108b4576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816108d35760006108c4846115c3565b5093955061056c945050505050565b60006108de846115c3565b5092955061056c945050505050565b6108f56110cc565b6000546001600160a01b03908116911614610945576040805162461bcd60e51b81526020600482018190526024820152600080516020611d88833981519152604482015290519081900360640190fd5b6032811015801561095857506103e88111155b6109a9576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203130000000000000604482015290519081900360640190fd5b600a55565b60006109b8611662565b905090565b6001600160a01b03811660009081526004602052604081205460ff16156109fd57506001600160a01b038116600090815260026020526040902054610662565b6001600160a01b03821660009081526001602052604090205461056c90610605565b610a276110cc565b6000546001600160a01b03908116911614610a77576040805162461bcd60e51b81526020600482018190526024820152600080516020611d88833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b604080518082019091526004815263424f424f60e01b602082015290565b6000610568610afb6110cc565b846105f685604051806060016040528060258152602001611e686025913960036000610b256110cc565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611466565b6000610568610b636110cc565b84846111bc565b6001600160a01b031660009081526004602052604090205460ff1690565b610b906110cc565b6000546001600160a01b03908116911614610be0576040805162461bcd60e51b81526020600482018190526024820152600080516020611d88833981519152604482015290519081900360640190fd5b610c006064610bfa8360065461166890919063ffffffff16565b90611520565b600c5550565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610c396110cc565b6000546001600160a01b03908116911614610c89576040805162461bcd60e51b81526020600482018190526024820152600080516020611d88833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610ce55760405162461bcd60e51b8152600401808060200182810382526022815260200180611e1a6022913960400191505060405180910390fd5b6001600160a01b03811660009081526004602052604090205460ff1615610d53576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610dad576001600160a01b038116600090815260016020526040902054610d9390610605565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610e1b6110cc565b6000546001600160a01b03908116911614610e6b576040805162461bcd60e51b81526020600482018190526024820152600080516020611d88833981519152604482015290519081900360640190fd5b6001600160a01b038116610eb05760405162461bcd60e51b8152600401808060200182810382526026815260200180611ccf6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610f136110cc565b6000546001600160a01b03908116911614610f63576040805162461bcd60e51b81526020600482018190526024820152600080516020611d88833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610fd0576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b6005548110156110c857816001600160a01b031660058281548110610ff457fe5b6000918252602090912001546001600160a01b031614156110c05760058054600019810190811061102157fe5b600091825260209091200154600580546001600160a01b03909216918390811061104757fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff19169055600580548061109957fe5b600082815260209020810160001990810180546001600160a01b03191690550190556110c8565b600101610fd3565b5050565b3390565b6001600160a01b0383166111155760405162461bcd60e51b8152600401808060200182810382526024815260200180611df66024913960400191505060405180910390fd5b6001600160a01b03821661115a5760405162461bcd60e51b8152600401808060200182810382526022815260200180611cf56022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166112015760405162461bcd60e51b8152600401808060200182810382526025815260200180611dd16025913960400191505060405180910390fd5b6001600160a01b0382166112465760405162461bcd60e51b8152600401808060200182810382526023815260200180611c826023913960400191505060405180910390fd5b600081116112855760405162461bcd60e51b8152600401808060200182810382526029815260200180611da86029913960400191505060405180910390fd5b61128d610ac1565b6001600160a01b0316836001600160a01b0316141580156112c757506112b1610ac1565b6001600160a01b0316826001600160a01b031614155b1561130d57600c5481111561130d5760405162461bcd60e51b8152600401808060200182810382526028815260200180611d176028913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff16801561134e57506001600160a01b03821660009081526004602052604090205460ff16155b156113635761135e8383836116c1565b611461565b6001600160a01b03831660009081526004602052604090205460ff161580156113a457506001600160a01b03821660009081526004602052604090205460ff165b156113b45761135e838383611801565b6001600160a01b03831660009081526004602052604090205460ff161580156113f657506001600160a01b03821660009081526004602052604090205460ff16155b156114065761135e8383836118cb565b6001600160a01b03831660009081526004602052604090205460ff16801561144657506001600160a01b03821660009081526004602052604090205460ff165b156114565761135e838383611930565b6114618383836118cb565b505050565b600081848411156114f55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156114ba5781810151838201526020016114a2565b50505050905090810190601f1680156114e75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061150a6119c4565b90925090506115198282611520565b9250505090565b600061156283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611b27565b9392505050565b600082820183811015611562576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006115e08a600a54600b54611b8c565b92509250925060006115f06114fd565b905060008060006116038e878787611bdf565b919e509c509a509598509396509194505050505091939550919395565b600061156283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611466565b600c5490565b6000826116775750600061056c565b8282028284828161168457fe5b04146115625760405162461bcd60e51b8152600401808060200182810382526021815260200180611d3f6021913960400191505060405180910390fd5b60006116cb6114fd565b90506000806000806000806116df886115c3565b9550955095509550955095506000611700888361166890919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150611726908a611620565b6001600160a01b038c166000908152600260209081526040808320939093556001905220546117559088611620565b6001600160a01b03808d1660009081526001602052604080822093909355908c16815220546117849087611569565b6001600160a01b038b166000908152600160205260409020556117a985828585611c2f565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b600061180b6114fd565b905060008060008060008061181f886115c3565b9550955095509550955095506000611840888361166890919063ffffffff16565b6001600160a01b038c166000908152600160205260409020549091506118669088611620565b6001600160a01b03808d16600090815260016020908152604080832094909455918d1681526002909152205461189c9085611569565b6001600160a01b038b166000908152600260209081526040808320939093556001905220546117849087611569565b60006118d56114fd565b90506000806000806000806118e9886115c3565b955095509550955095509550600061190a888361166890919063ffffffff16565b6001600160a01b038c166000908152600160205260409020549091506117559088611620565b600061193a6114fd565b905060008060008060008061194e886115c3565b955095509550955095509550600061196f888361166890919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150611995908a611620565b6001600160a01b038c166000908152600260209081526040808320939093556001905220546118669088611620565b6007546006546000918291825b600554811015611af5578260016000600584815481106119ed57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611a525750816002600060058481548110611a2b57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611a695760075460065494509450505050611b23565b611aa96001600060058481548110611a7d57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611620565b9250611aeb6002600060058481548110611abf57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611620565b91506001016119d1565b50600654600754611b0591611520565b821015611b1d57600754600654935093505050611b23565b90925090505b9091565b60008183611b765760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156114ba5781810151838201526020016114a2565b506000838581611b8257fe5b0495945050505050565b6000808080611ba26064610bfa81818b8b611668565b90506000611bb76064610bfa81818c8b611668565b90506000611bcf82611bc98b86611620565b90611620565b9992985090965090945050505050565b6000808080611bee8886611668565b90506000611bfc8887611668565b90506000611c0a8888611668565b90506000611c1c82611bc98686611620565b939b939a50919850919650505050505050565b611c4883611bc98660075461162090919063ffffffff16565b600755600854611c589083611569565b600855600954611c689082611569565b600955600654611c789082611620565b6006555050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220bd890d33a759b4665a17c80681b398963ba35bc465018cc666f43d9d755655a764736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80636d8b0527116100de578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e14610492578063f2cc0c18146104c0578063f2fde38b146104e6578063f84354f11461050c5761018e565b8063a9059cbb14610423578063cba0e9961461044f578063d543dbeb146104755761018e565b80636d8b05271461039557806370a082311461039d578063715018a6146103c35780638da5cb5b146103cb57806395d89b41146103ef578063a457c2d7146103f75761018e565b8063313ce5671161014b5780633bd5d173116101255780633bd5d1731461032e5780633c9f861d1461034b5780634549b039146103535780635880b873146103785761018e565b8063313ce567146102c557806339509351146102e35780633b6b19611461030f5761018e565b806306fdde0314610193578063095ea7b31461021057806313114a9d1461025057806318160ddd1461026a57806323b872dd146102725780632d838119146102a8575b600080fd5b61019b610532565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d55781810151838201526020016101bd565b50505050905090810190601f1680156102025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023c6004803603604081101561022657600080fd5b506001600160a01b038135169060200135610554565b604080519115158252519081900360200190f35b610258610572565b60408051918252519081900360200190f35b610258610578565b61023c6004803603606081101561028857600080fd5b506001600160a01b0381358116916020810135909116906040013561057e565b610258600480360360208110156102be57600080fd5b5035610605565b6102cd610667565b6040805160ff9092168252519081900360200190f35b61023c600480360360408110156102f957600080fd5b506001600160a01b03813516906020013561066c565b61032c6004803603602081101561032557600080fd5b50356106ba565b005b61032c6004803603602081101561034457600080fd5b503561077b565b610258610855565b6102586004803603604081101561036957600080fd5b5080359060200135151561085b565b61032c6004803603602081101561038e57600080fd5b50356108ed565b6102586109ae565b610258600480360360208110156103b357600080fd5b50356001600160a01b03166109bd565b61032c610a1f565b6103d3610ac1565b604080516001600160a01b039092168252519081900360200190f35b61019b610ad0565b61023c6004803603604081101561040d57600080fd5b506001600160a01b038135169060200135610aee565b61023c6004803603604081101561043957600080fd5b506001600160a01b038135169060200135610b56565b61023c6004803603602081101561046557600080fd5b50356001600160a01b0316610b6a565b61032c6004803603602081101561048b57600080fd5b5035610b88565b610258600480360360408110156104a857600080fd5b506001600160a01b0381358116916020013516610c06565b61032c600480360360208110156104d657600080fd5b50356001600160a01b0316610c31565b61032c600480360360208110156104fc57600080fd5b50356001600160a01b0316610e13565b61032c6004803603602081101561052257600080fd5b50356001600160a01b0316610f0b565b604080518082019091526008815267426f626f20496e7560c01b602082015290565b60006105686105616110cc565b84846110d0565b5060015b92915050565b60085490565b60065490565b600061058b8484846111bc565b6105fb846105976110cc565b6105f685604051806060016040528060288152602001611d60602891396001600160a01b038a166000908152600360205260408120906105d56110cc565b6001600160a01b031681526020810191909152604001600020549190611466565b6110d0565b5060019392505050565b60006007548211156106485760405162461bcd60e51b815260040180806020018281038252602a815260200180611ca5602a913960400191505060405180910390fd5b60006106526114fd565b905061065e8382611520565b9150505b919050565b600890565b60006105686106796110cc565b846105f6856003600061068a6110cc565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611569565b6106c26110cc565b6000546001600160a01b03908116911614610712576040805162461bcd60e51b81526020600482018190526024820152600080516020611d88833981519152604482015290519081900360640190fd5b6032811015801561072557506103e88111155b610776576040805162461bcd60e51b815260206004820152601b60248201527f6275726e4665652073686f756c6420626520696e2031202d2031300000000000604482015290519081900360640190fd5b600b55565b60006107856110cc565b6001600160a01b03811660009081526004602052604090205490915060ff16156107e05760405162461bcd60e51b815260040180806020018281038252602c815260200180611e3c602c913960400191505060405180910390fd5b60006107eb836115c3565b505050506001600160a01b03841660009081526001602052604090205491925061081791905082611620565b6001600160a01b03831660009081526001602052604090205560075461083d9082611620565b60075560085461084d9084611569565b600855505050565b60095490565b60006006548311156108b4576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816108d35760006108c4846115c3565b5093955061056c945050505050565b60006108de846115c3565b5092955061056c945050505050565b6108f56110cc565b6000546001600160a01b03908116911614610945576040805162461bcd60e51b81526020600482018190526024820152600080516020611d88833981519152604482015290519081900360640190fd5b6032811015801561095857506103e88111155b6109a9576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2031202d203130000000000000604482015290519081900360640190fd5b600a55565b60006109b8611662565b905090565b6001600160a01b03811660009081526004602052604081205460ff16156109fd57506001600160a01b038116600090815260026020526040902054610662565b6001600160a01b03821660009081526001602052604090205461056c90610605565b610a276110cc565b6000546001600160a01b03908116911614610a77576040805162461bcd60e51b81526020600482018190526024820152600080516020611d88833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b604080518082019091526004815263424f424f60e01b602082015290565b6000610568610afb6110cc565b846105f685604051806060016040528060258152602001611e686025913960036000610b256110cc565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611466565b6000610568610b636110cc565b84846111bc565b6001600160a01b031660009081526004602052604090205460ff1690565b610b906110cc565b6000546001600160a01b03908116911614610be0576040805162461bcd60e51b81526020600482018190526024820152600080516020611d88833981519152604482015290519081900360640190fd5b610c006064610bfa8360065461166890919063ffffffff16565b90611520565b600c5550565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610c396110cc565b6000546001600160a01b03908116911614610c89576040805162461bcd60e51b81526020600482018190526024820152600080516020611d88833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610ce55760405162461bcd60e51b8152600401808060200182810382526022815260200180611e1a6022913960400191505060405180910390fd5b6001600160a01b03811660009081526004602052604090205460ff1615610d53576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610dad576001600160a01b038116600090815260016020526040902054610d9390610605565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610e1b6110cc565b6000546001600160a01b03908116911614610e6b576040805162461bcd60e51b81526020600482018190526024820152600080516020611d88833981519152604482015290519081900360640190fd5b6001600160a01b038116610eb05760405162461bcd60e51b8152600401808060200182810382526026815260200180611ccf6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610f136110cc565b6000546001600160a01b03908116911614610f63576040805162461bcd60e51b81526020600482018190526024820152600080516020611d88833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610fd0576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b6005548110156110c857816001600160a01b031660058281548110610ff457fe5b6000918252602090912001546001600160a01b031614156110c05760058054600019810190811061102157fe5b600091825260209091200154600580546001600160a01b03909216918390811061104757fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff19169055600580548061109957fe5b600082815260209020810160001990810180546001600160a01b03191690550190556110c8565b600101610fd3565b5050565b3390565b6001600160a01b0383166111155760405162461bcd60e51b8152600401808060200182810382526024815260200180611df66024913960400191505060405180910390fd5b6001600160a01b03821661115a5760405162461bcd60e51b8152600401808060200182810382526022815260200180611cf56022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166112015760405162461bcd60e51b8152600401808060200182810382526025815260200180611dd16025913960400191505060405180910390fd5b6001600160a01b0382166112465760405162461bcd60e51b8152600401808060200182810382526023815260200180611c826023913960400191505060405180910390fd5b600081116112855760405162461bcd60e51b8152600401808060200182810382526029815260200180611da86029913960400191505060405180910390fd5b61128d610ac1565b6001600160a01b0316836001600160a01b0316141580156112c757506112b1610ac1565b6001600160a01b0316826001600160a01b031614155b1561130d57600c5481111561130d5760405162461bcd60e51b8152600401808060200182810382526028815260200180611d176028913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff16801561134e57506001600160a01b03821660009081526004602052604090205460ff16155b156113635761135e8383836116c1565b611461565b6001600160a01b03831660009081526004602052604090205460ff161580156113a457506001600160a01b03821660009081526004602052604090205460ff165b156113b45761135e838383611801565b6001600160a01b03831660009081526004602052604090205460ff161580156113f657506001600160a01b03821660009081526004602052604090205460ff16155b156114065761135e8383836118cb565b6001600160a01b03831660009081526004602052604090205460ff16801561144657506001600160a01b03821660009081526004602052604090205460ff165b156114565761135e838383611930565b6114618383836118cb565b505050565b600081848411156114f55760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156114ba5781810151838201526020016114a2565b50505050905090810190601f1680156114e75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061150a6119c4565b90925090506115198282611520565b9250505090565b600061156283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611b27565b9392505050565b600082820183811015611562576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006115e08a600a54600b54611b8c565b92509250925060006115f06114fd565b905060008060006116038e878787611bdf565b919e509c509a509598509396509194505050505091939550919395565b600061156283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611466565b600c5490565b6000826116775750600061056c565b8282028284828161168457fe5b04146115625760405162461bcd60e51b8152600401808060200182810382526021815260200180611d3f6021913960400191505060405180910390fd5b60006116cb6114fd565b90506000806000806000806116df886115c3565b9550955095509550955095506000611700888361166890919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150611726908a611620565b6001600160a01b038c166000908152600260209081526040808320939093556001905220546117559088611620565b6001600160a01b03808d1660009081526001602052604080822093909355908c16815220546117849087611569565b6001600160a01b038b166000908152600160205260409020556117a985828585611c2f565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b600061180b6114fd565b905060008060008060008061181f886115c3565b9550955095509550955095506000611840888361166890919063ffffffff16565b6001600160a01b038c166000908152600160205260409020549091506118669088611620565b6001600160a01b03808d16600090815260016020908152604080832094909455918d1681526002909152205461189c9085611569565b6001600160a01b038b166000908152600260209081526040808320939093556001905220546117849087611569565b60006118d56114fd565b90506000806000806000806118e9886115c3565b955095509550955095509550600061190a888361166890919063ffffffff16565b6001600160a01b038c166000908152600160205260409020549091506117559088611620565b600061193a6114fd565b905060008060008060008061194e886115c3565b955095509550955095509550600061196f888361166890919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150611995908a611620565b6001600160a01b038c166000908152600260209081526040808320939093556001905220546118669088611620565b6007546006546000918291825b600554811015611af5578260016000600584815481106119ed57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611a525750816002600060058481548110611a2b57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611a695760075460065494509450505050611b23565b611aa96001600060058481548110611a7d57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611620565b9250611aeb6002600060058481548110611abf57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611620565b91506001016119d1565b50600654600754611b0591611520565b821015611b1d57600754600654935093505050611b23565b90925090505b9091565b60008183611b765760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156114ba5781810151838201526020016114a2565b506000838581611b8257fe5b0495945050505050565b6000808080611ba26064610bfa81818b8b611668565b90506000611bb76064610bfa81818c8b611668565b90506000611bcf82611bc98b86611620565b90611620565b9992985090965090945050505050565b6000808080611bee8886611668565b90506000611bfc8887611668565b90506000611c0a8888611668565b90506000611c1c82611bc98686611620565b939b939a50919850919650505050505050565b611c4883611bc98660075461162090919063ffffffff16565b600755600854611c589083611569565b600855600954611c689082611569565b600955600654611c789082611620565b6006555050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220bd890d33a759b4665a17c80681b398963ba35bc465018cc666f43d9d755655a764736f6c634300060c0033

Deployed Bytecode Sourcemap

16828:12674:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18040:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18952:161;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18952:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;20063:87;;;:::i;:::-;;;;;;;;;;;;;;;;18317:95;;;:::i;19121:313::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19121:313:0;;;;;;;;;;;;;;;;;:::i;21087:253::-;;;;;;;;;;;;;;;;-1:-1:-1;21087:253:0;;:::i;18226:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19442:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19442:218:0;;;;;;;;:::i;28932:180::-;;;;;;;;;;;;;;;;-1:-1:-1;28932:180:0;;:::i;:::-;;20258:377;;;;;;;;;;;;;;;;-1:-1:-1;20258:377:0;;:::i;20162:88::-;;;:::i;20643:436::-;;;;;;;;;;;;;;;;-1:-1:-1;20643:436:0;;;;;;;;;:::i;28751:173::-;;;;;;;;;;;;;;;;-1:-1:-1;28751:173:0;;:::i;29227:98::-;;;:::i;18420:198::-;;;;;;;;;;;;;;;;-1:-1:-1;18420:198:0;-1:-1:-1;;;;;18420:198:0;;:::i;16274:148::-;;;:::i;15632:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;15632:79:0;;;;;;;;;;;;;;18131:87;;;:::i;19668:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19668:269:0;;;;;;;;:::i;18626:167::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18626:167:0;;;;;;;;:::i;19945:110::-;;;;;;;;;;;;;;;;-1:-1:-1;19945:110:0;-1:-1:-1;;;;;19945:110:0;;:::i;29337:162::-;;;;;;;;;;;;;;;;-1:-1:-1;29337:162:0;;:::i;18801:143::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18801:143:0;;;;;;;;;;:::i;21348:443::-;;;;;;;;;;;;;;;;-1:-1:-1;21348:443:0;-1:-1:-1;;;;;21348:443:0;;:::i;16577:244::-;;;;;;;;;;;;;;;;-1:-1:-1;16577:244:0;-1:-1:-1;;;;;16577:244:0;;:::i;21799:478::-;;;;;;;;;;;;;;;;-1:-1:-1;21799:478:0;-1:-1:-1;;;;;21799:478:0;;:::i;18040:83::-;18110:5;;;;;;;;;;;;-1:-1:-1;;;18110:5:0;;;;18040:83;:::o;18952:161::-;19027:4;19044:39;19053:12;:10;:12::i;:::-;19067:7;19076:6;19044:8;:39::i;:::-;-1:-1:-1;19101:4:0;18952:161;;;;;:::o;20063:87::-;20132:10;;20063:87;:::o;18317:95::-;18397:7;;18317:95;:::o;19121:313::-;19219:4;19236:36;19246:6;19254:9;19265:6;19236:9;:36::i;:::-;19283:121;19292:6;19300:12;:10;:12::i;:::-;19314:89;19352:6;19314:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19314:19:0;;;;;;:11;:19;;;;;;19334:12;:10;:12::i;:::-;-1:-1:-1;;;;;19314:33:0;;;;;;;;;;;;-1:-1:-1;19314:33:0;;;:89;:37;:89::i;:::-;19283:8;:121::i;:::-;-1:-1:-1;19422:4:0;19121:313;;;;;:::o;21087:253::-;21153:7;21192;;21181;:18;;21173:73;;;;-1:-1:-1;;;21173:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21257:19;21280:10;:8;:10::i;:::-;21257:33;-1:-1:-1;21308:24:0;:7;21257:33;21308:11;:24::i;:::-;21301:31;;;21087:253;;;;:::o;18226:83::-;17351:1;18226:83;:::o;19442:218::-;19530:4;19547:83;19556:12;:10;:12::i;:::-;19570:7;19579:50;19618:10;19579:11;:25;19591:12;:10;:12::i;:::-;-1:-1:-1;;;;;19579:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19579:25:0;;;:34;;;;;;;;;;;:38;:50::i;28932:180::-;15854:12;:10;:12::i;:::-;15844:6;;-1:-1:-1;;;;;15844:6:0;;;:22;;;15836:67;;;;;-1:-1:-1;;;15836:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15836:67:0;;;;;;;;;;;;;;;29021:2:::1;29010:7;:13;;:32;;;;;29038:4;29027:7;:15;;29010:32;29002:72;;;::::0;;-1:-1:-1;;;29002:72:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;29085:9;:19:::0;28932:180::o;20258:377::-;20310:14;20327:12;:10;:12::i;:::-;-1:-1:-1;;;;;20359:19:0;;;;;;:11;:19;;;;;;20310:29;;-1:-1:-1;20359:19:0;;20358:20;20350:77;;;;-1:-1:-1;;;20350:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20439:15;20463:19;20474:7;20463:10;:19::i;:::-;-1:-1:-1;;;;;;;;;20511:15:0;;;;;;:7;:15;;;;;;20438:44;;-1:-1:-1;20511:28:0;;:15;-1:-1:-1;20438:44:0;20511:19;:28::i;:::-;-1:-1:-1;;;;;20493:15:0;;;;;;:7;:15;;;;;:46;20560:7;;:20;;20572:7;20560:11;:20::i;:::-;20550:7;:30;20604:10;;:23;;20619:7;20604:14;:23::i;:::-;20591:10;:36;-1:-1:-1;;;20258:377:0:o;20162:88::-;20231:11;;20162:88;:::o;20643:436::-;20733:7;20772;;20761;:18;;20753:62;;;;;-1:-1:-1;;;20753:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20831:17;20826:246;;20866:15;20890:19;20901:7;20890:10;:19::i;:::-;-1:-1:-1;20865:44:0;;-1:-1:-1;20924:14:0;;-1:-1:-1;;;;;20924:14:0;20826:246;20973:23;21004:19;21015:7;21004:10;:19::i;:::-;-1:-1:-1;20971:52:0;;-1:-1:-1;21038:22:0;;-1:-1:-1;;;;;21038:22:0;28751:173;15854:12;:10;:12::i;:::-;15844:6;;-1:-1:-1;;;;;15844:6:0;;;:22;;;15836:67;;;;;-1:-1:-1;;;15836:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15836:67:0;;;;;;;;;;;;;;;28837:2:::1;28827:6;:12;;:30;;;;;28853:4;28843:6;:14;;28827:30;28819:69;;;::::0;;-1:-1:-1;;;28819:69:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;28899:8;:17:::0;28751:173::o;29227:98::-;29273:7;29300:17;:15;:17::i;:::-;29293:24;;29227:98;:::o;18420:198::-;-1:-1:-1;;;;;18510:20:0;;18486:7;18510:20;;;:11;:20;;;;;;;;18506:49;;;-1:-1:-1;;;;;;18539:16:0;;;;;;:7;:16;;;;;;18532:23;;18506:49;-1:-1:-1;;;;;18593:16:0;;;;;;:7;:16;;;;;;18573:37;;:19;:37::i;16274:148::-;15854:12;:10;:12::i;:::-;15844:6;;-1:-1:-1;;;;;15844:6:0;;;:22;;;15836:67;;;;;-1:-1:-1;;;15836:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15836:67:0;;;;;;;;;;;;;;;16381:1:::1;16365:6:::0;;16344:40:::1;::::0;-1:-1:-1;;;;;16365:6:0;;::::1;::::0;16344:40:::1;::::0;16381:1;;16344:40:::1;16412:1;16395:19:::0;;-1:-1:-1;;;;;;16395:19:0::1;::::0;;16274:148::o;15632:79::-;15670:7;15697:6;-1:-1:-1;;;;;15697:6:0;15632:79;:::o;18131:87::-;18203:7;;;;;;;;;;;;-1:-1:-1;;;18203:7:0;;;;18131:87;:::o;19668:269::-;19761:4;19778:129;19787:12;:10;:12::i;:::-;19801:7;19810:96;19849:15;19810:96;;;;;;;;;;;;;;;;;:11;:25;19822:12;:10;:12::i;:::-;-1:-1:-1;;;;;19810:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19810:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;18626:167::-;18704:4;18721:42;18731:12;:10;:12::i;:::-;18745:9;18756:6;18721:9;:42::i;19945:110::-;-1:-1:-1;;;;;20027:20:0;20003:4;20027:20;;;:11;:20;;;;;;;;;19945:110::o;29337:162::-;15854:12;:10;:12::i;:::-;15844:6;;-1:-1:-1;;;;;15844:6:0;;;:22;;;15836:67;;;;;-1:-1:-1;;;15836:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15836:67:0;;;;;;;;;;;;;;;29431:60:::1;29475:5;29431:25;29443:12;29431:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;29416:12;:75:::0;-1:-1:-1;29337:162:0:o;18801:143::-;-1:-1:-1;;;;;18909:18:0;;;18882:7;18909:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18801:143::o;21348:443::-;15854:12;:10;:12::i;:::-;15844:6;;-1:-1:-1;;;;;15844:6:0;;;:22;;;15836:67;;;;;-1:-1:-1;;;15836:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15836:67:0;;;;;;;;;;;;;;;21440:42:::1;-1:-1:-1::0;;;;;21429:53:0;::::1;;;21421:100;;;;-1:-1:-1::0;;;21421:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;21541:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;21540:21;21532:61;;;::::0;;-1:-1:-1;;;21532:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;21607:16:0;::::1;21626:1;21607:16:::0;;;:7:::1;:16;::::0;;;;;:20;21604:108:::1;;-1:-1:-1::0;;;;;21683:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;21663:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;21644:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;21604:108:::1;-1:-1:-1::0;;;;;21722:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;21722:27:0::1;21745:4;21722:27:::0;;::::1;::::0;;;21760:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;21760:23:0::1;::::0;;::::1;::::0;;21348:443::o;16577:244::-;15854:12;:10;:12::i;:::-;15844:6;;-1:-1:-1;;;;;15844:6:0;;;:22;;;15836:67;;;;;-1:-1:-1;;;15836:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15836:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16666:22:0;::::1;16658:73;;;;-1:-1:-1::0;;;16658:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16768:6;::::0;;16747:38:::1;::::0;-1:-1:-1;;;;;16747:38:0;;::::1;::::0;16768:6;::::1;::::0;16747:38:::1;::::0;::::1;16796:6;:17:::0;;-1:-1:-1;;;;;;16796:17:0::1;-1:-1:-1::0;;;;;16796:17:0;;;::::1;::::0;;;::::1;::::0;;16577:244::o;21799:478::-;15854:12;:10;:12::i;:::-;15844:6;;-1:-1:-1;;;;;15844:6:0;;;:22;;;15836:67;;;;;-1:-1:-1;;;15836:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15836:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;21880:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;21872:60;;;::::0;;-1:-1:-1;;;21872:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;21948:9;21943:327;21967:9;:16:::0;21963:20;::::1;21943:327;;;22025:7;-1:-1:-1::0;;;;;22009:23:0::1;:9;22019:1;22009:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;22009:12:0::1;:23;22005:254;;;22068:9;22078:16:::0;;-1:-1:-1;;22078:20:0;;;22068:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;22053:9:::1;:12:::0;;-1:-1:-1;;;;;22068:31:0;;::::1;::::0;22063:1;;22053:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;22053:46:0::1;-1:-1:-1::0;;;;;22053:46:0;;::::1;;::::0;;22118:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;22157:11:::1;:20:::0;;;;:28;;-1:-1:-1;;22157:28:0::1;::::0;;22204:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;22204:15:0;;;;;-1:-1:-1;;;;;;22204:15:0::1;::::0;;;;;22238:5:::1;;22005:254;21985:3;;21943:327;;;;21799:478:::0;:::o;96:106::-;184:10;96:106;:::o;22285:337::-;-1:-1:-1;;;;;22378:19:0;;22370:68;;;;-1:-1:-1;;;22370:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22457:21:0;;22449:68;;;;-1:-1:-1;;;22449:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22530:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22582:32;;;;;;;;;;;;;;;;;22285:337;;;:::o;22630:1096::-;-1:-1:-1;;;;;22727:20:0;;22719:70;;;;-1:-1:-1;;;22719:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22808:23:0;;22800:71;;;;-1:-1:-1;;;22800:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22899:1;22890:6;:10;22882:64;;;;-1:-1:-1;;;22882:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22980:7;:5;:7::i;:::-;-1:-1:-1;;;;;22970:17:0;:6;-1:-1:-1;;;;;22970:17:0;;;:41;;;;;23004:7;:5;:7::i;:::-;-1:-1:-1;;;;;22991:20:0;:9;-1:-1:-1;;;;;22991:20:0;;;22970:41;22967:134;;;23044:12;;23034:6;:22;;23026:75;;;;-1:-1:-1;;;23026:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23126:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;23150:22:0;;;;;;:11;:22;;;;;;;;23149:23;23126:46;23122:597;;;23189:48;23211:6;23219:9;23230:6;23189:21;:48::i;:::-;23122:597;;;-1:-1:-1;;;;;23260:19:0;;;;;;:11;:19;;;;;;;;23259:20;:46;;;;-1:-1:-1;;;;;;23283:22:0;;;;;;:11;:22;;;;;;;;23259:46;23255:464;;;23322:46;23342:6;23350:9;23361:6;23322:19;:46::i;23255:464::-;-1:-1:-1;;;;;23391:19:0;;;;;;:11;:19;;;;;;;;23390:20;:47;;;;-1:-1:-1;;;;;;23415:22:0;;;;;;:11;:22;;;;;;;;23414:23;23390:47;23386:333;;;23454:44;23472:6;23480:9;23491:6;23454:17;:44::i;23386:333::-;-1:-1:-1;;;;;23520:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;23543:22:0;;;;;;:11;:22;;;;;;;;23520:45;23516:203;;;23582:48;23604:6;23612:9;23623:6;23582:21;:48::i;23516:203::-;23663:44;23681:6;23689:9;23700:6;23663:17;:44::i;:::-;22630:1096;;;:::o;4908:192::-;4994:7;5030:12;5022:6;;;;5014:29;;;;-1:-1:-1;;;5014:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5066:5:0;;;4908:192::o;27913:163::-;27954:7;27975:15;27992;28011:19;:17;:19::i;:::-;27974:56;;-1:-1:-1;27974:56:0;-1:-1:-1;28048:20:0;27974:56;;28048:11;:20::i;:::-;28041:27;;;;27913:163;:::o;6306:132::-;6364:7;6391:39;6395:1;6398;6391:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6384:46;6306:132;-1:-1:-1;;;6306:132:0:o;4005:181::-;4063:7;4095:5;;;4119:6;;;;4111:46;;;;;-1:-1:-1;;;4111:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;26615:470;26674:7;26683;26692;26701;26710;26719;26740:23;26765:12;26779:13;26796:41;26808:7;26817:8;;26827:9;;26796:11;:41::i;:::-;26739:98;;;;;;26848:19;26871:10;:8;:10::i;:::-;26848:33;;26893:15;26910:23;26935:12;26951:46;26963:7;26972:4;26978:5;26985:11;26951;:46::i;:::-;26892:105;;-1:-1:-1;26892:105:0;-1:-1:-1;26892:105:0;-1:-1:-1;27048:15:0;;-1:-1:-1;27065:4:0;;-1:-1:-1;27071:5:0;;-1:-1:-1;;;;;26615:470:0;;;;;;;:::o;4469:136::-;4527:7;4554:43;4558:1;4561;4554:43;;;;;;;;;;;;;;;;;:3;:43::i;29120:95::-;29195:12;;29120:95;:::o;5359:471::-;5417:7;5662:6;5658:47;;-1:-1:-1;5692:1:0;5685:8;;5658:47;5729:5;;;5733:1;5729;:5;:1;5753:5;;;;;:10;5745:56;;;;-1:-1:-1;;;5745:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24977:632;25079:19;25102:10;:8;:10::i;:::-;25079:33;;25124:15;25141:23;25166:12;25180:23;25205:12;25219:13;25236:19;25247:7;25236:10;:19::i;:::-;25123:132;;;;;;;;;;;;25266:13;25283:22;25293:11;25283:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;25334:15:0;;;;;;:7;:15;;;;;;25266:39;;-1:-1:-1;25334:28:0;;25354:7;25334:19;:28::i;:::-;-1:-1:-1;;;;;25316:15:0;;;;;;:7;:15;;;;;;;;:46;;;;25391:7;:15;;;;:28;;25411:7;25391:19;:28::i;:::-;-1:-1:-1;;;;;25373:15:0;;;;;;;:7;:15;;;;;;:46;;;;25451:18;;;;;;;:39;;25474:15;25451:22;:39::i;:::-;-1:-1:-1;;;;;25430:18:0;;;;;;:7;:18;;;;;:60;25504:37;25516:4;25522:5;25529:4;25535:5;25504:11;:37::i;:::-;25574:9;-1:-1:-1;;;;;25557:44:0;25566:6;-1:-1:-1;;;;;25557:44:0;;25585:15;25557:44;;;;;;;;;;;;;;;;;;24977:632;;;;;;;;;;;:::o;24317:652::-;24417:19;24440:10;:8;:10::i;:::-;24417:33;;24462:15;24479:23;24504:12;24518:23;24543:12;24557:13;24574:19;24585:7;24574:10;:19::i;:::-;24461:132;;;;;;;;;;;;24604:13;24621:22;24631:11;24621:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;24672:15:0;;;;;;:7;:15;;;;;;24604:39;;-1:-1:-1;24672:28:0;;24692:7;24672:19;:28::i;:::-;-1:-1:-1;;;;;24654:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;24732:18;;;;;:7;:18;;;;;:39;;24755:15;24732:22;:39::i;:::-;-1:-1:-1;;;;;24711:18:0;;;;;;:7;:18;;;;;;;;:60;;;;24803:7;:18;;;;:39;;24826:15;24803:22;:39::i;23734:575::-;23832:19;23855:10;:8;:10::i;:::-;23832:33;;23877:15;23894:23;23919:12;23933:23;23958:12;23972:13;23989:19;24000:7;23989:10;:19::i;:::-;23876:132;;;;;;;;;;;;24019:13;24036:22;24046:11;24036:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;24087:15:0;;;;;;:7;:15;;;;;;24019:39;;-1:-1:-1;24087:28:0;;24107:7;24087:19;:28::i;25617:708::-;25719:19;25742:10;:8;:10::i;:::-;25719:33;;25764:15;25781:23;25806:12;25820:23;25845:12;25859:13;25876:19;25887:7;25876:10;:19::i;:::-;25763:132;;;;;;;;;;;;25906:13;25923:22;25933:11;25923:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;25974:15:0;;;;;;:7;:15;;;;;;25906:39;;-1:-1:-1;25974:28:0;;25994:7;25974:19;:28::i;:::-;-1:-1:-1;;;;;25956:15:0;;;;;;:7;:15;;;;;;;;:46;;;;26031:7;:15;;;;:28;;26051:7;26031:19;:28::i;28084:561::-;28181:7;;28217;;28134;;;;;28241:289;28265:9;:16;28261:20;;28241:289;;;28331:7;28307;:21;28315:9;28325:1;28315:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28315:12:0;28307:21;;;;;;;;;;;;;:31;;:66;;;28366:7;28342;:21;28350:9;28360:1;28350:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28350:12:0;28342:21;;;;;;;;;;;;;:31;28307:66;28303:97;;;28383:7;;28392;;28375:25;;;;;;;;;28303:97;28425:34;28437:7;:21;28445:9;28455:1;28445:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28445:12:0;28437:21;;;;;;;;;;;;;28425:7;;:11;:34::i;:::-;28415:44;;28484:34;28496:7;:21;28504:9;28514:1;28504:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28504:12:0;28496:21;;;;;;;;;;;;;28484:7;;:11;:34::i;:::-;28474:44;-1:-1:-1;28283:3:0;;28241:289;;;-1:-1:-1;28566:7:0;;28554;;:20;;:11;:20::i;:::-;28544:7;:30;28540:61;;;28584:7;;28593;;28576:25;;;;;;;;28540:61;28620:7;;-1:-1:-1;28629:7:0;-1:-1:-1;28084:561:0;;;:::o;6934:278::-;7020:7;7055:12;7048:5;7040:28;;;;-1:-1:-1;;;7040:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7079:9;7095:1;7091;:5;;;;;;;6934:278;-1:-1:-1;;;;;6934:278:0:o;27093:395::-;27186:7;;;;27239:50;27285:3;27240:39;27285:3;27240:39;27241:7;27253:6;27241:11;:19::i;27239:50::-;27224:65;-1:-1:-1;27300:13:0;27316:51;27363:3;27317:40;27363:3;27317:40;27318:7;27330;27318:11;:20::i;27316:51::-;27300:67;-1:-1:-1;27378:23:0;27404:28;27300:67;27404:17;:7;27416:4;27404:11;:17::i;:::-;:21;;:28::i;:::-;27378:54;27468:4;;-1:-1:-1;27474:5:0;;-1:-1:-1;27093:395:0;;-1:-1:-1;;;;;27093:395:0:o;27496:409::-;27606:7;;;;27662:24;:7;27674:11;27662;:24::i;:::-;27644:42;-1:-1:-1;27697:12:0;27712:21;:4;27721:11;27712:8;:21::i;:::-;27697:36;-1:-1:-1;27744:13:0;27760:22;:5;27770:11;27760:9;:22::i;:::-;27744:38;-1:-1:-1;27793:23:0;27819:28;27744:38;27819:17;:7;27831:4;27819:11;:17::i;:28::-;27866:7;;;;-1:-1:-1;27892:4:0;;-1:-1:-1;27496:409:0;;-1:-1:-1;;;;;;;27496:409:0:o;26333:274::-;26441:28;26463:5;26441:17;26453:4;26441:7;;:11;;:17;;;;:::i;:28::-;26431:7;:38;26493:10;;:20;;26508:4;26493:14;:20::i;:::-;26480:10;:33;26538:11;;:22;;26554:5;26538:15;:22::i;:::-;26524:11;:36;26581:7;;:18;;26593:5;26581:11;:18::i;:::-;26571:7;:28;-1:-1:-1;;;;26333:274:0:o

Swarm Source

ipfs://bd890d33a759b4665a17c80681b398963ba35bc465018cc666f43d9d755655a7
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.