ETH Price: $3,385.52 (-0.28%)
Gas: 2 Gwei

Token

Mythic Finance (MYTHIC)
 

Overview

Max Total Supply

10,000 MYTHIC

Holders

166 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
36.024949638200748337 MYTHIC

Value
$0.00
0x548fa359b0efd820f93e43e2a3688b31765a55fc
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A Deflationary MEME & NFT experiment on Ethereum.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MYTHIC

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-01-25
*/

// 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 MYTHIC 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 = 'Mythic Finance';
    string  private constant _SYMBOL = 'MYTHIC';
    uint8   private constant _DECIMALS = 18;
   
    uint256 private constant _MAX = ~uint256(0);
    uint256 private constant _DECIMALFACTOR = 10 ** uint256(_DECIMALS);
    uint256 private constant _GRANULARITY = 100;
    
    uint256 private _tTotal = 10000 * _DECIMALFACTOR;
    uint256 private _rTotal = (_MAX - (_MAX % _tTotal));
    
    uint256 private _tFeeTotal;
    uint256 private _tBurnTotal;
    
    //Treasure Reward Rate * 100
    uint256 private constant _TAX_FEE = 750;
    
    
    //Burn is DISABLED in this Contract & Rewards are consumed by the ever expanding wormhole
    uint256 private constant _BURN_FEE = 0;
    
    //Whale Protection - Max BUY/SELL of 50 MYTHIC per TX
    uint256 private constant _MAX_TX_SIZE = 50 * _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) {
        uint256 supplyTotal = (_tTotal);
        return supplyTotal;
    }

    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 treasureFarmed() public view returns (uint256) {
        uint256 totalFarmed = (_tFeeTotal/10 ** 18);
        return totalFarmed;
    }
    
    function wormholeSize() public view returns (uint256) {
        address wormhole = 0x000000000000000000000000000000000000dEaD;
        uint256 holebalance = balanceOf(wormhole);
        uint256 holesize = (holebalance/10 ** 18);
        return holesize;
    }
    
    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 maxTradeSize() public view returns(uint256) {
        uint256 txSize = (_MAX_TX_SIZE/10 ** 18);
        return txSize;
    }
    
    

}

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":"maxTradeSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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"},{"inputs":[],"name":"treasureFarmed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wormholeSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

608060405269021e19e0c9bab2400000600655690200b25812c4f53fffff1960075534801561002d57600080fd5b506000610038610105565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060075460016000610091610105565b6001600160a01b031681526020810191909152604001600020556100b3610105565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6006546040518082815260200191505060405180910390a3610109565b3390565b611c7280620001196000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063a9059cbb1161007c578063a9059cbb146103a8578063cba0e996146103d4578063dd62ed3e146103fa578063f2cc0c1814610428578063f2fde38b1461044e578063f84354f1146104745761014d565b8063715018a61461033857806378f19a6014610340578063829a85ba146103485780638da5cb5b1461035057806395d89b4114610374578063a457c2d71461037c5761014d565b80632d838119116101155780632d83811914610267578063313ce5671461028457806339509351146102a25780633bd5d173146102ce5780634549b039146102ed57806370a08231146103125761014d565b806306fdde0314610152578063095ea7b3146101cf57806310fa79e21461020f57806318160ddd1461022957806323b872dd14610231575b600080fd5b61015a61049a565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019457818101518382015260200161017c565b50505050905090810190601f1680156101c15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101fb600480360360408110156101e557600080fd5b506001600160a01b0381351690602001356104c2565b604080519115158252519081900360200190f35b6102176104e0565b60408051918252519081900360200190f35b6102176104fe565b6101fb6004803603606081101561024757600080fd5b506001600160a01b03813581169160208101359091169060400135610504565b6102176004803603602081101561027d57600080fd5b503561058b565b61028c6105ed565b6040805160ff9092168252519081900360200190f35b6101fb600480360360408110156102b857600080fd5b506001600160a01b0381351690602001356105f2565b6102eb600480360360208110156102e457600080fd5b5035610640565b005b6102176004803603604081101561030357600080fd5b5080359060200135151561071a565b6102176004803603602081101561032857600080fd5b50356001600160a01b03166107ac565b6102eb61080e565b6102176108b0565b6102176108d1565b6103586108e7565b604080516001600160a01b039092168252519081900360200190f35b61015a6108f6565b6101fb6004803603604081101561039257600080fd5b506001600160a01b038135169060200135610916565b6101fb600480360360408110156103be57600080fd5b506001600160a01b03813516906020013561097e565b6101fb600480360360208110156103ea57600080fd5b50356001600160a01b0316610992565b6102176004803603604081101561041057600080fd5b506001600160a01b03813581169160200135166109b0565b6102eb6004803603602081101561043e57600080fd5b50356001600160a01b03166109db565b6102eb6004803603602081101561046457600080fd5b50356001600160a01b0316610bbd565b6102eb6004803603602081101561048a57600080fd5b50356001600160a01b0316610cb5565b60408051808201909152600e81526d4d79746869632046696e616e636560901b602082015290565b60006104d66104cf610e76565b8484610e7a565b5060015b92915050565b600080670de0b6b3a76400006802b5e3af16b18800005b0491505090565b60065490565b6000610511848484610f66565b6105818461051d610e76565b61057c85604051806060016040528060288152602001611b10602891396001600160a01b038a1660009081526003602052604081209061055b610e76565b6001600160a01b031681526020810191909152604001600020549190611217565b610e7a565b5060019392505050565b60006007548211156105ce5760405162461bcd60e51b815260040180806020018281038252602a815260200180611a55602a913960400191505060405180910390fd5b60006105d86112ae565b90506105e483826112d1565b9150505b919050565b601290565b60006104d66105ff610e76565b8461057c8560036000610610610e76565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061131a565b600061064a610e76565b6001600160a01b03811660009081526004602052604090205490915060ff16156106a55760405162461bcd60e51b815260040180806020018281038252602c815260200180611bec602c913960400191505060405180910390fd5b60006106b083611374565b505050506001600160a01b0384166000908152600160205260409020549192506106dc919050826113d0565b6001600160a01b03831660009081526001602052604090205560075461070290826113d0565b600755600854610712908461131a565b600855505050565b6000600654831115610773576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161079257600061078384611374565b509395506104da945050505050565b600061079d84611374565b509295506104da945050505050565b6001600160a01b03811660009081526004602052604081205460ff16156107ec57506001600160a01b0381166000908152600260205260409020546105e8565b6001600160a01b0382166000908152600160205260409020546104da9061058b565b610816610e76565b6000546001600160a01b03908116911614610866576040805162461bcd60e51b81526020600482018190526024820152600080516020611b38833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600061dead816108bf826107ac565b670de0b6b3a764000090049392505050565b600080670de0b6b3a7640000600854816104f757fe5b6000546001600160a01b031690565b6040805180820190915260068152654d595448494360d01b602082015290565b60006104d6610923610e76565b8461057c85604051806060016040528060258152602001611c18602591396003600061094d610e76565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611217565b60006104d661098b610e76565b8484610f66565b6001600160a01b031660009081526004602052604090205460ff1690565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6109e3610e76565b6000546001600160a01b03908116911614610a33576040805162461bcd60e51b81526020600482018190526024820152600080516020611b38833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610a8f5760405162461bcd60e51b8152600401808060200182810382526022815260200180611bca6022913960400191505060405180910390fd5b6001600160a01b03811660009081526004602052604090205460ff1615610afd576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610b57576001600160a01b038116600090815260016020526040902054610b3d9061058b565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610bc5610e76565b6000546001600160a01b03908116911614610c15576040805162461bcd60e51b81526020600482018190526024820152600080516020611b38833981519152604482015290519081900360640190fd5b6001600160a01b038116610c5a5760405162461bcd60e51b8152600401808060200182810382526026815260200180611a7f6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610cbd610e76565b6000546001600160a01b03908116911614610d0d576040805162461bcd60e51b81526020600482018190526024820152600080516020611b38833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610d7a576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600554811015610e7257816001600160a01b031660058281548110610d9e57fe5b6000918252602090912001546001600160a01b03161415610e6a57600580546000198101908110610dcb57fe5b600091825260209091200154600580546001600160a01b039092169183908110610df157fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610e4357fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e72565b600101610d7d565b5050565b3390565b6001600160a01b038316610ebf5760405162461bcd60e51b8152600401808060200182810382526024815260200180611ba66024913960400191505060405180910390fd5b6001600160a01b038216610f045760405162461bcd60e51b8152600401808060200182810382526022815260200180611aa56022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610fab5760405162461bcd60e51b8152600401808060200182810382526025815260200180611b816025913960400191505060405180910390fd5b6001600160a01b038216610ff05760405162461bcd60e51b8152600401808060200182810382526023815260200180611a326023913960400191505060405180910390fd5b6000811161102f5760405162461bcd60e51b8152600401808060200182810382526029815260200180611b586029913960400191505060405180910390fd5b6110376108e7565b6001600160a01b0316836001600160a01b031614158015611071575061105b6108e7565b6001600160a01b0316826001600160a01b031614155b156110be576802b5e3af16b18800008111156110be5760405162461bcd60e51b8152600401808060200182810382526028815260200180611ac76028913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff1680156110ff57506001600160a01b03821660009081526004602052604090205460ff16155b156111145761110f838383611412565b611212565b6001600160a01b03831660009081526004602052604090205460ff1615801561115557506001600160a01b03821660009081526004602052604090205460ff165b156111655761110f838383611552565b6001600160a01b03831660009081526004602052604090205460ff161580156111a757506001600160a01b03821660009081526004602052604090205460ff16155b156111b75761110f83838361161c565b6001600160a01b03831660009081526004602052604090205460ff1680156111f757506001600160a01b03821660009081526004602052604090205460ff165b156112075761110f838383611681565b61121283838361161c565b505050565b600081848411156112a65760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561126b578181015183820152602001611253565b50505050905090810190601f1680156112985780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006112bb611715565b90925090506112ca82826112d1565b9250505090565b600061131383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611878565b9392505050565b600082820183811015611313576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006113908a6102ee60006118dd565b92509250925060006113a06112ae565b905060008060006113b38e878787611936565b919e509c509a509598509396509194505050505091939550919395565b600061131383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611217565b600061141c6112ae565b905060008060008060008061143088611374565b9550955095509550955095506000611451888361198690919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150611477908a6113d0565b6001600160a01b038c166000908152600260209081526040808320939093556001905220546114a690886113d0565b6001600160a01b03808d1660009081526001602052604080822093909355908c16815220546114d5908761131a565b6001600160a01b038b166000908152600160205260409020556114fa858285856119df565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b600061155c6112ae565b905060008060008060008061157088611374565b9550955095509550955095506000611591888361198690919063ffffffff16565b6001600160a01b038c166000908152600160205260409020549091506115b790886113d0565b6001600160a01b03808d16600090815260016020908152604080832094909455918d168152600290915220546115ed908561131a565b6001600160a01b038b166000908152600260209081526040808320939093556001905220546114d5908761131a565b60006116266112ae565b905060008060008060008061163a88611374565b955095509550955095509550600061165b888361198690919063ffffffff16565b6001600160a01b038c166000908152600160205260409020549091506114a690886113d0565b600061168b6112ae565b905060008060008060008061169f88611374565b95509550955095509550955060006116c0888361198690919063ffffffff16565b6001600160a01b038c166000908152600260205260409020549091506116e6908a6113d0565b6001600160a01b038c166000908152600260209081526040808320939093556001905220546115b790886113d0565b6007546006546000918291825b6005548110156118465782600160006005848154811061173e57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806117a3575081600260006005848154811061177c57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156117ba5760075460065494509450505050611874565b6117fa60016000600584815481106117ce57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906113d0565b925061183c600260006005848154811061181057fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906113d0565b9150600101611722565b50600654600754611856916112d1565b82101561186e57600754600654935093505050611874565b90925090505b9091565b600081836118c75760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561126b578181015183820152602001611253565b5060008385816118d357fe5b0495945050505050565b60008080806118f960646118f381818b8b611986565b906112d1565b9050600061190e60646118f381818c8b611986565b90506000611926826119208b866113d0565b906113d0565b9992985090965090945050505050565b60008080806119458886611986565b905060006119538887611986565b905060006119618888611986565b905060006119738261192086866113d0565b939b939a50919850919650505050505050565b600082611995575060006104da565b828202828482816119a257fe5b04146113135760405162461bcd60e51b8152600401808060200182810382526021815260200180611aef6021913960400191505060405180910390fd5b6119f883611920866007546113d090919063ffffffff16565b600755600854611a08908361131a565b600855600954611a18908261131a565b600955600654611a2890826113d0565b6006555050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220498cd8826865cc09e70b71d45eba204b4f41549c5a06c313aa18e678766983a464736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063a9059cbb1161007c578063a9059cbb146103a8578063cba0e996146103d4578063dd62ed3e146103fa578063f2cc0c1814610428578063f2fde38b1461044e578063f84354f1146104745761014d565b8063715018a61461033857806378f19a6014610340578063829a85ba146103485780638da5cb5b1461035057806395d89b4114610374578063a457c2d71461037c5761014d565b80632d838119116101155780632d83811914610267578063313ce5671461028457806339509351146102a25780633bd5d173146102ce5780634549b039146102ed57806370a08231146103125761014d565b806306fdde0314610152578063095ea7b3146101cf57806310fa79e21461020f57806318160ddd1461022957806323b872dd14610231575b600080fd5b61015a61049a565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561019457818101518382015260200161017c565b50505050905090810190601f1680156101c15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101fb600480360360408110156101e557600080fd5b506001600160a01b0381351690602001356104c2565b604080519115158252519081900360200190f35b6102176104e0565b60408051918252519081900360200190f35b6102176104fe565b6101fb6004803603606081101561024757600080fd5b506001600160a01b03813581169160208101359091169060400135610504565b6102176004803603602081101561027d57600080fd5b503561058b565b61028c6105ed565b6040805160ff9092168252519081900360200190f35b6101fb600480360360408110156102b857600080fd5b506001600160a01b0381351690602001356105f2565b6102eb600480360360208110156102e457600080fd5b5035610640565b005b6102176004803603604081101561030357600080fd5b5080359060200135151561071a565b6102176004803603602081101561032857600080fd5b50356001600160a01b03166107ac565b6102eb61080e565b6102176108b0565b6102176108d1565b6103586108e7565b604080516001600160a01b039092168252519081900360200190f35b61015a6108f6565b6101fb6004803603604081101561039257600080fd5b506001600160a01b038135169060200135610916565b6101fb600480360360408110156103be57600080fd5b506001600160a01b03813516906020013561097e565b6101fb600480360360208110156103ea57600080fd5b50356001600160a01b0316610992565b6102176004803603604081101561041057600080fd5b506001600160a01b03813581169160200135166109b0565b6102eb6004803603602081101561043e57600080fd5b50356001600160a01b03166109db565b6102eb6004803603602081101561046457600080fd5b50356001600160a01b0316610bbd565b6102eb6004803603602081101561048a57600080fd5b50356001600160a01b0316610cb5565b60408051808201909152600e81526d4d79746869632046696e616e636560901b602082015290565b60006104d66104cf610e76565b8484610e7a565b5060015b92915050565b600080670de0b6b3a76400006802b5e3af16b18800005b0491505090565b60065490565b6000610511848484610f66565b6105818461051d610e76565b61057c85604051806060016040528060288152602001611b10602891396001600160a01b038a1660009081526003602052604081209061055b610e76565b6001600160a01b031681526020810191909152604001600020549190611217565b610e7a565b5060019392505050565b60006007548211156105ce5760405162461bcd60e51b815260040180806020018281038252602a815260200180611a55602a913960400191505060405180910390fd5b60006105d86112ae565b90506105e483826112d1565b9150505b919050565b601290565b60006104d66105ff610e76565b8461057c8560036000610610610e76565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061131a565b600061064a610e76565b6001600160a01b03811660009081526004602052604090205490915060ff16156106a55760405162461bcd60e51b815260040180806020018281038252602c815260200180611bec602c913960400191505060405180910390fd5b60006106b083611374565b505050506001600160a01b0384166000908152600160205260409020549192506106dc919050826113d0565b6001600160a01b03831660009081526001602052604090205560075461070290826113d0565b600755600854610712908461131a565b600855505050565b6000600654831115610773576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161079257600061078384611374565b509395506104da945050505050565b600061079d84611374565b509295506104da945050505050565b6001600160a01b03811660009081526004602052604081205460ff16156107ec57506001600160a01b0381166000908152600260205260409020546105e8565b6001600160a01b0382166000908152600160205260409020546104da9061058b565b610816610e76565b6000546001600160a01b03908116911614610866576040805162461bcd60e51b81526020600482018190526024820152600080516020611b38833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600061dead816108bf826107ac565b670de0b6b3a764000090049392505050565b600080670de0b6b3a7640000600854816104f757fe5b6000546001600160a01b031690565b6040805180820190915260068152654d595448494360d01b602082015290565b60006104d6610923610e76565b8461057c85604051806060016040528060258152602001611c18602591396003600061094d610e76565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611217565b60006104d661098b610e76565b8484610f66565b6001600160a01b031660009081526004602052604090205460ff1690565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6109e3610e76565b6000546001600160a01b03908116911614610a33576040805162461bcd60e51b81526020600482018190526024820152600080516020611b38833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610a8f5760405162461bcd60e51b8152600401808060200182810382526022815260200180611bca6022913960400191505060405180910390fd5b6001600160a01b03811660009081526004602052604090205460ff1615610afd576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610b57576001600160a01b038116600090815260016020526040902054610b3d9061058b565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610bc5610e76565b6000546001600160a01b03908116911614610c15576040805162461bcd60e51b81526020600482018190526024820152600080516020611b38833981519152604482015290519081900360640190fd5b6001600160a01b038116610c5a5760405162461bcd60e51b8152600401808060200182810382526026815260200180611a7f6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610cbd610e76565b6000546001600160a01b03908116911614610d0d576040805162461bcd60e51b81526020600482018190526024820152600080516020611b38833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610d7a576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600554811015610e7257816001600160a01b031660058281548110610d9e57fe5b6000918252602090912001546001600160a01b03161415610e6a57600580546000198101908110610dcb57fe5b600091825260209091200154600580546001600160a01b039092169183908110610df157fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610e4357fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e72565b600101610d7d565b5050565b3390565b6001600160a01b038316610ebf5760405162461bcd60e51b8152600401808060200182810382526024815260200180611ba66024913960400191505060405180910390fd5b6001600160a01b038216610f045760405162461bcd60e51b8152600401808060200182810382526022815260200180611aa56022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610fab5760405162461bcd60e51b8152600401808060200182810382526025815260200180611b816025913960400191505060405180910390fd5b6001600160a01b038216610ff05760405162461bcd60e51b8152600401808060200182810382526023815260200180611a326023913960400191505060405180910390fd5b6000811161102f5760405162461bcd60e51b8152600401808060200182810382526029815260200180611b586029913960400191505060405180910390fd5b6110376108e7565b6001600160a01b0316836001600160a01b031614158015611071575061105b6108e7565b6001600160a01b0316826001600160a01b031614155b156110be576802b5e3af16b18800008111156110be5760405162461bcd60e51b8152600401808060200182810382526028815260200180611ac76028913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff1680156110ff57506001600160a01b03821660009081526004602052604090205460ff16155b156111145761110f838383611412565b611212565b6001600160a01b03831660009081526004602052604090205460ff1615801561115557506001600160a01b03821660009081526004602052604090205460ff165b156111655761110f838383611552565b6001600160a01b03831660009081526004602052604090205460ff161580156111a757506001600160a01b03821660009081526004602052604090205460ff16155b156111b75761110f83838361161c565b6001600160a01b03831660009081526004602052604090205460ff1680156111f757506001600160a01b03821660009081526004602052604090205460ff165b156112075761110f838383611681565b61121283838361161c565b505050565b600081848411156112a65760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561126b578181015183820152602001611253565b50505050905090810190601f1680156112985780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006112bb611715565b90925090506112ca82826112d1565b9250505090565b600061131383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611878565b9392505050565b600082820183811015611313576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008060008060008060008060006113908a6102ee60006118dd565b92509250925060006113a06112ae565b905060008060006113b38e878787611936565b919e509c509a509598509396509194505050505091939550919395565b600061131383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611217565b600061141c6112ae565b905060008060008060008061143088611374565b9550955095509550955095506000611451888361198690919063ffffffff16565b6001600160a01b038c16600090815260026020526040902054909150611477908a6113d0565b6001600160a01b038c166000908152600260209081526040808320939093556001905220546114a690886113d0565b6001600160a01b03808d1660009081526001602052604080822093909355908c16815220546114d5908761131a565b6001600160a01b038b166000908152600160205260409020556114fa858285856119df565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a35050505050505050505050565b600061155c6112ae565b905060008060008060008061157088611374565b9550955095509550955095506000611591888361198690919063ffffffff16565b6001600160a01b038c166000908152600160205260409020549091506115b790886113d0565b6001600160a01b03808d16600090815260016020908152604080832094909455918d168152600290915220546115ed908561131a565b6001600160a01b038b166000908152600260209081526040808320939093556001905220546114d5908761131a565b60006116266112ae565b905060008060008060008061163a88611374565b955095509550955095509550600061165b888361198690919063ffffffff16565b6001600160a01b038c166000908152600160205260409020549091506114a690886113d0565b600061168b6112ae565b905060008060008060008061169f88611374565b95509550955095509550955060006116c0888361198690919063ffffffff16565b6001600160a01b038c166000908152600260205260409020549091506116e6908a6113d0565b6001600160a01b038c166000908152600260209081526040808320939093556001905220546115b790886113d0565b6007546006546000918291825b6005548110156118465782600160006005848154811061173e57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806117a3575081600260006005848154811061177c57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156117ba5760075460065494509450505050611874565b6117fa60016000600584815481106117ce57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906113d0565b925061183c600260006005848154811061181057fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906113d0565b9150600101611722565b50600654600754611856916112d1565b82101561186e57600754600654935093505050611874565b90925090505b9091565b600081836118c75760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561126b578181015183820152602001611253565b5060008385816118d357fe5b0495945050505050565b60008080806118f960646118f381818b8b611986565b906112d1565b9050600061190e60646118f381818c8b611986565b90506000611926826119208b866113d0565b906113d0565b9992985090965090945050505050565b60008080806119458886611986565b905060006119538887611986565b905060006119618888611986565b905060006119738261192086866113d0565b939b939a50919850919650505050505050565b600082611995575060006104da565b828202828482816119a257fe5b04146113135760405162461bcd60e51b8152600401808060200182810382526021815260200180611aef6021913960400191505060405180910390fd5b6119f883611920866007546113d090919063ffffffff16565b600755600854611a08908361131a565b600855600954611a18908261131a565b600955600654611a2890826113d0565b6006555050505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220498cd8826865cc09e70b71d45eba204b4f41549c5a06c313aa18e678766983a464736f6c634300060c0033

Deployed Bytecode Sourcemap

16827:12489:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18255:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19213:161;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19213:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;29163:136;;;:::i;:::-;;;;;;;;;;;;;;;;18532:141;;;:::i;19382:313::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19382:313:0;;;;;;;;;;;;;;;;;:::i;21588:253::-;;;;;;;;;;;;;;;;-1:-1:-1;21588:253:0;;:::i;18441:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19703:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19703:218:0;;;;;;;;:::i;20759:377::-;;;;;;;;;;;;;;;;-1:-1:-1;20759:377:0;;:::i;:::-;;21144:436;;;;;;;;;;;;;;;;-1:-1:-1;21144:436:0;;;;;;;;;:::i;18681:198::-;;;;;;;;;;;;;;;;-1:-1:-1;18681:198:0;-1:-1:-1;;;;;18681:198:0;;:::i;16273:148::-;;;:::i;20483:264::-;;;:::i;20324:147::-;;;:::i;15631:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;15631:79:0;;;;;;;;;;;;;;18346:87;;;:::i;19929:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19929:269:0;;;;;;;;:::i;18887:167::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18887:167:0;;;;;;;;:::i;20206:110::-;;;;;;;;;;;;;;;;-1:-1:-1;20206:110:0;-1:-1:-1;;;;;20206:110:0;;:::i;19062:143::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19062:143:0;;;;;;;;;;:::i;21849:443::-;;;;;;;;;;;;;;;;-1:-1:-1;21849:443:0;-1:-1:-1;;;;;21849:443:0;;:::i;16576:244::-;;;;;;;;;;;;;;;;-1:-1:-1;16576:244:0;-1:-1:-1;;;;;16576:244:0;;:::i;22300:478::-;;;;;;;;;;;;;;;;-1:-1:-1;22300:478:0;-1:-1:-1;;;;;22300:478:0;;:::i;18255:83::-;18325:5;;;;;;;;;;;;-1:-1:-1;;;18325:5:0;;;;18255:83;:::o;19213:161::-;19288:4;19305:39;19314:12;:10;:12::i;:::-;19328:7;19337:6;19305:8;:39::i;:::-;-1:-1:-1;19362:4:0;19213:161;;;;;:::o;29163:136::-;29207:7;;29258:8;18082:19;29245:21;;;-1:-1:-1;;29163:136:0;:::o;18532:141::-;18628:7;;18532:141;:::o;19382:313::-;19480:4;19497:36;19507:6;19515:9;19526:6;19497:9;:36::i;:::-;19544:121;19553:6;19561:12;:10;:12::i;:::-;19575:89;19613:6;19575:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19575:19:0;;;;;;:11;:19;;;;;;19595:12;:10;:12::i;:::-;-1:-1:-1;;;;;19575:33:0;;;;;;;;;;;;-1:-1:-1;19575:33:0;;;:89;:37;:89::i;:::-;19544:8;:121::i;:::-;-1:-1:-1;19683:4:0;19382:313;;;;;:::o;21588:253::-;21654:7;21693;;21682;:18;;21674:73;;;;-1:-1:-1;;;21674:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21758:19;21781:10;:8;:10::i;:::-;21758:33;-1:-1:-1;21809:24:0;:7;21758:33;21809:11;:24::i;:::-;21802:31;;;21588:253;;;;:::o;18441:83::-;17360:2;18441:83;:::o;19703:218::-;19791:4;19808:83;19817:12;:10;:12::i;:::-;19831:7;19840:50;19879:10;19840:11;:25;19852:12;:10;:12::i;:::-;-1:-1:-1;;;;;19840:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19840:25:0;;;:34;;;;;;;;;;;:38;:50::i;20759:377::-;20811:14;20828:12;:10;:12::i;:::-;-1:-1:-1;;;;;20860:19:0;;;;;;:11;:19;;;;;;20811:29;;-1:-1:-1;20860:19:0;;20859:20;20851:77;;;;-1:-1:-1;;;20851:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20940:15;20964:19;20975:7;20964:10;:19::i;:::-;-1:-1:-1;;;;;;;;;21012:15:0;;;;;;:7;:15;;;;;;20939:44;;-1:-1:-1;21012:28:0;;:15;-1:-1:-1;20939:44:0;21012:19;:28::i;:::-;-1:-1:-1;;;;;20994:15:0;;;;;;:7;:15;;;;;:46;21061:7;;:20;;21073:7;21061:11;:20::i;:::-;21051:7;:30;21105:10;;:23;;21120:7;21105:14;:23::i;:::-;21092:10;:36;-1:-1:-1;;;20759:377:0:o;21144:436::-;21234:7;21273;;21262;:18;;21254:62;;;;;-1:-1:-1;;;21254:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21332:17;21327:246;;21367:15;21391:19;21402:7;21391:10;:19::i;:::-;-1:-1:-1;21366:44:0;;-1:-1:-1;21425:14:0;;-1:-1:-1;;;;;21425:14:0;21327:246;21474:23;21505:19;21516:7;21505:10;:19::i;:::-;-1:-1:-1;21472:52:0;;-1:-1:-1;21539:22:0;;-1:-1:-1;;;;;21539:22:0;18681:198;-1:-1:-1;;;;;18771:20:0;;18747:7;18771:20;;;:11;:20;;;;;;;;18767:49;;;-1:-1:-1;;;;;;18800:16:0;;;;;;:7;:16;;;;;;18793:23;;18767:49;-1:-1:-1;;;;;18854:16:0;;;;;;:7;:16;;;;;;18834: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;20483:264::-;20528:7;20567:42;20528:7;20642:19;20567:42;20642:9;:19::i;:::-;20704:8;20692:20;;;20483:264;-1:-1:-1;;;20483:264:0:o;20324:147::-;20371:7;20391:19;20425:8;20414:10;;:19;;;;15631:79;15669:7;15696:6;-1:-1:-1;;;;;15696:6:0;15631:79;:::o;18346:87::-;18418:7;;;;;;;;;;;;-1:-1:-1;;;18418:7:0;;;;18346:87;:::o;19929:269::-;20022:4;20039:129;20048:12;:10;:12::i;:::-;20062:7;20071:96;20110:15;20071:96;;;;;;;;;;;;;;;;;:11;:25;20083:12;:10;:12::i;:::-;-1:-1:-1;;;;;20071:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;20071:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;18887:167::-;18965:4;18982:42;18992:12;:10;:12::i;:::-;19006:9;19017:6;18982:9;:42::i;20206:110::-;-1:-1:-1;;;;;20288:20:0;20264:4;20288:20;;;:11;:20;;;;;;;;;20206:110::o;19062:143::-;-1:-1:-1;;;;;19170:18:0;;;19143:7;19170:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19062:143::o;21849: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;;;;;;;;;;;;;;;21941:42:::1;-1:-1:-1::0;;;;;21930:53:0;::::1;;;21922:100;;;;-1:-1:-1::0;;;21922:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;22042:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;22041:21;22033:61;;;::::0;;-1:-1:-1;;;22033:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;22108:16:0;::::1;22127:1;22108:16:::0;;;:7:::1;:16;::::0;;;;;:20;22105:108:::1;;-1:-1:-1::0;;;;;22184:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;22164:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;22145:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;22105:108:::1;-1:-1:-1::0;;;;;22223:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;22223:27:0::1;22246:4;22223:27:::0;;::::1;::::0;;;22261:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;22261:23:0::1;::::0;;::::1;::::0;;21849: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;22300: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;;;;;22381:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;22373:60;;;::::0;;-1:-1:-1;;;22373:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;22449:9;22444:327;22468:9;:16:::0;22464:20;::::1;22444:327;;;22526:7;-1:-1:-1::0;;;;;22510:23:0::1;:9;22520:1;22510:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;22510:12:0::1;:23;22506:254;;;22569:9;22579:16:::0;;-1:-1:-1;;22579:20:0;;;22569:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;22554:9:::1;:12:::0;;-1:-1:-1;;;;;22569:31:0;;::::1;::::0;22564:1;;22554:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;22554:46:0::1;-1:-1:-1::0;;;;;22554:46:0;;::::1;;::::0;;22619:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;22658:11:::1;:20:::0;;;;:28;;-1:-1:-1;;22658:28:0::1;::::0;;22705:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;22705:15:0;;;;;-1:-1:-1;;;;;;22705:15:0::1;::::0;;;;;22739:5:::1;;22506:254;22486:3;;22444:327;;;;22300:478:::0;:::o;97:106::-;185:10;97:106;:::o;22786:337::-;-1:-1:-1;;;;;22879:19:0;;22871:68;;;;-1:-1:-1;;;22871:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22958:21:0;;22950:68;;;;-1:-1:-1;;;22950:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23031:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23083:32;;;;;;;;;;;;;;;;;22786:337;;;:::o;23131:1096::-;-1:-1:-1;;;;;23228:20:0;;23220:70;;;;-1:-1:-1;;;23220:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23309:23:0;;23301:71;;;;-1:-1:-1;;;23301:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23400:1;23391:6;:10;23383:64;;;;-1:-1:-1;;;23383:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23481:7;:5;:7::i;:::-;-1:-1:-1;;;;;23471:17:0;:6;-1:-1:-1;;;;;23471:17:0;;;:41;;;;;23505:7;:5;:7::i;:::-;-1:-1:-1;;;;;23492:20:0;:9;-1:-1:-1;;;;;23492:20:0;;;23471:41;23468:134;;;18082:19;23535:22;;;23527:75;;;;-1:-1:-1;;;23527:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23627:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;23651:22:0;;;;;;:11;:22;;;;;;;;23650:23;23627:46;23623:597;;;23690:48;23712:6;23720:9;23731:6;23690:21;:48::i;:::-;23623:597;;;-1:-1:-1;;;;;23761:19:0;;;;;;:11;:19;;;;;;;;23760:20;:46;;;;-1:-1:-1;;;;;;23784:22:0;;;;;;:11;:22;;;;;;;;23760:46;23756:464;;;23823:46;23843:6;23851:9;23862:6;23823:19;:46::i;23756:464::-;-1:-1:-1;;;;;23892:19:0;;;;;;:11;:19;;;;;;;;23891:20;:47;;;;-1:-1:-1;;;;;;23916:22:0;;;;;;:11;:22;;;;;;;;23915:23;23891:47;23887:333;;;23955:44;23973:6;23981:9;23992:6;23955:17;:44::i;23887:333::-;-1:-1:-1;;;;;24021:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;24044:22:0;;;;;;:11;:22;;;;;;;;24021:45;24017:203;;;24083:48;24105:6;24113:9;24124:6;24083:21;:48::i;24017:203::-;24164:44;24182:6;24190:9;24201:6;24164:17;:44::i;:::-;23131:1096;;;:::o;4907:192::-;4993:7;5029:12;5021:6;;;;5013:29;;;;-1:-1:-1;;;5013:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5065:5:0;;;4907:192::o;28414:163::-;28455:7;28476:15;28493;28512:19;:17;:19::i;:::-;28475:56;;-1:-1:-1;28475:56:0;-1:-1:-1;28549:20:0;28475:56;;28549:11;:20::i;:::-;28542:27;;;;28414: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;;;;;;;;;;;;;;;;;;;;;;;;;;;27116:470;27175:7;27184;27193;27202;27211;27220;27241:23;27266:12;27280:13;27297:41;27309:7;17815:3;17969:1;27297:11;:41::i;:::-;27240:98;;;;;;27349:19;27372:10;:8;:10::i;:::-;27349:33;;27394:15;27411:23;27436:12;27452:46;27464:7;27473:4;27479:5;27486:11;27452;:46::i;:::-;27393:105;;-1:-1:-1;27393:105:0;-1:-1:-1;27393:105:0;-1:-1:-1;27549:15:0;;-1:-1:-1;27566:4:0;;-1:-1:-1;27572:5:0;;-1:-1:-1;;;;;27116:470:0;;;;;;;:::o;4468:136::-;4526:7;4553:43;4557:1;4560;4553:43;;;;;;;;;;;;;;;;;:3;:43::i;25478:632::-;25580:19;25603:10;:8;:10::i;:::-;25580:33;;25625:15;25642:23;25667:12;25681:23;25706:12;25720:13;25737:19;25748:7;25737:10;:19::i;:::-;25624:132;;;;;;;;;;;;25767:13;25784:22;25794:11;25784:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;25835:15:0;;;;;;:7;:15;;;;;;25767:39;;-1:-1:-1;25835:28:0;;25855:7;25835:19;:28::i;:::-;-1:-1:-1;;;;;25817:15:0;;;;;;:7;:15;;;;;;;;:46;;;;25892:7;:15;;;;:28;;25912:7;25892:19;:28::i;:::-;-1:-1:-1;;;;;25874:15:0;;;;;;;:7;:15;;;;;;:46;;;;25952:18;;;;;;;:39;;25975:15;25952:22;:39::i;:::-;-1:-1:-1;;;;;25931:18:0;;;;;;:7;:18;;;;;:60;26005:37;26017:4;26023:5;26030:4;26036:5;26005:11;:37::i;:::-;26075:9;-1:-1:-1;;;;;26058:44:0;26067:6;-1:-1:-1;;;;;26058:44:0;;26086:15;26058:44;;;;;;;;;;;;;;;;;;25478:632;;;;;;;;;;;:::o;24818:652::-;24918:19;24941:10;:8;:10::i;:::-;24918:33;;24963:15;24980:23;25005:12;25019:23;25044:12;25058:13;25075:19;25086:7;25075:10;:19::i;:::-;24962:132;;;;;;;;;;;;25105:13;25122:22;25132:11;25122:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;25173:15:0;;;;;;:7;:15;;;;;;25105:39;;-1:-1:-1;25173:28:0;;25193:7;25173:19;:28::i;:::-;-1:-1:-1;;;;;25155:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;25233:18;;;;;:7;:18;;;;;:39;;25256:15;25233:22;:39::i;:::-;-1:-1:-1;;;;;25212:18:0;;;;;;:7;:18;;;;;;;;:60;;;;25304:7;:18;;;;:39;;25327:15;25304:22;:39::i;24235:575::-;24333:19;24356:10;:8;:10::i;:::-;24333:33;;24378:15;24395:23;24420:12;24434:23;24459:12;24473:13;24490:19;24501:7;24490:10;:19::i;:::-;24377:132;;;;;;;;;;;;24520:13;24537:22;24547:11;24537:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;24588:15:0;;;;;;:7;:15;;;;;;24520:39;;-1:-1:-1;24588:28:0;;24608:7;24588:19;:28::i;26118:708::-;26220:19;26243:10;:8;:10::i;:::-;26220:33;;26265:15;26282:23;26307:12;26321:23;26346:12;26360:13;26377:19;26388:7;26377:10;:19::i;:::-;26264:132;;;;;;;;;;;;26407:13;26424:22;26434:11;26424:5;:9;;:22;;;;:::i;:::-;-1:-1:-1;;;;;26475:15:0;;;;;;:7;:15;;;;;;26407:39;;-1:-1:-1;26475:28:0;;26495:7;26475:19;:28::i;:::-;-1:-1:-1;;;;;26457:15:0;;;;;;:7;:15;;;;;;;;:46;;;;26532:7;:15;;;;:28;;26552:7;26532:19;:28::i;28585:561::-;28682:7;;28718;;28635;;;;;28742:289;28766:9;:16;28762:20;;28742:289;;;28832:7;28808;:21;28816:9;28826:1;28816:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28816:12:0;28808:21;;;;;;;;;;;;;:31;;:66;;;28867:7;28843;:21;28851:9;28861:1;28851:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28851:12:0;28843:21;;;;;;;;;;;;;:31;28808:66;28804:97;;;28884:7;;28893;;28876:25;;;;;;;;;28804:97;28926:34;28938:7;:21;28946:9;28956:1;28946:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28946:12:0;28938:21;;;;;;;;;;;;;28926:7;;:11;:34::i;:::-;28916:44;;28985:34;28997:7;:21;29005:9;29015:1;29005:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29005:12:0;28997:21;;;;;;;;;;;;;28985:7;;:11;:34::i;:::-;28975:44;-1:-1:-1;28784:3:0;;28742:289;;;-1:-1:-1;29067:7:0;;29055;;:20;;:11;:20::i;:::-;29045:7;:30;29041:61;;;29085:7;;29094;;29077:25;;;;;;;;29041:61;29121:7;;-1:-1:-1;29130:7:0;-1:-1:-1;28585:561:0;;;:::o;6933:278::-;7019:7;7054:12;7047:5;7039:28;;;;-1:-1:-1;;;7039:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7078:9;7094:1;7090;:5;;;;;;;6933:278;-1:-1:-1;;;;;6933:278:0:o;27594:395::-;27687:7;;;;27740:50;27786:3;27741:39;27786:3;27741:39;27742:7;27754:6;27742:11;:19::i;:::-;27741:25;;:39::i;27740:50::-;27725:65;-1:-1:-1;27801:13:0;27817:51;27864:3;27818:40;27864:3;27818:40;27819:7;27831;27819:11;:20::i;27817:51::-;27801:67;-1:-1:-1;27879:23:0;27905:28;27801:67;27905:17;:7;27917:4;27905:11;:17::i;:::-;:21;;:28::i;:::-;27879:54;27969:4;;-1:-1:-1;27975:5:0;;-1:-1:-1;27594:395:0;;-1:-1:-1;;;;;27594:395:0:o;27997:409::-;28107:7;;;;28163:24;:7;28175:11;28163;:24::i;:::-;28145:42;-1:-1:-1;28198:12:0;28213:21;:4;28222:11;28213:8;:21::i;:::-;28198:36;-1:-1:-1;28245:13:0;28261:22;:5;28271:11;28261:9;:22::i;:::-;28245:38;-1:-1:-1;28294:23:0;28320:28;28245:38;28320:17;:7;28332:4;28320:11;:17::i;:28::-;28367:7;;;;-1:-1:-1;28393:4:0;;-1:-1:-1;27997:409:0;;-1:-1:-1;;;;;;;27997: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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26834:274;26942:28;26964:5;26942:17;26954:4;26942:7;;:11;;:17;;;;:::i;:28::-;26932:7;:38;26994:10;;:20;;27009:4;26994:14;:20::i;:::-;26981:10;:33;27039:11;;:22;;27055:5;27039:15;:22::i;:::-;27025:11;:36;27082:7;;:18;;27094:5;27082:11;:18::i;:::-;27072:7;:28;-1:-1:-1;;;;26834:274:0:o

Swarm Source

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