ETH Price: $2,634.09 (+1.74%)

Token

DANCE (DANCE)
 

Overview

Max Total Supply

21,000,000 DANCE

Holders

427 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
greatgoatje.eth
Balance
77.665380641268081755 DANCE

Value
$0.00
0x1364b33721df08e788d73ae23029be3410c88d38
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

DANCE is the utility token of the Ape Night Club (ANC) NFT collection.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DANCEToken

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 100 runs

Other Settings:
default evmVersion
File 1 of 7 : DANCE.sol
// SPDX-License-Identifier: MIT
/***
 *                                                                 .';:c:,.
 *                   ;0NNNNNNX.  lNNNNNNK;       .XNNNNN.     .:d0XWWWWWWWWXOo'
 *                 lXWWWWWWWWO   XWWWWWWWWO.     :WWWWWK    ;0WWWWWWWWWWWWWWWWWK,
 *              .dNWWWWWWWWWWc  ,WWWWWWWWWWNo    kWWWWWo  .0WWWWWNkc,...;oXWWXxc.
 *            ,kWWWWWWXWWWWWW.  dWWWWWXNWWWWWX; .NWWWWW.  KWWWWW0.         ;.
 *          :KWWWWWNd.lWWWWWO   XWWWWW:.xWWWWWWOdWWWWW0  cWWWWWW.
 *        lXWWWWWXl.  0WWWWW:  ,WWWWWN   '0WWWWWWWWWWWl  oWWWWWW;         :,
 *     .dNWWWWW0;    'WWWWWN.  xWWWWWx     :XWWWWWWWWW.  .NWWWWWWkc,'';ckNWWNOc.
 *   'kWWWWWWx'      oWWWWWk   NWWWWW,       oWWWWWWW0    '0WWWWWWWWWWWWWWWWWO;
 * .d000000o.        k00000;  ,00000k         .x00000:      .lkKNWWWWWWNKko;.
 *                                                               .,;;'.
 */
pragma solidity ^0.8.15;

import "@openzeppelin/contracts/access/Ownable.sol";
import "./ERC20F.sol";

contract DANCEToken is Ownable, ERC20F{

    constructor(
        uint256 fee_,
        uint256 feedivider_,
        address danceSplitter_,
        address[] memory initAddresses_,
        uint256[] memory initAmounts_
    ) ERC20F("DANCE", "DANCE", fee_, feedivider_, danceSplitter_) {
        require(initAddresses_.length == initAmounts_.length, "lengths of initAddresses and initAmounts do not match");
        uint256 totalSupply = 0;
        for (uint256 i = 0; i < initAmounts_.length; i++) {
            totalSupply += initAmounts_[i];
        }
        require(totalSupply <= type(uint96).max, "total supply too large");
        // initial distribution
        for (uint256 i = 0; i < initAddresses_.length; i++) {
            _mint(initAddresses_[i], initAmounts_[i]);
            _setNoFeeAddress(initAddresses_[i], true);
        }
    }

    /* External Functions */

    function setFee(uint256 fee_, uint256 divider_) external onlyOwner {
        _setFee(fee_, divider_);
    }

    function setNoFeeAddress(address account, bool value) external onlyOwner {
        _setNoFeeAddress(account, value);
    }
}

File 2 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 7 : ERC20F.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "./IERC20F.sol";

/**
 * @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 Contracts guidelines: functions revert
 * instead 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 ERC20F is Context, IERC20F, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    uint256 private _fee;
    uint256 private _divider;
    address private _beneficiary;

    mapping(address => bool) private _noFeeAddresses;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_, uint256 fee_, uint256 feeDivider_, address beneficiary_) {
        _name = name_;
        _symbol = symbol_;
        _fee = fee_;
        _divider = feeDivider_;
        _beneficiary = beneficiary_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 this function is
     * overridden;
     *
     * 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 virtual override returns (uint8) {
        return 18;
    }

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

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

    /**
     * @dev Transfers the amount specified minus a set fee which is sent to the beneficiary.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        if (owner == tx.origin){ // if owner is user spend extra fee
            uint256 fee_amount = amount * _fee / _divider;
            _transfer(owner, _beneficiary, fee_amount);
            _transfer(owner, to, amount - fee_amount);
            return true;
        } else {
            _transfer(owner, to, amount);
            return true;
        }
    }

    /**
     * @dev See {IERC20-transfer}
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     * - the caller must be a noFeeAdress
     */
    function transferNoFee(address to, uint256 amount) external returns (bool) {
        require(_noFeeAddresses[_msgSender()], "Sender not eligible for no fee transfer");
        _transfer(_msgSender(), to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * NOTE: Spends more than the approved allowance because of the fee
     * if `from` is `tx.origin`
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount + amount * _fee / _divider`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        if (from == tx.origin) { // safe to charge fee
            uint256 fee_amount = amount * _fee / _divider;
            _transfer(from, _beneficiary, fee_amount);
            return true;
        } else {
            require(_noFeeAddresses[from], "`from` not user nor no-fee address");
            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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     * - the caller must be a noFeeAdress
     */
    function transferFromNoFee(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        require(_noFeeAddresses[_msgSender()], "Sender not eligible for no fee transfer");
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
    unchecked {
        _approve(owner, spender, currentAllowance - subtractedValue);
    }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
    unchecked {
        _balances[from] = fromBalance - amount;
    }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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:
     *
     * - `account` 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 += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
    unchecked {
        _balances[account] = accountBalance - amount;
    }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
        unchecked {
            _approve(owner, spender, currentAllowance - amount);
        }
        }
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Set the transfer fee. 
     * The transfer fee is calculated as `amount` * `_fee` / `_divider`
     */
    function _setFee(uint256 fee_, uint256 divider_) internal {
        require(divider_ > fee_, "ERC20F: fee divider must be bigger than fee");
        _fee = fee_;
        _divider = divider_;
    }

    /**
     * @dev Set if an address is allowed to use the `transferNoFee`
     * or `transferFromNoFee` functions.  
     * It is also needed to allow transerFrom to transfer from non
     * `tx.origin` addresses.
     */
    function _setNoFeeAddress(address account, bool value) internal {
        _noFeeAddresses[account] = value;
    }

    /**
     * @dev returns current values of `_fee` and `_divder`.
     */
    function fee() public view virtual override returns(uint256[2] memory) {
        return [_fee, _divider];
    }
}

File 4 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 5 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 6 of 7 : IERC20F.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

interface IERC20F is IERC20 {

    function transferNoFee(address to, uint256 amount) external returns (bool);

    function transferFromNoFee(address from, address to, uint256 amount) external returns (bool);

    function fee() external view returns(uint256[2] memory);

}

File 7 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 100
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"fee_","type":"uint256"},{"internalType":"uint256","name":"feedivider_","type":"uint256"},{"internalType":"address","name":"danceSplitter_","type":"address"},{"internalType":"address[]","name":"initAddresses_","type":"address[]"},{"internalType":"uint256[]","name":"initAmounts_","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint256[2]","name":"","type":"uint256[2]"}],"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":[],"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":"uint256","name":"fee_","type":"uint256"},{"internalType":"uint256","name":"divider_","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setNoFeeAddress","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFromNoFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferNoFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620016813803806200168183398101604081905262000034916200050b565b6040518060400160405280600581526020016444414e434560d81b8152506040518060400160405280600581526020016444414e434560d81b8152508686866200008d62000087620002a360201b60201c565b620002a7565b60046200009b868262000690565b506005620000aa858262000690565b50600692909255600755600880546001600160a01b0319166001600160a01b0390921691909117905550508051825114620001525760405162461bcd60e51b815260206004820152603560248201527f6c656e67746873206f6620696e697441646472657373657320616e6420696e6960448201527f74416d6f756e747320646f206e6f74206d61746368000000000000000000000060648201526084015b60405180910390fd5b6000805b8251811015620001a1578281815181106200017557620001756200075c565b6020026020010151826200018a919062000788565b9150806200019881620007a3565b91505062000156565b506001600160601b03811115620001fb5760405162461bcd60e51b815260206004820152601660248201527f746f74616c20737570706c7920746f6f206c6172676500000000000000000000604482015260640162000149565b60005b83518110156200029657620002528482815181106200022157620002216200075c565b60200260200101518483815181106200023e576200023e6200075c565b6020026020010151620002f760201b60201c565b620002818482815181106200026b576200026b6200075c565b60200260200101516001620003dc60201b60201c565b806200028d81620007a3565b915050620001fe565b50505050505050620007bf565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200034f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000149565b806003600082825462000363919062000788565b90915550506001600160a01b038216600090815260016020526040812080548392906200039290849062000788565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b505050565b80516001600160a01b03811681146200042457600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156200046a576200046a62000429565b604052919050565b60006001600160401b038211156200048e576200048e62000429565b5060051b60200190565b600082601f830112620004aa57600080fd5b81516020620004c3620004bd8362000472565b6200043f565b82815260059290921b84018101918181019086841115620004e357600080fd5b8286015b84811015620005005780518352918301918301620004e7565b509695505050505050565b600080600080600060a086880312156200052457600080fd5b8551945060208087015194506200053e604088016200040c565b60608801519094506001600160401b03808211156200055c57600080fd5b818901915089601f8301126200057157600080fd5b815162000582620004bd8262000472565b81815260059190911b8301840190848101908c831115620005a257600080fd5b938501935b82851015620005cb57620005bb856200040c565b82529385019390850190620005a7565b60808c01519097509450505080831115620005e557600080fd5b5050620005f58882890162000498565b9150509295509295909350565b600181811c908216806200061757607f821691505b6020821081036200063857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200040757600081815260208120601f850160051c81016020861015620006675750805b601f850160051c820191505b81811015620006885782815560010162000673565b505050505050565b81516001600160401b03811115620006ac57620006ac62000429565b620006c481620006bd845462000602565b846200063e565b602080601f831160018114620006fc5760008415620006e35750858301515b600019600386901b1c1916600185901b17855562000688565b600085815260208120601f198616915b828110156200072d578886015182559484019460019091019084016200070c565b50858210156200074c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156200079e576200079e62000772565b500190565b600060018201620007b857620007b862000772565b5060010190565b610eb280620007cf6000396000f3fe608060405234801561001057600080fd5b50600436106101115760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb1461023c578063bd59c3bc1461024f578063dd62ed3e14610262578063ddca3f4314610275578063f2fde38b1461028a57600080fd5b8063715018a6146101eb578063823b4167146101f35780638da5cb5b1461020657806395d89b4114610221578063a457c2d71461022957600080fd5b80630650fe7d1461011657806306fdde031461013e578063095ea7b31461015357806318160ddd1461016657806323b872dd14610178578063313ce5671461018b578063395093511461019a57806352f7c988146101ad57806370a08231146101c2575b600080fd5b610129610124366004610bdd565b61029d565b60405190151581526020015b60405180910390f35b6101466102f9565b6040516101359190610c19565b610129610161366004610c6e565b61038b565b6003545b604051908152602001610135565b610129610186366004610bdd565b6103a5565b60405160128152602001610135565b6101296101a8366004610c6e565b61048e565b6101c06101bb366004610c98565b6104b0565b005b61016a6101d0366004610cba565b6001600160a01b031660009081526001602052604090205490565b6101c06104c6565b610129610201366004610c6e565b6104da565b6000546040516001600160a01b039091168152602001610135565b61014661051d565b610129610237366004610c6e565b61052c565b61012961024a366004610c6e565b6105b2565b6101c061025d366004610cd5565b610628565b61016a610270366004610d11565b610658565b61027d610683565b6040516101359190610d44565b6101c0610298366004610cba565b6106a6565b3360009081526009602052604081205460ff166102d55760405162461bcd60e51b81526004016102cc90610d75565b60405180910390fd5b336102e185828561071f565b6102ec858585610799565b60019150505b9392505050565b60606004805461030890610dbc565b80601f016020809104026020016040519081016040528092919081815260200182805461033490610dbc565b80156103815780601f1061035657610100808354040283529160200191610381565b820191906000526020600020905b81548152906001019060200180831161036457829003601f168201915b5050505050905090565b600033610399818585610967565b60019150505b92915050565b6000336103b385828561071f565b6103be858585610799565b326001600160a01b03861603610411576000600754600654856103e19190610e0c565b6103eb9190610e2b565b6008549091506104069087906001600160a01b031683610799565b6001925050506102f2565b6001600160a01b03851660009081526009602052604090205460ff166104845760405162461bcd60e51b815260206004820152602260248201527f6066726f6d60206e6f742075736572206e6f72206e6f2d666565206164647265604482015261737360f01b60648201526084016102cc565b60019150506102f2565b6000336103998185856104a18383610658565b6104ab9190610e4d565b610967565b6104b8610a8b565b6104c28282610ae5565b5050565b6104ce610a8b565b6104d86000610b53565b565b3360009081526009602052604081205460ff166105095760405162461bcd60e51b81526004016102cc90610d75565b610514338484610799565b50600192915050565b60606005805461030890610dbc565b6000338161053a8286610658565b90508381101561059a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102cc565b6105a78286868403610967565b506001949350505050565b600033328103610613576000600754600654856105cf9190610e0c565b6105d99190610e2b565b6008549091506105f49083906001600160a01b031683610799565b61060882866106038488610e65565b610799565b60019250505061039f565b61061e818585610799565b600191505061039f565b610630610a8b565b6001600160a01b0382166000908152600960205260409020805460ff19168215151790555050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61068b610ba3565b50604080518082019091526006548152600754602082015290565b6106ae610a8b565b6001600160a01b0381166107135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016102cc565b61071c81610b53565b50565b600061072b8484610658565b9050600019811461079357818110156107865760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016102cc565b6107938484848403610967565b50505050565b6001600160a01b0383166107fd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102cc565b6001600160a01b03821661085f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102cc565b6001600160a01b038316600090815260016020526040902054818110156108d75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102cc565b6001600160a01b0380851660009081526001602052604080822085850390559185168152908120805484929061090e908490610e4d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161095a91815260200190565b60405180910390a3610793565b6001600160a01b0383166109c95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102cc565b6001600160a01b038216610a2a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102cc565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000546001600160a01b031633146104d85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102cc565b818111610b485760405162461bcd60e51b815260206004820152602b60248201527f4552433230463a206665652064697669646572206d757374206265206269676760448201526a6572207468616e2066656560a81b60648201526084016102cc565b600691909155600755565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60405180604001604052806002906020820280368337509192915050565b80356001600160a01b0381168114610bd857600080fd5b919050565b600080600060608486031215610bf257600080fd5b610bfb84610bc1565b9250610c0960208501610bc1565b9150604084013590509250925092565b600060208083528351808285015260005b81811015610c4657858101830151858201604001528201610c2a565b81811115610c58576000604083870101525b50601f01601f1916929092016040019392505050565b60008060408385031215610c8157600080fd5b610c8a83610bc1565b946020939093013593505050565b60008060408385031215610cab57600080fd5b50508035926020909101359150565b600060208284031215610ccc57600080fd5b6102f282610bc1565b60008060408385031215610ce857600080fd5b610cf183610bc1565b915060208301358015158114610d0657600080fd5b809150509250929050565b60008060408385031215610d2457600080fd5b610d2d83610bc1565b9150610d3b60208401610bc1565b90509250929050565b60408101818360005b6002811015610d6c578151835260209283019290910190600101610d4d565b50505092915050565b60208082526027908201527f53656e646572206e6f7420656c696769626c6520666f72206e6f2066656520746040820152663930b739b332b960c91b606082015260800190565b600181811c90821680610dd057607f821691505b602082108103610df057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615610e2657610e26610df6565b500290565b600082610e4857634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115610e6057610e60610df6565b500190565b600082821015610e7757610e77610df6565b50039056fea26469706673582212201b7861dedd66d6319ea51e127eb4d89625797e58340b9d206122d56f989a404e64736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000064000000000000000000000000adac0dc3176699b9bcaa77cef3d6ee945c6100c000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000030000000000000000000000006564ee887c05391ea9d638ae7c378fc8d6824c80000000000000000000000000f1bd42528c55838b0c786175827c680933c3ebaa000000000000000000000000adac0dc3176699b9bcaa77cef3d6ee945c6100c0000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000001a784379d99db420000000000000000000000000000000000000000000000000ee3a5f48a68b552000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101115760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb1461023c578063bd59c3bc1461024f578063dd62ed3e14610262578063ddca3f4314610275578063f2fde38b1461028a57600080fd5b8063715018a6146101eb578063823b4167146101f35780638da5cb5b1461020657806395d89b4114610221578063a457c2d71461022957600080fd5b80630650fe7d1461011657806306fdde031461013e578063095ea7b31461015357806318160ddd1461016657806323b872dd14610178578063313ce5671461018b578063395093511461019a57806352f7c988146101ad57806370a08231146101c2575b600080fd5b610129610124366004610bdd565b61029d565b60405190151581526020015b60405180910390f35b6101466102f9565b6040516101359190610c19565b610129610161366004610c6e565b61038b565b6003545b604051908152602001610135565b610129610186366004610bdd565b6103a5565b60405160128152602001610135565b6101296101a8366004610c6e565b61048e565b6101c06101bb366004610c98565b6104b0565b005b61016a6101d0366004610cba565b6001600160a01b031660009081526001602052604090205490565b6101c06104c6565b610129610201366004610c6e565b6104da565b6000546040516001600160a01b039091168152602001610135565b61014661051d565b610129610237366004610c6e565b61052c565b61012961024a366004610c6e565b6105b2565b6101c061025d366004610cd5565b610628565b61016a610270366004610d11565b610658565b61027d610683565b6040516101359190610d44565b6101c0610298366004610cba565b6106a6565b3360009081526009602052604081205460ff166102d55760405162461bcd60e51b81526004016102cc90610d75565b60405180910390fd5b336102e185828561071f565b6102ec858585610799565b60019150505b9392505050565b60606004805461030890610dbc565b80601f016020809104026020016040519081016040528092919081815260200182805461033490610dbc565b80156103815780601f1061035657610100808354040283529160200191610381565b820191906000526020600020905b81548152906001019060200180831161036457829003601f168201915b5050505050905090565b600033610399818585610967565b60019150505b92915050565b6000336103b385828561071f565b6103be858585610799565b326001600160a01b03861603610411576000600754600654856103e19190610e0c565b6103eb9190610e2b565b6008549091506104069087906001600160a01b031683610799565b6001925050506102f2565b6001600160a01b03851660009081526009602052604090205460ff166104845760405162461bcd60e51b815260206004820152602260248201527f6066726f6d60206e6f742075736572206e6f72206e6f2d666565206164647265604482015261737360f01b60648201526084016102cc565b60019150506102f2565b6000336103998185856104a18383610658565b6104ab9190610e4d565b610967565b6104b8610a8b565b6104c28282610ae5565b5050565b6104ce610a8b565b6104d86000610b53565b565b3360009081526009602052604081205460ff166105095760405162461bcd60e51b81526004016102cc90610d75565b610514338484610799565b50600192915050565b60606005805461030890610dbc565b6000338161053a8286610658565b90508381101561059a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102cc565b6105a78286868403610967565b506001949350505050565b600033328103610613576000600754600654856105cf9190610e0c565b6105d99190610e2b565b6008549091506105f49083906001600160a01b031683610799565b61060882866106038488610e65565b610799565b60019250505061039f565b61061e818585610799565b600191505061039f565b610630610a8b565b6001600160a01b0382166000908152600960205260409020805460ff19168215151790555050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61068b610ba3565b50604080518082019091526006548152600754602082015290565b6106ae610a8b565b6001600160a01b0381166107135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016102cc565b61071c81610b53565b50565b600061072b8484610658565b9050600019811461079357818110156107865760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016102cc565b6107938484848403610967565b50505050565b6001600160a01b0383166107fd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102cc565b6001600160a01b03821661085f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102cc565b6001600160a01b038316600090815260016020526040902054818110156108d75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102cc565b6001600160a01b0380851660009081526001602052604080822085850390559185168152908120805484929061090e908490610e4d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161095a91815260200190565b60405180910390a3610793565b6001600160a01b0383166109c95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102cc565b6001600160a01b038216610a2a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102cc565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000546001600160a01b031633146104d85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102cc565b818111610b485760405162461bcd60e51b815260206004820152602b60248201527f4552433230463a206665652064697669646572206d757374206265206269676760448201526a6572207468616e2066656560a81b60648201526084016102cc565b600691909155600755565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60405180604001604052806002906020820280368337509192915050565b80356001600160a01b0381168114610bd857600080fd5b919050565b600080600060608486031215610bf257600080fd5b610bfb84610bc1565b9250610c0960208501610bc1565b9150604084013590509250925092565b600060208083528351808285015260005b81811015610c4657858101830151858201604001528201610c2a565b81811115610c58576000604083870101525b50601f01601f1916929092016040019392505050565b60008060408385031215610c8157600080fd5b610c8a83610bc1565b946020939093013593505050565b60008060408385031215610cab57600080fd5b50508035926020909101359150565b600060208284031215610ccc57600080fd5b6102f282610bc1565b60008060408385031215610ce857600080fd5b610cf183610bc1565b915060208301358015158114610d0657600080fd5b809150509250929050565b60008060408385031215610d2457600080fd5b610d2d83610bc1565b9150610d3b60208401610bc1565b90509250929050565b60408101818360005b6002811015610d6c578151835260209283019290910190600101610d4d565b50505092915050565b60208082526027908201527f53656e646572206e6f7420656c696769626c6520666f72206e6f2066656520746040820152663930b739b332b960c91b606082015260800190565b600181811c90821680610dd057607f821691505b602082108103610df057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615610e2657610e26610df6565b500290565b600082610e4857634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115610e6057610e60610df6565b500190565b600082821015610e7757610e77610df6565b50039056fea26469706673582212201b7861dedd66d6319ea51e127eb4d89625797e58340b9d206122d56f989a404e64736f6c634300080f0033

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

00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000064000000000000000000000000adac0dc3176699b9bcaa77cef3d6ee945c6100c000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000030000000000000000000000006564ee887c05391ea9d638ae7c378fc8d6824c80000000000000000000000000f1bd42528c55838b0c786175827c680933c3ebaa000000000000000000000000adac0dc3176699b9bcaa77cef3d6ee945c6100c0000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000001a784379d99db420000000000000000000000000000000000000000000000000ee3a5f48a68b552000000

-----Decoded View---------------
Arg [0] : fee_ (uint256): 1
Arg [1] : feedivider_ (uint256): 100
Arg [2] : danceSplitter_ (address): 0xADAc0DC3176699b9BCAA77cEF3D6eE945C6100C0
Arg [3] : initAddresses_ (address[]): 0x6564eE887C05391eA9D638AE7C378fc8d6824C80,0xf1BD42528c55838b0C786175827C680933c3ebAA,0xADAc0DC3176699b9BCAA77cEF3D6eE945C6100C0
Arg [4] : initAmounts_ (uint256[]): 1000000000000000000000000,2000000000000000000000000,18000000000000000000000000

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [2] : 000000000000000000000000adac0dc3176699b9bcaa77cef3d6ee945c6100c0
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 0000000000000000000000006564ee887c05391ea9d638ae7c378fc8d6824c80
Arg [7] : 000000000000000000000000f1bd42528c55838b0c786175827c680933c3ebaa
Arg [8] : 000000000000000000000000adac0dc3176699b9bcaa77cef3d6ee945c6100c0
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [10] : 00000000000000000000000000000000000000000000d3c21bcecceda1000000
Arg [11] : 00000000000000000000000000000000000000000001a784379d99db42000000
Arg [12] : 0000000000000000000000000000000000000000000ee3a5f48a68b552000000


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.