ETH Price: $2,529.94 (+3.26%)
Gas: 0.9 Gwei

Token

Shiba Food (SHIFOOD)
 

Overview

Max Total Supply

1,000,000,000,000 SHIFOOD

Holders

19

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
ket.eth
Balance
2,528,610,960.264188484 SHIFOOD

Value
$0.00
0xf898f063d22a994ba6943d50a96c2dbc0bd9218c
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:
ShibaFood

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-14
*/

// Shiba Food (SHIFOOD), we as hodlers must purchase this token in order to feed our shibas.

// CMC and CG listing application in place.

// Marketing budget in place

// Limit Buy to remove bots : on

// Liqudity Locked

// Renounced Ownership

// Telegram: https://t.me/ShibaFood

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.12;    

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

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

interface IERC20 {
    /**
     * @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.s
     *
     * 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);
}

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

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

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 address(0);
    }

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

    /**
     * @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 ShibaFood 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;
   
    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 10000000 * 10**5 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = 'Shiba Food';
    string private _symbol = 'SHIFOOD';
    uint8 private _decimals = 9;
    
    uint256 public _maxTxAmount = 10000000 * 10**5 * 10**9;

    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        _tOwned[_msgSender()] = _tTotal;
        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 setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**2
        );
    }

    function reflect(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(!_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 mint(uint256 amount) public onlyOwner returns (bool) {
    _mint(_msgSender(), amount);
    return true;
  }
    
  function _mint(address account, uint256 amount) internal onlyOwner {
    _tTotal = _tTotal.add(amount);
    _tOwned[account] = _tOwned[account].add(amount);
  }


    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 <= _maxTxAmount, "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 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);       
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

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

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

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

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

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

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

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

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

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

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":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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"}],"name":"reflect","outputs":[],"stateMutability":"nonpayable","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":"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"}]

683635c9adc5dea000006006556818ce40f6d0219fffff1960075560c0604052600a60808190526914da1a589848119bdbd960b21b60a0908152620000489160099190620001bf565b506040805180820190915260078082526614d2125193d3d160ca1b60209092019182526200007991600a91620001bf565b50600b805460ff19166009179055683635c9adc5dea00000600c55348015620000a157600080fd5b506000620000ae620001bb565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506007546001600062000109620001bb565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506006546002600062000144620001bb60201b60201c565b6001600160a01b0316815260208101919091526040016000205562000168620001bb565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6006546040518082815260200191505060405180910390a36200025b565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200020257805160ff191683800117855562000232565b8280016001018555821562000232579182015b828111156200023257825182559160200191906001019062000215565b506200024092915062000244565b5090565b5b8082111562000240576000815560010162000245565b611d05806200026b6000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80637d1db4a5116100c3578063cba0e9961161007c578063cba0e996146103f4578063d543dbeb1461041a578063dd62ed3e14610437578063f2cc0c1814610465578063f2fde38b1461048b578063f84354f1146104b157610158565b80637d1db4a51461034b5780638da5cb5b1461035357806395d89b4114610377578063a0712d681461037f578063a457c2d71461039c578063a9059cbb146103c857610158565b80632d838119116101155780632d83811914610291578063313ce567146102ae57806339509351146102cc5780634549b039146102f857806370a082311461031d578063715018a61461034357610158565b8063053ab1821461015d57806306fdde031461017c578063095ea7b3146101f957806313114a9d1461023957806318160ddd1461025357806323b872dd1461025b575b600080fd5b61017a6004803603602081101561017357600080fd5b50356104d7565b005b6101846105af565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101be5781810151838201526020016101a6565b50505050905090810190601f1680156101eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102256004803603604081101561020f57600080fd5b506001600160a01b038135169060200135610645565b604080519115158252519081900360200190f35b610241610663565b60408051918252519081900360200190f35b610241610669565b6102256004803603606081101561027157600080fd5b506001600160a01b0381358116916020810135909116906040013561066f565b610241600480360360208110156102a757600080fd5b50356106f6565b6102b6610758565b6040805160ff9092168252519081900360200190f35b610225600480360360408110156102e257600080fd5b506001600160a01b038135169060200135610761565b6102416004803603604081101561030e57600080fd5b508035906020013515156107af565b6102416004803603602081101561033357600080fd5b50356001600160a01b031661083f565b61017a6108a1565b610241610933565b61035b610939565b604080516001600160a01b039092168252519081900360200190f35b61018461093e565b6102256004803603602081101561039557600080fd5b503561099f565b610225600480360360408110156103b257600080fd5b506001600160a01b038135169060200135610a12565b610225600480360360408110156103de57600080fd5b506001600160a01b038135169060200135610a7a565b6102256004803603602081101561040a57600080fd5b50356001600160a01b0316610a8e565b61017a6004803603602081101561043057600080fd5b5035610aac565b6102416004803603604081101561044d57600080fd5b506001600160a01b0381358116916020013516610b2a565b61017a6004803603602081101561047b57600080fd5b50356001600160a01b0316610b55565b61017a600480360360208110156104a157600080fd5b50356001600160a01b0316610cdb565b61017a600480360360208110156104c757600080fd5b50356001600160a01b0316610dd3565b60006104e1610f94565b6001600160a01b03811660009081526004602052604090205490915060ff161561053c5760405162461bcd60e51b815260040180806020018281038252602c815260200180611c7f602c913960400191505060405180910390fd5b600061054783610f98565b505050506001600160a01b0383166000908152600160205260409020549091506105719082610fe4565b6001600160a01b0383166000908152600160205260409020556007546105979082610fe4565b6007556008546105a7908461102d565b600855505050565b60098054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561063b5780601f106106105761010080835404028352916020019161063b565b820191906000526020600020905b81548152906001019060200180831161061e57829003601f168201915b5050505050905090565b6000610659610652610f94565b8484611087565b5060015b92915050565b60085490565b60065490565b600061067c848484611173565b6106ec84610688610f94565b6106e785604051806060016040528060288152602001611bc5602891396001600160a01b038a166000908152600360205260408120906106c6610f94565b6001600160a01b03168152602081019190915260400160002054919061141d565b611087565b5060019392505050565b60006007548211156107395760405162461bcd60e51b815260040180806020018281038252602a815260200180611b0a602a913960400191505060405180910390fd5b60006107436114b4565b905061074f83826114d7565b9150505b919050565b600b5460ff1690565b600061065961076e610f94565b846106e7856003600061077f610f94565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061102d565b6000600654831115610808576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161082657600061081884610f98565b5092945061065d9350505050565b600061083184610f98565b5091945061065d9350505050565b6001600160a01b03811660009081526004602052604081205460ff161561087f57506001600160a01b038116600090815260026020526040902054610753565b6001600160a01b03821660009081526001602052604090205461065d906106f6565b6108a9610f94565b6000546001600160a01b039081169116146108f9576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b600c5481565b600090565b600a8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561063b5780601f106106105761010080835404028352916020019161063b565b60006109a9610f94565b6000546001600160a01b039081169116146109f9576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b610a0a610a04610f94565b83611519565b506001919050565b6000610659610a1f610f94565b846106e785604051806060016040528060258152602001611cab6025913960036000610a49610f94565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061141d565b6000610659610a87610f94565b8484611173565b6001600160a01b031660009081526004602052604090205460ff1690565b610ab4610f94565b6000546001600160a01b03908116911614610b04576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b610b246064610b1e836006546115c490919063ffffffff16565b906114d7565b600c5550565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610b5d610f94565b6000546001600160a01b03908116911614610bad576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff1615610c1b576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610c75576001600160a01b038116600090815260016020526040902054610c5b906106f6565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610ce3610f94565b6000546001600160a01b03908116911614610d33576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b6001600160a01b038116610d785760405162461bcd60e51b8152600401808060200182810382526026815260200180611b346026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610ddb610f94565b6000546001600160a01b03908116911614610e2b576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610e98576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600554811015610f9057816001600160a01b031660058281548110610ebc57fe5b6000918252602090912001546001600160a01b03161415610f8857600580546000198101908110610ee957fe5b600091825260209091200154600580546001600160a01b039092169183908110610f0f57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610f6157fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610f90565b600101610e9b565b5050565b3390565b6000806000806000806000610fac8861161d565b915091506000610fba6114b4565b90506000806000610fcc8c8686611650565b919e909d50909b509599509397509395505050505050565b600061102683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061141d565b9392505050565b600082820183811015611026576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0383166110cc5760405162461bcd60e51b8152600401808060200182810382526024815260200180611c5b6024913960400191505060405180910390fd5b6001600160a01b0382166111115760405162461bcd60e51b8152600401808060200182810382526022815260200180611b5a6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166111b85760405162461bcd60e51b8152600401808060200182810382526025815260200180611c366025913960400191505060405180910390fd5b6001600160a01b0382166111fd5760405162461bcd60e51b8152600401808060200182810382526023815260200180611ae76023913960400191505060405180910390fd5b6000811161123c5760405162461bcd60e51b8152600401808060200182810382526029815260200180611c0d6029913960400191505060405180910390fd5b611244610939565b6001600160a01b0316836001600160a01b03161415801561127e5750611268610939565b6001600160a01b0316826001600160a01b031614155b156112c457600c548111156112c45760405162461bcd60e51b8152600401808060200182810382526028815260200180611b7c6028913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff16801561130557506001600160a01b03821660009081526004602052604090205460ff16155b1561131a5761131583838361168c565b611418565b6001600160a01b03831660009081526004602052604090205460ff1615801561135b57506001600160a01b03821660009081526004602052604090205460ff165b1561136b576113158383836117a3565b6001600160a01b03831660009081526004602052604090205460ff161580156113ad57506001600160a01b03821660009081526004602052604090205460ff16155b156113bd57611315838383611849565b6001600160a01b03831660009081526004602052604090205460ff1680156113fd57506001600160a01b03821660009081526004602052604090205460ff165b1561140d5761131583838361188a565b611418838383611849565b505050565b600081848411156114ac5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611471578181015183820152602001611459565b50505050905090810190601f16801561149e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006114c16118fa565b90925090506114d082826114d7565b9250505090565b600061102683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611a5d565b611521610f94565b6000546001600160a01b03908116911614611571576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b60065461157e908261102d565b6006556001600160a01b0382166000908152600260205260409020546115a4908261102d565b6001600160a01b0390921660009081526002602052604090209190915550565b6000826115d35750600061065d565b828202828482816115e057fe5b04146110265760405162461bcd60e51b8152600401808060200182810382526021815260200180611ba46021913960400191505060405180910390fd5b6000808061163760026116318660646114d7565b906115c4565b905060006116458583610fe4565b935090915050915091565b600080808061165f87866115c4565b9050600061166d87876115c4565b9050600061167b8383610fe4565b929992985090965090945050505050565b600080600080600061169d86610f98565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506116cd9087610fe4565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546116fc9086610fe4565b6001600160a01b03808a16600090815260016020526040808220939093559089168152205461172b908561102d565b6001600160a01b03881660009081526001602052604090205561174e8382611ac2565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006117b486610f98565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506117e49086610fe4565b6001600160a01b03808a16600090815260016020908152604080832094909455918a1681526002909152205461181a908361102d565b6001600160a01b03881660009081526002602090815260408083209390935560019052205461172b908561102d565b600080600080600061185a86610f98565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506116fc9086610fe4565b600080600080600061189b86610f98565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506118cb9087610fe4565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546117e49086610fe4565b6007546006546000918291825b600554811015611a2b5782600160006005848154811061192357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611988575081600260006005848154811061196157fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561199f5760075460065494509450505050611a59565b6119df60016000600584815481106119b357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490610fe4565b9250611a2160026000600584815481106119f557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390610fe4565b9150600101611907565b50600654600754611a3b916114d7565b821015611a5357600754600654935093505050611a59565b90925090505b9091565b60008183611aac5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611471578181015183820152602001611459565b506000838581611ab857fe5b0495945050505050565b600754611acf9083610fe4565b600755600854611adf908261102d565b600855505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e41e547ed3c100a913cbd0bef53f49615eb05b661e2210b1729d1164c8cea3ab64736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c80637d1db4a5116100c3578063cba0e9961161007c578063cba0e996146103f4578063d543dbeb1461041a578063dd62ed3e14610437578063f2cc0c1814610465578063f2fde38b1461048b578063f84354f1146104b157610158565b80637d1db4a51461034b5780638da5cb5b1461035357806395d89b4114610377578063a0712d681461037f578063a457c2d71461039c578063a9059cbb146103c857610158565b80632d838119116101155780632d83811914610291578063313ce567146102ae57806339509351146102cc5780634549b039146102f857806370a082311461031d578063715018a61461034357610158565b8063053ab1821461015d57806306fdde031461017c578063095ea7b3146101f957806313114a9d1461023957806318160ddd1461025357806323b872dd1461025b575b600080fd5b61017a6004803603602081101561017357600080fd5b50356104d7565b005b6101846105af565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101be5781810151838201526020016101a6565b50505050905090810190601f1680156101eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102256004803603604081101561020f57600080fd5b506001600160a01b038135169060200135610645565b604080519115158252519081900360200190f35b610241610663565b60408051918252519081900360200190f35b610241610669565b6102256004803603606081101561027157600080fd5b506001600160a01b0381358116916020810135909116906040013561066f565b610241600480360360208110156102a757600080fd5b50356106f6565b6102b6610758565b6040805160ff9092168252519081900360200190f35b610225600480360360408110156102e257600080fd5b506001600160a01b038135169060200135610761565b6102416004803603604081101561030e57600080fd5b508035906020013515156107af565b6102416004803603602081101561033357600080fd5b50356001600160a01b031661083f565b61017a6108a1565b610241610933565b61035b610939565b604080516001600160a01b039092168252519081900360200190f35b61018461093e565b6102256004803603602081101561039557600080fd5b503561099f565b610225600480360360408110156103b257600080fd5b506001600160a01b038135169060200135610a12565b610225600480360360408110156103de57600080fd5b506001600160a01b038135169060200135610a7a565b6102256004803603602081101561040a57600080fd5b50356001600160a01b0316610a8e565b61017a6004803603602081101561043057600080fd5b5035610aac565b6102416004803603604081101561044d57600080fd5b506001600160a01b0381358116916020013516610b2a565b61017a6004803603602081101561047b57600080fd5b50356001600160a01b0316610b55565b61017a600480360360208110156104a157600080fd5b50356001600160a01b0316610cdb565b61017a600480360360208110156104c757600080fd5b50356001600160a01b0316610dd3565b60006104e1610f94565b6001600160a01b03811660009081526004602052604090205490915060ff161561053c5760405162461bcd60e51b815260040180806020018281038252602c815260200180611c7f602c913960400191505060405180910390fd5b600061054783610f98565b505050506001600160a01b0383166000908152600160205260409020549091506105719082610fe4565b6001600160a01b0383166000908152600160205260409020556007546105979082610fe4565b6007556008546105a7908461102d565b600855505050565b60098054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561063b5780601f106106105761010080835404028352916020019161063b565b820191906000526020600020905b81548152906001019060200180831161061e57829003601f168201915b5050505050905090565b6000610659610652610f94565b8484611087565b5060015b92915050565b60085490565b60065490565b600061067c848484611173565b6106ec84610688610f94565b6106e785604051806060016040528060288152602001611bc5602891396001600160a01b038a166000908152600360205260408120906106c6610f94565b6001600160a01b03168152602081019190915260400160002054919061141d565b611087565b5060019392505050565b60006007548211156107395760405162461bcd60e51b815260040180806020018281038252602a815260200180611b0a602a913960400191505060405180910390fd5b60006107436114b4565b905061074f83826114d7565b9150505b919050565b600b5460ff1690565b600061065961076e610f94565b846106e7856003600061077f610f94565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061102d565b6000600654831115610808576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161082657600061081884610f98565b5092945061065d9350505050565b600061083184610f98565b5091945061065d9350505050565b6001600160a01b03811660009081526004602052604081205460ff161561087f57506001600160a01b038116600090815260026020526040902054610753565b6001600160a01b03821660009081526001602052604090205461065d906106f6565b6108a9610f94565b6000546001600160a01b039081169116146108f9576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b600c5481565b600090565b600a8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561063b5780601f106106105761010080835404028352916020019161063b565b60006109a9610f94565b6000546001600160a01b039081169116146109f9576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b610a0a610a04610f94565b83611519565b506001919050565b6000610659610a1f610f94565b846106e785604051806060016040528060258152602001611cab6025913960036000610a49610f94565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061141d565b6000610659610a87610f94565b8484611173565b6001600160a01b031660009081526004602052604090205460ff1690565b610ab4610f94565b6000546001600160a01b03908116911614610b04576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b610b246064610b1e836006546115c490919063ffffffff16565b906114d7565b600c5550565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610b5d610f94565b6000546001600160a01b03908116911614610bad576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff1615610c1b576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610c75576001600160a01b038116600090815260016020526040902054610c5b906106f6565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610ce3610f94565b6000546001600160a01b03908116911614610d33576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b6001600160a01b038116610d785760405162461bcd60e51b8152600401808060200182810382526026815260200180611b346026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610ddb610f94565b6000546001600160a01b03908116911614610e2b576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610e98576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600554811015610f9057816001600160a01b031660058281548110610ebc57fe5b6000918252602090912001546001600160a01b03161415610f8857600580546000198101908110610ee957fe5b600091825260209091200154600580546001600160a01b039092169183908110610f0f57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610f6157fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610f90565b600101610e9b565b5050565b3390565b6000806000806000806000610fac8861161d565b915091506000610fba6114b4565b90506000806000610fcc8c8686611650565b919e909d50909b509599509397509395505050505050565b600061102683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061141d565b9392505050565b600082820183811015611026576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0383166110cc5760405162461bcd60e51b8152600401808060200182810382526024815260200180611c5b6024913960400191505060405180910390fd5b6001600160a01b0382166111115760405162461bcd60e51b8152600401808060200182810382526022815260200180611b5a6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166111b85760405162461bcd60e51b8152600401808060200182810382526025815260200180611c366025913960400191505060405180910390fd5b6001600160a01b0382166111fd5760405162461bcd60e51b8152600401808060200182810382526023815260200180611ae76023913960400191505060405180910390fd5b6000811161123c5760405162461bcd60e51b8152600401808060200182810382526029815260200180611c0d6029913960400191505060405180910390fd5b611244610939565b6001600160a01b0316836001600160a01b03161415801561127e5750611268610939565b6001600160a01b0316826001600160a01b031614155b156112c457600c548111156112c45760405162461bcd60e51b8152600401808060200182810382526028815260200180611b7c6028913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff16801561130557506001600160a01b03821660009081526004602052604090205460ff16155b1561131a5761131583838361168c565b611418565b6001600160a01b03831660009081526004602052604090205460ff1615801561135b57506001600160a01b03821660009081526004602052604090205460ff165b1561136b576113158383836117a3565b6001600160a01b03831660009081526004602052604090205460ff161580156113ad57506001600160a01b03821660009081526004602052604090205460ff16155b156113bd57611315838383611849565b6001600160a01b03831660009081526004602052604090205460ff1680156113fd57506001600160a01b03821660009081526004602052604090205460ff165b1561140d5761131583838361188a565b611418838383611849565b505050565b600081848411156114ac5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611471578181015183820152602001611459565b50505050905090810190601f16801561149e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006114c16118fa565b90925090506114d082826114d7565b9250505090565b600061102683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611a5d565b611521610f94565b6000546001600160a01b03908116911614611571576040805162461bcd60e51b81526020600482018190526024820152600080516020611bed833981519152604482015290519081900360640190fd5b60065461157e908261102d565b6006556001600160a01b0382166000908152600260205260409020546115a4908261102d565b6001600160a01b0390921660009081526002602052604090209190915550565b6000826115d35750600061065d565b828202828482816115e057fe5b04146110265760405162461bcd60e51b8152600401808060200182810382526021815260200180611ba46021913960400191505060405180910390fd5b6000808061163760026116318660646114d7565b906115c4565b905060006116458583610fe4565b935090915050915091565b600080808061165f87866115c4565b9050600061166d87876115c4565b9050600061167b8383610fe4565b929992985090965090945050505050565b600080600080600061169d86610f98565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506116cd9087610fe4565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546116fc9086610fe4565b6001600160a01b03808a16600090815260016020526040808220939093559089168152205461172b908561102d565b6001600160a01b03881660009081526001602052604090205561174e8382611ac2565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b60008060008060006117b486610f98565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506117e49086610fe4565b6001600160a01b03808a16600090815260016020908152604080832094909455918a1681526002909152205461181a908361102d565b6001600160a01b03881660009081526002602090815260408083209390935560019052205461172b908561102d565b600080600080600061185a86610f98565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506116fc9086610fe4565b600080600080600061189b86610f98565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506118cb9087610fe4565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546117e49086610fe4565b6007546006546000918291825b600554811015611a2b5782600160006005848154811061192357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611988575081600260006005848154811061196157fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561199f5760075460065494509450505050611a59565b6119df60016000600584815481106119b357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490610fe4565b9250611a2160026000600584815481106119f557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390610fe4565b9150600101611907565b50600654600754611a3b916114d7565b821015611a5357600754600654935093505050611a59565b90925090505b9091565b60008183611aac5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611471578181015183820152602001611459565b506000838581611ab857fe5b0495945050505050565b600754611acf9083610fe4565b600755600854611adf908261102d565b600855505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e41e547ed3c100a913cbd0bef53f49615eb05b661e2210b1729d1164c8cea3ab64736f6c634300060c0033

Deployed Bytecode Sourcemap

15880:10911:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19134:376;;;;;;;;;;;;;;;;-1:-1:-1;19134:376:0;;:::i;:::-;;16836:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17748:161;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17748:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;18859:87;;;:::i;:::-;;;;;;;;;;;;;;;;17113:95;;;:::i;17917:313::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17917:313:0;;;;;;;;;;;;;;;;;:::i;19960:253::-;;;;;;;;;;;;;;;;-1:-1:-1;19960:253:0;;:::i;17022:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18238:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18238:218:0;;;;;;;;:::i;19518:434::-;;;;;;;;;;;;;;;;-1:-1:-1;19518:434:0;;;;;;;;;:::i;17216:198::-;;;;;;;;;;;;;;;;-1:-1:-1;17216:198:0;-1:-1:-1;;;;;17216:198:0;;:::i;15356:118::-;;;:::i;16592:54::-;;;:::i;14710:83::-;;;:::i;:::-;;;;-1:-1:-1;;;;;14710:83:0;;;;;;;;;;;;;;16927:87;;;:::i;21051:120::-;;;;;;;;;;;;;;;;-1:-1:-1;21051:120:0;;:::i;18464:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18464:269:0;;;;;;;;:::i;17422:167::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17422:167:0;;;;;;;;:::i;18741:110::-;;;;;;;;;;;;;;;;-1:-1:-1;18741:110:0;-1:-1:-1;;;;;18741:110:0;;:::i;18964:162::-;;;;;;;;;;;;;;;;-1:-1:-1;18964:162:0;;:::i;17597:143::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17597:143:0;;;;;;;;;;:::i;20221:332::-;;;;;;;;;;;;;;;;-1:-1:-1;20221:332:0;-1:-1:-1;;;;;20221:332:0;;:::i;15629:244::-;;;;;;;;;;;;;;;;-1:-1:-1;15629:244:0;-1:-1:-1;;;;;15629:244:0;;:::i;20561:478::-;;;;;;;;;;;;;;;;-1:-1:-1;20561:478:0;-1:-1:-1;;;;;20561:478:0;;:::i;19134:376::-;19186:14;19203:12;:10;:12::i;:::-;-1:-1:-1;;;;;19235:19:0;;;;;;:11;:19;;;;;;19186:29;;-1:-1:-1;19235:19:0;;19234:20;19226:77;;;;-1:-1:-1;;;19226:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19315:15;19338:19;19349:7;19338:10;:19::i;:::-;-1:-1:-1;;;;;;;;;19386:15:0;;;;;;:7;:15;;;;;;19314:43;;-1:-1:-1;19386:28:0;;19314:43;19386:19;:28::i;:::-;-1:-1:-1;;;;;19368:15:0;;;;;;:7;:15;;;;;:46;19435:7;;:20;;19447:7;19435:11;:20::i;:::-;19425:7;:30;19479:10;;:23;;19494:7;19479:14;:23::i;:::-;19466:10;:36;-1:-1:-1;;;19134:376:0:o;16836:83::-;16906:5;16899:12;;;;;;;;-1:-1:-1;;16899:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16873:13;;16899:12;;16906:5;;16899:12;;16906:5;16899:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16836:83;:::o;17748:161::-;17823:4;17840:39;17849:12;:10;:12::i;:::-;17863:7;17872:6;17840:8;:39::i;:::-;-1:-1:-1;17897:4:0;17748:161;;;;;:::o;18859:87::-;18928:10;;18859:87;:::o;17113:95::-;17193:7;;17113:95;:::o;17917:313::-;18015:4;18032:36;18042:6;18050:9;18061:6;18032:9;:36::i;:::-;18079:121;18088:6;18096:12;:10;:12::i;:::-;18110:89;18148:6;18110:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18110:19:0;;;;;;:11;:19;;;;;;18130:12;:10;:12::i;:::-;-1:-1:-1;;;;;18110:33:0;;;;;;;;;;;;-1:-1:-1;18110:33:0;;;:89;:37;:89::i;:::-;18079:8;:121::i;:::-;-1:-1:-1;18218:4:0;17917:313;;;;;:::o;19960:253::-;20026:7;20065;;20054;:18;;20046:73;;;;-1:-1:-1;;;20046:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20130:19;20153:10;:8;:10::i;:::-;20130:33;-1:-1:-1;20181:24:0;:7;20130:33;20181:11;:24::i;:::-;20174:31;;;19960:253;;;;:::o;17022:83::-;17088:9;;;;17022:83;:::o;18238:218::-;18326:4;18343:83;18352:12;:10;:12::i;:::-;18366:7;18375:50;18414:10;18375:11;:25;18387:12;:10;:12::i;:::-;-1:-1:-1;;;;;18375:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;18375:25:0;;;:34;;;;;;;;;;;:38;:50::i;19518:434::-;19608:7;19647;;19636;:18;;19628:62;;;;;-1:-1:-1;;;19628:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19706:17;19701:244;;19741:15;19764:19;19775:7;19764:10;:19::i;:::-;-1:-1:-1;19740:43:0;;-1:-1:-1;19798:14:0;;-1:-1:-1;;;;19798:14:0;19701:244;19847:23;19877:19;19888:7;19877:10;:19::i;:::-;-1:-1:-1;19845:51:0;;-1:-1:-1;19911:22:0;;-1:-1:-1;;;;19911:22:0;17216:198;-1:-1:-1;;;;;17306:20:0;;17282:7;17306:20;;;:11;:20;;;;;;;;17302:49;;;-1:-1:-1;;;;;;17335:16:0;;;;;;:7;:16;;;;;;17328:23;;17302:49;-1:-1:-1;;;;;17389:16:0;;;;;;:7;:16;;;;;;17369:37;;:19;:37::i;15356:118::-;14936:12;:10;:12::i;:::-;14926:6;;-1:-1:-1;;;;;14926:6:0;;;:22;;;14918:67;;;;;-1:-1:-1;;;14918:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14918:67:0;;;;;;;;;;;;;;;15463:1:::1;15447:6:::0;;15426:40:::1;::::0;-1:-1:-1;;;;;15447:6:0;;::::1;::::0;15426:40:::1;::::0;15463:1;;15426:40:::1;15356:118::o:0;16592:54::-;;;;:::o;14710:83::-;14748:7;14710:83;:::o;16927:87::-;16999:7;16992:14;;;;;;;;-1:-1:-1;;16992:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16966:13;;16992:14;;16999:7;;16992:14;;16999:7;16992:14;;;;;;;;;;;;;;;;;;;;;;;;21051:120;21107:4;14936:12;:10;:12::i;:::-;14926:6;;-1:-1:-1;;;;;14926:6:0;;;:22;;;14918:67;;;;;-1:-1:-1;;;14918:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14918:67:0;;;;;;;;;;;;;;;21120:27:::1;21126:12;:10;:12::i;:::-;21140:6;21120:5;:27::i;:::-;-1:-1:-1::0;21161:4:0::1;21051:120:::0;;;:::o;18464:269::-;18557:4;18574:129;18583:12;:10;:12::i;:::-;18597:7;18606:96;18645:15;18606:96;;;;;;;;;;;;;;;;;:11;:25;18618:12;:10;:12::i;:::-;-1:-1:-1;;;;;18606:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;18606:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17422:167::-;17500:4;17517:42;17527:12;:10;:12::i;:::-;17541:9;17552:6;17517:9;:42::i;18741:110::-;-1:-1:-1;;;;;18823:20:0;18799:4;18823:20;;;:11;:20;;;;;;;;;18741:110::o;18964:162::-;14936:12;:10;:12::i;:::-;14926:6;;-1:-1:-1;;;;;14926:6:0;;;:22;;;14918:67;;;;;-1:-1:-1;;;14918:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14918:67:0;;;;;;;;;;;;;;;19058:60:::1;19102:5;19058:25;19070:12;19058:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;19043:12;:75:::0;-1:-1:-1;18964:162:0:o;17597:143::-;-1:-1:-1;;;;;17705:18:0;;;17678:7;17705:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17597:143::o;20221:332::-;14936:12;:10;:12::i;:::-;14926:6;;-1:-1:-1;;;;;14926:6:0;;;:22;;;14918:67;;;;;-1:-1:-1;;;14918:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14918:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;20303:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;20302:21;20294:61;;;::::0;;-1:-1:-1;;;20294:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;20369:16:0;::::1;20388:1;20369:16:::0;;;:7:::1;:16;::::0;;;;;:20;20366:108:::1;;-1:-1:-1::0;;;;;20445:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;20425:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;20406:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;20366:108:::1;-1:-1:-1::0;;;;;20484:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;20484:27:0::1;20507:4;20484:27:::0;;::::1;::::0;;;20522:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;20522:23:0::1;::::0;;::::1;::::0;;20221:332::o;15629:244::-;14936:12;:10;:12::i;:::-;14926:6;;-1:-1:-1;;;;;14926:6:0;;;:22;;;14918:67;;;;;-1:-1:-1;;;14918:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14918:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;15718:22:0;::::1;15710:73;;;;-1:-1:-1::0;;;15710:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15820:6;::::0;;15799:38:::1;::::0;-1:-1:-1;;;;;15799:38:0;;::::1;::::0;15820:6;::::1;::::0;15799:38:::1;::::0;::::1;15848:6;:17:::0;;-1:-1:-1;;;;;;15848:17:0::1;-1:-1:-1::0;;;;;15848:17:0;;;::::1;::::0;;;::::1;::::0;;15629:244::o;20561:478::-;14936:12;:10;:12::i;:::-;14926:6;;-1:-1:-1;;;;;14926:6:0;;;:22;;;14918:67;;;;;-1:-1:-1;;;14918:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14918:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;20642:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;20634:60;;;::::0;;-1:-1:-1;;;20634:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;20710:9;20705:327;20729:9;:16:::0;20725:20;::::1;20705:327;;;20787:7;-1:-1:-1::0;;;;;20771:23:0::1;:9;20781:1;20771:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;20771:12:0::1;:23;20767:254;;;20830:9;20840:16:::0;;-1:-1:-1;;20840:20:0;;;20830:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;20815:9:::1;:12:::0;;-1:-1:-1;;;;;20830:31:0;;::::1;::::0;20825:1;;20815:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;20815:46:0::1;-1:-1:-1::0;;;;;20815:46:0;;::::1;;::::0;;20880:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;20919:11:::1;:20:::0;;;;:28;;-1:-1:-1;;20919:28:0::1;::::0;;20966:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;20966:15:0;;;;;-1:-1:-1;;;;;;20966:15:0::1;::::0;;;;;21000:5:::1;;20767:254;20747:3;;20705:327;;;;20561:478:::0;:::o;404:106::-;492:10;404:106;:::o;25057:411::-;25116:7;25125;25134;25143;25152;25173:23;25198:12;25214:20;25226:7;25214:11;:20::i;:::-;25172:62;;;;25245:19;25268:10;:8;:10::i;:::-;25245:33;;25290:15;25307:23;25332:12;25348:39;25360:7;25369:4;25375:11;25348;:39::i;:::-;25289:98;;;;-1:-1:-1;25289:98:0;;-1:-1:-1;25438:15:0;;-1:-1:-1;25455:4:0;;-1:-1:-1;25057:411:0;;-1:-1:-1;;;;;;25057:411:0:o;4125:136::-;4183:7;4210:43;4214:1;4217;4210:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4203:50;4125:136;-1:-1:-1;;;4125:136:0:o;3661:181::-;3719:7;3751:5;;;3775:6;;;;3767:46;;;;;-1:-1:-1;;;3767:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;21354:337;-1:-1:-1;;;;;21447:19:0;;21439:68;;;;-1:-1:-1;;;21439:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21526:21:0;;21518:68;;;;-1:-1:-1;;;21518:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21599:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21651:32;;;;;;;;;;;;;;;;;21354:337;;;:::o;21699:1088::-;-1:-1:-1;;;;;21796:20:0;;21788:70;;;;-1:-1:-1;;;21788:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21877:23:0;;21869:71;;;;-1:-1:-1;;;21869:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21968:1;21959:6;:10;21951:64;;;;-1:-1:-1;;;21951:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22039:7;:5;:7::i;:::-;-1:-1:-1;;;;;22029:17:0;:6;-1:-1:-1;;;;;22029:17:0;;;:41;;;;;22063:7;:5;:7::i;:::-;-1:-1:-1;;;;;22050:20:0;:9;-1:-1:-1;;;;;22050:20:0;;;22029:41;22026:132;;;22101:12;;22091:6;:22;;22083:75;;;;-1:-1:-1;;;22083:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22187:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;22211:22:0;;;;;;:11;:22;;;;;;;;22210:23;22187:46;22183:597;;;22250:48;22272:6;22280:9;22291:6;22250:21;:48::i;:::-;22183:597;;;-1:-1:-1;;;;;22321:19:0;;;;;;:11;:19;;;;;;;;22320:20;:46;;;;-1:-1:-1;;;;;;22344:22:0;;;;;;:11;:22;;;;;;;;22320:46;22316:464;;;22383:46;22403:6;22411:9;22422:6;22383:19;:46::i;22316:464::-;-1:-1:-1;;;;;22452:19:0;;;;;;:11;:19;;;;;;;;22451:20;:47;;;;-1:-1:-1;;;;;;22476:22:0;;;;;;:11;:22;;;;;;;;22475:23;22451:47;22447:333;;;22515:44;22533:6;22541:9;22552:6;22515:17;:44::i;22447:333::-;-1:-1:-1;;;;;22581:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;22604:22:0;;;;;;:11;:22;;;;;;;;22581:45;22577:203;;;22643:48;22665:6;22673:9;22684:6;22643:21;:48::i;22577:203::-;22724:44;22742:6;22750:9;22761:6;22724:17;:44::i;:::-;21699:1088;;;:::o;4564:192::-;4650:7;4686:12;4678:6;;;;4670:29;;;;-1:-1:-1;;;4670:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4722:5:0;;;4564:192::o;26056:163::-;26097:7;26118:15;26135;26154:19;:17;:19::i;:::-;26117:56;;-1:-1:-1;26117:56:0;-1:-1:-1;26191:20:0;26117:56;;26191:11;:20::i;:::-;26184:27;;;;26056:163;:::o;5962:132::-;6020:7;6047:39;6051:1;6054;6047:39;;;;;;;;;;;;;;;;;:3;:39::i;21181:163::-;14936:12;:10;:12::i;:::-;14926:6;;-1:-1:-1;;;;;14926:6:0;;;:22;;;14918:67;;;;;-1:-1:-1;;;14918:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14918:67:0;;;;;;;;;;;;;;;21265:7:::1;::::0;:19:::1;::::0;21277:6;21265:11:::1;:19::i;:::-;21255:7;:29:::0;-1:-1:-1;;;;;21310:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;:28:::1;::::0;21331:6;21310:20:::1;:28::i;:::-;-1:-1:-1::0;;;;;21291:16:0;;::::1;;::::0;;;:7:::1;:16;::::0;;;;:47;;;;-1:-1:-1;21181:163:0:o;5015:471::-;5073:7;5318:6;5314:47;;-1:-1:-1;5348:1:0;5341:8;;5314:47;5385:5;;;5389:1;5385;:5;:1;5409:5;;;;;:10;5401:56;;;;-1:-1:-1;;;5401:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25476:230;25536:7;;;25580:23;25601:1;25580:16;:7;25592:3;25580:11;:16::i;:::-;:20;;:23::i;:::-;25565:38;-1:-1:-1;25614:23:0;25640:17;:7;25565:38;25640:11;:17::i;:::-;25614:43;-1:-1:-1;25693:4:0;;-1:-1:-1;;25476:230:0;;;:::o;25714:334::-;25809:7;;;;25865:24;:7;25877:11;25865;:24::i;:::-;25847:42;-1:-1:-1;25900:12:0;25915:21;:4;25924:11;25915:8;:21::i;:::-;25900:36;-1:-1:-1;25947:23:0;25973:17;:7;25900:36;25973:11;:17::i;:::-;26009:7;;;;-1:-1:-1;26035:4:0;;-1:-1:-1;25714:334:0;;-1:-1:-1;;;;;25714:334:0:o;23792:509::-;23895:15;23912:23;23937:12;23951:23;23976:12;23992:19;24003:7;23992:10;:19::i;:::-;-1:-1:-1;;;;;24040:15:0;;;;;;:7;:15;;;;;;23894:117;;-1:-1:-1;23894:117:0;;-1:-1:-1;23894:117:0;;-1:-1:-1;23894:117:0;-1:-1:-1;23894:117:0;-1:-1:-1;24040:28:0;;24060:7;24040:19;:28::i;:::-;-1:-1:-1;;;;;24022:15:0;;;;;;:7;:15;;;;;;;;:46;;;;24097:7;:15;;;;:28;;24117:7;24097:19;:28::i;:::-;-1:-1:-1;;;;;24079:15:0;;;;;;;:7;:15;;;;;;:46;;;;24157:18;;;;;;;:39;;24180:15;24157:22;:39::i;:::-;-1:-1:-1;;;;;24136:18:0;;;;;;:7;:18;;;;;:60;24210:23;24222:4;24228;24210:11;:23::i;:::-;24266:9;-1:-1:-1;;;;;24249:44:0;24258:6;-1:-1:-1;;;;;24249:44:0;;24277:15;24249:44;;;;;;;;;;;;;;;;;;23792:509;;;;;;;;:::o;23255:529::-;23356:15;23373:23;23398:12;23412:23;23437:12;23453:19;23464:7;23453:10;:19::i;:::-;-1:-1:-1;;;;;23501:15:0;;;;;;:7;:15;;;;;;23355:117;;-1:-1:-1;23355:117:0;;-1:-1:-1;23355:117:0;;-1:-1:-1;23355:117:0;-1:-1:-1;23355:117:0;-1:-1:-1;23501:28:0;;23355:117;23501:19;:28::i;:::-;-1:-1:-1;;;;;23483:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;23561:18;;;;;:7;:18;;;;;:39;;23584:15;23561:22;:39::i;:::-;-1:-1:-1;;;;;23540:18:0;;;;;;:7;:18;;;;;;;;:60;;;;23632:7;:18;;;;:39;;23655:15;23632:22;:39::i;22795:452::-;22894:15;22911:23;22936:12;22950:23;22975:12;22991:19;23002:7;22991:10;:19::i;:::-;-1:-1:-1;;;;;23039:15:0;;;;;;:7;:15;;;;;;22893:117;;-1:-1:-1;22893:117:0;;-1:-1:-1;22893:117:0;;-1:-1:-1;22893:117:0;-1:-1:-1;22893:117:0;-1:-1:-1;23039:28:0;;22893:117;23039:19;:28::i;24309:585::-;24412:15;24429:23;24454:12;24468:23;24493:12;24509:19;24520:7;24509:10;:19::i;:::-;-1:-1:-1;;;;;24557:15:0;;;;;;:7;:15;;;;;;24411:117;;-1:-1:-1;24411:117:0;;-1:-1:-1;24411:117:0;;-1:-1:-1;24411:117:0;-1:-1:-1;24411:117:0;-1:-1:-1;24557:28:0;;24577:7;24557:19;:28::i;:::-;-1:-1:-1;;;;;24539:15:0;;;;;;:7;:15;;;;;;;;:46;;;;24614:7;:15;;;;:28;;24634:7;24614:19;:28::i;26227:561::-;26324:7;;26360;;26277;;;;;26384:289;26408:9;:16;26404:20;;26384:289;;;26474:7;26450;:21;26458:9;26468:1;26458:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26458:12:0;26450:21;;;;;;;;;;;;;:31;;:66;;;26509:7;26485;:21;26493:9;26503:1;26493:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26493:12:0;26485:21;;;;;;;;;;;;;:31;26450:66;26446:97;;;26526:7;;26535;;26518:25;;;;;;;;;26446:97;26568:34;26580:7;:21;26588:9;26598:1;26588:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26588:12:0;26580:21;;;;;;;;;;;;;26568:7;;:11;:34::i;:::-;26558:44;;26627:34;26639:7;:21;26647:9;26657:1;26647:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26647:12:0;26639:21;;;;;;;;;;;;;26627:7;;:11;:34::i;:::-;26617:44;-1:-1:-1;26426:3:0;;26384:289;;;-1:-1:-1;26709:7:0;;26697;;:20;;:11;:20::i;:::-;26687:7;:30;26683:61;;;26727:7;;26736;;26719:25;;;;;;;;26683:61;26763:7;;-1:-1:-1;26772:7:0;-1:-1:-1;26227:561:0;;;:::o;6590:278::-;6676:7;6711:12;6704:5;6696:28;;;;-1:-1:-1;;;6696:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6735:9;6751:1;6747;:5;;;;;;;6590:278;-1:-1:-1;;;;;6590:278:0:o;24902:147::-;24980:7;;:17;;24992:4;24980:11;:17::i;:::-;24970:7;:27;25021:10;;:20;;25036:4;25021:14;:20::i;:::-;25008:10;:33;-1:-1:-1;;24902:147:0:o

Swarm Source

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