ETH Price: $3,103.40 (+1.21%)
Gas: 3 Gwei

Token

$oul (SOUL)
 

Overview

Max Total Supply

9,456,728 SOUL

Holders

390

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Null: 0x000...000
Balance
0 SOUL

Value
$0.00
0x0000000000000000000000000000000000000000
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:
Soul

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-11-27
*/

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol



pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol



pragma solidity ^0.8.0;




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

// File: contracts/Soul.sol


pragma solidity ^0.8.2;



contract Soul is ERC20, Ownable {
    constructor() ERC20("$oul", "SOUL") Ownable() {
        treasury = owner();
        _mint(treasury, 4000000 * 10**18);
    }

    uint256 public treasuryTax;
    address public treasury;
    mapping(address => bool) authorizedAddresses;

    function setAuthorizedAddresses(
        address[] calldata _addresses,
        bool _isAuthorized
    ) external onlyOwner {
        for (uint256 i = 0; i < _addresses.length; i++) {
            authorizedAddresses[_addresses[i]] = _isAuthorized;
        }
    }

    function setTreasury(address _address) external onlyOwner {
        treasury = _address;
    }

    function setTreasuryTax(uint256 _tax) external onlyOwner {
        require(treasury != address(0));
        require(_tax <= 100);
        treasuryTax = _tax;
    }

    modifier onlyAuthorized() {
        require(authorizedAddresses[msg.sender], "SOUL: unauthorized");
        _;
    }

    function mint(address _address, uint256 _amount) external onlyAuthorized {
        _mint(_address, _amount * 10**18);
    }

    function collectAndBurn(address _address, uint256 _amount)
        external
        onlyAuthorized
    {
        if (treasuryTax != 0) {
            uint256 tax = (_amount / 100) * treasuryTax;
            _transfer(_address, treasury, tax * 10**18);
            _amount -= tax;
        }

        _burn(_address, _amount * 10**18);
    }

    function burn(uint256 _amount) external {
        _burn(msg.sender, _amount * 10**18);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"collectAndBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"bool","name":"_isAuthorized","type":"bool"}],"name":"setAuthorizedAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tax","type":"uint256"}],"name":"setTreasuryTax","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":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405180604001604052806004815260200163091bdd5b60e21b8152506040518060400160405280600481526020016314d3d55360e21b81525081600390805190602001906200006492919062000213565b5080516200007a90600490602084019062000213565b5050506200009762000091620000d560201b60201c565b620000d9565b600554600780546001600160a01b0319166001600160a01b039092169182179055620000cf906a034f086f3b33b6840000006200012b565b6200031d565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001865760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200019a9190620002b9565b90915550506001600160a01b03821660009081526020819052604081208054839290620001c9908490620002b9565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200022190620002e0565b90600052602060002090601f01602090048101928262000245576000855562000290565b82601f106200026057805160ff191683800117855562000290565b8280016001018555821562000290579182015b828111156200029057825182559160200191906001019062000273565b506200029e929150620002a2565b5090565b5b808211156200029e5760008155600101620002a3565b60008219821115620002db57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620002f557607f821691505b602082108114156200031757634e487b7160e01b600052602260045260246000fd5b50919050565b61117b806200032d6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063b4638cc11161007c578063b4638cc1146102a5578063cd6840d5146102b8578063dd62ed3e146102cb578063ecfeb5ba14610304578063f0f442601461030d578063f2fde38b1461032057600080fd5b8063715018a61461025e5780638da5cb5b1461026657806395d89b4114610277578063a457c2d71461027f578063a9059cbb1461029257600080fd5b8063313ce5671161010a578063313ce567146101c257806339509351146101d157806340c10f19146101e457806342966c68146101f757806361d027b31461020a57806370a082311461023557600080fd5b806306fdde0314610147578063095ea7b31461016557806317098f821461018857806318160ddd1461019d57806323b872dd146101af575b600080fd5b61014f610333565b60405161015c9190610fc9565b60405180910390f35b610178610173366004610efb565b6103c5565b604051901515815260200161015c565b61019b610196366004610f25565b6103db565b005b6002545b60405190815260200161015c565b6101786101bd366004610ebf565b610485565b6040516012815260200161015c565b6101786101df366004610efb565b61052f565b61019b6101f2366004610efb565b61056b565b61019b610205366004610fb0565b6105de565b60075461021d906001600160a01b031681565b6040516001600160a01b03909116815260200161015c565b6101a1610243366004610e6a565b6001600160a01b031660009081526020819052604090205490565b61019b6105fc565b6005546001600160a01b031661021d565b61014f610632565b61017861028d366004610efb565b610641565b6101786102a0366004610efb565b6106da565b61019b6102b3366004610efb565b6106e7565b61019b6102c6366004610fb0565b6107ae565b6101a16102d9366004610e8c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101a160065481565b61019b61031b366004610e6a565b610800565b61019b61032e366004610e6a565b61084c565b606060038054610342906110c3565b80601f016020809104026020016040519081016040528092919081815260200182805461036e906110c3565b80156103bb5780601f10610390576101008083540402835291602001916103bb565b820191906000526020600020905b81548152906001019060200180831161039e57829003601f168201915b5050505050905090565b60006103d23384846108e4565b50600192915050565b6005546001600160a01b0316331461040e5760405162461bcd60e51b81526004016104059061101e565b60405180910390fd5b60005b8281101561047f5781600860008686858181106104305761043061112f565b90506020020160208101906104459190610e6a565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610477816110fe565b915050610411565b50505050565b6000610492848484610a09565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156105175760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610405565b61052485338584036108e4565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103d2918590610566908690611053565b6108e4565b3360009081526008602052604090205460ff166105bf5760405162461bcd60e51b815260206004820152601260248201527114d3d5530e881d5b985d5d1a1bdc9a5e995960721b6044820152606401610405565b6105da826105d583670de0b6b3a764000061108d565b610bd7565b5050565b6105f9336105f483670de0b6b3a764000061108d565b610cb6565b50565b6005546001600160a01b031633146106265760405162461bcd60e51b81526004016104059061101e565b6106306000610dfc565b565b606060048054610342906110c3565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106c35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610405565b6106d033858584036108e4565b5060019392505050565b60006103d2338484610a09565b3360009081526008602052604090205460ff1661073b5760405162461bcd60e51b815260206004820152601260248201527114d3d5530e881d5b985d5d1a1bdc9a5e995960721b6044820152606401610405565b600654156107985760065460009061075460648461106b565b61075e919061108d565b60075490915061078a9084906001600160a01b031661078584670de0b6b3a764000061108d565b610a09565b61079481836110ac565b9150505b6105da826105f483670de0b6b3a764000061108d565b6005546001600160a01b031633146107d85760405162461bcd60e51b81526004016104059061101e565b6007546001600160a01b03166107ed57600080fd5b60648111156107fb57600080fd5b600655565b6005546001600160a01b0316331461082a5760405162461bcd60e51b81526004016104059061101e565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146108765760405162461bcd60e51b81526004016104059061101e565b6001600160a01b0381166108db5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610405565b6105f981610dfc565b6001600160a01b0383166109465760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610405565b6001600160a01b0382166109a75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610405565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610a6d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610405565b6001600160a01b038216610acf5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610405565b6001600160a01b03831660009081526020819052604090205481811015610b475760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610405565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610b7e908490611053565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bca91815260200190565b60405180910390a361047f565b6001600160a01b038216610c2d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610405565b8060026000828254610c3f9190611053565b90915550506001600160a01b03821660009081526020819052604081208054839290610c6c908490611053565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610d165760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610405565b6001600160a01b03821660009081526020819052604090205481811015610d8a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610405565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610db99084906110ac565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016109fc565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b0381168114610e6557600080fd5b919050565b600060208284031215610e7c57600080fd5b610e8582610e4e565b9392505050565b60008060408385031215610e9f57600080fd5b610ea883610e4e565b9150610eb660208401610e4e565b90509250929050565b600080600060608486031215610ed457600080fd5b610edd84610e4e565b9250610eeb60208501610e4e565b9150604084013590509250925092565b60008060408385031215610f0e57600080fd5b610f1783610e4e565b946020939093013593505050565b600080600060408486031215610f3a57600080fd5b833567ffffffffffffffff80821115610f5257600080fd5b818601915086601f830112610f6657600080fd5b813581811115610f7557600080fd5b8760208260051b8501011115610f8a57600080fd5b602092830195509350508401358015158114610fa557600080fd5b809150509250925092565b600060208284031215610fc257600080fd5b5035919050565b600060208083528351808285015260005b81811015610ff657858101830151858201604001528201610fda565b81811115611008576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561106657611066611119565b500190565b60008261108857634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156110a7576110a7611119565b500290565b6000828210156110be576110be611119565b500390565b600181811c908216806110d757607f821691505b602082108114156110f857634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561111257611112611119565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fdfea2646970667358221220f244086ebe5c7685e5eaefe7cb806e3f9043ca9a3315865e150ae8e1b846d43864736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b8578063b4638cc11161007c578063b4638cc1146102a5578063cd6840d5146102b8578063dd62ed3e146102cb578063ecfeb5ba14610304578063f0f442601461030d578063f2fde38b1461032057600080fd5b8063715018a61461025e5780638da5cb5b1461026657806395d89b4114610277578063a457c2d71461027f578063a9059cbb1461029257600080fd5b8063313ce5671161010a578063313ce567146101c257806339509351146101d157806340c10f19146101e457806342966c68146101f757806361d027b31461020a57806370a082311461023557600080fd5b806306fdde0314610147578063095ea7b31461016557806317098f821461018857806318160ddd1461019d57806323b872dd146101af575b600080fd5b61014f610333565b60405161015c9190610fc9565b60405180910390f35b610178610173366004610efb565b6103c5565b604051901515815260200161015c565b61019b610196366004610f25565b6103db565b005b6002545b60405190815260200161015c565b6101786101bd366004610ebf565b610485565b6040516012815260200161015c565b6101786101df366004610efb565b61052f565b61019b6101f2366004610efb565b61056b565b61019b610205366004610fb0565b6105de565b60075461021d906001600160a01b031681565b6040516001600160a01b03909116815260200161015c565b6101a1610243366004610e6a565b6001600160a01b031660009081526020819052604090205490565b61019b6105fc565b6005546001600160a01b031661021d565b61014f610632565b61017861028d366004610efb565b610641565b6101786102a0366004610efb565b6106da565b61019b6102b3366004610efb565b6106e7565b61019b6102c6366004610fb0565b6107ae565b6101a16102d9366004610e8c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101a160065481565b61019b61031b366004610e6a565b610800565b61019b61032e366004610e6a565b61084c565b606060038054610342906110c3565b80601f016020809104026020016040519081016040528092919081815260200182805461036e906110c3565b80156103bb5780601f10610390576101008083540402835291602001916103bb565b820191906000526020600020905b81548152906001019060200180831161039e57829003601f168201915b5050505050905090565b60006103d23384846108e4565b50600192915050565b6005546001600160a01b0316331461040e5760405162461bcd60e51b81526004016104059061101e565b60405180910390fd5b60005b8281101561047f5781600860008686858181106104305761043061112f565b90506020020160208101906104459190610e6a565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610477816110fe565b915050610411565b50505050565b6000610492848484610a09565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156105175760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610405565b61052485338584036108e4565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103d2918590610566908690611053565b6108e4565b3360009081526008602052604090205460ff166105bf5760405162461bcd60e51b815260206004820152601260248201527114d3d5530e881d5b985d5d1a1bdc9a5e995960721b6044820152606401610405565b6105da826105d583670de0b6b3a764000061108d565b610bd7565b5050565b6105f9336105f483670de0b6b3a764000061108d565b610cb6565b50565b6005546001600160a01b031633146106265760405162461bcd60e51b81526004016104059061101e565b6106306000610dfc565b565b606060048054610342906110c3565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106c35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610405565b6106d033858584036108e4565b5060019392505050565b60006103d2338484610a09565b3360009081526008602052604090205460ff1661073b5760405162461bcd60e51b815260206004820152601260248201527114d3d5530e881d5b985d5d1a1bdc9a5e995960721b6044820152606401610405565b600654156107985760065460009061075460648461106b565b61075e919061108d565b60075490915061078a9084906001600160a01b031661078584670de0b6b3a764000061108d565b610a09565b61079481836110ac565b9150505b6105da826105f483670de0b6b3a764000061108d565b6005546001600160a01b031633146107d85760405162461bcd60e51b81526004016104059061101e565b6007546001600160a01b03166107ed57600080fd5b60648111156107fb57600080fd5b600655565b6005546001600160a01b0316331461082a5760405162461bcd60e51b81526004016104059061101e565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146108765760405162461bcd60e51b81526004016104059061101e565b6001600160a01b0381166108db5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610405565b6105f981610dfc565b6001600160a01b0383166109465760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610405565b6001600160a01b0382166109a75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610405565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610a6d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610405565b6001600160a01b038216610acf5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610405565b6001600160a01b03831660009081526020819052604090205481811015610b475760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610405565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610b7e908490611053565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bca91815260200190565b60405180910390a361047f565b6001600160a01b038216610c2d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610405565b8060026000828254610c3f9190611053565b90915550506001600160a01b03821660009081526020819052604081208054839290610c6c908490611053565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610d165760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610405565b6001600160a01b03821660009081526020819052604090205481811015610d8a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610405565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610db99084906110ac565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016109fc565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b0381168114610e6557600080fd5b919050565b600060208284031215610e7c57600080fd5b610e8582610e4e565b9392505050565b60008060408385031215610e9f57600080fd5b610ea883610e4e565b9150610eb660208401610e4e565b90509250929050565b600080600060608486031215610ed457600080fd5b610edd84610e4e565b9250610eeb60208501610e4e565b9150604084013590509250925092565b60008060408385031215610f0e57600080fd5b610f1783610e4e565b946020939093013593505050565b600080600060408486031215610f3a57600080fd5b833567ffffffffffffffff80821115610f5257600080fd5b818601915086601f830112610f6657600080fd5b813581811115610f7557600080fd5b8760208260051b8501011115610f8a57600080fd5b602092830195509350508401358015158114610fa557600080fd5b809150509250925092565b600060208284031215610fc257600080fd5b5035919050565b600060208083528351808285015260005b81811015610ff657858101830151858201604001528201610fda565b81811115611008576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561106657611066611119565b500190565b60008261108857634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156110a7576110a7611119565b500290565b6000828210156110be576110be611119565b500390565b600181811c908216806110d757607f821691505b602082108114156110f857634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561111257611112611119565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fdfea2646970667358221220f244086ebe5c7685e5eaefe7cb806e3f9043ca9a3315865e150ae8e1b846d43864736f6c63430008070033

Deployed Bytecode Sourcemap

18709:1561:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8684:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10851:169;;;;;;:::i;:::-;;:::i;:::-;;;2585:14:1;;2578:22;2560:41;;2548:2;2533:18;10851:169:0;2420:187:1;18999:270:0;;;;;;:::i;:::-;;:::i;:::-;;9804:108;9892:12;;9804:108;;;8480:25:1;;;8468:2;8453:18;9804:108:0;8334:177:1;11502:492:0;;;;;;:::i;:::-;;:::i;9646:93::-;;;9729:2;8658:36:1;;8646:2;8631:18;9646:93:0;8516:184:1;12403:215:0;;;;;;:::i;:::-;;:::i;19683:125::-;;;;;;:::i;:::-;;:::i;20173:94::-;;;;;;:::i;:::-;;:::i;18916:23::-;;;;;-1:-1:-1;;;;;18916:23:0;;;;;;-1:-1:-1;;;;;2376:32:1;;;2358:51;;2346:2;2331:18;18916:23:0;2212:203:1;9975:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;10076:18:0;10049:7;10076:18;;;;;;;;;;;;9975:127;2488:94;;;:::i;1837:87::-;1910:6;;-1:-1:-1;;;;;1910:6:0;1837:87;;8903:104;;;:::i;13121:413::-;;;;;;:::i;:::-;;:::i;10315:175::-;;;;;;:::i;:::-;;:::i;19816:349::-;;;;;;:::i;:::-;;:::i;19381:167::-;;;;;;:::i;:::-;;:::i;10553:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10669:18:0;;;10642:7;10669:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10553:151;18883:26;;;;;;19277:96;;;;;;:::i;:::-;;:::i;2737:192::-;;;;;;:::i;:::-;;:::i;8684:100::-;8738:13;8771:5;8764:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8684:100;:::o;10851:169::-;10934:4;10951:39;705:10;10974:7;10983:6;10951:8;:39::i;:::-;-1:-1:-1;11008:4:0;10851:169;;;;:::o;18999:270::-;1910:6;;-1:-1:-1;;;;;1910:6:0;705:10;2057:23;2049:68;;;;-1:-1:-1;;;2049:68:0;;;;;;;:::i;:::-;;;;;;;;;19142:9:::1;19137:125;19157:21:::0;;::::1;19137:125;;;19237:13;19200:19;:34;19220:10;;19231:1;19220:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;19200:34:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;19200:34:0;:50;;-1:-1:-1;;19200:50:0::1;::::0;::::1;;::::0;;;::::1;::::0;;19180:3;::::1;::::0;::::1;:::i;:::-;;;;19137:125;;;;18999:270:::0;;;:::o;11502:492::-;11642:4;11659:36;11669:6;11677:9;11688:6;11659:9;:36::i;:::-;-1:-1:-1;;;;;11735:19:0;;11708:24;11735:19;;;:11;:19;;;;;;;;705:10;11735:33;;;;;;;;11787:26;;;;11779:79;;;;-1:-1:-1;;;11779:79:0;;5440:2:1;11779:79:0;;;5422:21:1;5479:2;5459:18;;;5452:30;5518:34;5498:18;;;5491:62;-1:-1:-1;;;5569:18:1;;;5562:38;5617:19;;11779:79:0;5238:404:1;11779:79:0;11894:57;11903:6;705:10;11944:6;11925:16;:25;11894:8;:57::i;:::-;-1:-1:-1;11982:4:0;;11502:492;-1:-1:-1;;;;11502:492:0:o;12403:215::-;705:10;12491:4;12540:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12540:34:0;;;;;;;;;;12491:4;;12508:80;;12531:7;;12540:47;;12577:10;;12540:47;:::i;:::-;12508:8;:80::i;19683:125::-;19621:10;19601:31;;;;:19;:31;;;;;;;;19593:62;;;;-1:-1:-1;;;19593:62:0;;7423:2:1;19593:62:0;;;7405:21:1;7462:2;7442:18;;;7435:30;-1:-1:-1;;;7481:18:1;;;7474:48;7539:18;;19593:62:0;7221:342:1;19593:62:0;19767:33:::1;19773:8:::0;19783:16:::1;:7:::0;19793:6:::1;19783:16;:::i;:::-;19767:5;:33::i;:::-;19683:125:::0;;:::o;20173:94::-;20224:35;20230:10;20242:16;:7;20252:6;20242:16;:::i;:::-;20224:5;:35::i;:::-;20173:94;:::o;2488:::-;1910:6;;-1:-1:-1;;;;;1910:6:0;705:10;2057:23;2049:68;;;;-1:-1:-1;;;2049:68:0;;;;;;;:::i;:::-;2553:21:::1;2571:1;2553:9;:21::i;:::-;2488:94::o:0;8903:104::-;8959:13;8992:7;8985:14;;;;;:::i;13121:413::-;705:10;13214:4;13258:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13258:34:0;;;;;;;;;;13311:35;;;;13303:85;;;;-1:-1:-1;;;13303:85:0;;7770:2:1;13303:85:0;;;7752:21:1;7809:2;7789:18;;;7782:30;7848:34;7828:18;;;7821:62;-1:-1:-1;;;7899:18:1;;;7892:35;7944:19;;13303:85:0;7568:401:1;13303:85:0;13424:67;705:10;13447:7;13475:15;13456:16;:34;13424:8;:67::i;:::-;-1:-1:-1;13522:4:0;;13121:413;-1:-1:-1;;;13121:413:0:o;10315:175::-;10401:4;10418:42;705:10;10442:9;10453:6;10418:9;:42::i;19816:349::-;19621:10;19601:31;;;;:19;:31;;;;;;;;19593:62;;;;-1:-1:-1;;;19593:62:0;;7423:2:1;19593:62:0;;;7405:21:1;7462:2;7442:18;;;7435:30;-1:-1:-1;;;7481:18:1;;;7474:48;7539:18;;19593:62:0;7221:342:1;19593:62:0;19937:11:::1;::::0;:16;19933:179:::1;;20002:11;::::0;19970::::1;::::0;19985:13:::1;19995:3;19985:7:::0;:13:::1;:::i;:::-;19984:29;;;;:::i;:::-;20048:8;::::0;19970:43;;-1:-1:-1;20028:43:0::1;::::0;20038:8;;-1:-1:-1;;;;;20048:8:0::1;20058:12;19970:43:::0;20064:6:::1;20058:12;:::i;:::-;20028:9;:43::i;:::-;20086:14;20097:3:::0;20086:14;::::1;:::i;:::-;;;19955:157;19933:179;20124:33;20130:8:::0;20140:16:::1;:7:::0;20150:6:::1;20140:16;:::i;19381:167::-:0;1910:6;;-1:-1:-1;;;;;1910:6:0;705:10;2057:23;2049:68;;;;-1:-1:-1;;;2049:68:0;;;;;;;:::i;:::-;19457:8:::1;::::0;-1:-1:-1;;;;;19457:8:0::1;19449:31;;;::::0;::::1;;19507:3;19499:4;:11;;19491:20;;;::::0;::::1;;19522:11;:18:::0;19381:167::o;19277:96::-;1910:6;;-1:-1:-1;;;;;1910:6:0;705:10;2057:23;2049:68;;;;-1:-1:-1;;;2049:68:0;;;;;;;:::i;:::-;19346:8:::1;:19:::0;;-1:-1:-1;;;;;;19346:19:0::1;-1:-1:-1::0;;;;;19346:19:0;;;::::1;::::0;;;::::1;::::0;;19277:96::o;2737:192::-;1910:6;;-1:-1:-1;;;;;1910:6:0;705:10;2057:23;2049:68;;;;-1:-1:-1;;;2049:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2826:22:0;::::1;2818:73;;;::::0;-1:-1:-1;;;2818:73:0;;4223:2:1;2818:73:0::1;::::0;::::1;4205:21:1::0;4262:2;4242:18;;;4235:30;4301:34;4281:18;;;4274:62;-1:-1:-1;;;4352:18:1;;;4345:36;4398:19;;2818:73:0::1;4021:402:1::0;2818:73:0::1;2902:19;2912:8;2902:9;:19::i;16805:380::-:0;-1:-1:-1;;;;;16941:19:0;;16933:68;;;;-1:-1:-1;;;16933:68:0;;7018:2:1;16933:68:0;;;7000:21:1;7057:2;7037:18;;;7030:30;7096:34;7076:18;;;7069:62;-1:-1:-1;;;7147:18:1;;;7140:34;7191:19;;16933:68:0;6816:400:1;16933:68:0;-1:-1:-1;;;;;17020:21:0;;17012:68;;;;-1:-1:-1;;;17012:68:0;;4630:2:1;17012:68:0;;;4612:21:1;4669:2;4649:18;;;4642:30;4708:34;4688:18;;;4681:62;-1:-1:-1;;;4759:18:1;;;4752:32;4801:19;;17012:68:0;4428:398:1;17012:68:0;-1:-1:-1;;;;;17093:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17145:32;;8480:25:1;;;17145:32:0;;8453:18:1;17145:32:0;;;;;;;;16805:380;;;:::o;14024:733::-;-1:-1:-1;;;;;14164:20:0;;14156:70;;;;-1:-1:-1;;;14156:70:0;;6612:2:1;14156:70:0;;;6594:21:1;6651:2;6631:18;;;6624:30;6690:34;6670:18;;;6663:62;-1:-1:-1;;;6741:18:1;;;6734:35;6786:19;;14156:70:0;6410:401:1;14156:70:0;-1:-1:-1;;;;;14245:23:0;;14237:71;;;;-1:-1:-1;;;14237:71:0;;3416:2:1;14237:71:0;;;3398:21:1;3455:2;3435:18;;;3428:30;3494:34;3474:18;;;3467:62;-1:-1:-1;;;3545:18:1;;;3538:33;3588:19;;14237:71:0;3214:399:1;14237:71:0;-1:-1:-1;;;;;14405:17:0;;14381:21;14405:17;;;;;;;;;;;14441:23;;;;14433:74;;;;-1:-1:-1;;;14433:74:0;;5033:2:1;14433:74:0;;;5015:21:1;5072:2;5052:18;;;5045:30;5111:34;5091:18;;;5084:62;-1:-1:-1;;;5162:18:1;;;5155:36;5208:19;;14433:74:0;4831:402:1;14433:74:0;-1:-1:-1;;;;;14543:17:0;;;:9;:17;;;;;;;;;;;14563:22;;;14543:42;;14607:20;;;;;;;;:30;;14579:6;;14543:9;14607:30;;14579:6;;14607:30;:::i;:::-;;;;;;;;14672:9;-1:-1:-1;;;;;14655:35:0;14664:6;-1:-1:-1;;;;;14655:35:0;;14683:6;14655:35;;;;8480:25:1;;8468:2;8453:18;;8334:177;14655:35:0;;;;;;;;14703:46;15776:591;15044:399;-1:-1:-1;;;;;15128:21:0;;15120:65;;;;-1:-1:-1;;;15120:65:0;;8176:2:1;15120:65:0;;;8158:21:1;8215:2;8195:18;;;8188:30;8254:33;8234:18;;;8227:61;8305:18;;15120:65:0;7974:355:1;15120:65:0;15276:6;15260:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;15293:18:0;;:9;:18;;;;;;;;;;:28;;15315:6;;15293:9;:28;;15315:6;;15293:28;:::i;:::-;;;;-1:-1:-1;;15337:37:0;;8480:25:1;;;-1:-1:-1;;;;;15337:37:0;;;15354:1;;15337:37;;8468:2:1;8453:18;15337:37:0;;;;;;;19683:125;;:::o;15776:591::-;-1:-1:-1;;;;;15860:21:0;;15852:67;;;;-1:-1:-1;;;15852:67:0;;6210:2:1;15852:67:0;;;6192:21:1;6249:2;6229:18;;;6222:30;6288:34;6268:18;;;6261:62;-1:-1:-1;;;6339:18:1;;;6332:31;6380:19;;15852:67:0;6008:397:1;15852:67:0;-1:-1:-1;;;;;16019:18:0;;15994:22;16019:18;;;;;;;;;;;16056:24;;;;16048:71;;;;-1:-1:-1;;;16048:71:0;;3820:2:1;16048:71:0;;;3802:21:1;3859:2;3839:18;;;3832:30;3898:34;3878:18;;;3871:62;-1:-1:-1;;;3949:18:1;;;3942:32;3991:19;;16048:71:0;3618:398:1;16048:71:0;-1:-1:-1;;;;;16155:18:0;;:9;:18;;;;;;;;;;16176:23;;;16155:44;;16221:12;:22;;16193:6;;16155:9;16221:22;;16193:6;;16221:22;:::i;:::-;;;;-1:-1:-1;;16261:37:0;;8480:25:1;;;16287:1:0;;-1:-1:-1;;;;;16261:37:0;;;;;8468:2:1;8453:18;16261:37:0;8334:177:1;2937:173:0;3012:6;;;-1:-1:-1;;;;;3029:17:0;;;-1:-1:-1;;;;;;3029:17:0;;;;;;;3062:40;;3012:6;;;3029:17;3012:6;;3062:40;;2993:16;;3062:40;2982:128;2937:173;:::o;14::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:782::-;1332:6;1340;1348;1401:2;1389:9;1380:7;1376:23;1372:32;1369:52;;;1417:1;1414;1407:12;1369:52;1457:9;1444:23;1486:18;1527:2;1519:6;1516:14;1513:34;;;1543:1;1540;1533:12;1513:34;1581:6;1570:9;1566:22;1556:32;;1626:7;1619:4;1615:2;1611:13;1607:27;1597:55;;1648:1;1645;1638:12;1597:55;1688:2;1675:16;1714:2;1706:6;1703:14;1700:34;;;1730:1;1727;1720:12;1700:34;1785:7;1778:4;1768:6;1765:1;1761:14;1757:2;1753:23;1749:34;1746:47;1743:67;;;1806:1;1803;1796:12;1743:67;1837:4;1829:13;;;;-1:-1:-1;1861:6:1;-1:-1:-1;;1902:20:1;;1889:34;1959:13;;1952:21;1942:32;;1932:60;;1988:1;1985;1978:12;1932:60;2011:5;2001:15;;;1240:782;;;;;:::o;2027:180::-;2086:6;2139:2;2127:9;2118:7;2114:23;2110:32;2107:52;;;2155:1;2152;2145:12;2107:52;-1:-1:-1;2178:23:1;;2027:180;-1:-1:-1;2027:180:1:o;2612:597::-;2724:4;2753:2;2782;2771:9;2764:21;2814:6;2808:13;2857:6;2852:2;2841:9;2837:18;2830:34;2882:1;2892:140;2906:6;2903:1;2900:13;2892:140;;;3001:14;;;2997:23;;2991:30;2967:17;;;2986:2;2963:26;2956:66;2921:10;;2892:140;;;3050:6;3047:1;3044:13;3041:91;;;3120:1;3115:2;3106:6;3095:9;3091:22;3087:31;3080:42;3041:91;-1:-1:-1;3193:2:1;3172:15;-1:-1:-1;;3168:29:1;3153:45;;;;3200:2;3149:54;;2612:597;-1:-1:-1;;;2612:597:1:o;5647:356::-;5849:2;5831:21;;;5868:18;;;5861:30;5927:34;5922:2;5907:18;;5900:62;5994:2;5979:18;;5647:356::o;8705:128::-;8745:3;8776:1;8772:6;8769:1;8766:13;8763:39;;;8782:18;;:::i;:::-;-1:-1:-1;8818:9:1;;8705:128::o;8838:217::-;8878:1;8904;8894:132;;8948:10;8943:3;8939:20;8936:1;8929:31;8983:4;8980:1;8973:15;9011:4;9008:1;9001:15;8894:132;-1:-1:-1;9040:9:1;;8838:217::o;9060:168::-;9100:7;9166:1;9162;9158:6;9154:14;9151:1;9148:21;9143:1;9136:9;9129:17;9125:45;9122:71;;;9173:18;;:::i;:::-;-1:-1:-1;9213:9:1;;9060:168::o;9233:125::-;9273:4;9301:1;9298;9295:8;9292:34;;;9306:18;;:::i;:::-;-1:-1:-1;9343:9:1;;9233:125::o;9363:380::-;9442:1;9438:12;;;;9485;;;9506:61;;9560:4;9552:6;9548:17;9538:27;;9506:61;9613:2;9605:6;9602:14;9582:18;9579:38;9576:161;;;9659:10;9654:3;9650:20;9647:1;9640:31;9694:4;9691:1;9684:15;9722:4;9719:1;9712:15;9576:161;;9363:380;;;:::o;9748:135::-;9787:3;-1:-1:-1;;9808:17:1;;9805:43;;;9828:18;;:::i;:::-;-1:-1:-1;9875:1:1;9864:13;;9748:135::o;9888:127::-;9949:10;9944:3;9940:20;9937:1;9930:31;9980:4;9977:1;9970:15;10004:4;10001:1;9994:15;10020:127;10081:10;10076:3;10072:20;10069:1;10062:31;10112:4;10109:1;10102:15;10136:4;10133:1;10126:15

Swarm Source

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