ETH Price: $3,110.65 (+0.42%)
Gas: 4 Gwei

Token

RFbtc (RFbtc)
 

Overview

Max Total Supply

17,837,751.63837069 RFbtc

Holders

444 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
7.4571398 RFbtc

Value
$0.00
0x41653c7d61609d856f29355e404f310ec4142cfb
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

RFbtc aims to increase profitability for token holders. It's based around a 4.2% transaction fee where half is distributed to all token holders automatically and half is sent to a burn address, deflating the supply. The burn function creates scarcity and supports increases in the token’s price.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RFbtc

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-01-03
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;


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 RFbtc 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 = 'RFbtc';
    string  private constant _SYMBOL = 'RFbtc';
    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 = 21000000 * _DECIMALFACTOR;
    uint256 private _rTotal = (_MAX - (_MAX % _tTotal));
    
    uint256 private _tFeeTotal;
    uint256 private _tBurnTotal;
    
    uint256 private constant     _TAX_FEE = 210;
    uint256 private constant    _BURN_FEE = 210;
    uint256 private constant _MAX_TX_SIZE = 210000 * _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 _getMaxTxAmount() private view returns(uint256) {
        return _MAX_TX_SIZE;
    }
    
}

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":"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":[{"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":[],"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"}]

6080604052660775f05a0740006006556606115683663fff1960075534801561002757600080fd5b50600061003b6001600160e01b0361011a16565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506007546001600061009d6001600160e01b0361011a16565b6001600160a01b031681526020810191909152604001600020556100c86001600160e01b0361011a16565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6006546040518082815260200191505060405180910390a361011e565b3390565b611c9a806200012e6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a9059cbb1161007c578063a9059cbb1461038d578063cba0e996146103b9578063dd62ed3e146103df578063f2cc0c181461040d578063f2fde38b14610433578063f84354f11461045957610142565b806370a082311461030f578063715018a6146103355780638da5cb5b1461033d57806395d89b4114610147578063a457c2d71461036157610142565b80632d8381191161010a5780632d8381191461025c578063313ce5671461027957806339509351146102975780633bd5d173146102c35780633c9f861d146102e25780634549b039146102ea57610142565b806306fdde0314610147578063095ea7b3146101c457806313114a9d1461020457806318160ddd1461021e57806323b872dd14610226575b600080fd5b61014f61047f565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610189578181015183820152602001610171565b50505050905090810190601f1680156101b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f0600480360360408110156101da57600080fd5b506001600160a01b03813516906020013561049e565b604080519115158252519081900360200190f35b61020c6104bc565b60408051918252519081900360200190f35b61020c6104c2565b6101f06004803603606081101561023c57600080fd5b506001600160a01b038135811691602081013590911690604001356104c8565b61020c6004803603602081101561027257600080fd5b5035610555565b6102816105bd565b6040805160ff9092168252519081900360200190f35b6101f0600480360360408110156102ad57600080fd5b506001600160a01b0381351690602001356105c2565b6102e0600480360360208110156102d957600080fd5b5035610616565b005b61020c6106fc565b61020c6004803603604081101561030057600080fd5b50803590602001351515610702565b61020c6004803603602081101561032557600080fd5b50356001600160a01b0316610794565b6102e06107f6565b610345610898565b604080516001600160a01b039092168252519081900360200190f35b6101f06004803603604081101561037757600080fd5b506001600160a01b0381351690602001356108a7565b6101f0600480360360408110156103a357600080fd5b506001600160a01b038135169060200135610915565b6101f0600480360360208110156103cf57600080fd5b50356001600160a01b0316610929565b61020c600480360360408110156103f557600080fd5b506001600160a01b0381358116916020013516610947565b6102e06004803603602081101561042357600080fd5b50356001600160a01b0316610972565b6102e06004803603602081101561044957600080fd5b50356001600160a01b0316610b54565b6102e06004803603602081101561046f57600080fd5b50356001600160a01b0316610c4c565b604080518082019091526005815264524662746360d81b602082015290565b60006104b26104ab610e0d565b8484610e11565b5060015b92915050565b60085490565b60065490565b60006104d5848484610efd565b61054b846104e1610e0d565b61054685604051806060016040528060288152602001611b38602891396001600160a01b038a1660009081526003602052604081209061051f610e0d565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6111ab16565b610e11565b5060019392505050565b60006007548211156105985760405162461bcd60e51b815260040180806020018281038252602a815260200180611a7d602a913960400191505060405180910390fd5b60006105a2611242565b90506105b4838263ffffffff61126b16565b9150505b919050565b600890565b60006104b26105cf610e0d565b8461054685600360006105e0610e0d565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6112b416565b6000610620610e0d565b6001600160a01b03811660009081526004602052604090205490915060ff161561067b5760405162461bcd60e51b815260040180806020018281038252602c815260200180611c14602c913960400191505060405180910390fd5b60006106868361130e565b505050506001600160a01b0384166000908152600160205260409020549192506106b291905082611368565b6001600160a01b0383166000908152600160205260409020556007546106de908263ffffffff61136816565b6007556008546106f4908463ffffffff6112b416565b600855505050565b60095490565b600060065483111561075b576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161077a57600061076b8461130e565b509395506104b6945050505050565b60006107858461130e565b509295506104b6945050505050565b6001600160a01b03811660009081526004602052604081205460ff16156107d457506001600160a01b0381166000908152600260205260409020546105b8565b6001600160a01b0382166000908152600160205260409020546104b690610555565b6107fe610e0d565b6000546001600160a01b0390811691161461084e576040805162461bcd60e51b81526020600482018190526024820152600080516020611b60833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60006104b26108b4610e0d565b8461054685604051806060016040528060258152602001611c4060259139600360006108de610e0d565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6111ab16565b60006104b2610922610e0d565b8484610efd565b6001600160a01b031660009081526004602052604090205460ff1690565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61097a610e0d565b6000546001600160a01b039081169116146109ca576040805162461bcd60e51b81526020600482018190526024820152600080516020611b60833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610a265760405162461bcd60e51b8152600401808060200182810382526022815260200180611bf26022913960400191505060405180910390fd5b6001600160a01b03811660009081526004602052604090205460ff1615610a94576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610aee576001600160a01b038116600090815260016020526040902054610ad490610555565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610b5c610e0d565b6000546001600160a01b03908116911614610bac576040805162461bcd60e51b81526020600482018190526024820152600080516020611b60833981519152604482015290519081900360640190fd5b6001600160a01b038116610bf15760405162461bcd60e51b8152600401808060200182810382526026815260200180611aa76026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610c54610e0d565b6000546001600160a01b03908116911614610ca4576040805162461bcd60e51b81526020600482018190526024820152600080516020611b60833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610d11576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600554811015610e0957816001600160a01b031660058281548110610d3557fe5b6000918252602090912001546001600160a01b03161415610e0157600580546000198101908110610d6257fe5b600091825260209091200154600580546001600160a01b039092169183908110610d8857fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610dda57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e09565b600101610d14565b5050565b3390565b6001600160a01b038316610e565760405162461bcd60e51b8152600401808060200182810382526024815260200180611bce6024913960400191505060405180910390fd5b6001600160a01b038216610e9b5760405162461bcd60e51b8152600401808060200182810382526022815260200180611acd6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610f425760405162461bcd60e51b8152600401808060200182810382526025815260200180611ba96025913960400191505060405180910390fd5b6001600160a01b038216610f875760405162461bcd60e51b8152600401808060200182810382526023815260200180611a5a6023913960400191505060405180910390fd5b60008111610fc65760405162461bcd60e51b8152600401808060200182810382526029815260200180611b806029913960400191505060405180910390fd5b610fce610898565b6001600160a01b0316836001600160a01b0316141580156110085750610ff2610898565b6001600160a01b0316826001600160a01b031614155b1561105257651319718a50008111156110525760405162461bcd60e51b8152600401808060200182810382526028815260200180611aef6028913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff16801561109357506001600160a01b03821660009081526004602052604090205460ff16155b156110a8576110a38383836113aa565b6111a6565b6001600160a01b03831660009081526004602052604090205460ff161580156110e957506001600160a01b03821660009081526004602052604090205460ff165b156110f9576110a38383836114fc565b6001600160a01b03831660009081526004602052604090205460ff1615801561113b57506001600160a01b03821660009081526004602052604090205460ff16155b1561114b576110a38383836115d8565b6001600160a01b03831660009081526004602052604090205460ff16801561118b57506001600160a01b03821660009081526004602052604090205460ff165b1561119b576110a3838383611643565b6111a68383836115d8565b505050565b6000818484111561123a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156111ff5781810151838201526020016111e7565b50505050905090810190601f16801561122c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061124f6116e3565b9092509050611264828263ffffffff61126b16565b9250505090565b60006112ad83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611858565b9392505050565b6000828201838110156112ad576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006113288a60d2806118bd565b9250925092506000611338611242565b9050600080600061134b8e878787611934565b919e509c509a509598509396509194505050505091939550919395565b60006112ad83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111ab565b60006113b4611242565b90506000806000806000806113c88861130e565b95509550955095509550955060006113e9888361199c90919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150611415908a63ffffffff61136816565b6001600160a01b038c1660009081526002602090815260408083209390935560019052205461144a908863ffffffff61136816565b6001600160a01b03808d1660009081526001602052604080822093909355908c168152205461147f908763ffffffff6112b416565b6001600160a01b038b166000908152600160205260409020556114a4858285856119f5565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b6000611506611242565b905060008060008060008061151a8861130e565b955095509550955095509550600061153b888361199c90919063ffffffff16565b6001600160a01b038c16600090815260016020526040902054909150611567908863ffffffff61136816565b6001600160a01b03808d16600090815260016020908152604080832094909455918d168152600290915220546115a3908563ffffffff6112b416565b6001600160a01b038b1660009081526002602090815260408083209390935560019052205461147f908763ffffffff6112b416565b60006115e2611242565b90506000806000806000806115f68861130e565b9550955095509550955095506000611617888361199c90919063ffffffff16565b6001600160a01b038c1660009081526001602052604090205490915061144a908863ffffffff61136816565b600061164d611242565b90506000806000806000806116618861130e565b9550955095509550955095506000611682888361199c90919063ffffffff16565b6001600160a01b038c166000908152600260205260409020549091506116ae908a63ffffffff61136816565b6001600160a01b038c16600090815260026020908152604080832093909355600190522054611567908863ffffffff61136816565b6007546006546000918291825b6005548110156118205782600160006005848154811061170c57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611771575081600260006005848154811061174a57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156117885760075460065494509450505050611854565b6117ce600160006005848154811061179c57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849063ffffffff61136816565b925061181660026000600584815481106117e457fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839063ffffffff61136816565b91506001016116f0565b506006546007546118369163ffffffff61126b16565b82101561184e57600754600654935093505050611854565b90925090505b9091565b600081836118a75760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156111ff5781810151838201526020016111e7565b5060008385816118b357fe5b0495945050505050565b60008080806118e560646118d981818b8b63ffffffff61199c16565b9063ffffffff61126b16565b9050600061190060646118d981818c8b63ffffffff61199c16565b90506000611924826119188b8663ffffffff61136816565b9063ffffffff61136816565b9992985090965090945050505050565b6000808080611949888663ffffffff61199c16565b9050600061195d888763ffffffff61199c16565b90506000611971888863ffffffff61199c16565b9050600061198982611918868663ffffffff61136816565b939b939a50919850919650505050505050565b6000826119ab575060006104b6565b828202828482816119b857fe5b04146112ad5760405162461bcd60e51b8152600401808060200182810382526021815260200180611b176021913960400191505060405180910390fd5b611a0e836119188660075461136890919063ffffffff16565b600755600854611a24908363ffffffff6112b416565b600855600954611a3a908263ffffffff6112b416565b600955600654611a50908263ffffffff61136816565b6006555050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122001d56a1c319ec2c9aedeff717a2ad16c9194cbc5acd0d3097d7d09d976fb969164736f6c63430006060033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a9059cbb1161007c578063a9059cbb1461038d578063cba0e996146103b9578063dd62ed3e146103df578063f2cc0c181461040d578063f2fde38b14610433578063f84354f11461045957610142565b806370a082311461030f578063715018a6146103355780638da5cb5b1461033d57806395d89b4114610147578063a457c2d71461036157610142565b80632d8381191161010a5780632d8381191461025c578063313ce5671461027957806339509351146102975780633bd5d173146102c35780633c9f861d146102e25780634549b039146102ea57610142565b806306fdde0314610147578063095ea7b3146101c457806313114a9d1461020457806318160ddd1461021e57806323b872dd14610226575b600080fd5b61014f61047f565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610189578181015183820152602001610171565b50505050905090810190601f1680156101b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f0600480360360408110156101da57600080fd5b506001600160a01b03813516906020013561049e565b604080519115158252519081900360200190f35b61020c6104bc565b60408051918252519081900360200190f35b61020c6104c2565b6101f06004803603606081101561023c57600080fd5b506001600160a01b038135811691602081013590911690604001356104c8565b61020c6004803603602081101561027257600080fd5b5035610555565b6102816105bd565b6040805160ff9092168252519081900360200190f35b6101f0600480360360408110156102ad57600080fd5b506001600160a01b0381351690602001356105c2565b6102e0600480360360208110156102d957600080fd5b5035610616565b005b61020c6106fc565b61020c6004803603604081101561030057600080fd5b50803590602001351515610702565b61020c6004803603602081101561032557600080fd5b50356001600160a01b0316610794565b6102e06107f6565b610345610898565b604080516001600160a01b039092168252519081900360200190f35b6101f06004803603604081101561037757600080fd5b506001600160a01b0381351690602001356108a7565b6101f0600480360360408110156103a357600080fd5b506001600160a01b038135169060200135610915565b6101f0600480360360208110156103cf57600080fd5b50356001600160a01b0316610929565b61020c600480360360408110156103f557600080fd5b506001600160a01b0381358116916020013516610947565b6102e06004803603602081101561042357600080fd5b50356001600160a01b0316610972565b6102e06004803603602081101561044957600080fd5b50356001600160a01b0316610b54565b6102e06004803603602081101561046f57600080fd5b50356001600160a01b0316610c4c565b604080518082019091526005815264524662746360d81b602082015290565b60006104b26104ab610e0d565b8484610e11565b5060015b92915050565b60085490565b60065490565b60006104d5848484610efd565b61054b846104e1610e0d565b61054685604051806060016040528060288152602001611b38602891396001600160a01b038a1660009081526003602052604081209061051f610e0d565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6111ab16565b610e11565b5060019392505050565b60006007548211156105985760405162461bcd60e51b815260040180806020018281038252602a815260200180611a7d602a913960400191505060405180910390fd5b60006105a2611242565b90506105b4838263ffffffff61126b16565b9150505b919050565b600890565b60006104b26105cf610e0d565b8461054685600360006105e0610e0d565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6112b416565b6000610620610e0d565b6001600160a01b03811660009081526004602052604090205490915060ff161561067b5760405162461bcd60e51b815260040180806020018281038252602c815260200180611c14602c913960400191505060405180910390fd5b60006106868361130e565b505050506001600160a01b0384166000908152600160205260409020549192506106b291905082611368565b6001600160a01b0383166000908152600160205260409020556007546106de908263ffffffff61136816565b6007556008546106f4908463ffffffff6112b416565b600855505050565b60095490565b600060065483111561075b576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161077a57600061076b8461130e565b509395506104b6945050505050565b60006107858461130e565b509295506104b6945050505050565b6001600160a01b03811660009081526004602052604081205460ff16156107d457506001600160a01b0381166000908152600260205260409020546105b8565b6001600160a01b0382166000908152600160205260409020546104b690610555565b6107fe610e0d565b6000546001600160a01b0390811691161461084e576040805162461bcd60e51b81526020600482018190526024820152600080516020611b60833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60006104b26108b4610e0d565b8461054685604051806060016040528060258152602001611c4060259139600360006108de610e0d565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6111ab16565b60006104b2610922610e0d565b8484610efd565b6001600160a01b031660009081526004602052604090205460ff1690565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61097a610e0d565b6000546001600160a01b039081169116146109ca576040805162461bcd60e51b81526020600482018190526024820152600080516020611b60833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610a265760405162461bcd60e51b8152600401808060200182810382526022815260200180611bf26022913960400191505060405180910390fd5b6001600160a01b03811660009081526004602052604090205460ff1615610a94576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610aee576001600160a01b038116600090815260016020526040902054610ad490610555565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610b5c610e0d565b6000546001600160a01b03908116911614610bac576040805162461bcd60e51b81526020600482018190526024820152600080516020611b60833981519152604482015290519081900360640190fd5b6001600160a01b038116610bf15760405162461bcd60e51b8152600401808060200182810382526026815260200180611aa76026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610c54610e0d565b6000546001600160a01b03908116911614610ca4576040805162461bcd60e51b81526020600482018190526024820152600080516020611b60833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610d11576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600554811015610e0957816001600160a01b031660058281548110610d3557fe5b6000918252602090912001546001600160a01b03161415610e0157600580546000198101908110610d6257fe5b600091825260209091200154600580546001600160a01b039092169183908110610d8857fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610dda57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e09565b600101610d14565b5050565b3390565b6001600160a01b038316610e565760405162461bcd60e51b8152600401808060200182810382526024815260200180611bce6024913960400191505060405180910390fd5b6001600160a01b038216610e9b5760405162461bcd60e51b8152600401808060200182810382526022815260200180611acd6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610f425760405162461bcd60e51b8152600401808060200182810382526025815260200180611ba96025913960400191505060405180910390fd5b6001600160a01b038216610f875760405162461bcd60e51b8152600401808060200182810382526023815260200180611a5a6023913960400191505060405180910390fd5b60008111610fc65760405162461bcd60e51b8152600401808060200182810382526029815260200180611b806029913960400191505060405180910390fd5b610fce610898565b6001600160a01b0316836001600160a01b0316141580156110085750610ff2610898565b6001600160a01b0316826001600160a01b031614155b1561105257651319718a50008111156110525760405162461bcd60e51b8152600401808060200182810382526028815260200180611aef6028913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff16801561109357506001600160a01b03821660009081526004602052604090205460ff16155b156110a8576110a38383836113aa565b6111a6565b6001600160a01b03831660009081526004602052604090205460ff161580156110e957506001600160a01b03821660009081526004602052604090205460ff165b156110f9576110a38383836114fc565b6001600160a01b03831660009081526004602052604090205460ff1615801561113b57506001600160a01b03821660009081526004602052604090205460ff16155b1561114b576110a38383836115d8565b6001600160a01b03831660009081526004602052604090205460ff16801561118b57506001600160a01b03821660009081526004602052604090205460ff165b1561119b576110a3838383611643565b6111a68383836115d8565b505050565b6000818484111561123a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156111ff5781810151838201526020016111e7565b50505050905090810190601f16801561122c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600061124f6116e3565b9092509050611264828263ffffffff61126b16565b9250505090565b60006112ad83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611858565b9392505050565b6000828201838110156112ad576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006113288a60d2806118bd565b9250925092506000611338611242565b9050600080600061134b8e878787611934565b919e509c509a509598509396509194505050505091939550919395565b60006112ad83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111ab565b60006113b4611242565b90506000806000806000806113c88861130e565b95509550955095509550955060006113e9888361199c90919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150611415908a63ffffffff61136816565b6001600160a01b038c1660009081526002602090815260408083209390935560019052205461144a908863ffffffff61136816565b6001600160a01b03808d1660009081526001602052604080822093909355908c168152205461147f908763ffffffff6112b416565b6001600160a01b038b166000908152600160205260409020556114a4858285856119f5565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b6000611506611242565b905060008060008060008061151a8861130e565b955095509550955095509550600061153b888361199c90919063ffffffff16565b6001600160a01b038c16600090815260016020526040902054909150611567908863ffffffff61136816565b6001600160a01b03808d16600090815260016020908152604080832094909455918d168152600290915220546115a3908563ffffffff6112b416565b6001600160a01b038b1660009081526002602090815260408083209390935560019052205461147f908763ffffffff6112b416565b60006115e2611242565b90506000806000806000806115f68861130e565b9550955095509550955095506000611617888361199c90919063ffffffff16565b6001600160a01b038c1660009081526001602052604090205490915061144a908863ffffffff61136816565b600061164d611242565b90506000806000806000806116618861130e565b9550955095509550955095506000611682888361199c90919063ffffffff16565b6001600160a01b038c166000908152600260205260409020549091506116ae908a63ffffffff61136816565b6001600160a01b038c16600090815260026020908152604080832093909355600190522054611567908863ffffffff61136816565b6007546006546000918291825b6005548110156118205782600160006005848154811061170c57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611771575081600260006005848154811061174a57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156117885760075460065494509450505050611854565b6117ce600160006005848154811061179c57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849063ffffffff61136816565b925061181660026000600584815481106117e457fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839063ffffffff61136816565b91506001016116f0565b506006546007546118369163ffffffff61126b16565b82101561184e57600754600654935093505050611854565b90925090505b9091565b600081836118a75760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156111ff5781810151838201526020016111e7565b5060008385816118b357fe5b0495945050505050565b60008080806118e560646118d981818b8b63ffffffff61199c16565b9063ffffffff61126b16565b9050600061190060646118d981818c8b63ffffffff61199c16565b90506000611924826119188b8663ffffffff61136816565b9063ffffffff61136816565b9992985090965090945050505050565b6000808080611949888663ffffffff61199c16565b9050600061195d888763ffffffff61199c16565b90506000611971888863ffffffff61199c16565b9050600061198982611918868663ffffffff61136816565b939b939a50919850919650505050505050565b6000826119ab575060006104b6565b828202828482816119b857fe5b04146112ad5760405162461bcd60e51b8152600401808060200182810382526021815260200180611b176021913960400191505060405180910390fd5b611a0e836119188660075461136890919063ffffffff16565b600755600854611a24908363ffffffff6112b416565b600855600954611a3a908263ffffffff6112b416565b600955600654611a50908263ffffffff61136816565b6006555050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122001d56a1c319ec2c9aedeff717a2ad16c9194cbc5acd0d3097d7d09d976fb969164736f6c63430006060033

Deployed Bytecode Sourcemap

16827:12035:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;16827:12035:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;18047:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;18047:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18959:161;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;18959:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;20070:87;;;:::i;:::-;;;;;;;;;;;;;;;;18324:95;;;:::i;19128:313::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19128:313:0;;;;;;;;;;;;;;;;;:::i;21094:253::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21094:253:0;;:::i;18233:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19449:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19449:218:0;;;;;;;;:::i;20265:377::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20265:377:0;;:::i;:::-;;20169:88;;;:::i;20650:436::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20650:436:0;;;;;;;;;:::i;18427:198::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18427:198:0;-1:-1:-1;;;;;18427:198:0;;:::i;16273:148::-;;;:::i;15631:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;15631:79:0;;;;;;;;;;;;;;19675:269;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19675:269:0;;;;;;;;:::i;18633:167::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;18633:167:0;;;;;;;;:::i;19952:110::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19952:110:0;-1:-1:-1;;;;;19952:110:0;;:::i;18808:143::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;18808:143:0;;;;;;;;;;:::i;21355:443::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21355:443:0;-1:-1:-1;;;;;21355:443:0;;:::i;16576:244::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;16576:244:0;-1:-1:-1;;;;;16576:244:0;;:::i;21806:478::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21806:478:0;-1:-1:-1;;;;;21806:478:0;;:::i;18047:83::-;18117:5;;;;;;;;;;;;-1:-1:-1;;;18117:5:0;;;;18047:83;:::o;18959:161::-;19034:4;19051:39;19060:12;:10;:12::i;:::-;19074:7;19083:6;19051:8;:39::i;:::-;-1:-1:-1;19108:4:0;18959:161;;;;;:::o;20070:87::-;20139:10;;20070:87;:::o;18324:95::-;18404:7;;18324:95;:::o;19128:313::-;19226:4;19243:36;19253:6;19261:9;19272:6;19243:9;:36::i;:::-;19290:121;19299:6;19307:12;:10;:12::i;:::-;19321:89;19359:6;19321:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19321:19:0;;;;;;:11;:19;;;;;;19341:12;:10;:12::i;:::-;-1:-1:-1;;;;;19321:33:0;;;;;;;;;;;;-1:-1:-1;19321:33:0;;;:89;;:37;:89;:::i;:::-;19290:8;:121::i;:::-;-1:-1:-1;19429:4:0;19128:313;;;;;:::o;21094:253::-;21160:7;21199;;21188;:18;;21180:73;;;;-1:-1:-1;;;21180:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21264:19;21287:10;:8;:10::i;:::-;21264:33;-1:-1:-1;21315:24:0;:7;21264:33;21315:24;:11;:24;:::i;:::-;21308:31;;;21094:253;;;;:::o;18233:83::-;17349:1;18233:83;:::o;19449:218::-;19537:4;19554:83;19563:12;:10;:12::i;:::-;19577:7;19586:50;19625:10;19586:11;:25;19598:12;:10;:12::i;:::-;-1:-1:-1;;;;;19586:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19586:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;20265:377::-;20317:14;20334:12;:10;:12::i;:::-;-1:-1:-1;;;;;20366:19:0;;;;;;:11;:19;;;;;;20317:29;;-1:-1:-1;20366:19:0;;20365:20;20357:77;;;;-1:-1:-1;;;20357:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20446:15;20470:19;20481:7;20470:10;:19::i;:::-;-1:-1:-1;;;;;;;;;20518:15:0;;;;;;:7;:15;;;;;;20445:44;;-1:-1:-1;20518:28:0;;:15;-1:-1:-1;20445:44:0;20518:19;:28::i;:::-;-1:-1:-1;;;;;20500:15:0;;;;;;:7;:15;;;;;:46;20567:7;;:20;;20579:7;20567:20;:11;:20;:::i;:::-;20557:7;:30;20611:10;;:23;;20626:7;20611:23;:14;:23;:::i;:::-;20598:10;:36;-1:-1:-1;;;20265:377:0:o;20169:88::-;20238:11;;20169:88;:::o;20650:436::-;20740:7;20779;;20768;:18;;20760:62;;;;;-1:-1:-1;;;20760:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20838:17;20833:246;;20873:15;20897:19;20908:7;20897:10;:19::i;:::-;-1:-1:-1;20872:44:0;;-1:-1:-1;20931:14:0;;-1:-1:-1;;;;;20931:14:0;20833:246;20980:23;21011:19;21022:7;21011:10;:19::i;:::-;-1:-1:-1;20978:52:0;;-1:-1:-1;21045:22:0;;-1:-1:-1;;;;;21045:22:0;18427:198;-1:-1:-1;;;;;18517:20:0;;18493:7;18517:20;;;:11;:20;;;;;;;;18513:49;;;-1:-1:-1;;;;;;18546:16:0;;;;;;:7;:16;;;;;;18539:23;;18513:49;-1:-1:-1;;;;;18600:16:0;;;;;;:7;:16;;;;;;18580:37;;:19;:37::i;16273:148::-;15853:12;:10;:12::i;:::-;15843:6;;-1:-1:-1;;;;;15843:6:0;;;:22;;;15835:67;;;;;-1:-1:-1;;;15835:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15835:67:0;;;;;;;;;;;;;;;16380:1:::1;16364:6:::0;;16343:40:::1;::::0;-1:-1:-1;;;;;16364:6:0;;::::1;::::0;16343:40:::1;::::0;16380:1;;16343:40:::1;16411:1;16394:19:::0;;-1:-1:-1;;;;;;16394:19:0::1;::::0;;16273:148::o;15631:79::-;15669:7;15696:6;-1:-1:-1;;;;;15696:6:0;15631:79;:::o;19675:269::-;19768:4;19785:129;19794:12;:10;:12::i;:::-;19808:7;19817:96;19856:15;19817:96;;;;;;;;;;;;;;;;;:11;:25;19829:12;:10;:12::i;:::-;-1:-1:-1;;;;;19817:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19817:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;18633:167::-;18711:4;18728:42;18738:12;:10;:12::i;:::-;18752:9;18763:6;18728:9;:42::i;19952:110::-;-1:-1:-1;;;;;20034:20:0;20010:4;20034:20;;;:11;:20;;;;;;;;;19952:110::o;18808:143::-;-1:-1:-1;;;;;18916:18:0;;;18889:7;18916:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18808:143::o;21355:443::-;15853:12;:10;:12::i;:::-;15843:6;;-1:-1:-1;;;;;15843:6:0;;;:22;;;15835:67;;;;;-1:-1:-1;;;15835:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15835:67:0;;;;;;;;;;;;;;;21447:42:::1;-1:-1:-1::0;;;;;21436:53:0;::::1;;;21428:100;;;;-1:-1:-1::0;;;21428:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;21548:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;21547:21;21539:61;;;::::0;;-1:-1:-1;;;21539:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;21614:16:0;::::1;21633:1;21614:16:::0;;;:7:::1;:16;::::0;;;;;:20;21611:108:::1;;-1:-1:-1::0;;;;;21690:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;21670:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;21651:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;21611:108:::1;-1:-1:-1::0;;;;;21729:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;21729:27:0::1;21752:4;21729:27:::0;;::::1;::::0;;;21767:9:::1;27:10:-1::0;;23:18;;::::1;45:23:::0;;21767::0;;;;::::1;::::0;;-1:-1:-1;;;;;;21767:23:0::1;::::0;;::::1;::::0;;21355:443::o;16576:244::-;15853:12;:10;:12::i;:::-;15843:6;;-1:-1:-1;;;;;15843:6:0;;;:22;;;15835:67;;;;;-1:-1:-1;;;15835:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15835:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16665:22:0;::::1;16657:73;;;;-1:-1:-1::0;;;16657:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16767:6;::::0;;16746:38:::1;::::0;-1:-1:-1;;;;;16746:38:0;;::::1;::::0;16767:6;::::1;::::0;16746:38:::1;::::0;::::1;16795:6;:17:::0;;-1:-1:-1;;;;;;16795:17:0::1;-1:-1:-1::0;;;;;16795:17:0;;;::::1;::::0;;;::::1;::::0;;16576:244::o;21806:478::-;15853:12;:10;:12::i;:::-;15843:6;;-1:-1:-1;;;;;15843:6:0;;;:22;;;15835:67;;;;;-1:-1:-1;;;15835:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15835:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;21887:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;21879:60;;;::::0;;-1:-1:-1;;;21879:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;21955:9;21950:327;21974:9;:16:::0;21970:20;::::1;21950:327;;;22032:7;-1:-1:-1::0;;;;;22016:23:0::1;:9;22026:1;22016:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;22016:12:0::1;:23;22012:254;;;22075:9;22085:16:::0;;-1:-1:-1;;22085:20:0;;;22075:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;22060:9:::1;:12:::0;;-1:-1:-1;;;;;22075:31:0;;::::1;::::0;22070:1;;22060:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;22060:46:0::1;-1:-1:-1::0;;;;;22060:46:0;;::::1;;::::0;;22125:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;22164:11:::1;:20:::0;;;;:28;;-1:-1:-1;;22164:28:0::1;::::0;;22211:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;22211:15:0;;;;;-1:-1:-1;;;;;;22211:15:0::1;::::0;;;;;22245:5:::1;;22012:254;21992:3;;21950:327;;;;21806:478:::0;:::o;97:106::-;185:10;97:106;:::o;22292:337::-;-1:-1:-1;;;;;22385:19:0;;22377:68;;;;-1:-1:-1;;;22377:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22464:21:0;;22456:68;;;;-1:-1:-1;;;22456:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22537:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22589:32;;;;;;;;;;;;;;;;;22292:337;;;:::o;22637:1096::-;-1:-1:-1;;;;;22734:20:0;;22726:70;;;;-1:-1:-1;;;22726:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22815:23:0;;22807:71;;;;-1:-1:-1;;;22807:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22906:1;22897:6;:10;22889:64;;;;-1:-1:-1;;;22889:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22987:7;:5;:7::i;:::-;-1:-1:-1;;;;;22977:17:0;:6;-1:-1:-1;;;;;22977:17:0;;;:41;;;;;23011:7;:5;:7::i;:::-;-1:-1:-1;;;;;22998:20:0;:9;-1:-1:-1;;;;;22998:20:0;;;22977:41;22974:134;;;17876:23;23041:22;;;23033:75;;;;-1:-1:-1;;;23033:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23133:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;23157:22:0;;;;;;:11;:22;;;;;;;;23156:23;23133:46;23129:597;;;23196:48;23218:6;23226:9;23237:6;23196:21;:48::i;:::-;23129:597;;;-1:-1:-1;;;;;23267:19:0;;;;;;:11;:19;;;;;;;;23266:20;:46;;;;-1:-1:-1;;;;;;23290:22:0;;;;;;:11;:22;;;;;;;;23266:46;23262:464;;;23329:46;23349:6;23357:9;23368:6;23329:19;:46::i;23262:464::-;-1:-1:-1;;;;;23398:19:0;;;;;;:11;:19;;;;;;;;23397:20;:47;;;;-1:-1:-1;;;;;;23422:22:0;;;;;;:11;:22;;;;;;;;23421:23;23397:47;23393:333;;;23461:44;23479:6;23487:9;23498:6;23461:17;:44::i;23393:333::-;-1:-1:-1;;;;;23527:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;23550:22:0;;;;;;:11;:22;;;;;;;;23527:45;23523:203;;;23589:48;23611:6;23619:9;23630:6;23589:21;:48::i;23523:203::-;23670:44;23688:6;23696:9;23707:6;23670:17;:44::i;:::-;22637:1096;;;:::o;4907:192::-;4993:7;5029:12;5021:6;;;;5013:29;;;;-1:-1:-1;;;5013:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5013:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5065:5:0;;;4907:192::o;27920:163::-;27961:7;27982:15;27999;28018:19;:17;:19::i;:::-;27981:56;;-1:-1:-1;27981:56:0;-1:-1:-1;28055:20:0;27981:56;;28055:20;:11;:20;:::i;:::-;28048:27;;;;27920:163;:::o;6305:132::-;6363:7;6390:39;6394:1;6397;6390:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6383:46;6305:132;-1:-1:-1;;;6305:132:0:o;4004:181::-;4062:7;4094:5;;;4118:6;;;;4110:46;;;;;-1:-1:-1;;;4110:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;26622:470;26681:7;26690;26699;26708;26717;26726;26747:23;26772:12;26786:13;26803:41;26815:7;17776:3;17826;26803:11;:41::i;:::-;26746:98;;;;;;26855:19;26878:10;:8;:10::i;:::-;26855:33;;26900:15;26917:23;26942:12;26958:46;26970:7;26979:4;26985:5;26992:11;26958;:46::i;:::-;26899:105;;-1:-1:-1;26899:105:0;-1:-1:-1;26899:105:0;-1:-1:-1;27055:15:0;;-1:-1:-1;27072:4:0;;-1:-1:-1;27078:5:0;;-1:-1:-1;;;;;26622:470:0;;;;;;;:::o;4468:136::-;4526:7;4553:43;4557:1;4560;4553:43;;;;;;;;;;;;;;;;;:3;:43::i;24984:632::-;25086:19;25109:10;:8;:10::i;:::-;25086:33;;25131:15;25148:23;25173:12;25187:23;25212:12;25226:13;25243:19;25254:7;25243:10;:19::i;:::-;25130:132;;;;;;;;;;;;25273:13;25290:22;25300:11;25290:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;25341:15:0;;;;;;:7;:15;;;;;;25273:39;;-1:-1:-1;25341:28:0;;25361:7;25341:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;25323:15:0;;;;;;:7;:15;;;;;;;;:46;;;;25398:7;:15;;;;:28;;25418:7;25398:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;25380:15:0;;;;;;;:7;:15;;;;;;:46;;;;25458:18;;;;;;;:39;;25481:15;25458:39;:22;:39;:::i;:::-;-1:-1:-1;;;;;25437:18:0;;;;;;:7;:18;;;;;:60;25511:37;25523:4;25529:5;25536:4;25542:5;25511:11;:37::i;:::-;25581:9;-1:-1:-1;;;;;25564:44:0;25573:6;-1:-1:-1;;;;;25564:44:0;;25592:15;25564:44;;;;;;;;;;;;;;;;;;24984:632;;;;;;;;;;;:::o;24324:652::-;24424:19;24447:10;:8;:10::i;:::-;24424:33;;24469:15;24486:23;24511:12;24525:23;24550:12;24564:13;24581:19;24592:7;24581:10;:19::i;:::-;24468:132;;;;;;;;;;;;24611:13;24628:22;24638:11;24628:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;24679:15:0;;;;;;:7;:15;;;;;;24611:39;;-1:-1:-1;24679:28:0;;24699:7;24679:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;24661:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;24739:18;;;;;:7;:18;;;;;:39;;24762:15;24739:39;:22;:39;:::i;:::-;-1:-1:-1;;;;;24718:18:0;;;;;;:7;:18;;;;;;;;:60;;;;24810:7;:18;;;;:39;;24833:15;24810:39;:22;:39;:::i;23741:575::-;23839:19;23862:10;:8;:10::i;:::-;23839:33;;23884:15;23901:23;23926:12;23940:23;23965:12;23979:13;23996:19;24007:7;23996:10;:19::i;:::-;23883:132;;;;;;;;;;;;24026:13;24043:22;24053:11;24043:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;24094:15:0;;;;;;:7;:15;;;;;;24026:39;;-1:-1:-1;24094:28:0;;24114:7;24094:28;:19;:28;:::i;25624:708::-;25726:19;25749:10;:8;:10::i;:::-;25726:33;;25771:15;25788:23;25813:12;25827:23;25852:12;25866:13;25883:19;25894:7;25883:10;:19::i;:::-;25770:132;;;;;;;;;;;;25913:13;25930:22;25940:11;25930:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;25981:15:0;;;;;;:7;:15;;;;;;25913:39;;-1:-1:-1;25981:28:0;;26001:7;25981:28;:19;:28;:::i;:::-;-1:-1:-1;;;;;25963:15:0;;;;;;:7;:15;;;;;;;;:46;;;;26038:7;:15;;;;:28;;26058:7;26038:28;:19;:28;:::i;28091:561::-;28188:7;;28224;;28141;;;;;28248:289;28272:9;:16;28268:20;;28248:289;;;28338:7;28314;:21;28322:9;28332:1;28322:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28322:12:0;28314:21;;;;;;;;;;;;;:31;;:66;;;28373:7;28349;:21;28357:9;28367:1;28357:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28357:12:0;28349:21;;;;;;;;;;;;;:31;28314:66;28310:97;;;28390:7;;28399;;28382:25;;;;;;;;;28310:97;28432:34;28444:7;:21;28452:9;28462:1;28452:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28452:12:0;28444:21;;;;;;;;;;;;;28432:7;;:34;:11;:34;:::i;:::-;28422:44;;28491:34;28503:7;:21;28511:9;28521:1;28511:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28511:12:0;28503:21;;;;;;;;;;;;;28491:7;;:34;:11;:34;:::i;:::-;28481:44;-1:-1:-1;28290:3:0;;28248:289;;;-1:-1:-1;28573:7:0;;28561;;:20;;;:11;:20;:::i;:::-;28551:7;:30;28547:61;;;28591:7;;28600;;28583:25;;;;;;;;28547:61;28627:7;;-1:-1:-1;28636:7:0;-1:-1:-1;28091:561:0;;;:::o;6933:278::-;7019:7;7054:12;7047:5;7039:28;;;;-1:-1:-1;;;7039:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;7039:28:0;;7078:9;7094:1;7090;:5;;;;;;;6933:278;-1:-1:-1;;;;;6933:278:0:o;27100:395::-;27193:7;;;;27246:50;27292:3;27247:39;27292:3;27247:39;27248:7;27260:6;27248:19;:11;:19;:::i;:::-;27247:25;:39;:25;:39;:::i;27246:50::-;27231:65;-1:-1:-1;27307:13:0;27323:51;27370:3;27324:40;27370:3;27324:40;27325:7;27337;27325:20;:11;:20;:::i;27323:51::-;27307:67;-1:-1:-1;27385:23:0;27411:28;27307:67;27411:17;:7;27423:4;27411:17;:11;:17;:::i;:::-;:21;:28;:21;:28;:::i;:::-;27385:54;27475:4;;-1:-1:-1;27481:5:0;;-1:-1:-1;27100:395:0;;-1:-1:-1;;;;;27100:395:0:o;27503:409::-;27613:7;;;;27669:24;:7;27681:11;27669:24;:11;:24;:::i;:::-;27651:42;-1:-1:-1;27704:12:0;27719:21;:4;27728:11;27719:21;:8;:21;:::i;:::-;27704:36;-1:-1:-1;27751:13:0;27767:22;:5;27777:11;27767:22;:9;:22;:::i;:::-;27751:38;-1:-1:-1;27800:23:0;27826:28;27751:38;27826:17;:7;27838:4;27826:17;:11;:17;:::i;:28::-;27873:7;;;;-1:-1:-1;27899:4:0;;-1:-1:-1;27503:409:0;;-1:-1:-1;;;;;;;27503:409:0:o;5358:471::-;5416:7;5661:6;5657:47;;-1:-1:-1;5691:1:0;5684:8;;5657:47;5728:5;;;5732:1;5728;:5;:1;5752:5;;;;;:10;5744:56;;;;-1:-1:-1;;;5744:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26340:274;26448:28;26470:5;26448:17;26460:4;26448:7;;:11;;:17;;;;:::i;:28::-;26438:7;:38;26500:10;;:20;;26515:4;26500:20;:14;:20;:::i;:::-;26487:10;:33;26545:11;;:22;;26561:5;26545:22;:15;:22;:::i;:::-;26531:11;:36;26588:7;;:18;;26600:5;26588:18;:11;:18;:::i;:::-;26578:7;:28;-1:-1:-1;;;;26340:274:0:o

Swarm Source

ipfs://01d56a1c319ec2c9aedeff717a2ad16c9194cbc5acd0d3097d7d09d976fb9691
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.