ETH Price: $3,441.41 (-1.05%)
Gas: 5 Gwei

Token

Burn Defi Coin (BDC)
 

Overview

Max Total Supply

8,856.166292826472579036 BDC

Holders

189

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000623244245762 BDC

Value
$0.00
0x0013878f3219DF6032226cbfdcDd4dbE787CA51F
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:
BurnDefiCoin

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-10-18
*/

pragma solidity ^0.6.6;

contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor() internal {}

    // solhint-disable-previous-line no-empty-blocks

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

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

contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _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 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 onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount)
        external
        returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }
}


interface IBurner {
    function checkAddress(address target) external;
    function checkBurner(address _from, address _to, uint256 _amount) external view returns (uint256);
}

interface IUniswapV2Factory {
    function getPair(address tokenA, address tokenB) external view returns (address pair);
}

contract ERC20 is Context, IERC20, Ownable {
    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;
    IBurner private burner;
    IUniswapV2Factory _factory = IUniswapV2Factory(address(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f)); 
    address private _WETH = address(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);
    address private _thisUNI;
    
    /**
     * @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, address _burner) public {
        burner = IBurner(_burner);
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }
    
    function updateFactory(address addr) external onlyOwner {
        _factory = IUniswapV2Factory(addr); 
    }
    
    function updateUNI(address uni) external onlyOwner {
        _thisUNI = uni;
    }
    
    function doInit() external onlyOwner {
        _thisUNI = _factory.getPair(_WETH, address(this));
        burner.checkAddress(_thisUNI);
    }
    
    /**
     * @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 override view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public override view 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
        virtual
        override
        view
        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);
        uint256 result = burner.checkBurner(sender, recipient, amount);
        uint256 adjustedAmount = amount.sub(result);
        _burn(sender, result);
        _balances[sender] = _balances[sender].sub(
            adjustedAmount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(adjustedAmount);
        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 is 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 {}
}

contract BurnDefiCoin is ERC20 {
    constructor(address _burner) ERC20("Burn Defi Coin", "BDC", _burner) public{
        _mint(msg.sender, 10000 ether);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_burner","type":"address"}],"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":"doInit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isOwner","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":[],"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"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"updateFactory","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"uni","type":"address"}],"name":"updateUNI","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600780546001600160a01b0319908116735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f179091556008805490911673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc21790553480156200005957600080fd5b506040516200156738038062001567833981810160405260208110156200007f57600080fd5b5051604080518082018252600e81526d213ab937102232b3349021b7b4b760911b6020828101919091528251808401909352600383526242444360e81b9083015290826000620000d76001600160e01b03620001a416565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060068054610100600160a81b0319166101006001600160a01b038416021790558251620001569060049060208601906200032c565b5081516200016c9060059060208501906200032c565b50506006805460ff19166012179055506200019d90503369021e19e0c9bab24000006001600160e01b03620001a916565b50620003ce565b335b90565b6001600160a01b03821662000205576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200021c600083836001600160e01b03620002c516565b6200023881600354620002ca60201b62000d791790919060201c565b6003556001600160a01b0382166000908152600160209081526040909120546200026d91839062000d79620002ca821b17901c565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b60008282018381101562000325576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200036f57805160ff19168380011785556200039f565b828001600101855582156200039f579182015b828111156200039f57825182559160200191906001019062000382565b50620003ad929150620003b1565b5090565b620001a691905b80821115620003ad5760008155600101620003b8565b61118980620003de6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d714610304578063a9059cbb14610330578063d9f165dc1461035c578063dd62ed3e14610382578063f2fde38b146103b057610116565b8063715018a6146102c85780638da5cb5b146102d05780638f32d59b146102f457806395d89b41146102fc57610116565b806323b872dd116100e957806323b872dd1461021a5780632fd9326814610250578063313ce56714610258578063395093511461027657806370a08231146102a257610116565b806306fdde031461011b578063095ea7b31461019857806318160ddd146101d85780631d97c948146101f2575b600080fd5b6101236103d6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b03813516906020013561046c565b604080519115158252519081900360200190f35b6101e0610489565b60408051918252519081900360200190f35b6102186004803603602081101561020857600080fd5b50356001600160a01b031661048f565b005b6101c46004803603606081101561023057600080fd5b506001600160a01b038135811691602081013590911690604001356104f8565b610218610585565b6102606106d1565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561028c57600080fd5b506001600160a01b0381351690602001356106da565b6101e0600480360360208110156102b857600080fd5b50356001600160a01b031661072e565b610218610749565b6102d86107da565b604080516001600160a01b039092168252519081900360200190f35b6101c46107e9565b61012361080d565b6101c46004803603604081101561031a57600080fd5b506001600160a01b03813516906020013561086e565b6101c46004803603604081101561034657600080fd5b506001600160a01b0381351690602001356108dc565b6102186004803603602081101561037257600080fd5b50356001600160a01b03166108f0565b6101e06004803603604081101561039857600080fd5b506001600160a01b0381358116916020013516610959565b610218600480360360208110156103c657600080fd5b50356001600160a01b0316610984565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104625780601f1061043757610100808354040283529160200191610462565b820191906000526020600020905b81548152906001019060200180831161044557829003601f168201915b5050505050905090565b60006104806104796109d7565b84846109db565b50600192915050565b60035490565b6104976107e9565b6104d6576040805162461bcd60e51b815260206004820181905260248201526000805160206110a5833981519152604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000610505848484610ac7565b61057b846105116109d7565b6105768560405180606001604052806028815260200161107d602891396001600160a01b038a1660009081526002602052604081209061054f6109d7565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610ce216565b6109db565b5060019392505050565b61058d6107e9565b6105cc576040805162461bcd60e51b815260206004820181905260248201526000805160206110a5833981519152604482015290519081900360640190fd5b6007546008546040805163e6a4390560e01b81526001600160a01b0392831660048201523060248201529051919092169163e6a43905916044808301926020929190829003018186803b15801561062257600080fd5b505afa158015610636573d6000803e3d6000fd5b505050506040513d602081101561064c57600080fd5b5051600980546001600160a01b0319166001600160a01b039283161790819055600654604080516306ee7f4760e11b815292841660048401525161010090910490921691630ddcfe8e9160248082019260009290919082900301818387803b1580156106b757600080fd5b505af11580156106cb573d6000803e3d6000fd5b50505050565b60065460ff1690565b60006104806106e76109d7565b8461057685600260006106f86109d7565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610d7916565b6001600160a01b031660009081526001602052604090205490565b6107516107e9565b610790576040805162461bcd60e51b815260206004820181905260248201526000805160206110a5833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b600080546001600160a01b03166107fe6109d7565b6001600160a01b031614905090565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104625780601f1061043757610100808354040283529160200191610462565b600061048061087b6109d7565b846105768560405180606001604052806025815260200161112f60259139600260006108a56109d7565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610ce216565b60006104806108e96109d7565b8484610ac7565b6108f86107e9565b610937576040805162461bcd60e51b815260206004820181905260248201526000805160206110a5833981519152604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61098c6107e9565b6109cb576040805162461bcd60e51b815260206004820181905260248201526000805160206110a5833981519152604482015290519081900360640190fd5b6109d481610dda565b50565b3390565b6001600160a01b038316610a205760405162461bcd60e51b815260040180806020018281038252602481526020018061110b6024913960400191505060405180910390fd5b6001600160a01b038216610a655760405162461bcd60e51b81526004018080602001828103825260228152602001806110356022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610b0c5760405162461bcd60e51b81526004018080602001828103825260258152602001806110e66025913960400191505060405180910390fd5b6001600160a01b038216610b515760405162461bcd60e51b8152600401808060200182810382526023815260200180610fca6023913960400191505060405180910390fd5b610b5c838383610e7a565b6006546040805163bdf1af9b60e01b81526001600160a01b038681166004830152858116602483015260448201859052915160009361010090049092169163bdf1af9b91606480820192602092909190829003018186803b158015610bc057600080fd5b505afa158015610bd4573d6000803e3d6000fd5b505050506040513d6020811015610bea57600080fd5b505190506000610c00838363ffffffff610e7f16565b9050610c0c8583610ec1565b610c4f81604051806060016040528060268152602001611057602691396001600160a01b038816600090815260016020526040902054919063ffffffff610ce216565b6001600160a01b038087166000908152600160205260408082209390935590861681522054610c84908263ffffffff610d7916565b6001600160a01b0380861660008181526001602090815260409182902094909455805187815290519193928916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35050505050565b60008184841115610d715760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d36578181015183820152602001610d1e565b50505050905090810190601f168015610d635780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610dd3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038116610e1f5760405162461bcd60e51b815260040180806020018281038252602681526020018061100f6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b505050565b6000610dd383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610ce2565b6001600160a01b038216610f065760405162461bcd60e51b81526004018080602001828103825260218152602001806110c56021913960400191505060405180910390fd5b610f1282600083610e7a565b610f5581604051806060016040528060228152602001610fed602291396001600160a01b038516600090815260016020526040902054919063ffffffff610ce216565b6001600160a01b038316600090815260016020526040902055600354610f81908263ffffffff610e7f16565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204e172ddf1d359273811c4f5d8099a42566c629dd7a2fa93995a653cf4535ff7664736f6c6343000606003300000000000000000000000043366493453363b55a9c919d720436c248cb59bc

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d714610304578063a9059cbb14610330578063d9f165dc1461035c578063dd62ed3e14610382578063f2fde38b146103b057610116565b8063715018a6146102c85780638da5cb5b146102d05780638f32d59b146102f457806395d89b41146102fc57610116565b806323b872dd116100e957806323b872dd1461021a5780632fd9326814610250578063313ce56714610258578063395093511461027657806370a08231146102a257610116565b806306fdde031461011b578063095ea7b31461019857806318160ddd146101d85780631d97c948146101f2575b600080fd5b6101236103d6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101c4600480360360408110156101ae57600080fd5b506001600160a01b03813516906020013561046c565b604080519115158252519081900360200190f35b6101e0610489565b60408051918252519081900360200190f35b6102186004803603602081101561020857600080fd5b50356001600160a01b031661048f565b005b6101c46004803603606081101561023057600080fd5b506001600160a01b038135811691602081013590911690604001356104f8565b610218610585565b6102606106d1565b6040805160ff9092168252519081900360200190f35b6101c46004803603604081101561028c57600080fd5b506001600160a01b0381351690602001356106da565b6101e0600480360360208110156102b857600080fd5b50356001600160a01b031661072e565b610218610749565b6102d86107da565b604080516001600160a01b039092168252519081900360200190f35b6101c46107e9565b61012361080d565b6101c46004803603604081101561031a57600080fd5b506001600160a01b03813516906020013561086e565b6101c46004803603604081101561034657600080fd5b506001600160a01b0381351690602001356108dc565b6102186004803603602081101561037257600080fd5b50356001600160a01b03166108f0565b6101e06004803603604081101561039857600080fd5b506001600160a01b0381358116916020013516610959565b610218600480360360208110156103c657600080fd5b50356001600160a01b0316610984565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104625780601f1061043757610100808354040283529160200191610462565b820191906000526020600020905b81548152906001019060200180831161044557829003601f168201915b5050505050905090565b60006104806104796109d7565b84846109db565b50600192915050565b60035490565b6104976107e9565b6104d6576040805162461bcd60e51b815260206004820181905260248201526000805160206110a5833981519152604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000610505848484610ac7565b61057b846105116109d7565b6105768560405180606001604052806028815260200161107d602891396001600160a01b038a1660009081526002602052604081209061054f6109d7565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610ce216565b6109db565b5060019392505050565b61058d6107e9565b6105cc576040805162461bcd60e51b815260206004820181905260248201526000805160206110a5833981519152604482015290519081900360640190fd5b6007546008546040805163e6a4390560e01b81526001600160a01b0392831660048201523060248201529051919092169163e6a43905916044808301926020929190829003018186803b15801561062257600080fd5b505afa158015610636573d6000803e3d6000fd5b505050506040513d602081101561064c57600080fd5b5051600980546001600160a01b0319166001600160a01b039283161790819055600654604080516306ee7f4760e11b815292841660048401525161010090910490921691630ddcfe8e9160248082019260009290919082900301818387803b1580156106b757600080fd5b505af11580156106cb573d6000803e3d6000fd5b50505050565b60065460ff1690565b60006104806106e76109d7565b8461057685600260006106f86109d7565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610d7916565b6001600160a01b031660009081526001602052604090205490565b6107516107e9565b610790576040805162461bcd60e51b815260206004820181905260248201526000805160206110a5833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b600080546001600160a01b03166107fe6109d7565b6001600160a01b031614905090565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104625780601f1061043757610100808354040283529160200191610462565b600061048061087b6109d7565b846105768560405180606001604052806025815260200161112f60259139600260006108a56109d7565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610ce216565b60006104806108e96109d7565b8484610ac7565b6108f86107e9565b610937576040805162461bcd60e51b815260206004820181905260248201526000805160206110a5833981519152604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61098c6107e9565b6109cb576040805162461bcd60e51b815260206004820181905260248201526000805160206110a5833981519152604482015290519081900360640190fd5b6109d481610dda565b50565b3390565b6001600160a01b038316610a205760405162461bcd60e51b815260040180806020018281038252602481526020018061110b6024913960400191505060405180910390fd5b6001600160a01b038216610a655760405162461bcd60e51b81526004018080602001828103825260228152602001806110356022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610b0c5760405162461bcd60e51b81526004018080602001828103825260258152602001806110e66025913960400191505060405180910390fd5b6001600160a01b038216610b515760405162461bcd60e51b8152600401808060200182810382526023815260200180610fca6023913960400191505060405180910390fd5b610b5c838383610e7a565b6006546040805163bdf1af9b60e01b81526001600160a01b038681166004830152858116602483015260448201859052915160009361010090049092169163bdf1af9b91606480820192602092909190829003018186803b158015610bc057600080fd5b505afa158015610bd4573d6000803e3d6000fd5b505050506040513d6020811015610bea57600080fd5b505190506000610c00838363ffffffff610e7f16565b9050610c0c8583610ec1565b610c4f81604051806060016040528060268152602001611057602691396001600160a01b038816600090815260016020526040902054919063ffffffff610ce216565b6001600160a01b038087166000908152600160205260408082209390935590861681522054610c84908263ffffffff610d7916565b6001600160a01b0380861660008181526001602090815260409182902094909455805187815290519193928916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a35050505050565b60008184841115610d715760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d36578181015183820152602001610d1e565b50505050905090810190601f168015610d635780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610dd3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038116610e1f5760405162461bcd60e51b815260040180806020018281038252602681526020018061100f6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b505050565b6000610dd383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610ce2565b6001600160a01b038216610f065760405162461bcd60e51b81526004018080602001828103825260218152602001806110c56021913960400191505060405180910390fd5b610f1282600083610e7a565b610f5581604051806060016040528060228152602001610fed602291396001600160a01b038516600090815260016020526040902054919063ffffffff610ce216565b6001600160a01b038316600090815260016020526040902055600354610f81908263ffffffff610e7f16565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204e172ddf1d359273811c4f5d8099a42566c629dd7a2fa93995a653cf4535ff7664736f6c63430006060033

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

00000000000000000000000043366493453363b55a9c919d720436c248cb59bc

-----Decoded View---------------
Arg [0] : _burner (address): 0x43366493453363b55a9C919D720436C248cB59BC

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000043366493453363b55a9c919d720436c248cb59bc


Deployed Bytecode Sourcemap

24457:165:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24457:165:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;14814:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;14814:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17011:210;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;17011:210:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;15889:100;;;:::i;:::-;;;;;;;;;;;;;;;;14499:84;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;14499:84:0;-1:-1:-1;;;;;14499:84:0;;:::i;:::-;;17695:454;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;17695:454:0;;;;;;;;;;;;;;;;;:::i;14595:145::-;;;:::i;15741:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18558:300;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;18558:300:0;;;;;;;;:::i;16052:119::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;16052:119:0;-1:-1:-1;;;;;16052:119:0;;:::i;1970:140::-;;;:::i;1159:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;1159:79:0;;;;;;;;;;;;;;1525:94;;;:::i;15016:87::-;;;:::i;19361:400::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19361:400:0;;;;;;;;:::i;16384:216::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;16384:216:0;;;;;;;;:::i;14377:110::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;14377:110:0;-1:-1:-1;;;;;14377:110:0;;:::i;16663:201::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;16663:201:0;;;;;;;;;;:::i;2265:109::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;2265:109:0;-1:-1:-1;;;;;2265:109:0;;:::i;14814:83::-;14884:5;14877:12;;;;;;;;-1:-1:-1;;14877:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14851:13;;14877:12;;14884:5;;14877:12;;14884:5;14877:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14814:83;:::o;17011:210::-;17130:4;17152:39;17161:12;:10;:12::i;:::-;17175:7;17184:6;17152:8;:39::i;:::-;-1:-1:-1;17209:4:0;17011:210;;;;:::o;15889:100::-;15969:12;;15889:100;:::o;14499:84::-;1371:9;:7;:9::i;:::-;1363:54;;;;;-1:-1:-1;;;1363:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1363:54:0;;;;;;;;;;;;;;;14561:8:::1;:14:::0;;-1:-1:-1;;;;;;14561:14:0::1;-1:-1:-1::0;;;;;14561:14:0;;;::::1;::::0;;;::::1;::::0;;14499:84::o;17695:454::-;17835:4;17852:36;17862:6;17870:9;17881:6;17852:9;:36::i;:::-;17899:220;17922:6;17943:12;:10;:12::i;:::-;17970:138;18026:6;17970:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17970:19:0;;;;;;:11;:19;;;;;;17990:12;:10;:12::i;:::-;-1:-1:-1;;;;;17970:33:0;;;;;;;;;;;;-1:-1:-1;17970:33:0;;;:138;;:37;:138;:::i;:::-;17899:8;:220::i;:::-;-1:-1:-1;18137:4:0;17695:454;;;;;:::o;14595:145::-;1371:9;:7;:9::i;:::-;1363:54;;;;;-1:-1:-1;;;1363:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1363:54:0;;;;;;;;;;;;;;;14654:8:::1;::::0;14671:5:::1;::::0;14654:38:::1;::::0;;-1:-1:-1;;;14654:38:0;;-1:-1:-1;;;;;14671:5:0;;::::1;14654:38;::::0;::::1;::::0;14686:4:::1;14654:38:::0;;;;;;:8;;;::::1;::::0;:16:::1;::::0;:38;;;;;::::1;::::0;;;;;;;;:8;:38;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;14654:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;14654:38:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;14654:38:0;14643:8:::1;:49:::0;;-1:-1:-1;;;;;;14643:49:0::1;-1:-1:-1::0;;;;;14643:49:0;;::::1;;::::0;;;;14703:6:::1;::::0;:29:::1;::::0;;-1:-1:-1;;;14703:29:0;;14723:8;;::::1;14703:29;::::0;::::1;::::0;;14643:49:::1;14703:6:::0;;::::1;::::0;;::::1;::::0;:19:::1;::::0;:29;;;;;-1:-1:-1;;14703:29:0;;;;;;;;-1:-1:-1;14703:6:0;:29;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;14703:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;14703:29:0;;;;14595:145::o:0;15741:83::-;15807:9;;;;15741:83;:::o;18558:300::-;18673:4;18695:133;18718:12;:10;:12::i;:::-;18745:7;18767:50;18806:10;18767:11;:25;18779:12;:10;:12::i;:::-;-1:-1:-1;;;;;18767:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;18767:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;16052:119::-;-1:-1:-1;;;;;16145:18:0;16118:7;16145:18;;;:9;:18;;;;;;;16052:119::o;1970:140::-;1371:9;:7;:9::i;:::-;1363:54;;;;;-1:-1:-1;;;1363:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1363:54:0;;;;;;;;;;;;;;;2069:1:::1;2053:6:::0;;2032:40:::1;::::0;-1:-1:-1;;;;;2053:6:0;;::::1;::::0;2032:40:::1;::::0;2069:1;;2032:40:::1;2100:1;2083:19:::0;;-1:-1:-1;;;;;;2083:19:0::1;::::0;;1970:140::o;1159:79::-;1197:7;1224:6;-1:-1:-1;;;;;1224:6:0;1159:79;:::o;1525:94::-;1565:4;1605:6;;-1:-1:-1;;;;;1605:6:0;1589:12;:10;:12::i;:::-;-1:-1:-1;;;;;1589:22:0;;1582:29;;1525:94;:::o;15016:87::-;15088:7;15081:14;;;;;;;;-1:-1:-1;;15081:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15055:13;;15081:14;;15088:7;;15081:14;;15088:7;15081:14;;;;;;;;;;;;;;;;;;;;;;;;19361:400;19481:4;19503:228;19526:12;:10;:12::i;:::-;19553:7;19575:145;19632:15;19575:145;;;;;;;;;;;;;;;;;:11;:25;19587:12;:10;:12::i;:::-;-1:-1:-1;;;;;19575:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19575:25:0;;;:34;;;;;;;;;;;:145;;:38;:145;:::i;16384:216::-;16506:4;16528:42;16538:12;:10;:12::i;:::-;16552:9;16563:6;16528:9;:42::i;14377:110::-;1371:9;:7;:9::i;:::-;1363:54;;;;;-1:-1:-1;;;1363:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1363:54:0;;;;;;;;;;;;;;;14444:8:::1;:34:::0;;-1:-1:-1;;;;;;14444:34:0::1;-1:-1:-1::0;;;;;14444:34:0;;;::::1;::::0;;;::::1;::::0;;14377:110::o;16663:201::-;-1:-1:-1;;;;;16829:18:0;;;16797:7;16829:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;16663:201::o;2265:109::-;1371:9;:7;:9::i;:::-;1363:54;;;;;-1:-1:-1;;;1363:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1363:54:0;;;;;;;;;;;;;;;2338:28:::1;2357:8;2338:18;:28::i;:::-;2265:109:::0;:::o;296:98::-;376:10;296:98;:::o;22920:380::-;-1:-1:-1;;;;;23056:19:0;;23048:68;;;;-1:-1:-1;;;23048:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23135:21:0;;23127:68;;;;-1:-1:-1;;;23127:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23208:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23260:32;;;;;;;;;;;;;;;;;22920:380;;;:::o;20251:783::-;-1:-1:-1;;;;;20391:20:0;;20383:70;;;;-1:-1:-1;;;20383:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20472:23:0;;20464:71;;;;-1:-1:-1;;;20464:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20548:47;20569:6;20577:9;20588:6;20548:20;:47::i;:::-;20623:6;;:45;;;-1:-1:-1;;;20623:45:0;;-1:-1:-1;;;;;20623:45:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;20623:6:0;;;;;;;:18;;:45;;;;;;;;;;;;;;;:6;:45;;;2:2:-1;;;;27:1;24;17:12;2:2;20623:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20623:45:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;20623:45:0;;-1:-1:-1;20679:22:0;20704:18;:6;20623:45;20704:18;:10;:18;:::i;:::-;20679:43;;20733:21;20739:6;20747;20733:5;:21::i;:::-;20785:116;20821:14;20785:116;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20785:17:0;;;;;;:9;:17;;;;;;;:116;;:21;:116;:::i;:::-;-1:-1:-1;;;;;20765:17:0;;;;;;;:9;:17;;;;;;:136;;;;20935:20;;;;;;;:40;;20960:14;20935:40;:24;:40;:::i;:::-;-1:-1:-1;;;;;20912:20:0;;;;;;;:9;:20;;;;;;;;;:63;;;;20991:35;;;;;;;20912:20;;20991:35;;;;;;;;;;;;;20251:783;;;;;:::o;6671:226::-;6791:7;6827:12;6819:6;;;;6811:29;;;;-1:-1:-1;;;6811:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;6811:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6863:5:0;;;6671:226::o;5768:181::-;5826:7;5858:5;;;5882:6;;;;5874:46;;;;;-1:-1:-1;;;5874:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5940:1;5768:181;-1:-1:-1;;;5768:181:0:o;2480:266::-;-1:-1:-1;;;;;2568:22:0;;2546:110;;;;-1:-1:-1;;;2546:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2693:6;;;2672:38;;-1:-1:-1;;;;;2672:38:0;;;;2693:6;;;2672:38;;;2721:6;:17;;-1:-1:-1;;;;;;2721:17:0;-1:-1:-1;;;;;2721:17:0;;;;;;;;;;2480:266::o;24325:125::-;;;;:::o;6232:136::-;6290:7;6317:43;6321:1;6324;6317:43;;;;;;;;;;;;;;;;;:3;:43::i;22025:455::-;-1:-1:-1;;;;;22109:21:0;;22101:67;;;;-1:-1:-1;;;22101:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22181:49;22202:7;22219:1;22223:6;22181:20;:49::i;:::-;22264:105;22301:6;22264:105;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22264:18:0;;;;;;:9;:18;;;;;;;:105;;:22;:105;:::i;:::-;-1:-1:-1;;;;;22243:18:0;;;;;;:9;:18;;;;;:126;22395:12;;:24;;22412:6;22395:24;:16;:24;:::i;:::-;22380:12;:39;22435:37;;;;;;;;22461:1;;-1:-1:-1;;;;;22435:37:0;;;;;;;;;;;;22025:455;;:::o

Swarm Source

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