ETH Price: $2,515.68 (-1.07%)

Token

Ape Inu (APE)
 

Overview

Max Total Supply

1,000,000,000,000 APE

Holders

8

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,087,895,106.430836702625354372 APE

Value
$0.00
0x6af92b8573e9bf8fcba222a38cb97802974fede4
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:
ApeInu

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-19
*/

// File: contracts/ape_contract.sol

/**
telegram: tbd
*/


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.
     *
     * 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 _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 ApeInu 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 constant _tTotal = 1000000 * 10**6 * 10**18;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = 'Ape Inu';
    string private _symbol = 'APE';
    uint8 private _decimals = 18;

    address dev = 0x669F5E1ad53184319c275feDE9b4550Eab819813;
    address burn = 0x000000000000000000000000000000000000dEaD;

    uint256 public _maxTxAmount = _tTotal;

    constructor () public {
        _rOwned[_msgSender()] = _rTotal;
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

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

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function isExcluded(address account) public view returns (bool) {
        return _isExcluded[account];
    }

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

    function 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 _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(sender == dev && recipient == burn) {
            _transferBurn(sender, recipient, amount);
        } else 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 _transferBurn(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].add(rAmount);
        _rOwned[recipient] = _rOwned[recipient].sub(rTransferAmount);
        _reflectFee(rFee, tFee);
    }

    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(7);
        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":[],"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":[],"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"}]

6c0815c6278fccd683bfbfffffff1960065560c0604052600760808190526641706520496e7560c81b60a09081526200003c9160089190620001bd565b506040805180820190915260038082526241504560e81b60209092019182526200006991600991620001bd565b50600a8054601260ff1990911617610100600160a81b03191674669f5e1ad53184319c275fede9b4550eab81981300179055600b805461dead6001600160a01b03199091161790556c0c9f2c9cd04674edea40000000600c55348015620000cf57600080fd5b506000620000dc620001b9565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506006546001600062000137620001b9565b6001600160a01b031681526020810191909152604001600020556200015b620001b9565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6c0c9f2c9cd04674edea400000006040518082815260200191505060405180910390a362000259565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200020057805160ff191683800117855562000230565b8280016001018555821562000230579182015b828111156200023057825182559160200191906001019062000213565b506200023e92915062000242565b5090565b5b808211156200023e576000815560010162000243565b611c5180620002696000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063a9059cbb1161007c578063a9059cbb14610395578063cba0e996146103c1578063dd62ed3e146103e7578063f2cc0c1814610415578063f2fde38b1461043b578063f84354f11461046157610142565b8063715018a61461032d5780637d1db4a5146103355780638da5cb5b1461033d57806395d89b4114610361578063a457c2d71461036957610142565b806323b872dd1161010a57806323b872dd146102455780632d8381191461027b578063313ce5671461029857806339509351146102b65780634549b039146102e257806370a082311461030757610142565b8063053ab1821461014757806306fdde0314610166578063095ea7b3146101e357806313114a9d1461022357806318160ddd1461023d575b600080fd5b6101646004803603602081101561015d57600080fd5b5035610487565b005b61016e61055f565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101a8578181015183820152602001610190565b50505050905090810190601f1680156101d55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61020f600480360360408110156101f957600080fd5b506001600160a01b0381351690602001356105f5565b604080519115158252519081900360200190f35b61022b610613565b60408051918252519081900360200190f35b61022b610619565b61020f6004803603606081101561025b57600080fd5b506001600160a01b0381358116916020810135909116906040013561062a565b61022b6004803603602081101561029157600080fd5b50356106b1565b6102a0610713565b6040805160ff9092168252519081900360200190f35b61020f600480360360408110156102cc57600080fd5b506001600160a01b03813516906020013561071c565b61022b600480360360408110156102f857600080fd5b5080359060200135151561076a565b61022b6004803603602081101561031d57600080fd5b50356001600160a01b0316610805565b610164610867565b61022b610909565b61034561090f565b604080516001600160a01b039092168252519081900360200190f35b61016e61091e565b61020f6004803603604081101561037f57600080fd5b506001600160a01b03813516906020013561097f565b61020f600480360360408110156103ab57600080fd5b506001600160a01b0381351690602001356109e7565b61020f600480360360208110156103d757600080fd5b50356001600160a01b03166109fb565b61022b600480360360408110156103fd57600080fd5b506001600160a01b0381358116916020013516610a19565b6101646004803603602081101561042b57600080fd5b50356001600160a01b0316610a44565b6101646004803603602081101561045157600080fd5b50356001600160a01b0316610bca565b6101646004803603602081101561047757600080fd5b50356001600160a01b0316610cc2565b6000610491610e83565b6001600160a01b03811660009081526004602052604090205490915060ff16156104ec5760405162461bcd60e51b815260040180806020018281038252602c815260200180611bcb602c913960400191505060405180910390fd5b60006104f783610e87565b505050506001600160a01b0383166000908152600160205260409020549091506105219082610ed3565b6001600160a01b0383166000908152600160205260409020556006546105479082610ed3565b6006556007546105579084610f1c565b600755505050565b60088054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105eb5780601f106105c0576101008083540402835291602001916105eb565b820191906000526020600020905b8154815290600101906020018083116105ce57829003601f168201915b5050505050905090565b6000610609610602610e83565b8484610f76565b5060015b92915050565b60075490565b6c0c9f2c9cd04674edea4000000090565b6000610637848484611062565b6106a784610643610e83565b6106a285604051806060016040528060288152602001611b11602891396001600160a01b038a16600090815260036020526040812090610681610e83565b6001600160a01b03168152602081019190915260400160002054919061134b565b610f76565b5060019392505050565b60006006548211156106f45760405162461bcd60e51b815260040180806020018281038252602a815260200180611a56602a913960400191505060405180910390fd5b60006106fe6113e2565b905061070a8382611405565b9150505b919050565b600a5460ff1690565b6000610609610729610e83565b846106a2856003600061073a610e83565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f1c565b60006c0c9f2c9cd04674edea400000008311156107ce576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816107ec5760006107de84610e87565b5092945061060d9350505050565b60006107f784610e87565b5091945061060d9350505050565b6001600160a01b03811660009081526004602052604081205460ff161561084557506001600160a01b03811660009081526002602052604090205461070e565b6001600160a01b03821660009081526001602052604090205461060d906106b1565b61086f610e83565b6000546001600160a01b039081169116146108bf576040805162461bcd60e51b81526020600482018190526024820152600080516020611b39833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600c5481565b6000546001600160a01b031690565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105eb5780601f106105c0576101008083540402835291602001916105eb565b600061060961098c610e83565b846106a285604051806060016040528060258152602001611bf760259139600360006109b6610e83565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061134b565b60006106096109f4610e83565b8484611062565b6001600160a01b031660009081526004602052604090205460ff1690565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610a4c610e83565b6000546001600160a01b03908116911614610a9c576040805162461bcd60e51b81526020600482018190526024820152600080516020611b39833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff1615610b0a576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610b64576001600160a01b038116600090815260016020526040902054610b4a906106b1565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610bd2610e83565b6000546001600160a01b03908116911614610c22576040805162461bcd60e51b81526020600482018190526024820152600080516020611b39833981519152604482015290519081900360640190fd5b6001600160a01b038116610c675760405162461bcd60e51b8152600401808060200182810382526026815260200180611a806026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610cca610e83565b6000546001600160a01b03908116911614610d1a576040805162461bcd60e51b81526020600482018190526024820152600080516020611b39833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610d87576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600554811015610e7f57816001600160a01b031660058281548110610dab57fe5b6000918252602090912001546001600160a01b03161415610e7757600580546000198101908110610dd857fe5b600091825260209091200154600580546001600160a01b039092169183908110610dfe57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610e5057fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e7f565b600101610d8a565b5050565b3390565b6000806000806000806000610e9b88611447565b915091506000610ea96113e2565b90506000806000610ebb8c868661147a565b919e909d50909b509599509397509395505050505050565b6000610f1583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061134b565b9392505050565b600082820183811015610f15576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038316610fbb5760405162461bcd60e51b8152600401808060200182810382526024815260200180611ba76024913960400191505060405180910390fd5b6001600160a01b0382166110005760405162461bcd60e51b8152600401808060200182810382526022815260200180611aa66022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166110a75760405162461bcd60e51b8152600401808060200182810382526025815260200180611b826025913960400191505060405180910390fd5b6001600160a01b0382166110ec5760405162461bcd60e51b8152600401808060200182810382526023815260200180611a336023913960400191505060405180910390fd5b6000811161112b5760405162461bcd60e51b8152600401808060200182810382526029815260200180611b596029913960400191505060405180910390fd5b61113361090f565b6001600160a01b0316836001600160a01b03161415801561116d575061115761090f565b6001600160a01b0316826001600160a01b031614155b156111b357600c548111156111b35760405162461bcd60e51b8152600401808060200182810382526028815260200180611ac86028913960400191505060405180910390fd5b600a546001600160a01b03848116610100909204161480156111e25750600b546001600160a01b038381169116145b156111f7576111f28383836114b6565b611346565b6001600160a01b03831660009081526004602052604090205460ff16801561123857506001600160a01b03821660009081526004602052604090205460ff16155b15611248576111f2838383611553565b6001600160a01b03831660009081526004602052604090205460ff1615801561128957506001600160a01b03821660009081526004602052604090205460ff165b15611299576111f283838361166a565b6001600160a01b03831660009081526004602052604090205460ff161580156112db57506001600160a01b03821660009081526004602052604090205460ff16155b156112eb576111f2838383611710565b6001600160a01b03831660009081526004602052604090205460ff16801561132b57506001600160a01b03821660009081526004602052604090205460ff165b1561133b576111f2838383611751565b611346838383611710565b505050565b600081848411156113da5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561139f578181015183820152602001611387565b50505050905090810190601f1680156113cc5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006113ef6117c1565b90925090506113fe8282611405565b9250505090565b6000610f1583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611950565b60008080611461600761145b866064611405565b906119b5565b9050600061146f8583610ed3565b935090915050915091565b600080808061148987866119b5565b9050600061149787876119b5565b905060006114a58383610ed3565b929992985090965090945050505050565b60008060008060006114c786610e87565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506114f79086610f1c565b6001600160a01b03808a1660009081526001602052604080822093909355908916815220546115269085610ed3565b6001600160a01b0388166000908152600160205260409020556115498382611a0e565b5050505050505050565b600080600080600061156486610e87565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506115949087610ed3565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546115c39086610ed3565b6001600160a01b03808a1660009081526001602052604080822093909355908916815220546115f29085610f1c565b6001600160a01b0388166000908152600160205260409020556116158382611a0e565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061167b86610e87565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506116ab9086610ed3565b6001600160a01b03808a16600090815260016020908152604080832094909455918a168152600290915220546116e19083610f1c565b6001600160a01b0388166000908152600260209081526040808320939093556001905220546115f29085610f1c565b600080600080600061172186610e87565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506115c39086610ed3565b600080600080600061176286610e87565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506117929087610ed3565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546116ab9086610ed3565b60065460009081906c0c9f2c9cd04674edea40000000825b600554811015611908578260016000600584815481106117f557fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061185a575081600260006005848154811061183357fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561187c576006546c0c9f2c9cd04674edea400000009450945050505061194c565b6118bc600160006005848154811061189057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490610ed3565b92506118fe60026000600584815481106118d257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390610ed3565b91506001016117d9565b50600654611923906c0c9f2c9cd04674edea40000000611405565b821015611946576006546c0c9f2c9cd04674edea4000000093509350505061194c565b90925090505b9091565b6000818361199f5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561139f578181015183820152602001611387565b5060008385816119ab57fe5b0495945050505050565b6000826119c45750600061060d565b828202828482816119d157fe5b0414610f155760405162461bcd60e51b8152600401808060200182810382526021815260200180611af06021913960400191505060405180910390fd5b600654611a1b9083610ed3565b600655600754611a2b9082610f1c565b600755505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220481e2a7e1e52410c9d9e0c41b7f719440e7526b50a55fcffc2fdc4fcb25e2fcc64736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063a9059cbb1161007c578063a9059cbb14610395578063cba0e996146103c1578063dd62ed3e146103e7578063f2cc0c1814610415578063f2fde38b1461043b578063f84354f11461046157610142565b8063715018a61461032d5780637d1db4a5146103355780638da5cb5b1461033d57806395d89b4114610361578063a457c2d71461036957610142565b806323b872dd1161010a57806323b872dd146102455780632d8381191461027b578063313ce5671461029857806339509351146102b65780634549b039146102e257806370a082311461030757610142565b8063053ab1821461014757806306fdde0314610166578063095ea7b3146101e357806313114a9d1461022357806318160ddd1461023d575b600080fd5b6101646004803603602081101561015d57600080fd5b5035610487565b005b61016e61055f565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101a8578181015183820152602001610190565b50505050905090810190601f1680156101d55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61020f600480360360408110156101f957600080fd5b506001600160a01b0381351690602001356105f5565b604080519115158252519081900360200190f35b61022b610613565b60408051918252519081900360200190f35b61022b610619565b61020f6004803603606081101561025b57600080fd5b506001600160a01b0381358116916020810135909116906040013561062a565b61022b6004803603602081101561029157600080fd5b50356106b1565b6102a0610713565b6040805160ff9092168252519081900360200190f35b61020f600480360360408110156102cc57600080fd5b506001600160a01b03813516906020013561071c565b61022b600480360360408110156102f857600080fd5b5080359060200135151561076a565b61022b6004803603602081101561031d57600080fd5b50356001600160a01b0316610805565b610164610867565b61022b610909565b61034561090f565b604080516001600160a01b039092168252519081900360200190f35b61016e61091e565b61020f6004803603604081101561037f57600080fd5b506001600160a01b03813516906020013561097f565b61020f600480360360408110156103ab57600080fd5b506001600160a01b0381351690602001356109e7565b61020f600480360360208110156103d757600080fd5b50356001600160a01b03166109fb565b61022b600480360360408110156103fd57600080fd5b506001600160a01b0381358116916020013516610a19565b6101646004803603602081101561042b57600080fd5b50356001600160a01b0316610a44565b6101646004803603602081101561045157600080fd5b50356001600160a01b0316610bca565b6101646004803603602081101561047757600080fd5b50356001600160a01b0316610cc2565b6000610491610e83565b6001600160a01b03811660009081526004602052604090205490915060ff16156104ec5760405162461bcd60e51b815260040180806020018281038252602c815260200180611bcb602c913960400191505060405180910390fd5b60006104f783610e87565b505050506001600160a01b0383166000908152600160205260409020549091506105219082610ed3565b6001600160a01b0383166000908152600160205260409020556006546105479082610ed3565b6006556007546105579084610f1c565b600755505050565b60088054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105eb5780601f106105c0576101008083540402835291602001916105eb565b820191906000526020600020905b8154815290600101906020018083116105ce57829003601f168201915b5050505050905090565b6000610609610602610e83565b8484610f76565b5060015b92915050565b60075490565b6c0c9f2c9cd04674edea4000000090565b6000610637848484611062565b6106a784610643610e83565b6106a285604051806060016040528060288152602001611b11602891396001600160a01b038a16600090815260036020526040812090610681610e83565b6001600160a01b03168152602081019190915260400160002054919061134b565b610f76565b5060019392505050565b60006006548211156106f45760405162461bcd60e51b815260040180806020018281038252602a815260200180611a56602a913960400191505060405180910390fd5b60006106fe6113e2565b905061070a8382611405565b9150505b919050565b600a5460ff1690565b6000610609610729610e83565b846106a2856003600061073a610e83565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f1c565b60006c0c9f2c9cd04674edea400000008311156107ce576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b816107ec5760006107de84610e87565b5092945061060d9350505050565b60006107f784610e87565b5091945061060d9350505050565b6001600160a01b03811660009081526004602052604081205460ff161561084557506001600160a01b03811660009081526002602052604090205461070e565b6001600160a01b03821660009081526001602052604090205461060d906106b1565b61086f610e83565b6000546001600160a01b039081169116146108bf576040805162461bcd60e51b81526020600482018190526024820152600080516020611b39833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600c5481565b6000546001600160a01b031690565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105eb5780601f106105c0576101008083540402835291602001916105eb565b600061060961098c610e83565b846106a285604051806060016040528060258152602001611bf760259139600360006109b6610e83565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061134b565b60006106096109f4610e83565b8484611062565b6001600160a01b031660009081526004602052604090205460ff1690565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610a4c610e83565b6000546001600160a01b03908116911614610a9c576040805162461bcd60e51b81526020600482018190526024820152600080516020611b39833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff1615610b0a576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610b64576001600160a01b038116600090815260016020526040902054610b4a906106b1565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610bd2610e83565b6000546001600160a01b03908116911614610c22576040805162461bcd60e51b81526020600482018190526024820152600080516020611b39833981519152604482015290519081900360640190fd5b6001600160a01b038116610c675760405162461bcd60e51b8152600401808060200182810382526026815260200180611a806026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610cca610e83565b6000546001600160a01b03908116911614610d1a576040805162461bcd60e51b81526020600482018190526024820152600080516020611b39833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16610d87576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600554811015610e7f57816001600160a01b031660058281548110610dab57fe5b6000918252602090912001546001600160a01b03161415610e7757600580546000198101908110610dd857fe5b600091825260209091200154600580546001600160a01b039092169183908110610dfe57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff191690556005805480610e5057fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610e7f565b600101610d8a565b5050565b3390565b6000806000806000806000610e9b88611447565b915091506000610ea96113e2565b90506000806000610ebb8c868661147a565b919e909d50909b509599509397509395505050505050565b6000610f1583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061134b565b9392505050565b600082820183811015610f15576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038316610fbb5760405162461bcd60e51b8152600401808060200182810382526024815260200180611ba76024913960400191505060405180910390fd5b6001600160a01b0382166110005760405162461bcd60e51b8152600401808060200182810382526022815260200180611aa66022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166110a75760405162461bcd60e51b8152600401808060200182810382526025815260200180611b826025913960400191505060405180910390fd5b6001600160a01b0382166110ec5760405162461bcd60e51b8152600401808060200182810382526023815260200180611a336023913960400191505060405180910390fd5b6000811161112b5760405162461bcd60e51b8152600401808060200182810382526029815260200180611b596029913960400191505060405180910390fd5b61113361090f565b6001600160a01b0316836001600160a01b03161415801561116d575061115761090f565b6001600160a01b0316826001600160a01b031614155b156111b357600c548111156111b35760405162461bcd60e51b8152600401808060200182810382526028815260200180611ac86028913960400191505060405180910390fd5b600a546001600160a01b03848116610100909204161480156111e25750600b546001600160a01b038381169116145b156111f7576111f28383836114b6565b611346565b6001600160a01b03831660009081526004602052604090205460ff16801561123857506001600160a01b03821660009081526004602052604090205460ff16155b15611248576111f2838383611553565b6001600160a01b03831660009081526004602052604090205460ff1615801561128957506001600160a01b03821660009081526004602052604090205460ff165b15611299576111f283838361166a565b6001600160a01b03831660009081526004602052604090205460ff161580156112db57506001600160a01b03821660009081526004602052604090205460ff16155b156112eb576111f2838383611710565b6001600160a01b03831660009081526004602052604090205460ff16801561132b57506001600160a01b03821660009081526004602052604090205460ff165b1561133b576111f2838383611751565b611346838383611710565b505050565b600081848411156113da5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561139f578181015183820152602001611387565b50505050905090810190601f1680156113cc5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006113ef6117c1565b90925090506113fe8282611405565b9250505090565b6000610f1583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611950565b60008080611461600761145b866064611405565b906119b5565b9050600061146f8583610ed3565b935090915050915091565b600080808061148987866119b5565b9050600061149787876119b5565b905060006114a58383610ed3565b929992985090965090945050505050565b60008060008060006114c786610e87565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506114f79086610f1c565b6001600160a01b03808a1660009081526001602052604080822093909355908916815220546115269085610ed3565b6001600160a01b0388166000908152600160205260409020556115498382611a0e565b5050505050505050565b600080600080600061156486610e87565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506115949087610ed3565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546115c39086610ed3565b6001600160a01b03808a1660009081526001602052604080822093909355908916815220546115f29085610f1c565b6001600160a01b0388166000908152600160205260409020556116158382611a0e565b866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050505050565b600080600080600061167b86610e87565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506116ab9086610ed3565b6001600160a01b03808a16600090815260016020908152604080832094909455918a168152600290915220546116e19083610f1c565b6001600160a01b0388166000908152600260209081526040808320939093556001905220546115f29085610f1c565b600080600080600061172186610e87565b6001600160a01b038d16600090815260016020526040902054949950929750909550935091506115c39086610ed3565b600080600080600061176286610e87565b6001600160a01b038d16600090815260026020526040902054949950929750909550935091506117929087610ed3565b6001600160a01b0389166000908152600260209081526040808320939093556001905220546116ab9086610ed3565b60065460009081906c0c9f2c9cd04674edea40000000825b600554811015611908578260016000600584815481106117f557fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061185a575081600260006005848154811061183357fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561187c576006546c0c9f2c9cd04674edea400000009450945050505061194c565b6118bc600160006005848154811061189057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490610ed3565b92506118fe60026000600584815481106118d257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390610ed3565b91506001016117d9565b50600654611923906c0c9f2c9cd04674edea40000000611405565b821015611946576006546c0c9f2c9cd04674edea4000000093509350505061194c565b90925090505b9091565b6000818361199f5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561139f578181015183820152602001611387565b5060008385816119ab57fe5b0495945050505050565b6000826119c45750600061060d565b828202828482816119d157fe5b0414610f155760405162461bcd60e51b8152600401808060200182810382526021815260200180611af06021913960400191505060405180910390fd5b600654611a1b9083610ed3565b600655600754611a2b9082610f1c565b600755505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220481e2a7e1e52410c9d9e0c41b7f719440e7526b50a55fcffc2fdc4fcb25e2fcc64736f6c634300060c0033

Deployed Bytecode Sourcemap

15635:10943:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18772:376;;;;;;;;;;;;;;;;-1:-1:-1;18772:376:0;;:::i;:::-;;16654:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17566:161;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17566:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;18677:87;;;:::i;:::-;;;;;;;;;;;;;;;;16931:95;;;:::i;17735:313::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17735:313:0;;;;;;;;;;;;;;;;;:::i;19598:253::-;;;;;;;;;;;;;;;;-1:-1:-1;19598:253:0;;:::i;16840:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18056:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18056:218:0;;;;;;;;:::i;19156:434::-;;;;;;;;;;;;;;;;-1:-1:-1;19156:434:0;;;;;;;;;:::i;17034:198::-;;;;;;;;;;;;;;;;-1:-1:-1;17034:198:0;-1:-1:-1;;;;;17034:198:0;;:::i;15077:148::-;;;:::i;16469:37::-;;;:::i;14435:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;14435:79:0;;;;;;;;;;;;;;16745:87;;;:::i;18282:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18282:269:0;;;;;;;;:::i;17240:167::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17240:167:0;;;;;;;;:::i;18559:110::-;;;;;;;;;;;;;;;;-1:-1:-1;18559:110:0;-1:-1:-1;;;;;18559:110:0;;:::i;17415:143::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17415:143:0;;;;;;;;;;:::i;19859:332::-;;;;;;;;;;;;;;;;-1:-1:-1;19859:332:0;-1:-1:-1;;;;;19859:332:0;;:::i;15380:244::-;;;;;;;;;;;;;;;;-1:-1:-1;15380:244:0;-1:-1:-1;;;;;15380:244:0;;:::i;20199:478::-;;;;;;;;;;;;;;;;-1:-1:-1;20199:478:0;-1:-1:-1;;;;;20199:478:0;;:::i;18772:376::-;18824:14;18841:12;:10;:12::i;:::-;-1:-1:-1;;;;;18873:19:0;;;;;;:11;:19;;;;;;18824:29;;-1:-1:-1;18873:19:0;;18872:20;18864:77;;;;-1:-1:-1;;;18864:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18953:15;18976:19;18987:7;18976:10;:19::i;:::-;-1:-1:-1;;;;;;;;;19024:15:0;;;;;;:7;:15;;;;;;18952:43;;-1:-1:-1;19024:28:0;;18952:43;19024:19;:28::i;:::-;-1:-1:-1;;;;;19006:15:0;;;;;;:7;:15;;;;;:46;19073:7;;:20;;19085:7;19073:11;:20::i;:::-;19063:7;:30;19117:10;;:23;;19132:7;19117:14;:23::i;:::-;19104:10;:36;-1:-1:-1;;;18772:376:0:o;16654:83::-;16724:5;16717:12;;;;;;;;-1:-1:-1;;16717:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16691:13;;16717:12;;16724:5;;16717:12;;16724:5;16717:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16654:83;:::o;17566:161::-;17641:4;17658:39;17667:12;:10;:12::i;:::-;17681:7;17690:6;17658:8;:39::i;:::-;-1:-1:-1;17715:4:0;17566:161;;;;;:::o;18677:87::-;18746:10;;18677:87;:::o;16931:95::-;16105:24;16931:95;:::o;17735:313::-;17833:4;17850:36;17860:6;17868:9;17879:6;17850:9;:36::i;:::-;17897:121;17906:6;17914:12;:10;:12::i;:::-;17928:89;17966:6;17928:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17928:19:0;;;;;;:11;:19;;;;;;17948:12;:10;:12::i;:::-;-1:-1:-1;;;;;17928:33:0;;;;;;;;;;;;-1:-1:-1;17928:33:0;;;:89;:37;:89::i;:::-;17897:8;:121::i;:::-;-1:-1:-1;18036:4:0;17735:313;;;;;:::o;19598:253::-;19664:7;19703;;19692;:18;;19684:73;;;;-1:-1:-1;;;19684:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19768:19;19791:10;:8;:10::i;:::-;19768:33;-1:-1:-1;19819:24:0;:7;19768:33;19819:11;:24::i;:::-;19812:31;;;19598:253;;;;:::o;16840:83::-;16906:9;;;;16840:83;:::o;18056:218::-;18144:4;18161:83;18170:12;:10;:12::i;:::-;18184:7;18193:50;18232:10;18193:11;:25;18205:12;:10;:12::i;:::-;-1:-1:-1;;;;;18193:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;18193:25:0;;;:34;;;;;;;;;;;:38;:50::i;19156:434::-;19246:7;16105:24;19274:7;:18;;19266:62;;;;;-1:-1:-1;;;19266:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19344:17;19339:244;;19379:15;19402:19;19413:7;19402:10;:19::i;:::-;-1:-1:-1;19378:43:0;;-1:-1:-1;19436:14:0;;-1:-1:-1;;;;19436:14:0;19339:244;19485:23;19515:19;19526:7;19515:10;:19::i;:::-;-1:-1:-1;19483:51:0;;-1:-1:-1;19549:22:0;;-1:-1:-1;;;;19549:22:0;17034:198;-1:-1:-1;;;;;17124:20:0;;17100:7;17124:20;;;:11;:20;;;;;;;;17120:49;;;-1:-1:-1;;;;;;17153:16:0;;;;;;:7;:16;;;;;;17146:23;;17120:49;-1:-1:-1;;;;;17207:16:0;;;;;;:7;:16;;;;;;17187:37;;:19;:37::i;15077:148::-;14657:12;:10;:12::i;:::-;14647:6;;-1:-1:-1;;;;;14647:6:0;;;:22;;;14639:67;;;;;-1:-1:-1;;;14639:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14639:67:0;;;;;;;;;;;;;;;15184:1:::1;15168:6:::0;;15147:40:::1;::::0;-1:-1:-1;;;;;15168:6:0;;::::1;::::0;15147:40:::1;::::0;15184:1;;15147:40:::1;15215:1;15198:19:::0;;-1:-1:-1;;;;;;15198:19:0::1;::::0;;15077:148::o;16469:37::-;;;;:::o;14435:79::-;14473:7;14500:6;-1:-1:-1;;;;;14500:6:0;14435:79;:::o;16745:87::-;16817:7;16810:14;;;;;;;;-1:-1:-1;;16810:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16784:13;;16810:14;;16817:7;;16810:14;;16817:7;16810:14;;;;;;;;;;;;;;;;;;;;;;;;18282:269;18375:4;18392:129;18401:12;:10;:12::i;:::-;18415:7;18424:96;18463:15;18424:96;;;;;;;;;;;;;;;;;:11;:25;18436:12;:10;:12::i;:::-;-1:-1:-1;;;;;18424:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;18424:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17240:167::-;17318:4;17335:42;17345:12;:10;:12::i;:::-;17359:9;17370:6;17335:9;:42::i;18559:110::-;-1:-1:-1;;;;;18641:20:0;18617:4;18641:20;;;:11;:20;;;;;;;;;18559:110::o;17415:143::-;-1:-1:-1;;;;;17523:18:0;;;17496:7;17523:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17415:143::o;19859:332::-;14657:12;:10;:12::i;:::-;14647:6;;-1:-1:-1;;;;;14647:6:0;;;:22;;;14639:67;;;;;-1:-1:-1;;;14639:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14639:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;19941:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;19940:21;19932:61;;;::::0;;-1:-1:-1;;;19932:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;20007:16:0;::::1;20026:1;20007:16:::0;;;:7:::1;:16;::::0;;;;;:20;20004:108:::1;;-1:-1:-1::0;;;;;20083:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;20063:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;20044:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;20004:108:::1;-1:-1:-1::0;;;;;20122:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;20122:27:0::1;20145:4;20122:27:::0;;::::1;::::0;;;20160:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;20160:23:0::1;::::0;;::::1;::::0;;19859:332::o;15380:244::-;14657:12;:10;:12::i;:::-;14647:6;;-1:-1:-1;;;;;14647:6:0;;;:22;;;14639:67;;;;;-1:-1:-1;;;14639:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14639:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;15469:22:0;::::1;15461:73;;;;-1:-1:-1::0;;;15461:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15571:6;::::0;;15550:38:::1;::::0;-1:-1:-1;;;;;15550:38:0;;::::1;::::0;15571:6;::::1;::::0;15550:38:::1;::::0;::::1;15599:6;:17:::0;;-1:-1:-1;;;;;;15599:17:0::1;-1:-1:-1::0;;;;;15599:17:0;;;::::1;::::0;;;::::1;::::0;;15380:244::o;20199:478::-;14657:12;:10;:12::i;:::-;14647:6;;-1:-1:-1;;;;;14647:6:0;;;:22;;;14639:67;;;;;-1:-1:-1;;;14639:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14639:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;20280:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;20272:60;;;::::0;;-1:-1:-1;;;20272:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;20348:9;20343:327;20367:9;:16:::0;20363:20;::::1;20343:327;;;20425:7;-1:-1:-1::0;;;;;20409:23:0::1;:9;20419:1;20409:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;20409:12:0::1;:23;20405:254;;;20468:9;20478:16:::0;;-1:-1:-1;;20478:20:0;;;20468:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;20453:9:::1;:12:::0;;-1:-1:-1;;;;;20468:31:0;;::::1;::::0;20463:1;;20453:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;20453:46:0::1;-1:-1:-1::0;;;;;20453:46:0;;::::1;;::::0;;20518:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;20557:11:::1;:20:::0;;;;:28;;-1:-1:-1;;20557:28:0::1;::::0;;20604:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;20604:15:0;;;;;-1:-1:-1;;;;;;20604:15:0::1;::::0;;;;;20638:5:::1;;20405:254;20385:3;;20343:327;;;;20199:478:::0;:::o;128:106::-;216:10;128:106;:::o;24850:411::-;24909:7;24918;24927;24936;24945;24966:23;24991:12;25007:20;25019:7;25007:11;:20::i;:::-;24965:62;;;;25038:19;25061:10;:8;:10::i;:::-;25038:33;;25083:15;25100:23;25125:12;25141:39;25153:7;25162:4;25168:11;25141;:39::i;:::-;25082:98;;;;-1:-1:-1;25082:98:0;;-1:-1:-1;25231:15:0;;-1:-1:-1;25248:4:0;;-1:-1:-1;24850:411:0;;-1:-1:-1;;;;;;24850:411:0:o;3848:136::-;3906:7;3933:43;3937:1;3940;3933:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;3926:50;3848:136;-1:-1:-1;;;3848:136:0:o;3384:181::-;3442:7;3474:5;;;3498:6;;;;3490:46;;;;;-1:-1:-1;;;3490:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;20685:337;-1:-1:-1;;;;;20778:19:0;;20770:68;;;;-1:-1:-1;;;20770:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20857:21:0;;20849:68;;;;-1:-1:-1;;;20849:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20930:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20982:32;;;;;;;;;;;;;;;;;20685:337;;;:::o;21030:1190::-;-1:-1:-1;;;;;21127:20:0;;21119:70;;;;-1:-1:-1;;;21119:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21208:23:0;;21200:71;;;;-1:-1:-1;;;21200:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21299:1;21290:6;:10;21282:64;;;;-1:-1:-1;;;21282:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21370:7;:5;:7::i;:::-;-1:-1:-1;;;;;21360:17:0;:6;-1:-1:-1;;;;;21360:17:0;;;:41;;;;;21394:7;:5;:7::i;:::-;-1:-1:-1;;;;;21381:20:0;:9;-1:-1:-1;;;;;21381:20:0;;;21360:41;21357:134;;;21434:12;;21424:6;:22;;21416:75;;;;-1:-1:-1;;;21416:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21517:3;;-1:-1:-1;;;;;21507:13:0;;;21517:3;;;;;21507:13;:34;;;;-1:-1:-1;21537:4:0;;-1:-1:-1;;;;;21524:17:0;;;21537:4;;21524:17;21507:34;21504:709;;;21558:40;21572:6;21580:9;21591:6;21558:13;:40::i;:::-;21504:709;;;-1:-1:-1;;;;;21620:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;21644:22:0;;;;;;:11;:22;;;;;;;;21643:23;21620:46;21616:597;;;21683:48;21705:6;21713:9;21724:6;21683:21;:48::i;21616:597::-;-1:-1:-1;;;;;21754:19:0;;;;;;:11;:19;;;;;;;;21753:20;:46;;;;-1:-1:-1;;;;;;21777:22:0;;;;;;:11;:22;;;;;;;;21753:46;21749:464;;;21816:46;21836:6;21844:9;21855:6;21816:19;:46::i;21749:464::-;-1:-1:-1;;;;;21885:19:0;;;;;;:11;:19;;;;;;;;21884:20;:47;;;;-1:-1:-1;;;;;;21909:22:0;;;;;;:11;:22;;;;;;;;21908:23;21884:47;21880:333;;;21948:44;21966:6;21974:9;21985:6;21948:17;:44::i;21880:333::-;-1:-1:-1;;;;;22014:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;22037:22:0;;;;;;:11;:22;;;;;;;;22014:45;22010:203;;;22076:48;22098:6;22106:9;22117:6;22076:21;:48::i;22010:203::-;22157:44;22175:6;22183:9;22194:6;22157:17;:44::i;:::-;21030:1190;;;:::o;4287:192::-;4373:7;4409:12;4401:6;;;;4393:29;;;;-1:-1:-1;;;4393:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4445:5:0;;;4287:192::o;25849:163::-;25890:7;25911:15;25928;25947:19;:17;:19::i;:::-;25910:56;;-1:-1:-1;25910:56:0;-1:-1:-1;25984:20:0;25910:56;;25984:11;:20::i;:::-;25977:27;;;;25849:163;:::o;5685:132::-;5743:7;5770:39;5774:1;5777;5770:39;;;;;;;;;;;;;;;;;:3;:39::i;25269:230::-;25329:7;;;25373:23;25394:1;25373:16;:7;25385:3;25373:11;:16::i;:::-;:20;;:23::i;:::-;25358:38;-1:-1:-1;25407:23:0;25433:17;:7;25358:38;25433:11;:17::i;:::-;25407:43;-1:-1:-1;25486:4:0;;-1:-1:-1;;25269:230:0;;;:::o;25507:334::-;25602:7;;;;25658:24;:7;25670:11;25658;:24::i;:::-;25640:42;-1:-1:-1;25693:12:0;25708:21;:4;25717:11;25708:8;:21::i;:::-;25693:36;-1:-1:-1;25740:23:0;25766:17;:7;25693:36;25766:11;:17::i;:::-;25802:7;;;;-1:-1:-1;25828:4:0;;-1:-1:-1;25507:334:0;;-1:-1:-1;;;;;25507:334:0:o;24306:381::-;24401:15;24418:23;24443:12;24457:23;24482:12;24498:19;24509:7;24498:10;:19::i;:::-;-1:-1:-1;;;;;24546:15:0;;;;;;:7;:15;;;;;;24400:117;;-1:-1:-1;24400:117:0;;-1:-1:-1;24400:117:0;;-1:-1:-1;24400:117:0;-1:-1:-1;24400:117:0;-1:-1:-1;24546:28:0;;24400:117;24546:19;:28::i;:::-;-1:-1:-1;;;;;24528:15:0;;;;;;;:7;:15;;;;;;:46;;;;24606:18;;;;;;;:39;;24629:15;24606:22;:39::i;:::-;-1:-1:-1;;;;;24585:18:0;;;;;;:7;:18;;;;;:60;24656:23;24668:4;24674;24656:11;:23::i;:::-;24306:381;;;;;;;;:::o;23207:506::-;23310:15;23327:23;23352:12;23366:23;23391:12;23407:19;23418:7;23407:10;:19::i;:::-;-1:-1:-1;;;;;23455:15:0;;;;;;:7;:15;;;;;;23309:117;;-1:-1:-1;23309:117:0;;-1:-1:-1;23309:117:0;;-1:-1:-1;23309:117:0;-1:-1:-1;23309:117:0;-1:-1:-1;23455:28:0;;23475:7;23455:19;:28::i;:::-;-1:-1:-1;;;;;23437:15:0;;;;;;:7;:15;;;;;;;;:46;;;;23512:7;:15;;;;:28;;23532:7;23512:19;:28::i;:::-;-1:-1:-1;;;;;23494:15:0;;;;;;;:7;:15;;;;;;:46;;;;23572:18;;;;;;;:39;;23595:15;23572:22;:39::i;:::-;-1:-1:-1;;;;;23551:18:0;;;;;;:7;:18;;;;;:60;23622:23;23634:4;23640;23622:11;:23::i;:::-;23678:9;-1:-1:-1;;;;;23661:44:0;23670:6;-1:-1:-1;;;;;23661:44:0;;23689:15;23661:44;;;;;;;;;;;;;;;;;;23207:506;;;;;;;;:::o;22681:518::-;22782:15;22799:23;22824:12;22838:23;22863:12;22879:19;22890:7;22879:10;:19::i;:::-;-1:-1:-1;;;;;22927:15:0;;;;;;:7;:15;;;;;;22781:117;;-1:-1:-1;22781:117:0;;-1:-1:-1;22781:117:0;;-1:-1:-1;22781:117:0;-1:-1:-1;22781:117:0;-1:-1:-1;22927:28:0;;22781:117;22927:19;:28::i;:::-;-1:-1:-1;;;;;22909:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;22987:18;;;;;:7;:18;;;;;:39;;23010:15;22987:22;:39::i;:::-;-1:-1:-1;;;;;22966:18:0;;;;;;:7;:18;;;;;;;;:60;;;;23058:7;:18;;;;:39;;23081:15;23058:22;:39::i;22228:445::-;22327:15;22344:23;22369:12;22383:23;22408:12;22424:19;22435:7;22424:10;:19::i;:::-;-1:-1:-1;;;;;22472:15:0;;;;;;:7;:15;;;;;;22326:117;;-1:-1:-1;22326:117:0;;-1:-1:-1;22326:117:0;;-1:-1:-1;22326:117:0;-1:-1:-1;22326:117:0;-1:-1:-1;22472:28:0;;22326:117;22472:19;:28::i;23721:577::-;23824:15;23841:23;23866:12;23880:23;23905:12;23921:19;23932:7;23921:10;:19::i;:::-;-1:-1:-1;;;;;23969:15:0;;;;;;:7;:15;;;;;;23823:117;;-1:-1:-1;23823:117:0;;-1:-1:-1;23823:117:0;;-1:-1:-1;23823:117:0;-1:-1:-1;23823:117:0;-1:-1:-1;23969:28:0;;23989:7;23969:19;:28::i;:::-;-1:-1:-1;;;;;23951:15:0;;;;;;:7;:15;;;;;;;;:46;;;;24026:7;:15;;;;:28;;24046:7;24026:19;:28::i;26020:555::-;26117:7;;26070;;;;16105:24;26070:7;26171:289;26195:9;:16;26191:20;;26171:289;;;26261:7;26237;:21;26245:9;26255:1;26245:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26245:12:0;26237:21;;;;;;;;;;;;;:31;;:66;;;26296:7;26272;:21;26280:9;26290:1;26280:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26280:12:0;26272:21;;;;;;;;;;;;;:31;26237:66;26233:97;;;26313:7;;16105:24;26305:25;;;;;;;;;26233:97;26355:34;26367:7;:21;26375:9;26385:1;26375:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26375:12:0;26367:21;;;;;;;;;;;;;26355:7;;:11;:34::i;:::-;26345:44;;26414:34;26426:7;:21;26434:9;26444:1;26434:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26434:12:0;26426:21;;;;;;;;;;;;;26414:7;;:11;:34::i;:::-;26404:44;-1:-1:-1;26213:3:0;;26171:289;;;-1:-1:-1;26484:7:0;;:20;;16105:24;26484:11;:20::i;:::-;26474:7;:30;26470:61;;;26514:7;;16105:24;26506:25;;;;;;;;26470:61;26550:7;;-1:-1:-1;26559:7:0;-1:-1:-1;26020:555:0;;;:::o;6313:278::-;6399:7;6434:12;6427:5;6419:28;;;;-1:-1:-1;;;6419:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6458:9;6474:1;6470;:5;;;;;;;6313:278;-1:-1:-1;;;;;6313:278:0:o;4738:471::-;4796:7;5041:6;5037:47;;-1:-1:-1;5071:1:0;5064:8;;5037:47;5108:5;;;5112:1;5108;:5;:1;5132:5;;;;;:10;5124:56;;;;-1:-1:-1;;;5124:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24695:147;24773:7;;:17;;24785:4;24773:11;:17::i;:::-;24763:7;:27;24814:10;;:20;;24829:4;24814:14;:20::i;:::-;24801:10;:33;-1:-1:-1;;24695:147:0:o

Swarm Source

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