ETH Price: $3,400.89 (-1.27%)
Gas: 5 Gwei

Token

Church DAO (CHURCH)
 

Overview

Max Total Supply

777,777,777,777,777.777777777777777777 CHURCH

Holders

879

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
7,697,933,506.558826331814788889 CHURCH

Value
$0.00
0x354640486e3e8e9f151158197e4667daa2ad0bdc
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:
CHURCH

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : Church.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.7;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract CHURCH is ERC20, Ownable {
    /* Token Tax */
    uint16 public _taxTotal = 77; // Initial tax amount
    uint32 public _taxPercision = 10000;
    bool public _taxActive = true;

    mapping(string => mapping(address => bool)) public _whitelists;

    /* Events */
    event UpdateTaxPercentage(uint16 _newTaxAmount);
    event RemoveFromWhitelist(string list, address indexed wallet);
    event AddToWhitelist(string list, address indexed wallet);
    event ToggleTax(bool _active);

    uint256 private _totalSupply;

    constructor() ERC20('Church DAO', 'CHURCH') payable {
      _totalSupply = 777777777777777777777777777777777;

      addToWhitelist('from', address(this));
      addToWhitelist('to', address(this));
      addToWhitelist('from', msg.sender);

      _mint(msg.sender, _totalSupply);
    }

    /**
      * @notice overrides ERC20 transferFrom function to add tax
      * @param from address amount is coming from
      * @param to address amount is going to
      * @param amount amount being sent
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
      address spender = _msgSender();
      _spendAllowance(from, spender, amount);
      require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance");
      if(_taxActive && !_whitelists['from'][from] && !_whitelists['to'][to]) {
        uint256 tax = amount *_taxTotal / _taxPercision;
        amount = amount - tax;
        _transfer(from, address(this), tax);
      }
      _transfer(from, to, amount);
      return true;
    }


    /**
      * @notice overrides ERC20 transferFrom function to add tax
      * @param to address amount is going to
      * @param amount amount being sent
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
      address owner = _msgSender();
      require(balanceOf(owner) >= amount, "ERC20: transfer amount exceeds balance");
      if(_taxActive && !_whitelists['from'][owner] && !_whitelists['to'][to]) {
        uint256 tax = amount*_taxTotal/_taxPercision;
        amount = amount - tax;
        _transfer(owner, address(this), tax);
      }
      _transfer(owner, to, amount);
      return true;
    }

    /* ADMIN Functions */

    /**
       * @notice : toggles the tax on or off
    */
    function toggleTax() external onlyOwner {
      _taxActive = !_taxActive;
      emit ToggleTax(_taxActive);
    }

    /**
      * @notice : updates address tax amount
      * @param newTax new tax amount
     */
    function setTax(uint16 newTax) external onlyOwner {
      require(newTax <= 4 * _taxPercision / 100, 'Tax can not be set to more than 4%');

      _taxTotal = newTax;
      emit UpdateTaxPercentage(newTax);
    }

    /**
    * @notice : add address to tax whitelist
    * @param list indicates which whitelist ('to' or 'from')
    * @param wallet address to add to whitelist
    */
    function addToWhitelist(string memory list, address wallet) public onlyOwner {
      require(wallet != address(0), "Cant use 0 address");
      require(!_whitelists[list][wallet], "Address already added");
      _whitelists[list][wallet] = true;

      emit AddToWhitelist(list, wallet);
    }

    /**
    * @notice : remoe address from a whitelist
    * @param list indicates which whitelist ('to' or 'from')
    * @param wallet address to remove from whitelist
    */
    function removeFromWhitelist(string memory list, address wallet) external onlyOwner {
      require(wallet != address(0), "Cant use 0 address");
      require(_whitelists[list][wallet], "Address not added");
      _whitelists[list][wallet] = false;

      emit RemoveFromWhitelist(list, wallet);
    }

    /**
      * @notice : withdraws taxes to the contract owner
     */
    function withdrawTaxes() external onlyOwner {
      uint256 amount = balanceOf(address(this));
      require(amount > 0, "Nothing to withdraw");
      _transfer(address(this), msg.sender, amount);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 4 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (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 `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);

    /**
     * @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 5 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract 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:
     *
     * - `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, _allowances[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 = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

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

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

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

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

    /**
     * @dev Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * 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 6 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"list","type":"string"},{"indexed":true,"internalType":"address","name":"wallet","type":"address"}],"name":"AddToWhitelist","type":"event"},{"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":false,"internalType":"string","name":"list","type":"string"},{"indexed":true,"internalType":"address","name":"wallet","type":"address"}],"name":"RemoveFromWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_active","type":"bool"}],"name":"ToggleTax","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_newTaxAmount","type":"uint16"}],"name":"UpdateTaxPercentage","type":"event"},{"inputs":[],"name":"_taxActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxPercision","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxTotal","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"address","name":"","type":"address"}],"name":"_whitelists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"list","type":"string"},{"internalType":"address","name":"wallet","type":"address"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"list","type":"string"},{"internalType":"address","name":"wallet","type":"address"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"newTax","type":"uint16"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604d600560146101000a81548161ffff021916908361ffff160217905550612710600560166101000a81548163ffffffff021916908363ffffffff16021790555060016005601a6101000a81548160ff0219169083151502179055506040518060400160405280600a81526020017f4368757263682044414f000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f43485552434800000000000000000000000000000000000000000000000000008152508160039080519060200190620000e492919062000719565b508060049080519060200190620000fd92919062000719565b50505062000120620001146200022460201b60201c565b6200022c60201b60201c565b6d2658ef8aa700ba5d7fb271c71c716007819055506200017c6040518060400160405280600481526020017f66726f6d0000000000000000000000000000000000000000000000000000000081525030620002f260201b60201c565b620001c36040518060400160405280600281526020017f746f00000000000000000000000000000000000000000000000000000000000081525030620002f260201b60201c565b6200020a6040518060400160405280600481526020017f66726f6d0000000000000000000000000000000000000000000000000000000081525033620002f260201b60201c565b6200021e336007546200056c60201b60201c565b62000bdd565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003026200022460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000328620006e560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000378906200094d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620003f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003eb9062000991565b60405180910390fd5b600682604051620004069190620008ee565b908152602001604051809103902060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615620004a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000499906200092b565b60405180910390fd5b6001600683604051620004b69190620008ee565b908152602001604051809103902060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f86ee29c6f894bd8c8c414e3960227f447445461b976a82f121552dababde654b8360405162000560919062000907565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620005df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005d6906200096f565b60405180910390fd5b620005f3600083836200070f60201b60201c565b8060026000828254620006079190620009f7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200065e9190620009f7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620006c59190620009b3565b60405180910390a3620006e1600083836200071460201b60201c565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b828054620007279062000a94565b90600052602060002090601f0160209004810192826200074b576000855562000797565b82601f106200076657805160ff191683800117855562000797565b8280016001018555821562000797579182015b828111156200079657825182559160200191906001019062000779565b5b509050620007a69190620007aa565b5090565b5b80821115620007c5576000816000905550600101620007ab565b5090565b6000620007d682620009d0565b620007e28185620009db565b9350620007f481856020860162000a5e565b620007ff8162000b28565b840191505092915050565b60006200081782620009d0565b620008238185620009ec565b93506200083581856020860162000a5e565b80840191505092915050565b600062000850601583620009db565b91506200085d8262000b39565b602082019050919050565b600062000877602083620009db565b9150620008848262000b62565b602082019050919050565b60006200089e601f83620009db565b9150620008ab8262000b8b565b602082019050919050565b6000620008c5601283620009db565b9150620008d28262000bb4565b602082019050919050565b620008e88162000a54565b82525050565b6000620008fc82846200080a565b915081905092915050565b60006020820190508181036000830152620009238184620007c9565b905092915050565b60006020820190508181036000830152620009468162000841565b9050919050565b60006020820190508181036000830152620009688162000868565b9050919050565b600060208201905081810360008301526200098a816200088f565b9050919050565b60006020820190508181036000830152620009ac81620008b6565b9050919050565b6000602082019050620009ca6000830184620008dd565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600062000a048262000a54565b915062000a118362000a54565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a495762000a4862000aca565b5b828201905092915050565b6000819050919050565b60005b8381101562000a7e57808201518184015260208101905062000a61565b8381111562000a8e576000848401525b50505050565b6000600282049050600182168062000aad57607f821691505b6020821081141562000ac45762000ac362000af9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4164647265737320616c72656164792061646465640000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f43616e7420757365203020616464726573730000000000000000000000000000600082015250565b612b6c8062000bed6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80634be31778116100c3578063a457c2d71161007c578063a457c2d714610368578063a9059cbb14610398578063bb47cc0c146103c8578063dd62ed3e146103e6578063f2fde38b14610416578063fb369eb0146104325761014d565b80634be31778146102a457806370a08231146102c2578063715018a6146102f25780638da5cb5b146102fc57806395d89b411461031a578063964ba61e146103385761014d565b806318160ddd1161011557806318160ddd146101e257806323b872dd14610200578063313ce56714610230578063319f5f6a1461024e578063395093511461026a578063468298311461029a5761014d565b80630308761b1461015257806306fdde031461016e578063095ea7b31461018c57806310bf6029146101bc578063141b6e26146101c6575b600080fd5b61016c60048036038101906101679190611cf5565b610450565b005b6101766106aa565b60405161018391906120e9565b60405180910390f35b6101a660048036038101906101a19190611cb5565b61073c565b6040516101b391906120ce565b60405180910390f35b6101c461075f565b005b6101e060048036038101906101db9190611cf5565b61084d565b005b6101ea610aa8565b6040516101f791906122e6565b60405180910390f35b61021a60048036038101906102159190611c62565b610ab2565b60405161022791906120ce565b60405180910390f35b610238610c83565b604051610245919061231c565b60405180910390f35b61026860048036038101906102639190611d51565b610c8c565b005b610284600480360381019061027f9190611cb5565b610dd6565b60405161029191906120ce565b60405180910390f35b6102a2610e80565b005b6102ac610f5a565b6040516102b99190612301565b60405180910390f35b6102dc60048036038101906102d79190611bf5565b610f70565b6040516102e991906122e6565b60405180910390f35b6102fa610fb8565b005b610304611040565b60405161031191906120b3565b60405180910390f35b61032261106a565b60405161032f91906120e9565b60405180910390f35b610352600480360381019061034d9190611cf5565b6110fc565b60405161035f91906120ce565b60405180910390f35b610382600480360381019061037d9190611cb5565b611141565b60405161038f91906120ce565b60405180910390f35b6103b260048036038101906103ad9190611cb5565b61122b565b6040516103bf91906120ce565b60405180910390f35b6103d06113f0565b6040516103dd91906122cb565b60405180910390f35b61040060048036038101906103fb9190611c22565b611404565b60405161040d91906122e6565b60405180910390f35b610430600480360381019061042b9190611bf5565b61148b565b005b61043a611583565b60405161044791906120ce565b60405180910390f35b610458611596565b73ffffffffffffffffffffffffffffffffffffffff16610476611040565b73ffffffffffffffffffffffffffffffffffffffff16146104cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c39061222b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561053c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610533906122ab565b60405180910390fd5b60068260405161054c9190612072565b908152602001604051809103902060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166105e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105db9061220b565b60405180910390fd5b60006006836040516105f69190612072565b908152602001604051809103902060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167ff54739fff8cece84a8944344ddceecde51dde01353452b7a3bfd256f515338868360405161069e91906120e9565b60405180910390a25050565b6060600380546106b9906125ed565b80601f01602080910402602001604051908101604052809291908181526020018280546106e5906125ed565b80156107325780601f1061070757610100808354040283529160200191610732565b820191906000526020600020905b81548152906001019060200180831161071557829003601f168201915b5050505050905090565b600080610747611596565b905061075481858561159e565b600191505092915050565b610767611596565b73ffffffffffffffffffffffffffffffffffffffff16610785611040565b73ffffffffffffffffffffffffffffffffffffffff16146107db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d29061222b565b60405180910390fd5b6005601a9054906101000a900460ff16156005601a6101000a81548160ff0219169083151502179055507fdda4866fd658821eea607c5d6addd0c4a0cc347eb4cea313399e516e660198646005601a9054906101000a900460ff1660405161084391906120ce565b60405180910390a1565b610855611596565b73ffffffffffffffffffffffffffffffffffffffff16610873611040565b73ffffffffffffffffffffffffffffffffffffffff16146108c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c09061222b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610939576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610930906122ab565b60405180910390fd5b6006826040516109499190612072565b908152602001604051809103902060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156109e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d9906121eb565b60405180910390fd5b60016006836040516109f49190612072565b908152602001604051809103902060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f86ee29c6f894bd8c8c414e3960227f447445461b976a82f121552dababde654b83604051610a9c91906120e9565b60405180910390a25050565b6000600254905090565b600080610abd611596565b9050610aca858285611769565b82610ad486610f70565b1015610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c906121cb565b60405180910390fd5b6005601a9054906101000a900460ff168015610b9557506006604051610b3a9061209e565b908152602001604051809103902060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610c0557506006604051610baa90612089565b908152602001604051809103902060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610c6c576000600560169054906101000a900463ffffffff1663ffffffff16600560149054906101000a900461ffff1661ffff1685610c45919061246c565b610c4f919061240a565b90508084610c5d9190612504565b9350610c6a8630836117f5565b505b610c778585856117f5565b60019150509392505050565b60006012905090565b610c94611596565b73ffffffffffffffffffffffffffffffffffffffff16610cb2611040565b73ffffffffffffffffffffffffffffffffffffffff1614610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff9061222b565b60405180910390fd5b6064600560169054906101000a900463ffffffff166004610d2991906124c6565b610d33919061243b565b63ffffffff168161ffff161115610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d76906121ab565b60405180910390fd5b80600560146101000a81548161ffff021916908361ffff1602179055507f841eb6f9e47fcd1f7e123dd994ffaf8c0df0f8c44c22def597a74290b369215881604051610dcb91906122cb565b60405180910390a150565b600080610de1611596565b9050610e75818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e7091906123b4565b61159e565b600191505092915050565b610e88611596565b73ffffffffffffffffffffffffffffffffffffffff16610ea6611040565b73ffffffffffffffffffffffffffffffffffffffff1614610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef39061222b565b60405180910390fd5b6000610f0730610f70565b905060008111610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f439061212b565b60405180910390fd5b610f573033836117f5565b50565b600560169054906101000a900463ffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fc0611596565b73ffffffffffffffffffffffffffffffffffffffff16610fde611040565b73ffffffffffffffffffffffffffffffffffffffff1614611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b9061222b565b60405180910390fd5b61103e6000611a76565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054611079906125ed565b80601f01602080910402602001604051908101604052809291908181526020018280546110a5906125ed565b80156110f25780601f106110c7576101008083540402835291602001916110f2565b820191906000526020600020905b8154815290600101906020018083116110d557829003601f168201915b5050505050905090565b6006828051602081018201805184825260208301602085012081835280955050505050506020528060005260406000206000915091509054906101000a900460ff1681565b60008061114c611596565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611212576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112099061228b565b60405180910390fd5b61121f828686840361159e565b60019250505092915050565b600080611236611596565b90508261124282610f70565b1015611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a906121cb565b60405180910390fd5b6005601a9054906101000a900460ff168015611303575060066040516112a89061209e565b908152602001604051809103902060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156113735750600660405161131890612089565b908152602001604051809103902060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113da576000600560169054906101000a900463ffffffff1663ffffffff16600560149054906101000a900461ffff1661ffff16856113b3919061246c565b6113bd919061240a565b905080846113cb9190612504565b93506113d88230836117f5565b505b6113e58185856117f5565b600191505092915050565b600560149054906101000a900461ffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611493611596565b73ffffffffffffffffffffffffffffffffffffffff166114b1611040565b73ffffffffffffffffffffffffffffffffffffffff1614611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe9061222b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e9061214b565b60405180910390fd5b61158081611a76565b50565b6005601a9054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561160e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116059061226b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561167e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116759061216b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161175c91906122e6565b60405180910390a3505050565b60006117758484611404565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117ef57818110156117e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d89061218b565b60405180910390fd5b6117ee848484840361159e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185c9061224b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc9061210b565b60405180910390fd5b6118e0838383611b3c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195d906121cb565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119f991906123b4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a5d91906122e6565b60405180910390a3611a70848484611b41565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000611b59611b548461235c565b612337565b905082815260208101848484011115611b7557611b74612711565b5b611b808482856125ab565b509392505050565b600081359050611b9781612af1565b92915050565b600082601f830112611bb257611bb161270c565b5b8135611bc2848260208601611b46565b91505092915050565b600081359050611bda81612b08565b92915050565b600081359050611bef81612b1f565b92915050565b600060208284031215611c0b57611c0a61271b565b5b6000611c1984828501611b88565b91505092915050565b60008060408385031215611c3957611c3861271b565b5b6000611c4785828601611b88565b9250506020611c5885828601611b88565b9150509250929050565b600080600060608486031215611c7b57611c7a61271b565b5b6000611c8986828701611b88565b9350506020611c9a86828701611b88565b9250506040611cab86828701611be0565b9150509250925092565b60008060408385031215611ccc57611ccb61271b565b5b6000611cda85828601611b88565b9250506020611ceb85828601611be0565b9150509250929050565b60008060408385031215611d0c57611d0b61271b565b5b600083013567ffffffffffffffff811115611d2a57611d29612716565b5b611d3685828601611b9d565b9250506020611d4785828601611b88565b9150509250929050565b600060208284031215611d6757611d6661271b565b5b6000611d7584828501611bcb565b91505092915050565b611d8781612538565b82525050565b611d968161254a565b82525050565b6000611da78261238d565b611db18185612398565b9350611dc18185602086016125ba565b611dca81612720565b840191505092915050565b6000611de08261238d565b611dea81856123a9565b9350611dfa8185602086016125ba565b80840191505092915050565b6000611e13602383612398565b9150611e1e82612731565b604082019050919050565b6000611e36601383612398565b9150611e4182612780565b602082019050919050565b6000611e596002836123a9565b9150611e64826127a9565b600282019050919050565b6000611e7c602683612398565b9150611e87826127d2565b604082019050919050565b6000611e9f602283612398565b9150611eaa82612821565b604082019050919050565b6000611ec2601d83612398565b9150611ecd82612870565b602082019050919050565b6000611ee5602283612398565b9150611ef082612899565b604082019050919050565b6000611f08602683612398565b9150611f13826128e8565b604082019050919050565b6000611f2b6004836123a9565b9150611f3682612937565b600482019050919050565b6000611f4e601583612398565b9150611f5982612960565b602082019050919050565b6000611f71601183612398565b9150611f7c82612989565b602082019050919050565b6000611f94602083612398565b9150611f9f826129b2565b602082019050919050565b6000611fb7602583612398565b9150611fc2826129db565b604082019050919050565b6000611fda602483612398565b9150611fe582612a2a565b604082019050919050565b6000611ffd602583612398565b915061200882612a79565b604082019050919050565b6000612020601283612398565b915061202b82612ac8565b602082019050919050565b61203f81612556565b82525050565b61204e81612584565b82525050565b61205d8161258e565b82525050565b61206c8161259e565b82525050565b600061207e8284611dd5565b915081905092915050565b600061209482611e4c565b9150819050919050565b60006120a982611f1e565b9150819050919050565b60006020820190506120c86000830184611d7e565b92915050565b60006020820190506120e36000830184611d8d565b92915050565b600060208201905081810360008301526121038184611d9c565b905092915050565b6000602082019050818103600083015261212481611e06565b9050919050565b6000602082019050818103600083015261214481611e29565b9050919050565b6000602082019050818103600083015261216481611e6f565b9050919050565b6000602082019050818103600083015261218481611e92565b9050919050565b600060208201905081810360008301526121a481611eb5565b9050919050565b600060208201905081810360008301526121c481611ed8565b9050919050565b600060208201905081810360008301526121e481611efb565b9050919050565b6000602082019050818103600083015261220481611f41565b9050919050565b6000602082019050818103600083015261222481611f64565b9050919050565b6000602082019050818103600083015261224481611f87565b9050919050565b6000602082019050818103600083015261226481611faa565b9050919050565b6000602082019050818103600083015261228481611fcd565b9050919050565b600060208201905081810360008301526122a481611ff0565b9050919050565b600060208201905081810360008301526122c481612013565b9050919050565b60006020820190506122e06000830184612036565b92915050565b60006020820190506122fb6000830184612045565b92915050565b60006020820190506123166000830184612054565b92915050565b60006020820190506123316000830184612063565b92915050565b6000612341612352565b905061234d828261261f565b919050565b6000604051905090565b600067ffffffffffffffff821115612377576123766126dd565b5b61238082612720565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b60006123bf82612584565b91506123ca83612584565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156123ff576123fe612650565b5b828201905092915050565b600061241582612584565b915061242083612584565b9250826124305761242f61267f565b5b828204905092915050565b60006124468261258e565b91506124518361258e565b9250826124615761246061267f565b5b828204905092915050565b600061247782612584565b915061248283612584565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156124bb576124ba612650565b5b828202905092915050565b60006124d18261258e565b91506124dc8361258e565b92508163ffffffff04831182151516156124f9576124f8612650565b5b828202905092915050565b600061250f82612584565b915061251a83612584565b92508282101561252d5761252c612650565b5b828203905092915050565b600061254382612564565b9050919050565b60008115159050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156125d85780820151818401526020810190506125bd565b838111156125e7576000848401525b50505050565b6000600282049050600182168061260557607f821691505b60208210811415612619576126186126ae565b5b50919050565b61262882612720565b810181811067ffffffffffffffff82111715612647576126466126dd565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7468696e6720746f20776974686472617700000000000000000000000000600082015250565b7f746f000000000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f5461782063616e206e6f742062652073657420746f206d6f7265207468616e2060008201527f3425000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f66726f6d00000000000000000000000000000000000000000000000000000000600082015250565b7f4164647265737320616c72656164792061646465640000000000000000000000600082015250565b7f41646472657373206e6f74206164646564000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f43616e7420757365203020616464726573730000000000000000000000000000600082015250565b612afa81612538565b8114612b0557600080fd5b50565b612b1181612556565b8114612b1c57600080fd5b50565b612b2881612584565b8114612b3357600080fd5b5056fea2646970667358221220419af8fcc2e3f860782e201c6d90e96c8315cee54531ea676e111486e5d6b65e64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80634be31778116100c3578063a457c2d71161007c578063a457c2d714610368578063a9059cbb14610398578063bb47cc0c146103c8578063dd62ed3e146103e6578063f2fde38b14610416578063fb369eb0146104325761014d565b80634be31778146102a457806370a08231146102c2578063715018a6146102f25780638da5cb5b146102fc57806395d89b411461031a578063964ba61e146103385761014d565b806318160ddd1161011557806318160ddd146101e257806323b872dd14610200578063313ce56714610230578063319f5f6a1461024e578063395093511461026a578063468298311461029a5761014d565b80630308761b1461015257806306fdde031461016e578063095ea7b31461018c57806310bf6029146101bc578063141b6e26146101c6575b600080fd5b61016c60048036038101906101679190611cf5565b610450565b005b6101766106aa565b60405161018391906120e9565b60405180910390f35b6101a660048036038101906101a19190611cb5565b61073c565b6040516101b391906120ce565b60405180910390f35b6101c461075f565b005b6101e060048036038101906101db9190611cf5565b61084d565b005b6101ea610aa8565b6040516101f791906122e6565b60405180910390f35b61021a60048036038101906102159190611c62565b610ab2565b60405161022791906120ce565b60405180910390f35b610238610c83565b604051610245919061231c565b60405180910390f35b61026860048036038101906102639190611d51565b610c8c565b005b610284600480360381019061027f9190611cb5565b610dd6565b60405161029191906120ce565b60405180910390f35b6102a2610e80565b005b6102ac610f5a565b6040516102b99190612301565b60405180910390f35b6102dc60048036038101906102d79190611bf5565b610f70565b6040516102e991906122e6565b60405180910390f35b6102fa610fb8565b005b610304611040565b60405161031191906120b3565b60405180910390f35b61032261106a565b60405161032f91906120e9565b60405180910390f35b610352600480360381019061034d9190611cf5565b6110fc565b60405161035f91906120ce565b60405180910390f35b610382600480360381019061037d9190611cb5565b611141565b60405161038f91906120ce565b60405180910390f35b6103b260048036038101906103ad9190611cb5565b61122b565b6040516103bf91906120ce565b60405180910390f35b6103d06113f0565b6040516103dd91906122cb565b60405180910390f35b61040060048036038101906103fb9190611c22565b611404565b60405161040d91906122e6565b60405180910390f35b610430600480360381019061042b9190611bf5565b61148b565b005b61043a611583565b60405161044791906120ce565b60405180910390f35b610458611596565b73ffffffffffffffffffffffffffffffffffffffff16610476611040565b73ffffffffffffffffffffffffffffffffffffffff16146104cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c39061222b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561053c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610533906122ab565b60405180910390fd5b60068260405161054c9190612072565b908152602001604051809103902060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166105e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105db9061220b565b60405180910390fd5b60006006836040516105f69190612072565b908152602001604051809103902060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167ff54739fff8cece84a8944344ddceecde51dde01353452b7a3bfd256f515338868360405161069e91906120e9565b60405180910390a25050565b6060600380546106b9906125ed565b80601f01602080910402602001604051908101604052809291908181526020018280546106e5906125ed565b80156107325780601f1061070757610100808354040283529160200191610732565b820191906000526020600020905b81548152906001019060200180831161071557829003601f168201915b5050505050905090565b600080610747611596565b905061075481858561159e565b600191505092915050565b610767611596565b73ffffffffffffffffffffffffffffffffffffffff16610785611040565b73ffffffffffffffffffffffffffffffffffffffff16146107db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d29061222b565b60405180910390fd5b6005601a9054906101000a900460ff16156005601a6101000a81548160ff0219169083151502179055507fdda4866fd658821eea607c5d6addd0c4a0cc347eb4cea313399e516e660198646005601a9054906101000a900460ff1660405161084391906120ce565b60405180910390a1565b610855611596565b73ffffffffffffffffffffffffffffffffffffffff16610873611040565b73ffffffffffffffffffffffffffffffffffffffff16146108c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c09061222b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610939576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610930906122ab565b60405180910390fd5b6006826040516109499190612072565b908152602001604051809103902060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156109e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d9906121eb565b60405180910390fd5b60016006836040516109f49190612072565b908152602001604051809103902060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f86ee29c6f894bd8c8c414e3960227f447445461b976a82f121552dababde654b83604051610a9c91906120e9565b60405180910390a25050565b6000600254905090565b600080610abd611596565b9050610aca858285611769565b82610ad486610f70565b1015610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c906121cb565b60405180910390fd5b6005601a9054906101000a900460ff168015610b9557506006604051610b3a9061209e565b908152602001604051809103902060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610c0557506006604051610baa90612089565b908152602001604051809103902060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610c6c576000600560169054906101000a900463ffffffff1663ffffffff16600560149054906101000a900461ffff1661ffff1685610c45919061246c565b610c4f919061240a565b90508084610c5d9190612504565b9350610c6a8630836117f5565b505b610c778585856117f5565b60019150509392505050565b60006012905090565b610c94611596565b73ffffffffffffffffffffffffffffffffffffffff16610cb2611040565b73ffffffffffffffffffffffffffffffffffffffff1614610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff9061222b565b60405180910390fd5b6064600560169054906101000a900463ffffffff166004610d2991906124c6565b610d33919061243b565b63ffffffff168161ffff161115610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d76906121ab565b60405180910390fd5b80600560146101000a81548161ffff021916908361ffff1602179055507f841eb6f9e47fcd1f7e123dd994ffaf8c0df0f8c44c22def597a74290b369215881604051610dcb91906122cb565b60405180910390a150565b600080610de1611596565b9050610e75818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e7091906123b4565b61159e565b600191505092915050565b610e88611596565b73ffffffffffffffffffffffffffffffffffffffff16610ea6611040565b73ffffffffffffffffffffffffffffffffffffffff1614610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef39061222b565b60405180910390fd5b6000610f0730610f70565b905060008111610f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f439061212b565b60405180910390fd5b610f573033836117f5565b50565b600560169054906101000a900463ffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fc0611596565b73ffffffffffffffffffffffffffffffffffffffff16610fde611040565b73ffffffffffffffffffffffffffffffffffffffff1614611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b9061222b565b60405180910390fd5b61103e6000611a76565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054611079906125ed565b80601f01602080910402602001604051908101604052809291908181526020018280546110a5906125ed565b80156110f25780601f106110c7576101008083540402835291602001916110f2565b820191906000526020600020905b8154815290600101906020018083116110d557829003601f168201915b5050505050905090565b6006828051602081018201805184825260208301602085012081835280955050505050506020528060005260406000206000915091509054906101000a900460ff1681565b60008061114c611596565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611212576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112099061228b565b60405180910390fd5b61121f828686840361159e565b60019250505092915050565b600080611236611596565b90508261124282610f70565b1015611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a906121cb565b60405180910390fd5b6005601a9054906101000a900460ff168015611303575060066040516112a89061209e565b908152602001604051809103902060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156113735750600660405161131890612089565b908152602001604051809103902060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113da576000600560169054906101000a900463ffffffff1663ffffffff16600560149054906101000a900461ffff1661ffff16856113b3919061246c565b6113bd919061240a565b905080846113cb9190612504565b93506113d88230836117f5565b505b6113e58185856117f5565b600191505092915050565b600560149054906101000a900461ffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611493611596565b73ffffffffffffffffffffffffffffffffffffffff166114b1611040565b73ffffffffffffffffffffffffffffffffffffffff1614611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe9061222b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e9061214b565b60405180910390fd5b61158081611a76565b50565b6005601a9054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561160e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116059061226b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561167e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116759061216b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161175c91906122e6565b60405180910390a3505050565b60006117758484611404565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117ef57818110156117e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d89061218b565b60405180910390fd5b6117ee848484840361159e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185c9061224b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc9061210b565b60405180910390fd5b6118e0838383611b3c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195d906121cb565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119f991906123b4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a5d91906122e6565b60405180910390a3611a70848484611b41565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000611b59611b548461235c565b612337565b905082815260208101848484011115611b7557611b74612711565b5b611b808482856125ab565b509392505050565b600081359050611b9781612af1565b92915050565b600082601f830112611bb257611bb161270c565b5b8135611bc2848260208601611b46565b91505092915050565b600081359050611bda81612b08565b92915050565b600081359050611bef81612b1f565b92915050565b600060208284031215611c0b57611c0a61271b565b5b6000611c1984828501611b88565b91505092915050565b60008060408385031215611c3957611c3861271b565b5b6000611c4785828601611b88565b9250506020611c5885828601611b88565b9150509250929050565b600080600060608486031215611c7b57611c7a61271b565b5b6000611c8986828701611b88565b9350506020611c9a86828701611b88565b9250506040611cab86828701611be0565b9150509250925092565b60008060408385031215611ccc57611ccb61271b565b5b6000611cda85828601611b88565b9250506020611ceb85828601611be0565b9150509250929050565b60008060408385031215611d0c57611d0b61271b565b5b600083013567ffffffffffffffff811115611d2a57611d29612716565b5b611d3685828601611b9d565b9250506020611d4785828601611b88565b9150509250929050565b600060208284031215611d6757611d6661271b565b5b6000611d7584828501611bcb565b91505092915050565b611d8781612538565b82525050565b611d968161254a565b82525050565b6000611da78261238d565b611db18185612398565b9350611dc18185602086016125ba565b611dca81612720565b840191505092915050565b6000611de08261238d565b611dea81856123a9565b9350611dfa8185602086016125ba565b80840191505092915050565b6000611e13602383612398565b9150611e1e82612731565b604082019050919050565b6000611e36601383612398565b9150611e4182612780565b602082019050919050565b6000611e596002836123a9565b9150611e64826127a9565b600282019050919050565b6000611e7c602683612398565b9150611e87826127d2565b604082019050919050565b6000611e9f602283612398565b9150611eaa82612821565b604082019050919050565b6000611ec2601d83612398565b9150611ecd82612870565b602082019050919050565b6000611ee5602283612398565b9150611ef082612899565b604082019050919050565b6000611f08602683612398565b9150611f13826128e8565b604082019050919050565b6000611f2b6004836123a9565b9150611f3682612937565b600482019050919050565b6000611f4e601583612398565b9150611f5982612960565b602082019050919050565b6000611f71601183612398565b9150611f7c82612989565b602082019050919050565b6000611f94602083612398565b9150611f9f826129b2565b602082019050919050565b6000611fb7602583612398565b9150611fc2826129db565b604082019050919050565b6000611fda602483612398565b9150611fe582612a2a565b604082019050919050565b6000611ffd602583612398565b915061200882612a79565b604082019050919050565b6000612020601283612398565b915061202b82612ac8565b602082019050919050565b61203f81612556565b82525050565b61204e81612584565b82525050565b61205d8161258e565b82525050565b61206c8161259e565b82525050565b600061207e8284611dd5565b915081905092915050565b600061209482611e4c565b9150819050919050565b60006120a982611f1e565b9150819050919050565b60006020820190506120c86000830184611d7e565b92915050565b60006020820190506120e36000830184611d8d565b92915050565b600060208201905081810360008301526121038184611d9c565b905092915050565b6000602082019050818103600083015261212481611e06565b9050919050565b6000602082019050818103600083015261214481611e29565b9050919050565b6000602082019050818103600083015261216481611e6f565b9050919050565b6000602082019050818103600083015261218481611e92565b9050919050565b600060208201905081810360008301526121a481611eb5565b9050919050565b600060208201905081810360008301526121c481611ed8565b9050919050565b600060208201905081810360008301526121e481611efb565b9050919050565b6000602082019050818103600083015261220481611f41565b9050919050565b6000602082019050818103600083015261222481611f64565b9050919050565b6000602082019050818103600083015261224481611f87565b9050919050565b6000602082019050818103600083015261226481611faa565b9050919050565b6000602082019050818103600083015261228481611fcd565b9050919050565b600060208201905081810360008301526122a481611ff0565b9050919050565b600060208201905081810360008301526122c481612013565b9050919050565b60006020820190506122e06000830184612036565b92915050565b60006020820190506122fb6000830184612045565b92915050565b60006020820190506123166000830184612054565b92915050565b60006020820190506123316000830184612063565b92915050565b6000612341612352565b905061234d828261261f565b919050565b6000604051905090565b600067ffffffffffffffff821115612377576123766126dd565b5b61238082612720565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b60006123bf82612584565b91506123ca83612584565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156123ff576123fe612650565b5b828201905092915050565b600061241582612584565b915061242083612584565b9250826124305761242f61267f565b5b828204905092915050565b60006124468261258e565b91506124518361258e565b9250826124615761246061267f565b5b828204905092915050565b600061247782612584565b915061248283612584565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156124bb576124ba612650565b5b828202905092915050565b60006124d18261258e565b91506124dc8361258e565b92508163ffffffff04831182151516156124f9576124f8612650565b5b828202905092915050565b600061250f82612584565b915061251a83612584565b92508282101561252d5761252c612650565b5b828203905092915050565b600061254382612564565b9050919050565b60008115159050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156125d85780820151818401526020810190506125bd565b838111156125e7576000848401525b50505050565b6000600282049050600182168061260557607f821691505b60208210811415612619576126186126ae565b5b50919050565b61262882612720565b810181811067ffffffffffffffff82111715612647576126466126dd565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7468696e6720746f20776974686472617700000000000000000000000000600082015250565b7f746f000000000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f5461782063616e206e6f742062652073657420746f206d6f7265207468616e2060008201527f3425000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f66726f6d00000000000000000000000000000000000000000000000000000000600082015250565b7f4164647265737320616c72656164792061646465640000000000000000000000600082015250565b7f41646472657373206e6f74206164646564000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f43616e7420757365203020616464726573730000000000000000000000000000600082015250565b612afa81612538565b8114612b0557600080fd5b50565b612b1181612556565b8114612b1c57600080fd5b50565b612b2881612584565b8114612b3357600080fd5b5056fea2646970667358221220419af8fcc2e3f860782e201c6d90e96c8315cee54531ea676e111486e5d6b65e64736f6c63430008070033

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.