ETH Price: $2,835.72 (-7.14%)
Gas: 8 Gwei

Token

PooledPKN (pPKN)
 

Overview

Max Total Supply

17,857,042.547907487565138278 pPKN

Holders

602

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
flytsetse.eth
Balance
515.30751707661185509 pPKN

Value
$0.00
0xd7a4967a0f453ca2e1e61027d1cd754591dc7452
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:
PooledPKN

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @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 ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @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_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `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 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `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 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 {}
}

// This contract handles pooling PKN to get pPKN - and harvest periodic rewards
contract PooledPKN is ERC20("PooledPKN", "pPKN") {
    IERC20 public immutable PKN;

    constructor(IERC20 _PKN) {
        PKN = _PKN;
    }

    // Locks PKN and mints pPKN
    function enter(uint256 _amount) public {

        uint256 totalPKN = PKN.balanceOf(address(this));
        uint256 totalShares = totalSupply();
        uint256 _actualAmount = _receivePKN(msg.sender, _amount);

        if (totalShares == 0 || totalPKN == 0) {
            _mint(msg.sender, _actualAmount);
        } 
        else {
            uint256 what = (_actualAmount * totalShares) / totalPKN;
            _mint(msg.sender, what);
        }
    }

    function pknPooledByUser(address user) public view returns(uint256) {
        uint256 totalPKN = PKN.balanceOf(address(this));
        uint256 totalShares = totalSupply();
        return (balanceOf(user) * totalPKN) / totalShares;
    }

    // Unlocks the staked PKN and burns pPKN
    function leave(uint256 _share) public {
        uint256 totalPKN = PKN.balanceOf(address(this));
        uint256 totalShares = totalSupply();
        uint256 what = (_share * totalPKN) / totalShares;
        _burn(msg.sender, _share);
        PKN.transfer(msg.sender, what);
    }

    function _transfer(address sender, address recipient, uint256 amount) internal pure override {
        require(false, "pPKN: No transfers allowed");
    }

    function _receivePKN(address from, uint256 amount) internal returns(uint256) {
        uint256 balanceBefore = PKN.balanceOf(address(this));
        PKN.transferFrom(from, address(this), amount);
        uint256 balanceAfter = PKN.balanceOf(address(this));
        return balanceAfter - balanceBefore;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IERC20","name":"_PKN","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PKN","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"enter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_share","type":"uint256"}],"name":"leave","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"pknPooledByUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"}]

60a06040523480156200001157600080fd5b506040516200124c3803806200124c833981016040819052620000349162000156565b60408051808201825260098152682837b7b632b22825a760b91b602080830191825283518085019094526004845263382825a760e11b9084015281519192916200008191600391620000b0565b50805162000097906004906020840190620000b0565b50505060601b6001600160601b031916608052620001c5565b828054620000be9062000188565b90600052602060002090601f016020900481019282620000e257600085556200012d565b82601f10620000fd57805160ff19168380011785556200012d565b828001600101855582156200012d579182015b828111156200012d57825182559160200191906001019062000110565b506200013b9291506200013f565b5090565b5b808211156200013b576000815560010162000140565b6000602082840312156200016957600080fd5b81516001600160a01b03811681146200018157600080fd5b9392505050565b600181811c908216806200019d57607f821691505b60208210811415620001bf57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c61103762000215600039600081816101af015281816104050152818161051f015281816105ef0152818161073a01528181610b0a01528181610bb30152610c4a01526110376000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806367dfd4c911610097578063a457c2d711610066578063a457c2d71461021a578063a59f3e0c1461022d578063a9059cbb14610240578063dd62ed3e1461025357600080fd5b806367dfd4c914610195578063688c3e40146101aa57806370a08231146101e957806395d89b411461021257600080fd5b806323b872dd116100d357806323b872dd1461014d5780632dd71b9914610160578063313ce56714610173578063395093511461018257600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b61010261028c565b60405161010f9190610eeb565b60405180910390f35b61012b610126366004610e6d565b61031e565b604051901515815260200161010f565b6002545b60405190815260200161010f565b61012b61015b366004610e31565b610334565b61013f61016e366004610ddc565b6103e3565b6040516012815260200161010f565b61012b610190366004610e6d565b6104cb565b6101a86101a3366004610eb9565b610507565b005b6101d17f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161010f565b61013f6101f7366004610ddc565b6001600160a01b031660009081526020819052604090205490565b61010261067a565b61012b610228366004610e6d565b610689565b6101a861023b366004610eb9565b610722565b61012b61024e366004610e6d565b610821565b61013f610261366004610dfe565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461029b90610fb0565b80601f01602080910402602001604051908101604052809291908181526020018280546102c790610fb0565b80156103145780601f106102e957610100808354040283529160200191610314565b820191906000526020600020905b8154815290600101906020018083116102f757829003601f168201915b5050505050905090565b600061032b33848461082e565b50600192915050565b6000610341848484610952565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103cb5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103d8853385840361082e565b506001949350505050565b6040516370a0823160e01b815230600482015260009081906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b15801561044757600080fd5b505afa15801561045b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061047f9190610ed2565b9050600061048c60025490565b905080826104af866001600160a01b031660009081526020819052604090205490565b6104b99190610f7a565b6104c39190610f58565b949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161032b918590610502908690610f40565b61082e565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a082319060240160206040518083038186803b15801561056957600080fd5b505afa15801561057d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105a19190610ed2565b905060006105ae60025490565b90506000816105bd8486610f7a565b6105c79190610f58565b90506105d3338561099a565b60405163a9059cbb60e01b8152336004820152602481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a9059cbb90604401602060405180830381600087803b15801561063b57600080fd5b505af115801561064f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106739190610e97565b5050505050565b60606004805461029b90610fb0565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561070b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103c2565b610718338585840361082e565b5060019392505050565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a082319060240160206040518083038186803b15801561078457600080fd5b505afa158015610798573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107bc9190610ed2565b905060006107c960025490565b905060006107d73385610ae8565b90508115806107e4575082155b156107f8576107f33382610ce1565b61081b565b6000836108058484610f7a565b61080f9190610f58565b90506106733382610ce1565b50505050565b600061032b338484610952565b6001600160a01b0383166108905760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103c2565b6001600160a01b0382166108f15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103c2565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60405162461bcd60e51b815260206004820152601a60248201527f70504b4e3a204e6f207472616e736665727320616c6c6f77656400000000000060448201526064016103c2565b6001600160a01b0382166109fa5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103c2565b6001600160a01b03821660009081526020819052604090205481811015610a6e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103c2565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610a9d908490610f99565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6040516370a0823160e01b815230600482015260009081906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b158015610b4c57600080fd5b505afa158015610b60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b849190610ed2565b6040516323b872dd60e01b81526001600160a01b038681166004830152306024830152604482018690529192507f0000000000000000000000000000000000000000000000000000000000000000909116906323b872dd90606401602060405180830381600087803b158015610bf957600080fd5b505af1158015610c0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c319190610e97565b506040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a082319060240160206040518083038186803b158015610c9457600080fd5b505afa158015610ca8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ccc9190610ed2565b9050610cd88282610f99565b95945050505050565b6001600160a01b038216610d375760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103c2565b8060026000828254610d499190610f40565b90915550506001600160a01b03821660009081526020819052604081208054839290610d76908490610f40565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b80356001600160a01b0381168114610dd757600080fd5b919050565b600060208284031215610dee57600080fd5b610df782610dc0565b9392505050565b60008060408385031215610e1157600080fd5b610e1a83610dc0565b9150610e2860208401610dc0565b90509250929050565b600080600060608486031215610e4657600080fd5b610e4f84610dc0565b9250610e5d60208501610dc0565b9150604084013590509250925092565b60008060408385031215610e8057600080fd5b610e8983610dc0565b946020939093013593505050565b600060208284031215610ea957600080fd5b81518015158114610df757600080fd5b600060208284031215610ecb57600080fd5b5035919050565b600060208284031215610ee457600080fd5b5051919050565b600060208083528351808285015260005b81811015610f1857858101830151858201604001528201610efc565b81811115610f2a576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610f5357610f53610feb565b500190565b600082610f7557634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615610f9457610f94610feb565b500290565b600082821015610fab57610fab610feb565b500390565b600181811c90821680610fc457607f821691505b60208210811415610fe557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122006444e0ce3e61aa1aa3146774045d2e32b7f6d5cd6b7ce9a654feebb017497d164736f6c63430008070033000000000000000000000000df09a216fac5adc3e640db418c0b956076509503

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806367dfd4c911610097578063a457c2d711610066578063a457c2d71461021a578063a59f3e0c1461022d578063a9059cbb14610240578063dd62ed3e1461025357600080fd5b806367dfd4c914610195578063688c3e40146101aa57806370a08231146101e957806395d89b411461021257600080fd5b806323b872dd116100d357806323b872dd1461014d5780632dd71b9914610160578063313ce56714610173578063395093511461018257600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b61010261028c565b60405161010f9190610eeb565b60405180910390f35b61012b610126366004610e6d565b61031e565b604051901515815260200161010f565b6002545b60405190815260200161010f565b61012b61015b366004610e31565b610334565b61013f61016e366004610ddc565b6103e3565b6040516012815260200161010f565b61012b610190366004610e6d565b6104cb565b6101a86101a3366004610eb9565b610507565b005b6101d17f000000000000000000000000df09a216fac5adc3e640db418c0b95607650950381565b6040516001600160a01b03909116815260200161010f565b61013f6101f7366004610ddc565b6001600160a01b031660009081526020819052604090205490565b61010261067a565b61012b610228366004610e6d565b610689565b6101a861023b366004610eb9565b610722565b61012b61024e366004610e6d565b610821565b61013f610261366004610dfe565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461029b90610fb0565b80601f01602080910402602001604051908101604052809291908181526020018280546102c790610fb0565b80156103145780601f106102e957610100808354040283529160200191610314565b820191906000526020600020905b8154815290600101906020018083116102f757829003601f168201915b5050505050905090565b600061032b33848461082e565b50600192915050565b6000610341848484610952565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103cb5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103d8853385840361082e565b506001949350505050565b6040516370a0823160e01b815230600482015260009081906001600160a01b037f000000000000000000000000df09a216fac5adc3e640db418c0b95607650950316906370a082319060240160206040518083038186803b15801561044757600080fd5b505afa15801561045b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061047f9190610ed2565b9050600061048c60025490565b905080826104af866001600160a01b031660009081526020819052604090205490565b6104b99190610f7a565b6104c39190610f58565b949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161032b918590610502908690610f40565b61082e565b6040516370a0823160e01b81523060048201526000907f000000000000000000000000df09a216fac5adc3e640db418c0b9560765095036001600160a01b0316906370a082319060240160206040518083038186803b15801561056957600080fd5b505afa15801561057d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105a19190610ed2565b905060006105ae60025490565b90506000816105bd8486610f7a565b6105c79190610f58565b90506105d3338561099a565b60405163a9059cbb60e01b8152336004820152602481018290527f000000000000000000000000df09a216fac5adc3e640db418c0b9560765095036001600160a01b03169063a9059cbb90604401602060405180830381600087803b15801561063b57600080fd5b505af115801561064f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106739190610e97565b5050505050565b60606004805461029b90610fb0565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561070b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103c2565b610718338585840361082e565b5060019392505050565b6040516370a0823160e01b81523060048201526000907f000000000000000000000000df09a216fac5adc3e640db418c0b9560765095036001600160a01b0316906370a082319060240160206040518083038186803b15801561078457600080fd5b505afa158015610798573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107bc9190610ed2565b905060006107c960025490565b905060006107d73385610ae8565b90508115806107e4575082155b156107f8576107f33382610ce1565b61081b565b6000836108058484610f7a565b61080f9190610f58565b90506106733382610ce1565b50505050565b600061032b338484610952565b6001600160a01b0383166108905760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103c2565b6001600160a01b0382166108f15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103c2565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60405162461bcd60e51b815260206004820152601a60248201527f70504b4e3a204e6f207472616e736665727320616c6c6f77656400000000000060448201526064016103c2565b6001600160a01b0382166109fa5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103c2565b6001600160a01b03821660009081526020819052604090205481811015610a6e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103c2565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610a9d908490610f99565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6040516370a0823160e01b815230600482015260009081906001600160a01b037f000000000000000000000000df09a216fac5adc3e640db418c0b95607650950316906370a082319060240160206040518083038186803b158015610b4c57600080fd5b505afa158015610b60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b849190610ed2565b6040516323b872dd60e01b81526001600160a01b038681166004830152306024830152604482018690529192507f000000000000000000000000df09a216fac5adc3e640db418c0b956076509503909116906323b872dd90606401602060405180830381600087803b158015610bf957600080fd5b505af1158015610c0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c319190610e97565b506040516370a0823160e01b81523060048201526000907f000000000000000000000000df09a216fac5adc3e640db418c0b9560765095036001600160a01b0316906370a082319060240160206040518083038186803b158015610c9457600080fd5b505afa158015610ca8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ccc9190610ed2565b9050610cd88282610f99565b95945050505050565b6001600160a01b038216610d375760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103c2565b8060026000828254610d499190610f40565b90915550506001600160a01b03821660009081526020819052604081208054839290610d76908490610f40565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b80356001600160a01b0381168114610dd757600080fd5b919050565b600060208284031215610dee57600080fd5b610df782610dc0565b9392505050565b60008060408385031215610e1157600080fd5b610e1a83610dc0565b9150610e2860208401610dc0565b90509250929050565b600080600060608486031215610e4657600080fd5b610e4f84610dc0565b9250610e5d60208501610dc0565b9150604084013590509250925092565b60008060408385031215610e8057600080fd5b610e8983610dc0565b946020939093013593505050565b600060208284031215610ea957600080fd5b81518015158114610df757600080fd5b600060208284031215610ecb57600080fd5b5035919050565b600060208284031215610ee457600080fd5b5051919050565b600060208083528351808285015260005b81811015610f1857858101830151858201604001528201610efc565b81811115610f2a576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610f5357610f53610feb565b500190565b600082610f7557634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615610f9457610f94610feb565b500290565b600082821015610fab57610fab610feb565b500390565b600181811c90821680610fc457607f821691505b60208210811415610fe557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122006444e0ce3e61aa1aa3146774045d2e32b7f6d5cd6b7ce9a654feebb017497d164736f6c63430008070033

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

000000000000000000000000df09a216fac5adc3e640db418c0b956076509503

-----Decoded View---------------
Arg [0] : _PKN (address): 0xdf09a216Fac5ADC3e640Db418C0b956076509503

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000df09a216fac5adc3e640db418c0b956076509503


Deployed Bytecode Sourcemap

16127:1728:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6085:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8252:169;;;;;;:::i;:::-;;:::i;:::-;;;2928:14:1;;2921:22;2903:41;;2891:2;2876:18;8252:169:0;2763:187:1;7205:108:0;7293:12;;7205:108;;;7067:25:1;;;7055:2;7040:18;7205:108:0;6921:177:1;8903:492:0;;;;;;:::i;:::-;;:::i;16788:240::-;;;;;;:::i;:::-;;:::i;7047:93::-;;;7130:2;7245:36:1;;7233:2;7218:18;7047:93:0;7103:184:1;9804:215:0;;;;;;:::i;:::-;;:::i;17082:286::-;;;;;;:::i;:::-;;:::i;:::-;;16183:27;;;;;;;;-1:-1:-1;;;;;2060:32:1;;;2042:51;;2030:2;2015:18;16183:27:0;1896:203:1;7376:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;7477:18:0;7450:7;7477:18;;;;;;;;;;;;7376:127;6304:104;;;:::i;10522:413::-;;;;;;:::i;:::-;;:::i;16314:466::-;;;;;;:::i;:::-;;:::i;7716:175::-;;;;;;:::i;:::-;;:::i;7954:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8070:18:0;;;8043:7;8070:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7954:151;6085:100;6139:13;6172:5;6165:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6085:100;:::o;8252:169::-;8335:4;8352:39;680:10;8375:7;8384:6;8352:8;:39::i;:::-;-1:-1:-1;8409:4:0;8252:169;;;;:::o;8903:492::-;9043:4;9060:36;9070:6;9078:9;9089:6;9060:9;:36::i;:::-;-1:-1:-1;;;;;9136:19:0;;9109:24;9136:19;;;:11;:19;;;;;;;;680:10;9136:33;;;;;;;;9188:26;;;;9180:79;;;;-1:-1:-1;;;9180:79:0;;4786:2:1;9180:79:0;;;4768:21:1;4825:2;4805:18;;;4798:30;4864:34;4844:18;;;4837:62;-1:-1:-1;;;4915:18:1;;;4908:38;4963:19;;9180:79:0;;;;;;;;;9295:57;9304:6;680:10;9345:6;9326:16;:25;9295:8;:57::i;:::-;-1:-1:-1;9383:4:0;;8903:492;-1:-1:-1;;;;8903:492:0:o;16788:240::-;16886:28;;-1:-1:-1;;;16886:28:0;;16908:4;16886:28;;;2042:51:1;16847:7:0;;;;-1:-1:-1;;;;;16886:3:0;:13;;;;2015:18:1;;16886:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16867:47;;16925:19;16947:13;7293:12;;;7205:108;16947:13;16925:35;;17009:11;16997:8;16979:15;16989:4;-1:-1:-1;;;;;7477:18:0;7450:7;7477:18;;;;;;;;;;;;7376:127;16979:15;:26;;;;:::i;:::-;16978:42;;;;:::i;:::-;16971:49;16788:240;-1:-1:-1;;;;16788:240:0:o;9804:215::-;680:10;9892:4;9941:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9941:34:0;;;;;;;;;;9892:4;;9909:80;;9932:7;;9941:47;;9978:10;;9941:47;:::i;:::-;9909:8;:80::i;17082:286::-;17150:28;;-1:-1:-1;;;17150:28:0;;17172:4;17150:28;;;2042:51:1;17131:16:0;;17150:3;-1:-1:-1;;;;;17150:13:0;;;;2015:18:1;;17150:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17131:47;;17189:19;17211:13;7293:12;;;7205:108;17211:13;17189:35;-1:-1:-1;17235:12:0;17189:35;17251:17;17260:8;17251:6;:17;:::i;:::-;17250:33;;;;:::i;:::-;17235:48;;17294:25;17300:10;17312:6;17294:5;:25::i;:::-;17330:30;;-1:-1:-1;;;17330:30:0;;17343:10;17330:30;;;2658:51:1;2725:18;;;2718:34;;;17330:3:0;-1:-1:-1;;;;;17330:12:0;;;;2631:18:1;;17330:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17120:248;;;17082:286;:::o;6304:104::-;6360:13;6393:7;6386:14;;;;;:::i;10522:413::-;680:10;10615:4;10659:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10659:34:0;;;;;;;;;;10712:35;;;;10704:85;;;;-1:-1:-1;;;10704:85:0;;6357:2:1;10704:85:0;;;6339:21:1;6396:2;6376:18;;;6369:30;6435:34;6415:18;;;6408:62;-1:-1:-1;;;6486:18:1;;;6479:35;6531:19;;10704:85:0;6155:401:1;10704:85:0;10825:67;680:10;10848:7;10876:15;10857:16;:34;10825:8;:67::i;:::-;-1:-1:-1;10923:4:0;;10522:413;-1:-1:-1;;;10522:413:0:o;16314:466::-;16385:28;;-1:-1:-1;;;16385:28:0;;16407:4;16385:28;;;2042:51:1;16366:16:0;;16385:3;-1:-1:-1;;;;;16385:13:0;;;;2015:18:1;;16385:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16366:47;;16424:19;16446:13;7293:12;;;7205:108;16446:13;16424:35;;16470:21;16494:32;16506:10;16518:7;16494:11;:32::i;:::-;16470:56;-1:-1:-1;16543:16:0;;;:33;;-1:-1:-1;16563:13:0;;16543:33;16539:234;;;16593:32;16599:10;16611:13;16593:5;:32::i;:::-;16539:234;;;16668:12;16715:8;16684:27;16700:11;16684:13;:27;:::i;:::-;16683:40;;;;:::i;:::-;16668:55;;16738:23;16744:10;16756:4;16738:5;:23::i;16539:234::-;16353:427;;;16314:466;:::o;7716:175::-;7802:4;7819:42;680:10;7843:9;7854:6;7819:9;:42::i;14206:380::-;-1:-1:-1;;;;;14342:19:0;;14334:68;;;;-1:-1:-1;;;14334:68:0;;5952:2:1;14334:68:0;;;5934:21:1;5991:2;5971:18;;;5964:30;6030:34;6010:18;;;6003:62;-1:-1:-1;;;6081:18:1;;;6074:34;6125:19;;14334:68:0;5750:400:1;14334:68:0;-1:-1:-1;;;;;14421:21:0;;14413:68;;;;-1:-1:-1;;;14413:68:0;;4383:2:1;14413:68:0;;;4365:21:1;4422:2;4402:18;;;4395:30;4461:34;4441:18;;;4434:62;-1:-1:-1;;;4512:18:1;;;4505:32;4554:19;;14413:68:0;4181:398:1;14413:68:0;-1:-1:-1;;;;;14494:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14546:32;;7067:25:1;;;14546:32:0;;7040:18:1;14546:32:0;;;;;;;14206:380;;;:::o;17376:156::-;17480:44;;-1:-1:-1;;;17480:44:0;;5195:2:1;17480:44:0;;;5177:21:1;5234:2;5214:18;;;5207:30;5273:28;5253:18;;;5246:56;5319:18;;17480:44:0;4993:350:1;13177:591:0;-1:-1:-1;;;;;13261:21:0;;13253:67;;;;-1:-1:-1;;;13253:67:0;;5550:2:1;13253:67:0;;;5532:21:1;5589:2;5569:18;;;5562:30;5628:34;5608:18;;;5601:62;-1:-1:-1;;;5679:18:1;;;5672:31;5720:19;;13253:67:0;5348:397:1;13253:67:0;-1:-1:-1;;;;;13420:18:0;;13395:22;13420:18;;;;;;;;;;;13457:24;;;;13449:71;;;;-1:-1:-1;;;13449:71:0;;3980:2:1;13449:71:0;;;3962:21:1;4019:2;3999:18;;;3992:30;4058:34;4038:18;;;4031:62;-1:-1:-1;;;4109:18:1;;;4102:32;4151:19;;13449:71:0;3778:398:1;13449:71:0;-1:-1:-1;;;;;13556:18:0;;:9;:18;;;;;;;;;;13577:23;;;13556:44;;13622:12;:22;;13594:6;;13556:9;13622:22;;13594:6;;13622:22;:::i;:::-;;;;-1:-1:-1;;13662:37:0;;7067:25:1;;;13688:1:0;;-1:-1:-1;;;;;13662:37:0;;;;;7055:2:1;7040:18;13662:37:0;;;;;;;17376:156;;;:::o;17540:312::-;17652:28;;-1:-1:-1;;;17652:28:0;;17674:4;17652:28;;;2042:51:1;17608:7:0;;;;-1:-1:-1;;;;;17652:3:0;:13;;;;2015:18:1;;17652:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17691:45;;-1:-1:-1;;;17691:45:0;;-1:-1:-1;;;;;2362:15:1;;;17691:45:0;;;2344:34:1;17722:4:0;2394:18:1;;;2387:43;2446:18;;;2439:34;;;17628:52:0;;-1:-1:-1;17691:3:0;:16;;;;;;2279:18:1;;17691:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;17770:28:0;;-1:-1:-1;;;17770:28:0;;17792:4;17770:28;;;2042:51:1;17747:20:0;;17770:3;-1:-1:-1;;;;;17770:13:0;;;;2015:18:1;;17770:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17747:51;-1:-1:-1;17816:28:0;17831:13;17747:51;17816:28;:::i;:::-;17809:35;17540:312;-1:-1:-1;;;;;17540:312:0:o;12445:399::-;-1:-1:-1;;;;;12529:21:0;;12521:65;;;;-1:-1:-1;;;12521:65:0;;6763:2:1;12521:65:0;;;6745:21:1;6802:2;6782:18;;;6775:30;6841:33;6821:18;;;6814:61;6892:18;;12521:65:0;6561:355:1;12521:65:0;12677:6;12661:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;12694:18:0;;:9;:18;;;;;;;;;;:28;;12716:6;;12694:9;:28;;12716:6;;12694:28;:::i;:::-;;;;-1:-1:-1;;12738:37:0;;7067:25:1;;;-1:-1:-1;;;;;12738:37:0;;;12755:1;;12738:37;;7055:2:1;7040:18;12738:37:0;;;;;;;12445:399;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:1:o;1240:277::-;1307:6;1360:2;1348:9;1339:7;1335:23;1331:32;1328:52;;;1376:1;1373;1366:12;1328:52;1408:9;1402:16;1461:5;1454:13;1447:21;1440:5;1437:32;1427:60;;1483:1;1480;1473:12;1522:180;1581:6;1634:2;1622:9;1613:7;1609:23;1605:32;1602:52;;;1650:1;1647;1640:12;1602:52;-1:-1:-1;1673:23:1;;1522:180;-1:-1:-1;1522:180:1:o;1707:184::-;1777:6;1830:2;1818:9;1809:7;1805:23;1801:32;1798:52;;;1846:1;1843;1836:12;1798:52;-1:-1:-1;1869:16:1;;1707:184;-1:-1:-1;1707:184:1:o;3176:597::-;3288:4;3317:2;3346;3335:9;3328:21;3378:6;3372:13;3421:6;3416:2;3405:9;3401:18;3394:34;3446:1;3456:140;3470:6;3467:1;3464:13;3456:140;;;3565:14;;;3561:23;;3555:30;3531:17;;;3550:2;3527:26;3520:66;3485:10;;3456:140;;;3614:6;3611:1;3608:13;3605:91;;;3684:1;3679:2;3670:6;3659:9;3655:22;3651:31;3644:42;3605:91;-1:-1:-1;3757:2:1;3736:15;-1:-1:-1;;3732:29:1;3717:45;;;;3764:2;3713:54;;3176:597;-1:-1:-1;;;3176:597:1:o;7292:128::-;7332:3;7363:1;7359:6;7356:1;7353:13;7350:39;;;7369:18;;:::i;:::-;-1:-1:-1;7405:9:1;;7292:128::o;7425:217::-;7465:1;7491;7481:132;;7535:10;7530:3;7526:20;7523:1;7516:31;7570:4;7567:1;7560:15;7598:4;7595:1;7588:15;7481:132;-1:-1:-1;7627:9:1;;7425:217::o;7647:168::-;7687:7;7753:1;7749;7745:6;7741:14;7738:1;7735:21;7730:1;7723:9;7716:17;7712:45;7709:71;;;7760:18;;:::i;:::-;-1:-1:-1;7800:9:1;;7647:168::o;7820:125::-;7860:4;7888:1;7885;7882:8;7879:34;;;7893:18;;:::i;:::-;-1:-1:-1;7930:9:1;;7820:125::o;7950:380::-;8029:1;8025:12;;;;8072;;;8093:61;;8147:4;8139:6;8135:17;8125:27;;8093:61;8200:2;8192:6;8189:14;8169:18;8166:38;8163:161;;;8246:10;8241:3;8237:20;8234:1;8227:31;8281:4;8278:1;8271:15;8309:4;8306:1;8299:15;8163:161;;7950:380;;;:::o;8335:127::-;8396:10;8391:3;8387:20;8384:1;8377:31;8427:4;8424:1;8417:15;8451:4;8448:1;8441:15

Swarm Source

ipfs://06444e0ce3e61aa1aa3146774045d2e32b7f6d5cd6b7ce9a654feebb017497d1
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.