ETH Price: $1,993.39 (+1.28%)

Token

BlackDragon Token (BDT)

Overview

Max Total Supply

2,000,000 BDT

Holders

363

Transfers

-
0

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
BlackDragonToken

Compiler Version
v0.8.8+commit.dddeac2f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Arbiscan.io on 2024-02-06
*/

// Sources flattened with hardhat v2.8.4 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts (last updated v4.9.4) (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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}


// File @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (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() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// OpenZeppelin Contracts v4.4.1 (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/[email protected]

// OpenZeppelin Contracts (last updated v4.9.0) (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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

        _afterTokenTransfer(account, address(0), amount);
    }

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

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}


// File contracts/ERC677/IERC677.sol

pragma solidity ^0.8.8;

// Based on: https://github.com/ethereum/EIPs/issues/677
// and ChainLink token implementation: https://github.com/smartcontractkit/LinkToken/blob/master/contracts/v0.6/token/IERC677.sol
interface IERC677 is IERC20 {
  function transferAndCall(
    address receiver, 
    uint256 amount, 
    bytes memory data
  ) 
    external 
    returns (bool success);

  event Transfer(address indexed sender, address indexed receiver, uint256 amount, bytes data);
}


// File contracts/ERC677/IERC677Receiver.sol

pragma solidity ^0.8.8;

// Based on: https://github.com/ethereum/EIPs/issues/677
// and ChainLink token implementation https://github.com/smartcontractkit/LinkToken/blob/master/contracts/v0.6/token/IERC677Receiver.sol
interface IERC677Receiver {
  function onTokenTransfer(
    address from,
    uint256 amount,
    bytes memory data
  ) 
    external
    returns (bool success);
}


// File contracts/ERC677/ERC677Burnable.sol

pragma solidity ^0.8.8;




contract ERC677Burnable is IERC677, ERC20Burnable {
    
  constructor(
    string memory name,
    string memory symbol
  ) ERC20(name, symbol) 
  {}

  /**
  * @dev transfer token to a contract address with additional data if the recipient is a contact.
  * @param receiver The address to transfer to.
  * @param amount The amount to be transferred.
  * @param data The extra data to be passed to the receiving contract.
  */
  function transferAndCall(address receiver, uint256 amount, bytes memory data)
    external
    returns (bool success)
  {
    super.transfer(receiver, amount);
    emit Transfer(_msgSender(), receiver, amount, data);
    
    if (_isContract(receiver)) {
      _contractFallback(receiver, amount, data);
    }

    return true;
  } 

  function _contractFallback(address receiver, uint256 amount, bytes memory data)
    private
  {
    IERC677Receiver receiverContract = IERC677Receiver(receiver);
    receiverContract.onTokenTransfer(_msgSender(), amount, data);
  }

  function _isContract(address addr)
    private 
    view
    returns (bool hasCode)
  {
    uint length;
    assembly { length := extcodesize(addr) }
    return length > 0;
  }
}


// File contracts/BlackDragonToken.sol

pragma solidity ^0.8.8;


contract BlackDragonToken is Ownable, ERC677Burnable {
  constructor() ERC677Burnable("BlackDragon Token", "BDT") {
    _mint(_msgSender(), 2000000 * 10 ** decimals());
  }

  function mint(address to, uint256 amount) public onlyOwner {
    _mint(to, amount);
  }
}

Contract Security Audit

Contract ABI

API
[{"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":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"Transfer","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":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":"to","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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601181526020017f426c61636b447261676f6e20546f6b656e0000000000000000000000000000008152506040518060400160405280600381526020017f42445400000000000000000000000000000000000000000000000000000000008152508181620000a0620000946200012a60201b60201c565b6200013260201b60201c565b8160049080519060200190620000b892919062000378565b508060059080519060200190620000d192919062000378565b505050505062000124620000ea6200012a60201b60201c565b620000fa620001f660201b60201c565b600a620001089190620005c2565b621e848062000118919062000613565b620001ff60201b60201c565b620007e7565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000272576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200026990620006d5565b60405180910390fd5b62000286600083836200036e60201b60201c565b80600360008282546200029a9190620006f7565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200034e919062000765565b60405180910390a36200036a600083836200037360201b60201c565b5050565b505050565b505050565b8280546200038690620007b1565b90600052602060002090601f016020900481019282620003aa5760008555620003f6565b82601f10620003c557805160ff1916838001178555620003f6565b82800160010185558215620003f6579182015b82811115620003f5578251825591602001919060010190620003d8565b5b50905062000405919062000409565b5090565b5b80821115620004245760008160009055506001016200040a565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620004b6578086048111156200048e576200048d62000428565b5b60018516156200049e5780820291505b8081029050620004ae8562000457565b94506200046e565b94509492505050565b600082620004d15760019050620005a4565b81620004e15760009050620005a4565b8160018114620004fa576002811462000505576200053b565b6001915050620005a4565b60ff8411156200051a576200051962000428565b5b8360020a91508482111562000534576200053362000428565b5b50620005a4565b5060208310610133831016604e8410600b8410161715620005755782820a9050838111156200056f576200056e62000428565b5b620005a4565b62000584848484600162000464565b925090508184048111156200059e576200059d62000428565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620005cf82620005ab565b9150620005dc83620005b5565b92506200060b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620004bf565b905092915050565b60006200062082620005ab565b91506200062d83620005ab565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000669576200066862000428565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620006bd601f8362000674565b9150620006ca8262000685565b602082019050919050565b60006020820190508181036000830152620006f081620006ae565b9050919050565b60006200070482620005ab565b91506200071183620005ab565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000749576200074862000428565b5b828201905092915050565b6200075f81620005ab565b82525050565b60006020820190506200077c600083018462000754565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007ca57607f821691505b60208210811415620007e157620007e062000782565b5b50919050565b61201680620007f76000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102e1578063a457c2d7146102ff578063a9059cbb1461032f578063dd62ed3e1461035f578063f2fde38b1461038f57610116565b806370a082311461026d578063715018a61461029d57806379cc6790146102a75780638da5cb5b146102c357610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780634000aea01461020557806340c10f191461023557806342966c681461025157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103ab565b604051610130919061131c565b60405180910390f35b610153600480360381019061014e91906113e6565b61043d565b6040516101609190611441565b60405180910390f35b610171610460565b60405161017e919061146b565b60405180910390f35b6101a1600480360381019061019c9190611486565b61046a565b6040516101ae9190611441565b60405180910390f35b6101bf610499565b6040516101cc91906114f5565b60405180910390f35b6101ef60048036038101906101ea91906113e6565b6104a2565b6040516101fc9190611441565b60405180910390f35b61021f600480360381019061021a9190611645565b6104d9565b60405161022c9190611441565b60405180910390f35b61024f600480360381019061024a91906113e6565b610579565b005b61026b600480360381019061026691906116b4565b61058f565b005b610287600480360381019061028291906116e1565b6105a3565b604051610294919061146b565b60405180910390f35b6102a56105ec565b005b6102c160048036038101906102bc91906113e6565b610600565b005b6102cb610620565b6040516102d8919061171d565b60405180910390f35b6102e9610649565b6040516102f6919061131c565b60405180910390f35b610319600480360381019061031491906113e6565b6106db565b6040516103269190611441565b60405180910390f35b610349600480360381019061034491906113e6565b610752565b6040516103569190611441565b60405180910390f35b61037960048036038101906103749190611738565b610775565b604051610386919061146b565b60405180910390f35b6103a960048036038101906103a491906116e1565b6107fc565b005b6060600480546103ba906117a7565b80601f01602080910402602001604051908101604052809291908181526020018280546103e6906117a7565b80156104335780601f1061040857610100808354040283529160200191610433565b820191906000526020600020905b81548152906001019060200180831161041657829003601f168201915b5050505050905090565b600080610448610880565b9050610455818585610888565b600191505092915050565b6000600354905090565b600080610475610880565b9050610482858285610a53565b61048d858585610adf565b60019150509392505050565b60006012905090565b6000806104ad610880565b90506104ce8185856104bf8589610775565b6104c99190611808565b610888565b600191505092915050565b60006104e58484610752565b508373ffffffffffffffffffffffffffffffffffffffff16610505610880565b73ffffffffffffffffffffffffffffffffffffffff167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c16858560405161054c9291906118b3565b60405180910390a361055d84610d5a565b1561056e5761056d848484610d6d565b5b600190509392505050565b610581610e0f565b61058b8282610e8d565b5050565b6105a061059a610880565b82610fe5565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105f4610e0f565b6105fe60006111b5565b565b6106128261060c610880565b83610a53565b61061c8282610fe5565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610658906117a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610684906117a7565b80156106d15780601f106106a6576101008083540402835291602001916106d1565b820191906000526020600020905b8154815290600101906020018083116106b457829003601f168201915b5050505050905090565b6000806106e6610880565b905060006106f48286610775565b905083811015610739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073090611955565b60405180910390fd5b6107468286868403610888565b60019250505092915050565b60008061075d610880565b905061076a818585610adf565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610804610e0f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086b906119e7565b60405180910390fd5b61087d816111b5565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ef90611a79565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095f90611b0b565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a46919061146b565b60405180910390a3505050565b6000610a5f8484610775565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ad95781811015610acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac290611b77565b60405180910390fd5b610ad88484848403610888565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4690611c09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb690611c9b565b60405180910390fd5b610bca838383611279565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4890611d2d565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d41919061146b565b60405180910390a3610d5484848461127e565b50505050565b600080823b905060008111915050919050565b60008390508073ffffffffffffffffffffffffffffffffffffffff1663a4c0ed36610d96610880565b85856040518463ffffffff1660e01b8152600401610db693929190611d4d565b602060405180830381600087803b158015610dd057600080fd5b505af1158015610de4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e089190611db7565b5050505050565b610e17610880565b73ffffffffffffffffffffffffffffffffffffffff16610e35610620565b73ffffffffffffffffffffffffffffffffffffffff1614610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290611e30565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef490611e9c565b60405180910390fd5b610f0960008383611279565b8060036000828254610f1b9190611808565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610fcd919061146b565b60405180910390a3610fe16000838361127e565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c90611f2e565b60405180910390fd5b61106182600083611279565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110df90611fc0565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161119c919061146b565b60405180910390a36111b08360008461127e565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112bd5780820151818401526020810190506112a2565b838111156112cc576000848401525b50505050565b6000601f19601f8301169050919050565b60006112ee82611283565b6112f8818561128e565b935061130881856020860161129f565b611311816112d2565b840191505092915050565b6000602082019050818103600083015261133681846112e3565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061137d82611352565b9050919050565b61138d81611372565b811461139857600080fd5b50565b6000813590506113aa81611384565b92915050565b6000819050919050565b6113c3816113b0565b81146113ce57600080fd5b50565b6000813590506113e0816113ba565b92915050565b600080604083850312156113fd576113fc611348565b5b600061140b8582860161139b565b925050602061141c858286016113d1565b9150509250929050565b60008115159050919050565b61143b81611426565b82525050565b60006020820190506114566000830184611432565b92915050565b611465816113b0565b82525050565b6000602082019050611480600083018461145c565b92915050565b60008060006060848603121561149f5761149e611348565b5b60006114ad8682870161139b565b93505060206114be8682870161139b565b92505060406114cf868287016113d1565b9150509250925092565b600060ff82169050919050565b6114ef816114d9565b82525050565b600060208201905061150a60008301846114e6565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611552826112d2565b810181811067ffffffffffffffff821117156115715761157061151a565b5b80604052505050565b600061158461133e565b90506115908282611549565b919050565b600067ffffffffffffffff8211156115b0576115af61151a565b5b6115b9826112d2565b9050602081019050919050565b82818337600083830152505050565b60006115e86115e384611595565b61157a565b90508281526020810184848401111561160457611603611515565b5b61160f8482856115c6565b509392505050565b600082601f83011261162c5761162b611510565b5b813561163c8482602086016115d5565b91505092915050565b60008060006060848603121561165e5761165d611348565b5b600061166c8682870161139b565b935050602061167d868287016113d1565b925050604084013567ffffffffffffffff81111561169e5761169d61134d565b5b6116aa86828701611617565b9150509250925092565b6000602082840312156116ca576116c9611348565b5b60006116d8848285016113d1565b91505092915050565b6000602082840312156116f7576116f6611348565b5b60006117058482850161139b565b91505092915050565b61171781611372565b82525050565b6000602082019050611732600083018461170e565b92915050565b6000806040838503121561174f5761174e611348565b5b600061175d8582860161139b565b925050602061176e8582860161139b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117bf57607f821691505b602082108114156117d3576117d2611778565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611813826113b0565b915061181e836113b0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611853576118526117d9565b5b828201905092915050565b600081519050919050565b600082825260208201905092915050565b60006118858261185e565b61188f8185611869565b935061189f81856020860161129f565b6118a8816112d2565b840191505092915050565b60006040820190506118c8600083018561145c565b81810360208301526118da818461187a565b90509392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061193f60258361128e565b915061194a826118e3565b604082019050919050565b6000602082019050818103600083015261196e81611932565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119d160268361128e565b91506119dc82611975565b604082019050919050565b60006020820190508181036000830152611a00816119c4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a6360248361128e565b9150611a6e82611a07565b604082019050919050565b60006020820190508181036000830152611a9281611a56565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611af560228361128e565b9150611b0082611a99565b604082019050919050565b60006020820190508181036000830152611b2481611ae8565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611b61601d8361128e565b9150611b6c82611b2b565b602082019050919050565b60006020820190508181036000830152611b9081611b54565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611bf360258361128e565b9150611bfe82611b97565b604082019050919050565b60006020820190508181036000830152611c2281611be6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c8560238361128e565b9150611c9082611c29565b604082019050919050565b60006020820190508181036000830152611cb481611c78565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d1760268361128e565b9150611d2282611cbb565b604082019050919050565b60006020820190508181036000830152611d4681611d0a565b9050919050565b6000606082019050611d62600083018661170e565b611d6f602083018561145c565b8181036040830152611d81818461187a565b9050949350505050565b611d9481611426565b8114611d9f57600080fd5b50565b600081519050611db181611d8b565b92915050565b600060208284031215611dcd57611dcc611348565b5b6000611ddb84828501611da2565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e1a60208361128e565b9150611e2582611de4565b602082019050919050565b60006020820190508181036000830152611e4981611e0d565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611e86601f8361128e565b9150611e9182611e50565b602082019050919050565b60006020820190508181036000830152611eb581611e79565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f1860218361128e565b9150611f2382611ebc565b604082019050919050565b60006020820190508181036000830152611f4781611f0b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611faa60228361128e565b9150611fb582611f4e565b604082019050919050565b60006020820190508181036000830152611fd981611f9d565b905091905056fea2646970667358221220fbde28a91eba920e56b41071c2ffbe9162b2b00ce85a0ded77c20482c9533c8864736f6c63430008080033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102e1578063a457c2d7146102ff578063a9059cbb1461032f578063dd62ed3e1461035f578063f2fde38b1461038f57610116565b806370a082311461026d578063715018a61461029d57806379cc6790146102a75780638da5cb5b146102c357610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780634000aea01461020557806340c10f191461023557806342966c681461025157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103ab565b604051610130919061131c565b60405180910390f35b610153600480360381019061014e91906113e6565b61043d565b6040516101609190611441565b60405180910390f35b610171610460565b60405161017e919061146b565b60405180910390f35b6101a1600480360381019061019c9190611486565b61046a565b6040516101ae9190611441565b60405180910390f35b6101bf610499565b6040516101cc91906114f5565b60405180910390f35b6101ef60048036038101906101ea91906113e6565b6104a2565b6040516101fc9190611441565b60405180910390f35b61021f600480360381019061021a9190611645565b6104d9565b60405161022c9190611441565b60405180910390f35b61024f600480360381019061024a91906113e6565b610579565b005b61026b600480360381019061026691906116b4565b61058f565b005b610287600480360381019061028291906116e1565b6105a3565b604051610294919061146b565b60405180910390f35b6102a56105ec565b005b6102c160048036038101906102bc91906113e6565b610600565b005b6102cb610620565b6040516102d8919061171d565b60405180910390f35b6102e9610649565b6040516102f6919061131c565b60405180910390f35b610319600480360381019061031491906113e6565b6106db565b6040516103269190611441565b60405180910390f35b610349600480360381019061034491906113e6565b610752565b6040516103569190611441565b60405180910390f35b61037960048036038101906103749190611738565b610775565b604051610386919061146b565b60405180910390f35b6103a960048036038101906103a491906116e1565b6107fc565b005b6060600480546103ba906117a7565b80601f01602080910402602001604051908101604052809291908181526020018280546103e6906117a7565b80156104335780601f1061040857610100808354040283529160200191610433565b820191906000526020600020905b81548152906001019060200180831161041657829003601f168201915b5050505050905090565b600080610448610880565b9050610455818585610888565b600191505092915050565b6000600354905090565b600080610475610880565b9050610482858285610a53565b61048d858585610adf565b60019150509392505050565b60006012905090565b6000806104ad610880565b90506104ce8185856104bf8589610775565b6104c99190611808565b610888565b600191505092915050565b60006104e58484610752565b508373ffffffffffffffffffffffffffffffffffffffff16610505610880565b73ffffffffffffffffffffffffffffffffffffffff167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c16858560405161054c9291906118b3565b60405180910390a361055d84610d5a565b1561056e5761056d848484610d6d565b5b600190509392505050565b610581610e0f565b61058b8282610e8d565b5050565b6105a061059a610880565b82610fe5565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105f4610e0f565b6105fe60006111b5565b565b6106128261060c610880565b83610a53565b61061c8282610fe5565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610658906117a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610684906117a7565b80156106d15780601f106106a6576101008083540402835291602001916106d1565b820191906000526020600020905b8154815290600101906020018083116106b457829003601f168201915b5050505050905090565b6000806106e6610880565b905060006106f48286610775565b905083811015610739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073090611955565b60405180910390fd5b6107468286868403610888565b60019250505092915050565b60008061075d610880565b905061076a818585610adf565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610804610e0f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086b906119e7565b60405180910390fd5b61087d816111b5565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ef90611a79565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095f90611b0b565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a46919061146b565b60405180910390a3505050565b6000610a5f8484610775565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ad95781811015610acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac290611b77565b60405180910390fd5b610ad88484848403610888565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4690611c09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb690611c9b565b60405180910390fd5b610bca838383611279565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4890611d2d565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d41919061146b565b60405180910390a3610d5484848461127e565b50505050565b600080823b905060008111915050919050565b60008390508073ffffffffffffffffffffffffffffffffffffffff1663a4c0ed36610d96610880565b85856040518463ffffffff1660e01b8152600401610db693929190611d4d565b602060405180830381600087803b158015610dd057600080fd5b505af1158015610de4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e089190611db7565b5050505050565b610e17610880565b73ffffffffffffffffffffffffffffffffffffffff16610e35610620565b73ffffffffffffffffffffffffffffffffffffffff1614610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290611e30565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef490611e9c565b60405180910390fd5b610f0960008383611279565b8060036000828254610f1b9190611808565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610fcd919061146b565b60405180910390a3610fe16000838361127e565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c90611f2e565b60405180910390fd5b61106182600083611279565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110df90611fc0565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161119c919061146b565b60405180910390a36111b08360008461127e565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112bd5780820151818401526020810190506112a2565b838111156112cc576000848401525b50505050565b6000601f19601f8301169050919050565b60006112ee82611283565b6112f8818561128e565b935061130881856020860161129f565b611311816112d2565b840191505092915050565b6000602082019050818103600083015261133681846112e3565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061137d82611352565b9050919050565b61138d81611372565b811461139857600080fd5b50565b6000813590506113aa81611384565b92915050565b6000819050919050565b6113c3816113b0565b81146113ce57600080fd5b50565b6000813590506113e0816113ba565b92915050565b600080604083850312156113fd576113fc611348565b5b600061140b8582860161139b565b925050602061141c858286016113d1565b9150509250929050565b60008115159050919050565b61143b81611426565b82525050565b60006020820190506114566000830184611432565b92915050565b611465816113b0565b82525050565b6000602082019050611480600083018461145c565b92915050565b60008060006060848603121561149f5761149e611348565b5b60006114ad8682870161139b565b93505060206114be8682870161139b565b92505060406114cf868287016113d1565b9150509250925092565b600060ff82169050919050565b6114ef816114d9565b82525050565b600060208201905061150a60008301846114e6565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611552826112d2565b810181811067ffffffffffffffff821117156115715761157061151a565b5b80604052505050565b600061158461133e565b90506115908282611549565b919050565b600067ffffffffffffffff8211156115b0576115af61151a565b5b6115b9826112d2565b9050602081019050919050565b82818337600083830152505050565b60006115e86115e384611595565b61157a565b90508281526020810184848401111561160457611603611515565b5b61160f8482856115c6565b509392505050565b600082601f83011261162c5761162b611510565b5b813561163c8482602086016115d5565b91505092915050565b60008060006060848603121561165e5761165d611348565b5b600061166c8682870161139b565b935050602061167d868287016113d1565b925050604084013567ffffffffffffffff81111561169e5761169d61134d565b5b6116aa86828701611617565b9150509250925092565b6000602082840312156116ca576116c9611348565b5b60006116d8848285016113d1565b91505092915050565b6000602082840312156116f7576116f6611348565b5b60006117058482850161139b565b91505092915050565b61171781611372565b82525050565b6000602082019050611732600083018461170e565b92915050565b6000806040838503121561174f5761174e611348565b5b600061175d8582860161139b565b925050602061176e8582860161139b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117bf57607f821691505b602082108114156117d3576117d2611778565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611813826113b0565b915061181e836113b0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611853576118526117d9565b5b828201905092915050565b600081519050919050565b600082825260208201905092915050565b60006118858261185e565b61188f8185611869565b935061189f81856020860161129f565b6118a8816112d2565b840191505092915050565b60006040820190506118c8600083018561145c565b81810360208301526118da818461187a565b90509392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061193f60258361128e565b915061194a826118e3565b604082019050919050565b6000602082019050818103600083015261196e81611932565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119d160268361128e565b91506119dc82611975565b604082019050919050565b60006020820190508181036000830152611a00816119c4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a6360248361128e565b9150611a6e82611a07565b604082019050919050565b60006020820190508181036000830152611a9281611a56565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611af560228361128e565b9150611b0082611a99565b604082019050919050565b60006020820190508181036000830152611b2481611ae8565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611b61601d8361128e565b9150611b6c82611b2b565b602082019050919050565b60006020820190508181036000830152611b9081611b54565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611bf360258361128e565b9150611bfe82611b97565b604082019050919050565b60006020820190508181036000830152611c2281611be6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c8560238361128e565b9150611c9082611c29565b604082019050919050565b60006020820190508181036000830152611cb481611c78565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d1760268361128e565b9150611d2282611cbb565b604082019050919050565b60006020820190508181036000830152611d4681611d0a565b9050919050565b6000606082019050611d62600083018661170e565b611d6f602083018561145c565b8181036040830152611d81818461187a565b9050949350505050565b611d9481611426565b8114611d9f57600080fd5b50565b600081519050611db181611d8b565b92915050565b600060208284031215611dcd57611dcc611348565b5b6000611ddb84828501611da2565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e1a60208361128e565b9150611e2582611de4565b602082019050919050565b60006020820190508181036000830152611e4981611e0d565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611e86601f8361128e565b9150611e9182611e50565b602082019050919050565b60006020820190508181036000830152611eb581611e79565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f1860218361128e565b9150611f2382611ebc565b604082019050919050565b60006020820190508181036000830152611f4781611f0b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611faa60228361128e565b9150611fb582611f4e565b604082019050919050565b60006020820190508181036000830152611fd981611f9d565b905091905056fea2646970667358221220fbde28a91eba920e56b41071c2ffbe9162b2b00ce85a0ded77c20482c9533c8864736f6c63430008080033

Deployed Bytecode Sourcemap

24054:273:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9522:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11882:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10651:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12663:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10493:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13333:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23198:343;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24235:89;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21102:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10822:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2963:103;;;:::i;:::-;;21512:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2322:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9741:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14074:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11155:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11411:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3221:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9522:100;9576:13;9609:5;9602:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9522:100;:::o;11882:201::-;11965:4;11982:13;11998:12;:10;:12::i;:::-;11982:28;;12021:32;12030:5;12037:7;12046:6;12021:8;:32::i;:::-;12071:4;12064:11;;;11882:201;;;;:::o;10651:108::-;10712:7;10739:12;;10732:19;;10651:108;:::o;12663:261::-;12760:4;12777:15;12795:12;:10;:12::i;:::-;12777:30;;12818:38;12834:4;12840:7;12849:6;12818:15;:38::i;:::-;12867:27;12877:4;12883:2;12887:6;12867:9;:27::i;:::-;12912:4;12905:11;;;12663:261;;;;;:::o;10493:93::-;10551:5;10576:2;10569:9;;10493:93;:::o;13333:238::-;13421:4;13438:13;13454:12;:10;:12::i;:::-;13438:28;;13477:64;13486:5;13493:7;13530:10;13502:25;13512:5;13519:7;13502:9;:25::i;:::-;:38;;;;:::i;:::-;13477:8;:64::i;:::-;13559:4;13552:11;;;13333:238;;;;:::o;23198:343::-;23304:12;23328:32;23343:8;23353:6;23328:14;:32::i;:::-;;23395:8;23372:46;;23381:12;:10;:12::i;:::-;23372:46;;;23405:6;23413:4;23372:46;;;;;;;:::i;:::-;;;;;;;;23435:21;23447:8;23435:11;:21::i;:::-;23431:85;;;23467:41;23485:8;23495:6;23503:4;23467:17;:41::i;:::-;23431:85;23531:4;23524:11;;23198:343;;;;;:::o;24235:89::-;2208:13;:11;:13::i;:::-;24301:17:::1;24307:2;24311:6;24301:5;:17::i;:::-;24235:89:::0;;:::o;21102:91::-;21158:27;21164:12;:10;:12::i;:::-;21178:6;21158:5;:27::i;:::-;21102:91;:::o;10822:127::-;10896:7;10923:9;:18;10933:7;10923:18;;;;;;;;;;;;;;;;10916:25;;10822:127;;;:::o;2963:103::-;2208:13;:11;:13::i;:::-;3028:30:::1;3055:1;3028:18;:30::i;:::-;2963:103::o:0;21512:164::-;21589:46;21605:7;21614:12;:10;:12::i;:::-;21628:6;21589:15;:46::i;:::-;21646:22;21652:7;21661:6;21646:5;:22::i;:::-;21512:164;;:::o;2322:87::-;2368:7;2395:6;;;;;;;;;;;2388:13;;2322:87;:::o;9741:104::-;9797:13;9830:7;9823:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9741:104;:::o;14074:436::-;14167:4;14184:13;14200:12;:10;:12::i;:::-;14184:28;;14223:24;14250:25;14260:5;14267:7;14250:9;:25::i;:::-;14223:52;;14314:15;14294:16;:35;;14286:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14407:60;14416:5;14423:7;14451:15;14432:16;:34;14407:8;:60::i;:::-;14498:4;14491:11;;;;14074:436;;;;:::o;11155:193::-;11234:4;11251:13;11267:12;:10;:12::i;:::-;11251:28;;11290;11300:5;11307:2;11311:6;11290:9;:28::i;:::-;11336:4;11329:11;;;11155:193;;;;:::o;11411:151::-;11500:7;11527:11;:18;11539:5;11527:18;;;;;;;;;;;;;;;:27;11546:7;11527:27;;;;;;;;;;;;;;;;11520:34;;11411:151;;;;:::o;3221:201::-;2208:13;:11;:13::i;:::-;3330:1:::1;3310:22;;:8;:22;;;;3302:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3386:28;3405:8;3386:18;:28::i;:::-;3221:201:::0;:::o;762:98::-;815:7;842:10;835:17;;762:98;:::o;18067:346::-;18186:1;18169:19;;:5;:19;;;;18161:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18267:1;18248:21;;:7;:21;;;;18240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18351:6;18321:11;:18;18333:5;18321:18;;;;;;;;;;;;;;;:27;18340:7;18321:27;;;;;;;;;;;;;;;:36;;;;18389:7;18373:32;;18382:5;18373:32;;;18398:6;18373:32;;;;;;:::i;:::-;;;;;;;;18067:346;;;:::o;18704:419::-;18805:24;18832:25;18842:5;18849:7;18832:9;:25::i;:::-;18805:52;;18892:17;18872:16;:37;18868:248;;18954:6;18934:16;:26;;18926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19038:51;19047:5;19054:7;19082:6;19063:16;:25;19038:8;:51::i;:::-;18868:248;18794:329;18704:419;;;:::o;14980:806::-;15093:1;15077:18;;:4;:18;;;;15069:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15170:1;15156:16;;:2;:16;;;;15148:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15225:38;15246:4;15252:2;15256:6;15225:20;:38::i;:::-;15276:19;15298:9;:15;15308:4;15298:15;;;;;;;;;;;;;;;;15276:37;;15347:6;15332:11;:21;;15324:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15464:6;15450:11;:20;15432:9;:15;15442:4;15432:15;;;;;;;;;;;;;;;:38;;;;15667:6;15650:9;:13;15660:2;15650:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15717:2;15702:26;;15711:4;15702:26;;;15721:6;15702:26;;;;;;:::i;:::-;;;;;;;;15741:37;15761:4;15767:2;15771:6;15741:19;:37::i;:::-;15058:728;14980:806;;;:::o;23790:184::-;23863:12;23887:11;23938:4;23926:17;23916:27;;23967:1;23958:6;:10;23951:17;;;23790:184;;;:::o;23548:236::-;23651:32;23702:8;23651:60;;23718:16;:32;;;23751:12;:10;:12::i;:::-;23765:6;23773:4;23718:60;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23644:140;23548:236;;;:::o;2487:132::-;2562:12;:10;:12::i;:::-;2551:23;;:7;:5;:7::i;:::-;:23;;;2543:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2487:132::o;16073:548::-;16176:1;16157:21;;:7;:21;;;;16149:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;16227:49;16256:1;16260:7;16269:6;16227:20;:49::i;:::-;16305:6;16289:12;;:22;;;;;;;:::i;:::-;;;;;;;;16482:6;16460:9;:18;16470:7;16460:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;16536:7;16515:37;;16532:1;16515:37;;;16545:6;16515:37;;;;;;:::i;:::-;;;;;;;;16565:48;16593:1;16597:7;16606:6;16565:19;:48::i;:::-;16073:548;;:::o;16954:675::-;17057:1;17038:21;;:7;:21;;;;17030:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17110:49;17131:7;17148:1;17152:6;17110:20;:49::i;:::-;17172:22;17197:9;:18;17207:7;17197:18;;;;;;;;;;;;;;;;17172:43;;17252:6;17234:14;:24;;17226:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17371:6;17354:14;:23;17333:9;:18;17343:7;17333:18;;;;;;;;;;;;;;;:44;;;;17488:6;17472:12;;:22;;;;;;;;;;;17549:1;17523:37;;17532:7;17523:37;;;17553:6;17523:37;;;;;;:::i;:::-;;;;;;;;17573:48;17593:7;17610:1;17614:6;17573:19;:48::i;:::-;17019:610;16954:675;;:::o;3582:191::-;3656:16;3675:6;;;;;;;;;;;3656:25;;3701:8;3692:6;;:17;;;;;;;;;;;;;;;;;;3756:8;3725:40;;3746:8;3725:40;;;;;;;;;;;;3645:128;3582:191;:::o;19723:91::-;;;;:::o;20418:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1397:75::-;1430:6;1463:2;1457:9;1447:19;;1397:75;:::o;1478:117::-;1587:1;1584;1577:12;1601:117;1710:1;1707;1700:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:117::-;5010:1;5007;5000:12;5024:117;5133:1;5130;5123:12;5147:180;5195:77;5192:1;5185:88;5292:4;5289:1;5282:15;5316:4;5313:1;5306:15;5333:281;5416:27;5438:4;5416:27;:::i;:::-;5408:6;5404:40;5546:6;5534:10;5531:22;5510:18;5498:10;5495:34;5492:62;5489:88;;;5557:18;;:::i;:::-;5489:88;5597:10;5593:2;5586:22;5376:238;5333:281;;:::o;5620:129::-;5654:6;5681:20;;:::i;:::-;5671:30;;5710:33;5738:4;5730:6;5710:33;:::i;:::-;5620:129;;;:::o;5755:307::-;5816:4;5906:18;5898:6;5895:30;5892:56;;;5928:18;;:::i;:::-;5892:56;5966:29;5988:6;5966:29;:::i;:::-;5958:37;;6050:4;6044;6040:15;6032:23;;5755:307;;;:::o;6068:154::-;6152:6;6147:3;6142;6129:30;6214:1;6205:6;6200:3;6196:16;6189:27;6068:154;;;:::o;6228:410::-;6305:5;6330:65;6346:48;6387:6;6346:48;:::i;:::-;6330:65;:::i;:::-;6321:74;;6418:6;6411:5;6404:21;6456:4;6449:5;6445:16;6494:3;6485:6;6480:3;6476:16;6473:25;6470:112;;;6501:79;;:::i;:::-;6470:112;6591:41;6625:6;6620:3;6615;6591:41;:::i;:::-;6311:327;6228:410;;;;;:::o;6657:338::-;6712:5;6761:3;6754:4;6746:6;6742:17;6738:27;6728:122;;6769:79;;:::i;:::-;6728:122;6886:6;6873:20;6911:78;6985:3;6977:6;6970:4;6962:6;6958:17;6911:78;:::i;:::-;6902:87;;6718:277;6657:338;;;;:::o;7001:797::-;7087:6;7095;7103;7152:2;7140:9;7131:7;7127:23;7123:32;7120:119;;;7158:79;;:::i;:::-;7120:119;7278:1;7303:53;7348:7;7339:6;7328:9;7324:22;7303:53;:::i;:::-;7293:63;;7249:117;7405:2;7431:53;7476:7;7467:6;7456:9;7452:22;7431:53;:::i;:::-;7421:63;;7376:118;7561:2;7550:9;7546:18;7533:32;7592:18;7584:6;7581:30;7578:117;;;7614:79;;:::i;:::-;7578:117;7719:62;7773:7;7764:6;7753:9;7749:22;7719:62;:::i;:::-;7709:72;;7504:287;7001:797;;;;;:::o;7804:329::-;7863:6;7912:2;7900:9;7891:7;7887:23;7883:32;7880:119;;;7918:79;;:::i;:::-;7880:119;8038:1;8063:53;8108:7;8099:6;8088:9;8084:22;8063:53;:::i;:::-;8053:63;;8009:117;7804:329;;;;:::o;8139:::-;8198:6;8247:2;8235:9;8226:7;8222:23;8218:32;8215:119;;;8253:79;;:::i;:::-;8215:119;8373:1;8398:53;8443:7;8434:6;8423:9;8419:22;8398:53;:::i;:::-;8388:63;;8344:117;8139:329;;;;:::o;8474:118::-;8561:24;8579:5;8561:24;:::i;:::-;8556:3;8549:37;8474:118;;:::o;8598:222::-;8691:4;8729:2;8718:9;8714:18;8706:26;;8742:71;8810:1;8799:9;8795:17;8786:6;8742:71;:::i;:::-;8598:222;;;;:::o;8826:474::-;8894:6;8902;8951:2;8939:9;8930:7;8926:23;8922:32;8919:119;;;8957:79;;:::i;:::-;8919:119;9077:1;9102:53;9147:7;9138:6;9127:9;9123:22;9102:53;:::i;:::-;9092:63;;9048:117;9204:2;9230:53;9275:7;9266:6;9255:9;9251:22;9230:53;:::i;:::-;9220:63;;9175:118;8826:474;;;;;:::o;9306:180::-;9354:77;9351:1;9344:88;9451:4;9448:1;9441:15;9475:4;9472:1;9465:15;9492:320;9536:6;9573:1;9567:4;9563:12;9553:22;;9620:1;9614:4;9610:12;9641:18;9631:81;;9697:4;9689:6;9685:17;9675:27;;9631:81;9759:2;9751:6;9748:14;9728:18;9725:38;9722:84;;;9778:18;;:::i;:::-;9722:84;9543:269;9492:320;;;:::o;9818:180::-;9866:77;9863:1;9856:88;9963:4;9960:1;9953:15;9987:4;9984:1;9977:15;10004:305;10044:3;10063:20;10081:1;10063:20;:::i;:::-;10058:25;;10097:20;10115:1;10097:20;:::i;:::-;10092:25;;10251:1;10183:66;10179:74;10176:1;10173:81;10170:107;;;10257:18;;:::i;:::-;10170:107;10301:1;10298;10294:9;10287:16;;10004:305;;;;:::o;10315:98::-;10366:6;10400:5;10394:12;10384:22;;10315:98;;;:::o;10419:168::-;10502:11;10536:6;10531:3;10524:19;10576:4;10571:3;10567:14;10552:29;;10419:168;;;;:::o;10593:360::-;10679:3;10707:38;10739:5;10707:38;:::i;:::-;10761:70;10824:6;10819:3;10761:70;:::i;:::-;10754:77;;10840:52;10885:6;10880:3;10873:4;10866:5;10862:16;10840:52;:::i;:::-;10917:29;10939:6;10917:29;:::i;:::-;10912:3;10908:39;10901:46;;10683:270;10593:360;;;;:::o;10959:419::-;11098:4;11136:2;11125:9;11121:18;11113:26;;11149:71;11217:1;11206:9;11202:17;11193:6;11149:71;:::i;:::-;11267:9;11261:4;11257:20;11252:2;11241:9;11237:18;11230:48;11295:76;11366:4;11357:6;11295:76;:::i;:::-;11287:84;;10959:419;;;;;:::o;11384:224::-;11524:34;11520:1;11512:6;11508:14;11501:58;11593:7;11588:2;11580:6;11576:15;11569:32;11384:224;:::o;11614:366::-;11756:3;11777:67;11841:2;11836:3;11777:67;:::i;:::-;11770:74;;11853:93;11942:3;11853:93;:::i;:::-;11971:2;11966:3;11962:12;11955:19;;11614:366;;;:::o;11986:419::-;12152:4;12190:2;12179:9;12175:18;12167:26;;12239:9;12233:4;12229:20;12225:1;12214:9;12210:17;12203:47;12267:131;12393:4;12267:131;:::i;:::-;12259:139;;11986:419;;;:::o;12411:225::-;12551:34;12547:1;12539:6;12535:14;12528:58;12620:8;12615:2;12607:6;12603:15;12596:33;12411:225;:::o;12642:366::-;12784:3;12805:67;12869:2;12864:3;12805:67;:::i;:::-;12798:74;;12881:93;12970:3;12881:93;:::i;:::-;12999:2;12994:3;12990:12;12983:19;;12642:366;;;:::o;13014:419::-;13180:4;13218:2;13207:9;13203:18;13195:26;;13267:9;13261:4;13257:20;13253:1;13242:9;13238:17;13231:47;13295:131;13421:4;13295:131;:::i;:::-;13287:139;;13014:419;;;:::o;13439:223::-;13579:34;13575:1;13567:6;13563:14;13556:58;13648:6;13643:2;13635:6;13631:15;13624:31;13439:223;:::o;13668:366::-;13810:3;13831:67;13895:2;13890:3;13831:67;:::i;:::-;13824:74;;13907:93;13996:3;13907:93;:::i;:::-;14025:2;14020:3;14016:12;14009:19;;13668:366;;;:::o;14040:419::-;14206:4;14244:2;14233:9;14229:18;14221:26;;14293:9;14287:4;14283:20;14279:1;14268:9;14264:17;14257:47;14321:131;14447:4;14321:131;:::i;:::-;14313:139;;14040:419;;;:::o;14465:221::-;14605:34;14601:1;14593:6;14589:14;14582:58;14674:4;14669:2;14661:6;14657:15;14650:29;14465:221;:::o;14692:366::-;14834:3;14855:67;14919:2;14914:3;14855:67;:::i;:::-;14848:74;;14931:93;15020:3;14931:93;:::i;:::-;15049:2;15044:3;15040:12;15033:19;;14692:366;;;:::o;15064:419::-;15230:4;15268:2;15257:9;15253:18;15245:26;;15317:9;15311:4;15307:20;15303:1;15292:9;15288:17;15281:47;15345:131;15471:4;15345:131;:::i;:::-;15337:139;;15064:419;;;:::o;15489:179::-;15629:31;15625:1;15617:6;15613:14;15606:55;15489:179;:::o;15674:366::-;15816:3;15837:67;15901:2;15896:3;15837:67;:::i;:::-;15830:74;;15913:93;16002:3;15913:93;:::i;:::-;16031:2;16026:3;16022:12;16015:19;;15674:366;;;:::o;16046:419::-;16212:4;16250:2;16239:9;16235:18;16227:26;;16299:9;16293:4;16289:20;16285:1;16274:9;16270:17;16263:47;16327:131;16453:4;16327:131;:::i;:::-;16319:139;;16046:419;;;:::o;16471:224::-;16611:34;16607:1;16599:6;16595:14;16588:58;16680:7;16675:2;16667:6;16663:15;16656:32;16471:224;:::o;16701:366::-;16843:3;16864:67;16928:2;16923:3;16864:67;:::i;:::-;16857:74;;16940:93;17029:3;16940:93;:::i;:::-;17058:2;17053:3;17049:12;17042:19;;16701:366;;;:::o;17073:419::-;17239:4;17277:2;17266:9;17262:18;17254:26;;17326:9;17320:4;17316:20;17312:1;17301:9;17297:17;17290:47;17354:131;17480:4;17354:131;:::i;:::-;17346:139;;17073:419;;;:::o;17498:222::-;17638:34;17634:1;17626:6;17622:14;17615:58;17707:5;17702:2;17694:6;17690:15;17683:30;17498:222;:::o;17726:366::-;17868:3;17889:67;17953:2;17948:3;17889:67;:::i;:::-;17882:74;;17965:93;18054:3;17965:93;:::i;:::-;18083:2;18078:3;18074:12;18067:19;;17726:366;;;:::o;18098:419::-;18264:4;18302:2;18291:9;18287:18;18279:26;;18351:9;18345:4;18341:20;18337:1;18326:9;18322:17;18315:47;18379:131;18505:4;18379:131;:::i;:::-;18371:139;;18098:419;;;:::o;18523:225::-;18663:34;18659:1;18651:6;18647:14;18640:58;18732:8;18727:2;18719:6;18715:15;18708:33;18523:225;:::o;18754:366::-;18896:3;18917:67;18981:2;18976:3;18917:67;:::i;:::-;18910:74;;18993:93;19082:3;18993:93;:::i;:::-;19111:2;19106:3;19102:12;19095:19;;18754:366;;;:::o;19126:419::-;19292:4;19330:2;19319:9;19315:18;19307:26;;19379:9;19373:4;19369:20;19365:1;19354:9;19350:17;19343:47;19407:131;19533:4;19407:131;:::i;:::-;19399:139;;19126:419;;;:::o;19551:529::-;19718:4;19756:2;19745:9;19741:18;19733:26;;19769:71;19837:1;19826:9;19822:17;19813:6;19769:71;:::i;:::-;19850:72;19918:2;19907:9;19903:18;19894:6;19850:72;:::i;:::-;19969:9;19963:4;19959:20;19954:2;19943:9;19939:18;19932:48;19997:76;20068:4;20059:6;19997:76;:::i;:::-;19989:84;;19551:529;;;;;;:::o;20086:116::-;20156:21;20171:5;20156:21;:::i;:::-;20149:5;20146:32;20136:60;;20192:1;20189;20182:12;20136:60;20086:116;:::o;20208:137::-;20262:5;20293:6;20287:13;20278:22;;20309:30;20333:5;20309:30;:::i;:::-;20208:137;;;;:::o;20351:345::-;20418:6;20467:2;20455:9;20446:7;20442:23;20438:32;20435:119;;;20473:79;;:::i;:::-;20435:119;20593:1;20618:61;20671:7;20662:6;20651:9;20647:22;20618:61;:::i;:::-;20608:71;;20564:125;20351:345;;;;:::o;20702:182::-;20842:34;20838:1;20830:6;20826:14;20819:58;20702:182;:::o;20890:366::-;21032:3;21053:67;21117:2;21112:3;21053:67;:::i;:::-;21046:74;;21129:93;21218:3;21129:93;:::i;:::-;21247:2;21242:3;21238:12;21231:19;;20890:366;;;:::o;21262:419::-;21428:4;21466:2;21455:9;21451:18;21443:26;;21515:9;21509:4;21505:20;21501:1;21490:9;21486:17;21479:47;21543:131;21669:4;21543:131;:::i;:::-;21535:139;;21262:419;;;:::o;21687:181::-;21827:33;21823:1;21815:6;21811:14;21804:57;21687:181;:::o;21874:366::-;22016:3;22037:67;22101:2;22096:3;22037:67;:::i;:::-;22030:74;;22113:93;22202:3;22113:93;:::i;:::-;22231:2;22226:3;22222:12;22215:19;;21874:366;;;:::o;22246:419::-;22412:4;22450:2;22439:9;22435:18;22427:26;;22499:9;22493:4;22489:20;22485:1;22474:9;22470:17;22463:47;22527:131;22653:4;22527:131;:::i;:::-;22519:139;;22246:419;;;:::o;22671:220::-;22811:34;22807:1;22799:6;22795:14;22788:58;22880:3;22875:2;22867:6;22863:15;22856:28;22671:220;:::o;22897:366::-;23039:3;23060:67;23124:2;23119:3;23060:67;:::i;:::-;23053:74;;23136:93;23225:3;23136:93;:::i;:::-;23254:2;23249:3;23245:12;23238:19;;22897:366;;;:::o;23269:419::-;23435:4;23473:2;23462:9;23458:18;23450:26;;23522:9;23516:4;23512:20;23508:1;23497:9;23493:17;23486:47;23550:131;23676:4;23550:131;:::i;:::-;23542:139;;23269:419;;;:::o;23694:221::-;23834:34;23830:1;23822:6;23818:14;23811:58;23903:4;23898:2;23890:6;23886:15;23879:29;23694:221;:::o;23921:366::-;24063:3;24084:67;24148:2;24143:3;24084:67;:::i;:::-;24077:74;;24160:93;24249:3;24160:93;:::i;:::-;24278:2;24273:3;24269:12;24262:19;;23921:366;;;:::o;24293:419::-;24459:4;24497:2;24486:9;24482:18;24474:26;;24546:9;24540:4;24536:20;24532:1;24521:9;24517:17;24510:47;24574:131;24700:4;24574:131;:::i;:::-;24566:139;;24293:419;;;:::o

Swarm Source

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