ETH Price: $2,621.16 (+1.11%)

Token

Dividend Token (DIV)
 

Overview

Max Total Supply

114,370,143,154,264.00646806469113234 DIV

Holders

357

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
644,501.040222665627321508 DIV

Value
$0.00
0x7a7aef3081e69773d91226a90979fa88951de4a6
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:
DIVToken

Compiler Version
v0.7.4+commit.3f05b770

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-11-09
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;


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


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 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.
 */
abstract 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 () {
        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;
    }
}


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


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 Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    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;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        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);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}


/// @title DIV token rewards buyers from specific addresses (AMMs such as uniswap) by minting purchase rewards immediately, and burns a percentage of all on chain transactions.
/// @author KrippTorofu @ RiotOfTheBlock in collaboration with CommunityToken.io
///   NOTES: For flexibility to onboard to new AMMs, no specific checks regarding uniswap router registration or tax limits have been added to this token.
///   Until the Ownership is rescinded, owner can modify the parameters of the contract (tax, interest, whitelisted addresses).
///   Minting is disabled, except for the interest.
contract DIVToken is ERC20, Ownable {
    using SafeMath for uint256;

    uint32 internal _burnRatePerTransferThousandth = 10;    // default of 1%, can go as low as 0.1%, or set to 0 to disable
    uint32 internal _interestRatePerBuyThousandth = 20;         // default of 2%, can go as low as 0.1%, or set to 0 to disable
    
    mapping(address => bool) internal _burnWhitelistTo;
    mapping(address => bool) internal _burnWhitelistFrom;
    mapping(address => bool) internal _UniswapAddresses;
    
    /// @notice Transfers from IUniswapV2Pair at address `addr` now will mint an extra `_interestRatePerBuyThousandth`/1000 DIV tokens per 1 Token for the recipient.
    /// @param addr Address of an IUniswapV2Pair Contract
    event UniswapAddressAdded(address addr);
    /// @notice IUniswapV2Pair at address `addr` now will stop minting
    event UniswapAddressRemoved(address addr);
    /// @notice The address `addr` is now whitelisted, any funds sent to it will not incur a burn. 
    /// @param addr Address of Contract / EOA to whitelist
    event AddedToWhitelistTo(address addr);
    /// @notice The address `addr` is removed from whitelist, any funds sent to it will now incur a burn of `_burnRatePerTransferThousandth`/1000 DIV tokens as normal. 
    /// @param addr Address of Contract / EOA to whitelist
    event RemovedFromWhitelistTo(address addr);
    /// @notice The address `addr` is now whitelisted, any funds sent FROM this address will not incur a burn. 
    /// @param addr Address of Contract / EOA to whitelist
    event AddedToWhitelistFrom(address addr);
    /// @notice The address `addr` is removed from whitelist, any funds sent FROM this address will now incur a burn of `_burnRatePerTransferThousandth`/1000 DIV tokens as normal. 
    /// @param addr Address of Contract / EOA to whitelist
    event RemovedFromWhitelistFrom(address addr);
    /// @notice The Burn rate has been changed to `newRate`/1000 per 1 DIV token on every transaction 
    event BurnRateChanged(uint32 newRate);
    /// @notice The Buy Interest rate has been changed to `newRate`/1000 per 1 DIV token on every transaction
    event InterestRateChanged(uint32 newRate);
    
    constructor(address tokenOwnerWallet) ERC20("Dividend Token", "DIV") {
        _mint(tokenOwnerWallet, 500000000000000000000000);
    }
    
    /**
        @notice ERC20 transfer function overridden to add `_burnRatePerTransferThousandth`/1000 burn on transfers as well as `_interestRatePerBuyThousandth`/1000 interest for AMM purchases. 
        @param amount amount in wei
        
        Burn rate is applied independently of the interest
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual override {
        if(_UniswapAddresses[sender] && _interestRatePerBuyThousandth>0) {
            super._mint(recipient, amount.mul(_interestRatePerBuyThousandth).div(1000));
            // no need to adjust amount
        }

        if(!_burnWhitelistTo[recipient] && !_burnWhitelistFrom[sender] && _burnRatePerTransferThousandth>0) {
            uint256 burnAmount = amount.mul(_burnRatePerTransferThousandth).div(1000);
            super._burn(sender, burnAmount);
            amount = amount.sub(burnAmount);
        }
        
        // Send the modified amount to recipient
        super._transfer(sender, recipient, amount);
    }
    
    /// @notice Changes the burn rate on transfers in thousandths
    /// @param value Set this value in thousandths i.e. 10 = 1%, 1 = 0.1%, 0 = burns are disabled.
    function setBurnRatePerThousandth(uint32 value) external onlyOwner {
        _burnRatePerTransferThousandth = value;
        emit BurnRateChanged(value);
    }

    /// @notice Returns the burn rate on transfers in thousandths
    function getBurnRatePerThousandth() external view returns (uint32) {  
       return _burnRatePerTransferThousandth;
    }

    /// @notice Changes the interest rate for purchases in thousandths
    /// @param value Set this value in thousandths i.e. 10 = 1%, 1 = 0.1%, 0 = interest is disabled.
    function setInterestRate(uint32 value) external onlyOwner {
        _interestRatePerBuyThousandth = value;
        emit InterestRateChanged(value);
    }

    /// @notice Returns the interest rate for purchases in thousandths
    function getInterestRate() external view returns (uint32) {  
       return _interestRatePerBuyThousandth;
    }
    
    /// @notice Address `addr` will no longer incur the `_burnRatePerTransferThousandth`/1000 burn on Transfers
    /// @param addr Address to whitelist / dewhitelist 
    /// @param whitelisted True to add to whitelist, false to remove.
    function setBurnWhitelistToAddress (address addr, bool whitelisted) external {
        if(whitelisted) {
            _burnWhitelistTo[addr] = whitelisted;
            emit AddedToWhitelistTo(addr);
        } else {
            delete _burnWhitelistTo[addr];
            emit RemovedFromWhitelistTo(addr);
        }
    }
    
    /// @notice If true, Address `addr` will not incur `_burnRatePerTransferThousandth`/1000 burn for any Transfers to it.
    /// @param addr Address to check
    /// @dev it is not trivial to return a mapping without incurring further storage costs
    function isAddressWhitelistedTo(address addr) external view returns (bool) {
        return _burnWhitelistTo[addr];
    }
    
    /// @notice Address `addr` will no longer incur the `_burnRatePerTransferThousandth`/1000 burn on Transfers from it.
    /// @param addr Address to whitelist / dewhitelist 
    /// @param whitelisted True to add to whitelist, false to remove.
    function setBurnWhitelistFromAddress (address addr, bool whitelisted) external {
        if(whitelisted) {
            _burnWhitelistFrom[addr] = whitelisted;
            emit AddedToWhitelistFrom(addr);
        } else {
            delete _burnWhitelistFrom[addr];
            emit RemovedFromWhitelistFrom(addr);
        }
    }
    
    /// @notice If true, Address `addr` will not incur `_burnRatePerTransferThousandth`/1000 burn for any Transfers from it.
    /// @param addr Address to check
    /// @dev it is not trivial to return a mapping without incurring further storage costs
    function isAddressWhitelistedFrom(address addr) external view returns (bool) {
        return _burnWhitelistFrom[addr];
    }
    
    /// @notice Transfers from IUniswapV2Pair at address `addr` now will mint an extra `_interestRatePerBuyThousandth`/1000 DIV tokens per 1 Token for the recipient.
    /// @param addr Address to generate interest rates
    /// @param isUniswapAddress True to begin generating interest, false to remove.  Router Registration check omitted for flexibility.
    function setUniswapAddress (address addr, bool isUniswapAddress) external {
        if(isUniswapAddress) {
            _UniswapAddresses[addr] = isUniswapAddress;
            emit UniswapAddressAdded(addr);
        } else {
            delete _UniswapAddresses[addr];
            emit UniswapAddressRemoved(addr);
        }
    }
    
    /// @notice If true, transfers from IUniswapV2Pair at address `addr` will mint an extra `_interestRatePerBuyThousandth`/1000 DIV tokens per 1 Token for the recipient.
    /// @param addr Address to check
    /// @dev it is not trivial to return a mapping without incurring further storage costs
    function isAddressUniswapAddress(address addr) external view returns (bool) {
        return _UniswapAddresses[addr];
    }
    
    /// @notice This function can be used by Contract Owner to disperse tokens bypassing incurring penalties or interest.  The tokens will be sent from the Owner Address Balance.
    /// @param dests Array of recipients
    /// @param values Array of values. Ensure the values are in wei. i.e. you must multiply the amount of DIV tokens to be sent by 10**18.
    function airdrop(address[] calldata dests, uint256[] calldata values) external onlyOwner returns (uint256) {
        uint256 i = 0;
        while (i < dests.length) {
            ERC20._transfer(_msgSender(), dests[i], values[i]);
            i += 1;
        }
        return(i);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"tokenOwnerWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"}],"name":"AddedToWhitelistFrom","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"}],"name":"AddedToWhitelistTo","type":"event"},{"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":false,"internalType":"uint32","name":"newRate","type":"uint32"}],"name":"BurnRateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint32","name":"newRate","type":"uint32"}],"name":"InterestRateChanged","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":false,"internalType":"address","name":"addr","type":"address"}],"name":"RemovedFromWhitelistFrom","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"}],"name":"RemovedFromWhitelistTo","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"}],"name":"UniswapAddressAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"}],"name":"UniswapAddressRemoved","type":"event"},{"inputs":[{"internalType":"address[]","name":"dests","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"airdrop","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getBurnRatePerThousandth","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getInterestRate","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","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":"addr","type":"address"}],"name":"isAddressUniswapAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isAddressWhitelistedFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isAddressWhitelistedTo","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"value","type":"uint32"}],"name":"setBurnRatePerThousandth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"whitelisted","type":"bool"}],"name":"setBurnWhitelistFromAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"whitelisted","type":"bool"}],"name":"setBurnWhitelistToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"value","type":"uint32"}],"name":"setInterestRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"isUniswapAddress","type":"bool"}],"name":"setUniswapAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}]

60806040526005805463ffffffff60a81b1916600560a91b1763ffffffff60c81b1916600560ca1b1790553480156200003757600080fd5b5060405162001c7038038062001c70833981810160405260208110156200005d57600080fd5b5051604080518082018252600e81526d2234bb34b232b732102a37b5b2b760911b602082810191825283518085019094526003808552622224ab60e91b918501919091528251929392620000b29290620002d1565b508051620000c8906004906020840190620002d1565b50506005805460ff19166012179055506000620000e462000157565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000150816969e10de76676d08000006200015b565b506200037d565b3390565b6001600160a01b038216620001b7576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620001c5600083836200026a565b620001e1816002546200026f60201b62000f691790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200021491839062000f696200026f821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b600082820183811015620002ca576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928262000309576000855562000354565b82601f106200032457805160ff191683800117855562000354565b8280016001018555821562000354579182015b828111156200035457825182559160200191906001019062000337565b506200036292915062000366565b5090565b5b8082111562000362576000815560010162000367565b6118e3806200038d6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806367243482116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb14610561578063d8a0c9271461058d578063dd62ed3e146105b0578063f2fde38b146105de57610173565b806395d89b41146104ff578063a457c2d714610507578063a7ccd63e1461053357610173565b8063672434821461039757806370a0823114610459578063715018a61461047f5780637314c378146104875780638c4bc81b146104b55780638da5cb5b146104db57610173565b806318160ddd1161013057806318160ddd146102d257806323b872dd146102ec578063313ce5671461032257806339509351146103405780635257b5661461036c5780635f1c06171461037457610173565b8063034268591461017857806306fdde03146101a8578063095ea7b3146102255780630d8aee87146102655780630e26bb1c1461028b57806314455d1b146102b1575b600080fd5b6101a66004803603604081101561018e57600080fd5b506001600160a01b0381351690602001351515610604565b005b6101b06106c2565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ea5781810151838201526020016101d2565b50505050905090810190601f1680156102175780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102516004803603604081101561023b57600080fd5b506001600160a01b038135169060200135610758565b604080519115158252519081900360200190f35b6102516004803603602081101561027b57600080fd5b50356001600160a01b0316610776565b610251600480360360208110156102a157600080fd5b50356001600160a01b0316610794565b6102b96107b2565b6040805163ffffffff9092168252519081900360200190f35b6102da6107c5565b60408051918252519081900360200190f35b6102516004803603606081101561030257600080fd5b506001600160a01b038135811691602081013590911690604001356107cb565b61032a610852565b6040805160ff9092168252519081900360200190f35b6102516004803603604081101561035657600080fd5b506001600160a01b03813516906020013561085b565b6102b96108a9565b6101a66004803603602081101561038a57600080fd5b503563ffffffff166108bc565b6102da600480360360408110156103ad57600080fd5b8101906020810181356401000000008111156103c857600080fd5b8201836020820111156103da57600080fd5b803590602001918460208302840111640100000000831117156103fc57600080fd5b91939092909160208101903564010000000081111561041a57600080fd5b82018360208201111561042c57600080fd5b8035906020019184602083028401116401000000008311171561044e57600080fd5b509092509050610973565b6102da6004803603602081101561046f57600080fd5b50356001600160a01b0316610a2d565b6101a6610a48565b6101a66004803603604081101561049d57600080fd5b506001600160a01b0381351690602001351515610af5565b610251600480360360208110156104cb57600080fd5b50356001600160a01b0316610bb2565b6104e3610bd0565b604080516001600160a01b039092168252519081900360200190f35b6101b0610be4565b6102516004803603604081101561051d57600080fd5b506001600160a01b038135169060200135610c45565b6101a66004803603604081101561054957600080fd5b506001600160a01b0381351690602001351515610cad565b6102516004803603604081101561057757600080fd5b506001600160a01b038135169060200135610d6a565b6101a6600480360360208110156105a357600080fd5b503563ffffffff16610d7e565b6102da600480360360408110156105c657600080fd5b506001600160a01b0381358116916020013516610e35565b6101a6600480360360208110156105f457600080fd5b50356001600160a01b0316610e60565b8015610668576001600160a01b038216600081815260086020908152604091829020805460ff1916851515179055815192835290517fe013160af17979448b815e4acc72ceb45f5e78d682bdf7bdbba6206f1fb49ca49281900390910190a16106be565b6001600160a01b038216600081815260086020908152604091829020805460ff19169055815192835290517f9994b8a37dd3d7cbffc0414fcff5a1429bb953ba529427c5bbc4d59886caef559281900390910190a15b5050565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561074e5780601f106107235761010080835404028352916020019161074e565b820191906000526020600020905b81548152906001019060200180831161073157829003601f168201915b5050505050905090565b600061076c610765610fca565b8484610fce565b5060015b92915050565b6001600160a01b031660009081526008602052604090205460ff1690565b6001600160a01b031660009081526006602052604090205460ff1690565b600554600160a81b900463ffffffff1690565b60025490565b60006107d88484846110ba565b610848846107e4610fca565b610843856040518060600160405280602881526020016117d7602891396001600160a01b038a16600090815260016020526040812090610822610fca565b6001600160a01b0316815260208101919091526040016000205491906111e2565b610fce565b5060019392505050565b60055460ff1690565b600061076c610868610fca565b846108438560016000610879610fca565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f69565b600554600160c81b900463ffffffff1690565b6108c4610fca565b60055461010090046001600160a01b03908116911614610919576040805162461bcd60e51b815260206004820181905260248201526000805160206117ff833981519152604482015290519081900360640190fd5b6005805463ffffffff8316600160a81b810263ffffffff60a81b199092169190911790915560408051918252517f2194450113e53fefa8ab181b7220ce5d667ee3b89d2f5540ead8fe0bb42cffe09181900360200190a150565b600061097d610fca565b60055461010090046001600160a01b039081169116146109d2576040805162461bcd60e51b815260206004820181905260248201526000805160206117ff833981519152604482015290519081900360640190fd5b60005b84811015610a2457610a1c6109e8610fca565b8787848181106109f457fe5b905060200201356001600160a01b0316868685818110610a1057fe5b90506020020135611279565b6001016109d5565b95945050505050565b6001600160a01b031660009081526020819052604090205490565b610a50610fca565b60055461010090046001600160a01b03908116911614610aa5576040805162461bcd60e51b815260206004820181905260248201526000805160206117ff833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b8015610b59576001600160a01b038216600081815260066020908152604091829020805460ff1916851515179055815192835290517fec6cd45d8ef108208595c2fa365fe9abf046277b04935c715b420cf4a33392d49281900390910190a16106be565b6001600160a01b038216600081815260066020908152604091829020805460ff19169055815192835290517f5ddff49bd99e5ea6a1a9e35541cf0f4c889b43355cfdf4c58a8bf7893403c91b9281900390910190a15050565b6001600160a01b031660009081526007602052604090205460ff1690565b60055461010090046001600160a01b031690565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561074e5780601f106107235761010080835404028352916020019161074e565b600061076c610c52610fca565b84610843856040518060600160405280602581526020016118896025913960016000610c7c610fca565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906111e2565b8015610d11576001600160a01b038216600081815260076020908152604091829020805460ff1916851515179055815192835290517f0c2e9c1d40195e4740939021c7a878c88250d1269e5739816bfafcb5f38bec719281900390910190a16106be565b6001600160a01b038216600081815260076020908152604091829020805460ff19169055815192835290517f9c9d2c07c986f6efd2808d4b01ffe6737f7864de5371f48a4a394b5c2ba3fc1a9281900390910190a15050565b600061076c610d77610fca565b84846110ba565b610d86610fca565b60055461010090046001600160a01b03908116911614610ddb576040805162461bcd60e51b815260206004820181905260248201526000805160206117ff833981519152604482015290519081900360640190fd5b6005805463ffffffff8316600160c81b810263ffffffff60c81b199092169190911790915560408051918252517f97daa7c561eb2339af62e82142fcf66cd612417e3e6a2b39df7689c1571963c79181900360200190a150565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e68610fca565b60055461010090046001600160a01b03908116911614610ebd576040805162461bcd60e51b815260206004820181905260248201526000805160206117ff833981519152604482015290519081900360640190fd5b6001600160a01b038116610f025760405162461bcd60e51b81526004018080602001828103825260268152602001806117486026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600082820183811015610fc3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166110135760405162461bcd60e51b81526004018080602001828103825260248152602001806118656024913960400191505060405180910390fd5b6001600160a01b0382166110585760405162461bcd60e51b815260040180806020018281038252602281526020018061176e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831660009081526008602052604090205460ff1680156110f05750600554600160c81b900463ffffffff1615155b1561112d5760055461112d908390611128906103e89061112290869063ffffffff600160c81b9091048116906113d416565b9061142d565b61146f565b6001600160a01b03821660009081526006602052604090205460ff1615801561116f57506001600160a01b03831660009081526007602052604090205460ff16155b80156111895750600554600160a81b900463ffffffff1615155b156111d2576005546000906111b8906103e89061112290859063ffffffff600160a81b9091048116906113d416565b90506111c4848261155f565b6111ce828261165b565b9150505b6111dd838383611279565b505050565b600081848411156112715760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561123657818101518382015260200161121e565b50505050905090810190601f1680156112635780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0383166112be5760405162461bcd60e51b81526004018080602001828103825260258152602001806118406025913960400191505060405180910390fd5b6001600160a01b0382166113035760405162461bcd60e51b81526004018080602001828103825260238152602001806117036023913960400191505060405180910390fd5b61130e8383836111dd565b61134b81604051806060016040528060268152602001611790602691396001600160a01b03861660009081526020819052604090205491906111e2565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461137a9082610f69565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000826113e357506000610770565b828202828482816113f057fe5b0414610fc35760405162461bcd60e51b81526004018080602001828103825260218152602001806117b66021913960400191505060405180910390fd5b6000610fc383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061169d565b6001600160a01b0382166114ca576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6114d6600083836111dd565b6002546114e39082610f69565b6002556001600160a01b0382166000908152602081905260409020546115099082610f69565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166115a45760405162461bcd60e51b815260040180806020018281038252602181526020018061181f6021913960400191505060405180910390fd5b6115b0826000836111dd565b6115ed81604051806060016040528060228152602001611726602291396001600160a01b03851660009081526020819052604090205491906111e2565b6001600160a01b038316600090815260208190526040902055600254611613908261165b565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000610fc383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111e2565b600081836116ec5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561123657818101518382015260200161121e565b5060008385816116f857fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209771b854deb1d8eda1d3e70c4d8e310b4f29fd0748a1489d4dc5c3476b8ea91464736f6c6343000704003300000000000000000000000038f614ddd1b2127619be43fa6f596704c688459e

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c806367243482116100de57806395d89b4111610097578063a9059cbb11610071578063a9059cbb14610561578063d8a0c9271461058d578063dd62ed3e146105b0578063f2fde38b146105de57610173565b806395d89b41146104ff578063a457c2d714610507578063a7ccd63e1461053357610173565b8063672434821461039757806370a0823114610459578063715018a61461047f5780637314c378146104875780638c4bc81b146104b55780638da5cb5b146104db57610173565b806318160ddd1161013057806318160ddd146102d257806323b872dd146102ec578063313ce5671461032257806339509351146103405780635257b5661461036c5780635f1c06171461037457610173565b8063034268591461017857806306fdde03146101a8578063095ea7b3146102255780630d8aee87146102655780630e26bb1c1461028b57806314455d1b146102b1575b600080fd5b6101a66004803603604081101561018e57600080fd5b506001600160a01b0381351690602001351515610604565b005b6101b06106c2565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ea5781810151838201526020016101d2565b50505050905090810190601f1680156102175780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102516004803603604081101561023b57600080fd5b506001600160a01b038135169060200135610758565b604080519115158252519081900360200190f35b6102516004803603602081101561027b57600080fd5b50356001600160a01b0316610776565b610251600480360360208110156102a157600080fd5b50356001600160a01b0316610794565b6102b96107b2565b6040805163ffffffff9092168252519081900360200190f35b6102da6107c5565b60408051918252519081900360200190f35b6102516004803603606081101561030257600080fd5b506001600160a01b038135811691602081013590911690604001356107cb565b61032a610852565b6040805160ff9092168252519081900360200190f35b6102516004803603604081101561035657600080fd5b506001600160a01b03813516906020013561085b565b6102b96108a9565b6101a66004803603602081101561038a57600080fd5b503563ffffffff166108bc565b6102da600480360360408110156103ad57600080fd5b8101906020810181356401000000008111156103c857600080fd5b8201836020820111156103da57600080fd5b803590602001918460208302840111640100000000831117156103fc57600080fd5b91939092909160208101903564010000000081111561041a57600080fd5b82018360208201111561042c57600080fd5b8035906020019184602083028401116401000000008311171561044e57600080fd5b509092509050610973565b6102da6004803603602081101561046f57600080fd5b50356001600160a01b0316610a2d565b6101a6610a48565b6101a66004803603604081101561049d57600080fd5b506001600160a01b0381351690602001351515610af5565b610251600480360360208110156104cb57600080fd5b50356001600160a01b0316610bb2565b6104e3610bd0565b604080516001600160a01b039092168252519081900360200190f35b6101b0610be4565b6102516004803603604081101561051d57600080fd5b506001600160a01b038135169060200135610c45565b6101a66004803603604081101561054957600080fd5b506001600160a01b0381351690602001351515610cad565b6102516004803603604081101561057757600080fd5b506001600160a01b038135169060200135610d6a565b6101a6600480360360208110156105a357600080fd5b503563ffffffff16610d7e565b6102da600480360360408110156105c657600080fd5b506001600160a01b0381358116916020013516610e35565b6101a6600480360360208110156105f457600080fd5b50356001600160a01b0316610e60565b8015610668576001600160a01b038216600081815260086020908152604091829020805460ff1916851515179055815192835290517fe013160af17979448b815e4acc72ceb45f5e78d682bdf7bdbba6206f1fb49ca49281900390910190a16106be565b6001600160a01b038216600081815260086020908152604091829020805460ff19169055815192835290517f9994b8a37dd3d7cbffc0414fcff5a1429bb953ba529427c5bbc4d59886caef559281900390910190a15b5050565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561074e5780601f106107235761010080835404028352916020019161074e565b820191906000526020600020905b81548152906001019060200180831161073157829003601f168201915b5050505050905090565b600061076c610765610fca565b8484610fce565b5060015b92915050565b6001600160a01b031660009081526008602052604090205460ff1690565b6001600160a01b031660009081526006602052604090205460ff1690565b600554600160a81b900463ffffffff1690565b60025490565b60006107d88484846110ba565b610848846107e4610fca565b610843856040518060600160405280602881526020016117d7602891396001600160a01b038a16600090815260016020526040812090610822610fca565b6001600160a01b0316815260208101919091526040016000205491906111e2565b610fce565b5060019392505050565b60055460ff1690565b600061076c610868610fca565b846108438560016000610879610fca565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f69565b600554600160c81b900463ffffffff1690565b6108c4610fca565b60055461010090046001600160a01b03908116911614610919576040805162461bcd60e51b815260206004820181905260248201526000805160206117ff833981519152604482015290519081900360640190fd5b6005805463ffffffff8316600160a81b810263ffffffff60a81b199092169190911790915560408051918252517f2194450113e53fefa8ab181b7220ce5d667ee3b89d2f5540ead8fe0bb42cffe09181900360200190a150565b600061097d610fca565b60055461010090046001600160a01b039081169116146109d2576040805162461bcd60e51b815260206004820181905260248201526000805160206117ff833981519152604482015290519081900360640190fd5b60005b84811015610a2457610a1c6109e8610fca565b8787848181106109f457fe5b905060200201356001600160a01b0316868685818110610a1057fe5b90506020020135611279565b6001016109d5565b95945050505050565b6001600160a01b031660009081526020819052604090205490565b610a50610fca565b60055461010090046001600160a01b03908116911614610aa5576040805162461bcd60e51b815260206004820181905260248201526000805160206117ff833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b8015610b59576001600160a01b038216600081815260066020908152604091829020805460ff1916851515179055815192835290517fec6cd45d8ef108208595c2fa365fe9abf046277b04935c715b420cf4a33392d49281900390910190a16106be565b6001600160a01b038216600081815260066020908152604091829020805460ff19169055815192835290517f5ddff49bd99e5ea6a1a9e35541cf0f4c889b43355cfdf4c58a8bf7893403c91b9281900390910190a15050565b6001600160a01b031660009081526007602052604090205460ff1690565b60055461010090046001600160a01b031690565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561074e5780601f106107235761010080835404028352916020019161074e565b600061076c610c52610fca565b84610843856040518060600160405280602581526020016118896025913960016000610c7c610fca565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906111e2565b8015610d11576001600160a01b038216600081815260076020908152604091829020805460ff1916851515179055815192835290517f0c2e9c1d40195e4740939021c7a878c88250d1269e5739816bfafcb5f38bec719281900390910190a16106be565b6001600160a01b038216600081815260076020908152604091829020805460ff19169055815192835290517f9c9d2c07c986f6efd2808d4b01ffe6737f7864de5371f48a4a394b5c2ba3fc1a9281900390910190a15050565b600061076c610d77610fca565b84846110ba565b610d86610fca565b60055461010090046001600160a01b03908116911614610ddb576040805162461bcd60e51b815260206004820181905260248201526000805160206117ff833981519152604482015290519081900360640190fd5b6005805463ffffffff8316600160c81b810263ffffffff60c81b199092169190911790915560408051918252517f97daa7c561eb2339af62e82142fcf66cd612417e3e6a2b39df7689c1571963c79181900360200190a150565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e68610fca565b60055461010090046001600160a01b03908116911614610ebd576040805162461bcd60e51b815260206004820181905260248201526000805160206117ff833981519152604482015290519081900360640190fd5b6001600160a01b038116610f025760405162461bcd60e51b81526004018080602001828103825260268152602001806117486026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600082820183811015610fc3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166110135760405162461bcd60e51b81526004018080602001828103825260248152602001806118656024913960400191505060405180910390fd5b6001600160a01b0382166110585760405162461bcd60e51b815260040180806020018281038252602281526020018061176e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831660009081526008602052604090205460ff1680156110f05750600554600160c81b900463ffffffff1615155b1561112d5760055461112d908390611128906103e89061112290869063ffffffff600160c81b9091048116906113d416565b9061142d565b61146f565b6001600160a01b03821660009081526006602052604090205460ff1615801561116f57506001600160a01b03831660009081526007602052604090205460ff16155b80156111895750600554600160a81b900463ffffffff1615155b156111d2576005546000906111b8906103e89061112290859063ffffffff600160a81b9091048116906113d416565b90506111c4848261155f565b6111ce828261165b565b9150505b6111dd838383611279565b505050565b600081848411156112715760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561123657818101518382015260200161121e565b50505050905090810190601f1680156112635780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0383166112be5760405162461bcd60e51b81526004018080602001828103825260258152602001806118406025913960400191505060405180910390fd5b6001600160a01b0382166113035760405162461bcd60e51b81526004018080602001828103825260238152602001806117036023913960400191505060405180910390fd5b61130e8383836111dd565b61134b81604051806060016040528060268152602001611790602691396001600160a01b03861660009081526020819052604090205491906111e2565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461137a9082610f69565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000826113e357506000610770565b828202828482816113f057fe5b0414610fc35760405162461bcd60e51b81526004018080602001828103825260218152602001806117b66021913960400191505060405180910390fd5b6000610fc383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061169d565b6001600160a01b0382166114ca576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6114d6600083836111dd565b6002546114e39082610f69565b6002556001600160a01b0382166000908152602081905260409020546115099082610f69565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166115a45760405162461bcd60e51b815260040180806020018281038252602181526020018061181f6021913960400191505060405180910390fd5b6115b0826000836111dd565b6115ed81604051806060016040528060228152602001611726602291396001600160a01b03851660009081526020819052604090205491906111e2565b6001600160a01b038316600090815260208190526040902055600254611613908261165b565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000610fc383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111e2565b600081836116ec5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561123657818101518382015260200161121e565b5060008385816116f857fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212209771b854deb1d8eda1d3e70c4d8e310b4f29fd0748a1489d4dc5c3476b8ea91464736f6c63430007040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000038f614ddd1b2127619be43fa6f596704c688459e

-----Decoded View---------------
Arg [0] : tokenOwnerWallet (address): 0x38f614dDD1b2127619bE43Fa6f596704c688459E

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000038f614ddd1b2127619be43fa6f596704c688459e


Deployed Bytecode Sourcemap

28268:8280:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35103:337;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35103:337:0;;;;;;;;;;:::i;:::-;;18853:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20959:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20959:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;35754:125;;;;;;;;;;;;;;;;-1:-1:-1;35754:125:0;-1:-1:-1;;;;;35754:125:0;;:::i;33613:123::-;;;;;;;;;;;;;;;;-1:-1:-1;33613:123:0;-1:-1:-1;;;;;33613:123:0;;:::i;32110:124::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19928:100;;;:::i;:::-;;;;;;;;;;;;;;;;21602:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21602:321:0;;;;;;;;;;;;;;;;;:::i;19780:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22332:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22332:218:0;;;;;;;;:::i;32652:114::-;;;:::i;31873:162::-;;;;;;;;;;;;;;;;-1:-1:-1;31873:162:0;;;;:::i;36253:292::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36253:292:0;;-1:-1:-1;36253:292:0;-1:-1:-1;36253:292:0;:::i;20091:119::-;;;;;;;;;;;;;;;;-1:-1:-1;20091:119:0;-1:-1:-1;;;;;20091:119:0;;:::i;8262:148::-;;;:::i;33019:328::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33019:328:0;;;;;;;;;;:::i;34604:127::-;;;;;;;;;;;;;;;;-1:-1:-1;34604:127:0;-1:-1:-1;;;;;34604:127:0;;:::i;7620:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;7620:79:0;;;;;;;;;;;;;;19055:87;;;:::i;23053:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23053:269:0;;;;;;;;:::i;33998:338::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33998:338:0;;;;;;;;;;:::i;20423:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20423:175:0;;;;;;;;:::i;32416:156::-;;;;;;;;;;;;;;;;-1:-1:-1;32416:156:0;;;;:::i;20661:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20661:151:0;;;;;;;;;;:::i;8565:244::-;;;;;;;;;;;;;;;;-1:-1:-1;8565:244:0;-1:-1:-1;;;;;8565:244:0;;:::i;35103:337::-;35191:16;35188:245;;;-1:-1:-1;;;;;35224:23:0;;;;;;:17;:23;;;;;;;;;:42;;-1:-1:-1;;35224:42:0;;;;;;;35286:25;;;;;;;;;;;;;;;;;35188:245;;;-1:-1:-1;;;;;35351:23:0;;;;;;:17;:23;;;;;;;;;35344:30;;-1:-1:-1;;35344:30:0;;;35394:27;;;;;;;;;;;;;;;;;35188:245;35103:337;;:::o;18853:83::-;18923:5;18916:12;;;;;;;;-1:-1:-1;;18916:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18890:13;;18916:12;;18923:5;;18916:12;;18923:5;18916:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18853:83;:::o;20959:169::-;21042:4;21059:39;21068:12;:10;:12::i;:::-;21082:7;21091:6;21059:8;:39::i;:::-;-1:-1:-1;21116:4:0;20959:169;;;;;:::o;35754:125::-;-1:-1:-1;;;;;35848:23:0;35824:4;35848:23;;;:17;:23;;;;;;;;;35754:125::o;33613:123::-;-1:-1:-1;;;;;33706:22:0;33682:4;33706:22;;;:16;:22;;;;;;;;;33613:123::o;32110:124::-;32196:30;;-1:-1:-1;;;32196:30:0;;;;;32110:124::o;19928:100::-;20008:12;;19928:100;:::o;21602:321::-;21708:4;21725:36;21735:6;21743:9;21754:6;21725:9;:36::i;:::-;21772:121;21781:6;21789:12;:10;:12::i;:::-;21803:89;21841:6;21803:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21803:19:0;;;;;;:11;:19;;;;;;21823:12;:10;:12::i;:::-;-1:-1:-1;;;;;21803:33:0;;;;;;;;;;;;-1:-1:-1;21803:33:0;;;:89;:37;:89::i;:::-;21772:8;:121::i;:::-;-1:-1:-1;21911:4:0;21602:321;;;;;:::o;19780:83::-;19846:9;;;;19780:83;:::o;22332:218::-;22420:4;22437:83;22446:12;:10;:12::i;:::-;22460:7;22469:50;22508:10;22469:11;:25;22481:12;:10;:12::i;:::-;-1:-1:-1;;;;;22469:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;22469:25:0;;;:34;;;;;;;;;;;:38;:50::i;32652:114::-;32729:29;;-1:-1:-1;;;32729:29:0;;;;;32652:114::o;31873:162::-;7842:12;:10;:12::i;:::-;7832:6;;;;;-1:-1:-1;;;;;7832:6:0;;;:22;;;7824:67;;;;;-1:-1:-1;;;7824:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7824:67:0;;;;;;;;;;;;;;;31951:30:::1;:38:::0;;::::1;::::0;::::1;-1:-1:-1::0;;;31951:38:0;::::1;-1:-1:-1::0;;;;31951:38:0;;::::1;::::0;;;::::1;::::0;;;32005:22:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;31873:162:::0;:::o;36253:292::-;36351:7;7842:12;:10;:12::i;:::-;7832:6;;;;;-1:-1:-1;;;;;7832:6:0;;;:22;;;7824:67;;;;;-1:-1:-1;;;7824:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7824:67:0;;;;;;;;;;;;;;;36371:9:::1;36395:123;36402:16:::0;;::::1;36395:123;;;36435:50;36451:12;:10;:12::i;:::-;36465:5;;36471:1;36465:8;;;;;;;;;;;;;-1:-1:-1::0;;;;;36465:8:0::1;36475:6;;36482:1;36475:9;;;;;;;;;;;;;36435:15;:50::i;:::-;36505:1;36500:6;36395:123;;;36535:1:::0;36253:292;-1:-1:-1;;;;;36253:292:0:o;20091:119::-;-1:-1:-1;;;;;20184:18:0;20157:7;20184:18;;;;;;;;;;;;20091:119::o;8262:148::-;7842:12;:10;:12::i;:::-;7832:6;;;;;-1:-1:-1;;;;;7832:6:0;;;:22;;;7824:67;;;;;-1:-1:-1;;;7824:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7824:67:0;;;;;;;;;;;;;;;8353:6:::1;::::0;8332:40:::1;::::0;8369:1:::1;::::0;8353:6:::1;::::0;::::1;-1:-1:-1::0;;;;;8353:6:0::1;::::0;8332:40:::1;::::0;8369:1;;8332:40:::1;8383:6;:19:::0;;-1:-1:-1;;;;;;8383:19:0::1;::::0;;8262:148::o;33019:328::-;33110:11;33107:233;;;-1:-1:-1;;;;;33138:22:0;;;;;;:16;:22;;;;;;;;;:36;;-1:-1:-1;;33138:36:0;;;;;;;33194:24;;;;;;;;;;;;;;;;;33107:233;;;-1:-1:-1;;;;;33258:22:0;;;;;;:16;:22;;;;;;;;;33251:29;;-1:-1:-1;;33251:29:0;;;33300:28;;;;;;;;;;;;;;;;;33019:328;;:::o;34604:127::-;-1:-1:-1;;;;;34699:24:0;34675:4;34699:24;;;:18;:24;;;;;;;;;34604:127::o;7620:79::-;7685:6;;;;;-1:-1:-1;;;;;7685:6:0;;7620:79::o;19055:87::-;19127:7;19120:14;;;;;;;;-1:-1:-1;;19120:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19094:13;;19120:14;;19127:7;;19120:14;;19127:7;19120:14;;;;;;;;;;;;;;;;;;;;;;;;23053:269;23146:4;23163:129;23172:12;:10;:12::i;:::-;23186:7;23195:96;23234:15;23195:96;;;;;;;;;;;;;;;;;:11;:25;23207:12;:10;:12::i;:::-;-1:-1:-1;;;;;23195:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;23195:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;33998:338::-;34091:11;34088:241;;;-1:-1:-1;;;;;34119:24:0;;;;;;:18;:24;;;;;;;;;:38;;-1:-1:-1;;34119:38:0;;;;;;;34177:26;;;;;;;;;;;;;;;;;34088:241;;;-1:-1:-1;;;;;34243:24:0;;;;;;:18;:24;;;;;;;;;34236:31;;-1:-1:-1;;34236:31:0;;;34287:30;;;;;;;;;;;;;;;;;33998:338;;:::o;20423:175::-;20509:4;20526:42;20536:12;:10;:12::i;:::-;20550:9;20561:6;20526:9;:42::i;32416:156::-;7842:12;:10;:12::i;:::-;7832:6;;;;;-1:-1:-1;;;;;7832:6:0;;;:22;;;7824:67;;;;;-1:-1:-1;;;7824:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7824:67:0;;;;;;;;;;;;;;;32485:29:::1;:37:::0;;::::1;::::0;::::1;-1:-1:-1::0;;;32485:37:0;::::1;-1:-1:-1::0;;;;32485:37:0;;::::1;::::0;;;::::1;::::0;;;32538:26:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;32416:156:::0;:::o;20661:151::-;-1:-1:-1;;;;;20777:18:0;;;20750:7;20777:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;20661:151::o;8565:244::-;7842:12;:10;:12::i;:::-;7832:6;;;;;-1:-1:-1;;;;;7832:6:0;;;:22;;;7824:67;;;;;-1:-1:-1;;;7824:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7824:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;8654:22:0;::::1;8646:73;;;;-1:-1:-1::0;;;8646:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8756:6;::::0;8735:38:::1;::::0;-1:-1:-1;;;;;8735:38:0;;::::1;::::0;8756:6:::1;::::0;::::1;;::::0;8735:38:::1;::::0;;;::::1;8784:6;:17:::0;;-1:-1:-1;;;;;8784:17:0;;::::1;;;-1:-1:-1::0;;;;;;8784:17:0;;::::1;::::0;;;::::1;::::0;;8565:244::o;9658:181::-;9716:7;9748:5;;;9772:6;;;;9764:46;;;;;-1:-1:-1;;;9764:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;9830:1;9658:181;-1:-1:-1;;;9658:181:0:o;6256:106::-;6344:10;6256:106;:::o;26198:346::-;-1:-1:-1;;;;;26300:19:0;;26292:68;;;;-1:-1:-1;;;26292:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26379:21:0;;26371:68;;;;-1:-1:-1;;;26371:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26452:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;26504:32;;;;;;;;;;;;;;;;;26198:346;;;:::o;30955:739::-;-1:-1:-1;;;;;31065:25:0;;;;;;:17;:25;;;;;;;;:60;;;;-1:-1:-1;31094:29:0;;-1:-1:-1;;;31094:29:0;;;;:31;;31065:60;31062:208;;;31176:29;;31142:75;;31154:9;;31165:51;;31211:4;;31165:41;;:6;;31176:29;-1:-1:-1;;;31176:29:0;;;;;;31165:10;:41;:::i;:::-;:45;;:51::i;:::-;31142:11;:75::i;:::-;-1:-1:-1;;;;;31286:27:0;;;;;;:16;:27;;;;;;;;31285:28;:59;;;;-1:-1:-1;;;;;;31318:26:0;;;;;;:18;:26;;;;;;;;31317:27;31285:59;:95;;;;-1:-1:-1;31348:30:0;;-1:-1:-1;;;31348:30:0;;;;:32;;31285:95;31282:292;;;31429:30;;31397:18;;31418:52;;31465:4;;31418:42;;:6;;31429:30;-1:-1:-1;;;31429:30:0;;;;;;31418:10;:42;:::i;:52::-;31397:73;;31485:31;31497:6;31505:10;31485:11;:31::i;:::-;31540:22;:6;31551:10;31540;:22::i;:::-;31531:31;;31282:292;;31644:42;31660:6;31668:9;31679:6;31644:15;:42::i;:::-;30955:739;;;:::o;10561:192::-;10647:7;10683:12;10675:6;;;;10667:29;;;;-1:-1:-1;;;10667:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;10719:5:0;;;10561:192::o;23812:539::-;-1:-1:-1;;;;;23918:20:0;;23910:70;;;;-1:-1:-1;;;23910:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23999:23:0;;23991:71;;;;-1:-1:-1;;;23991:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24075:47;24096:6;24104:9;24115:6;24075:20;:47::i;:::-;24155:71;24177:6;24155:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24155:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;24135:17:0;;;:9;:17;;;;;;;;;;;:91;;;;24260:20;;;;;;;:32;;24285:6;24260:24;:32::i;:::-;-1:-1:-1;;;;;24237:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;24308:35;;;;;;;24237:20;;24308:35;;;;;;;;;;;;;23812:539;;;:::o;11012:471::-;11070:7;11315:6;11311:47;;-1:-1:-1;11345:1:0;11338:8;;11311:47;11382:5;;;11386:1;11382;:5;:1;11406:5;;;;;:10;11398:56;;;;-1:-1:-1;;;11398:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11959:132;12017:7;12044:39;12048:1;12051;12044:39;;;;;;;;;;;;;;;;;:3;:39::i;24632:378::-;-1:-1:-1;;;;;24716:21:0;;24708:65;;;;;-1:-1:-1;;;24708:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;24786:49;24815:1;24819:7;24828:6;24786:20;:49::i;:::-;24863:12;;:24;;24880:6;24863:16;:24::i;:::-;24848:12;:39;-1:-1:-1;;;;;24919:18:0;;:9;:18;;;;;;;;;;;:30;;24942:6;24919:22;:30::i;:::-;-1:-1:-1;;;;;24898:18:0;;:9;:18;;;;;;;;;;;:51;;;;24965:37;;;;;;;24898:18;;:9;;24965:37;;;;;;;;;;24632:378;;:::o;25342:418::-;-1:-1:-1;;;;;25426:21:0;;25418:67;;;;-1:-1:-1;;;25418:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25498:49;25519:7;25536:1;25540:6;25498:20;:49::i;:::-;25581:68;25604:6;25581:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25581:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;25560:18:0;;:9;:18;;;;;;;;;;:89;25675:12;;:24;;25692:6;25675:16;:24::i;:::-;25660:12;:39;25715:37;;;;;;;;25741:1;;-1:-1:-1;;;;;25715:37:0;;;;;;;;;;;;25342:418;;:::o;10122:136::-;10180:7;10207:43;10211:1;10214;10207:43;;;;;;;;;;;;;;;;;:3;:43::i;12587:278::-;12673:7;12708:12;12701:5;12693:28;;;;-1:-1:-1;;;12693:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12732:9;12748:1;12744;:5;;;;;;;12587:278;-1:-1:-1;;;;;12587:278:0:o

Swarm Source

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