ETH Price: $2,573.20 (+1.56%)

Token

STRIP (STRIP)
 

Overview

Max Total Supply

500,000,000 STRIP

Holders

36

Total Transfers

-

Market

Onchain Market Cap

$0.00

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
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Strip

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : Strip.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.6;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "./Administration.sol";

contract Strip is ERC20, Administration {

    uint256 private _initialTokens = 500000000 ether;
    address public game;
    
    constructor() ERC20("STRIP", "STRIP") {
        
    }
    
    function setGameAddress(address game_) external onlyAdmin {
        game = game_;
    }
    
    function buy(uint price) external onlyAdmin {
        _burn(tx.origin, price);
    }
    
    function initialMint() external onlyAdmin {
        require(totalSupply() == 0, "ERROR: Assets found");
        _mint(owner(), _initialTokens);
    }

    function mintTokens(uint amount) public onlyAdmin {
        _mint(owner(), amount);
    }
    
    function burnTokens(uint amount) external onlyAdmin {
        _burn(tx.origin, amount);
    }
    
    function approveOwnerTokensToGame() external onlyAdmin {
        _approve(owner(), game, _initialTokens);
    }
    
    function approveHolderTokensToGame(uint amount) external {
       _approve(tx.origin, game, amount);
    }

    function withdraw() external onlyOwner {
        payable(_msgSender()).transfer(address(this).balance);
    }
}

File 2 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

File 3 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT

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 guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

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

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 5 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

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 6 of 7 : Context.sol
// SPDX-License-Identifier: MIT

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 7 of 7 : Administration.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.6;
import "@openzeppelin/contracts/access/Ownable.sol";

contract Administration is Ownable {
    
    event SetAdmin(address indexed admin, bool active);
    
    mapping (address => bool) private admins;
    
    modifier onlyAdmin(){
        require(admins[_msgSender()] || owner() == _msgSender(), "Admin: caller is not an admin");
        _;
    }
    
    function setAdmin(address admin, bool active) external onlyOwner {
        admins[admin] = active;
        emit SetAdmin(admin, active);
    }
    
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"admin","type":"address"},{"indexed":false,"internalType":"bool","name":"active","type":"bool"}],"name":"SetAdmin","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":"uint256","name":"amount","type":"uint256"}],"name":"approveHolderTokensToGame","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"approveOwnerTokensToGame","outputs":[],"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":"burnTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"buy","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":[],"name":"game","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"initialMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"},{"internalType":"bool","name":"active","type":"bool"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"game_","type":"address"}],"name":"setGameAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526b019d971e4fe8401e740000006007553480156200002157600080fd5b506040518060400160405280600581526020017f53545249500000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f53545249500000000000000000000000000000000000000000000000000000008152508160039080519060200190620000a6929190620001b6565b508060049080519060200190620000bf929190620001b6565b505050620000e2620000d6620000e860201b60201c565b620000f060201b60201c565b620002cb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001c49062000266565b90600052602060002090601f016020900481019282620001e8576000855562000234565b82601f106200020357805160ff191683800117855562000234565b8280016001018555821562000234579182015b828111156200023357825182559160200191906001019062000216565b5b50905062000243919062000247565b5090565b5b808211156200026257600081600090555060010162000248565b5090565b600060028204905060018216806200027f57607f821691505b602082108114156200029657620002956200029c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6127df80620002db6000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c8063711953ef116100c3578063a457c2d71161007c578063a457c2d714610367578063a9059cbb14610397578063c3fe3e28146103c7578063d96a094a146103e5578063dd62ed3e14610401578063f2fde38b1461043157610158565b8063711953ef146102df578063715018a6146102fb5780638da5cb5b1461030557806395d89b411461032357806397304ced146103415780639fc5ce2a1461035d57610158565b8063395093511161011557806339509351146102335780633ccfd60b1461026357806344101ef31461026d5780634b0bddd2146102775780636d1b229d1461029357806370a08231146102af57610158565b806306fdde031461015d578063095ea7b31461017b578063151e6299146101ab57806318160ddd146101c757806323b872dd146101e5578063313ce56714610215575b600080fd5b61016561044d565b6040516101729190611fbe565b60405180910390f35b61019560048036038101906101909190611cbc565b6104df565b6040516101a29190611fa3565b60405180910390f35b6101c560048036038101906101c09190611cfc565b6104fd565b005b6101cf61052d565b6040516101dc91906121a0565b60405180910390f35b6101ff60048036038101906101fa9190611c29565b610537565b60405161020c9190611fa3565b60405180910390f35b61021d61062f565b60405161022a91906121bb565b60405180910390f35b61024d60048036038101906102489190611cbc565b610638565b60405161025a9190611fa3565b60405180910390f35b61026b6106e4565b005b6102756107b0565b005b610291600480360381019061028c9190611c7c565b6108bf565b005b6102ad60048036038101906102a89190611cfc565b6109e4565b005b6102c960048036038101906102c49190611bbc565b610ac8565b6040516102d691906121a0565b60405180910390f35b6102f960048036038101906102f49190611bbc565b610b10565b005b610303610c2b565b005b61030d610cb3565b60405161031a9190611f88565b60405180910390f35b61032b610cdd565b6040516103389190611fbe565b60405180910390f35b61035b60048036038101906103569190611cfc565b610d6f565b005b610365610e5a565b005b610381600480360381019061037c9190611cbc565b610f90565b60405161038e9190611fa3565b60405180910390f35b6103b160048036038101906103ac9190611cbc565b61107b565b6040516103be9190611fa3565b60405180910390f35b6103cf611099565b6040516103dc9190611f88565b60405180910390f35b6103ff60048036038101906103fa9190611cfc565b6110bf565b005b61041b60048036038101906104169190611be9565b6111a3565b60405161042891906121a0565b60405180910390f35b61044b60048036038101906104469190611bbc565b61122a565b005b60606003805461045c90612304565b80601f016020809104026020016040519081016040528092919081815260200182805461048890612304565b80156104d55780601f106104aa576101008083540402835291602001916104d5565b820191906000526020600020905b8154815290600101906020018083116104b857829003601f168201915b5050505050905090565b60006104f36104ec611322565b848461132a565b6001905092915050565b61052a32600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361132a565b50565b6000600254905090565b60006105448484846114f5565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061058f611322565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561060f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610606906120a0565b60405180910390fd5b6106238561061b611322565b85840361132a565b60019150509392505050565b60006012905090565b60006106da610645611322565b848460016000610653611322565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106d591906121f2565b61132a565b6001905092915050565b6106ec611322565b73ffffffffffffffffffffffffffffffffffffffff1661070a610cb3565b73ffffffffffffffffffffffffffffffffffffffff1614610760576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610757906120c0565b60405180910390fd5b610768611322565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156107ad573d6000803e3d6000fd5b50565b600660006107bc611322565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806108485750610812611322565b73ffffffffffffffffffffffffffffffffffffffff16610830610cb3565b73ffffffffffffffffffffffffffffffffffffffff16145b610887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087e90612120565b60405180910390fd5b6108bd610892610cb3565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660075461132a565b565b6108c7611322565b73ffffffffffffffffffffffffffffffffffffffff166108e5610cb3565b73ffffffffffffffffffffffffffffffffffffffff161461093b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610932906120c0565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f55a5194bc0174fcaf12b2978bef43911466bf63b34db8d1dd1a0d5dcd5c41bea826040516109d89190611fa3565b60405180910390a25050565b600660006109f0611322565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610a7c5750610a46611322565b73ffffffffffffffffffffffffffffffffffffffff16610a64610cb3565b73ffffffffffffffffffffffffffffffffffffffff16145b610abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab290612120565b60405180910390fd5b610ac53282611776565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60066000610b1c611322565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610ba85750610b72611322565b73ffffffffffffffffffffffffffffffffffffffff16610b90610cb3565b73ffffffffffffffffffffffffffffffffffffffff16145b610be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bde90612120565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c33611322565b73ffffffffffffffffffffffffffffffffffffffff16610c51610cb3565b73ffffffffffffffffffffffffffffffffffffffff1614610ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906120c0565b60405180910390fd5b610cb1600061194d565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610cec90612304565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1890612304565b8015610d655780601f10610d3a57610100808354040283529160200191610d65565b820191906000526020600020905b815481529060010190602001808311610d4857829003601f168201915b5050505050905090565b60066000610d7b611322565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610e075750610dd1611322565b73ffffffffffffffffffffffffffffffffffffffff16610def610cb3565b73ffffffffffffffffffffffffffffffffffffffff16145b610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d90612120565b60405180910390fd5b610e57610e51610cb3565b82611a13565b50565b60066000610e66611322565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610ef25750610ebc611322565b73ffffffffffffffffffffffffffffffffffffffff16610eda610cb3565b73ffffffffffffffffffffffffffffffffffffffff16145b610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2890612120565b60405180910390fd5b6000610f3b61052d565b14610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7290612020565b60405180910390fd5b610f8e610f86610cb3565b600754611a13565b565b60008060016000610f9f611322565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561105c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105390612160565b60405180910390fd5b611070611067611322565b8585840361132a565b600191505092915050565b600061108f611088611322565b84846114f5565b6001905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660006110cb611322565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111575750611121611322565b73ffffffffffffffffffffffffffffffffffffffff1661113f610cb3565b73ffffffffffffffffffffffffffffffffffffffff16145b611196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118d90612120565b60405180910390fd5b6111a03282611776565b50565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611232611322565b73ffffffffffffffffffffffffffffffffffffffff16611250610cb3565b73ffffffffffffffffffffffffffffffffffffffff16146112a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129d906120c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90612040565b60405180910390fd5b61131f8161194d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561139a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139190612140565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140190612060565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114e891906121a0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c90612100565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90611fe0565b60405180910390fd5b6115e0838383611b73565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d90612080565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116f991906121f2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161175d91906121a0565b60405180910390a3611770848484611b78565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd906120e0565b60405180910390fd5b6117f282600083611b73565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186f90612000565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546118cf9190612248565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161193491906121a0565b60405180910390a361194883600084611b78565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7a90612180565b60405180910390fd5b611a8f60008383611b73565b8060026000828254611aa191906121f2565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611af691906121f2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b5b91906121a0565b60405180910390a3611b6f60008383611b78565b5050565b505050565b505050565b600081359050611b8c81612764565b92915050565b600081359050611ba18161277b565b92915050565b600081359050611bb681612792565b92915050565b600060208284031215611bd257611bd1612394565b5b6000611be084828501611b7d565b91505092915050565b60008060408385031215611c0057611bff612394565b5b6000611c0e85828601611b7d565b9250506020611c1f85828601611b7d565b9150509250929050565b600080600060608486031215611c4257611c41612394565b5b6000611c5086828701611b7d565b9350506020611c6186828701611b7d565b9250506040611c7286828701611ba7565b9150509250925092565b60008060408385031215611c9357611c92612394565b5b6000611ca185828601611b7d565b9250506020611cb285828601611b92565b9150509250929050565b60008060408385031215611cd357611cd2612394565b5b6000611ce185828601611b7d565b9250506020611cf285828601611ba7565b9150509250929050565b600060208284031215611d1257611d11612394565b5b6000611d2084828501611ba7565b91505092915050565b611d328161227c565b82525050565b611d418161228e565b82525050565b6000611d52826121d6565b611d5c81856121e1565b9350611d6c8185602086016122d1565b611d7581612399565b840191505092915050565b6000611d8d6023836121e1565b9150611d98826123aa565b604082019050919050565b6000611db06022836121e1565b9150611dbb826123f9565b604082019050919050565b6000611dd36013836121e1565b9150611dde82612448565b602082019050919050565b6000611df66026836121e1565b9150611e0182612471565b604082019050919050565b6000611e196022836121e1565b9150611e24826124c0565b604082019050919050565b6000611e3c6026836121e1565b9150611e478261250f565b604082019050919050565b6000611e5f6028836121e1565b9150611e6a8261255e565b604082019050919050565b6000611e826020836121e1565b9150611e8d826125ad565b602082019050919050565b6000611ea56021836121e1565b9150611eb0826125d6565b604082019050919050565b6000611ec86025836121e1565b9150611ed382612625565b604082019050919050565b6000611eeb601d836121e1565b9150611ef682612674565b602082019050919050565b6000611f0e6024836121e1565b9150611f198261269d565b604082019050919050565b6000611f316025836121e1565b9150611f3c826126ec565b604082019050919050565b6000611f54601f836121e1565b9150611f5f8261273b565b602082019050919050565b611f73816122ba565b82525050565b611f82816122c4565b82525050565b6000602082019050611f9d6000830184611d29565b92915050565b6000602082019050611fb86000830184611d38565b92915050565b60006020820190508181036000830152611fd88184611d47565b905092915050565b60006020820190508181036000830152611ff981611d80565b9050919050565b6000602082019050818103600083015261201981611da3565b9050919050565b6000602082019050818103600083015261203981611dc6565b9050919050565b6000602082019050818103600083015261205981611de9565b9050919050565b6000602082019050818103600083015261207981611e0c565b9050919050565b6000602082019050818103600083015261209981611e2f565b9050919050565b600060208201905081810360008301526120b981611e52565b9050919050565b600060208201905081810360008301526120d981611e75565b9050919050565b600060208201905081810360008301526120f981611e98565b9050919050565b6000602082019050818103600083015261211981611ebb565b9050919050565b6000602082019050818103600083015261213981611ede565b9050919050565b6000602082019050818103600083015261215981611f01565b9050919050565b6000602082019050818103600083015261217981611f24565b9050919050565b6000602082019050818103600083015261219981611f47565b9050919050565b60006020820190506121b56000830184611f6a565b92915050565b60006020820190506121d06000830184611f79565b92915050565b600081519050919050565b600082825260208201905092915050565b60006121fd826122ba565b9150612208836122ba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561223d5761223c612336565b5b828201905092915050565b6000612253826122ba565b915061225e836122ba565b92508282101561227157612270612336565b5b828203905092915050565b60006122878261229a565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156122ef5780820151818401526020810190506122d4565b838111156122fe576000848401525b50505050565b6000600282049050600182168061231c57607f821691505b602082108114156123305761232f612365565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552524f523a2041737365747320666f756e6400000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f41646d696e3a2063616c6c6572206973206e6f7420616e2061646d696e000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61276d8161227c565b811461277857600080fd5b50565b6127848161228e565b811461278f57600080fd5b50565b61279b816122ba565b81146127a657600080fd5b5056fea26469706673582212204e48f0b189cfa51e9c17cc1aff599eb924076b7c62789573c17c91f7d82c127764736f6c63430008060033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c8063711953ef116100c3578063a457c2d71161007c578063a457c2d714610367578063a9059cbb14610397578063c3fe3e28146103c7578063d96a094a146103e5578063dd62ed3e14610401578063f2fde38b1461043157610158565b8063711953ef146102df578063715018a6146102fb5780638da5cb5b1461030557806395d89b411461032357806397304ced146103415780639fc5ce2a1461035d57610158565b8063395093511161011557806339509351146102335780633ccfd60b1461026357806344101ef31461026d5780634b0bddd2146102775780636d1b229d1461029357806370a08231146102af57610158565b806306fdde031461015d578063095ea7b31461017b578063151e6299146101ab57806318160ddd146101c757806323b872dd146101e5578063313ce56714610215575b600080fd5b61016561044d565b6040516101729190611fbe565b60405180910390f35b61019560048036038101906101909190611cbc565b6104df565b6040516101a29190611fa3565b60405180910390f35b6101c560048036038101906101c09190611cfc565b6104fd565b005b6101cf61052d565b6040516101dc91906121a0565b60405180910390f35b6101ff60048036038101906101fa9190611c29565b610537565b60405161020c9190611fa3565b60405180910390f35b61021d61062f565b60405161022a91906121bb565b60405180910390f35b61024d60048036038101906102489190611cbc565b610638565b60405161025a9190611fa3565b60405180910390f35b61026b6106e4565b005b6102756107b0565b005b610291600480360381019061028c9190611c7c565b6108bf565b005b6102ad60048036038101906102a89190611cfc565b6109e4565b005b6102c960048036038101906102c49190611bbc565b610ac8565b6040516102d691906121a0565b60405180910390f35b6102f960048036038101906102f49190611bbc565b610b10565b005b610303610c2b565b005b61030d610cb3565b60405161031a9190611f88565b60405180910390f35b61032b610cdd565b6040516103389190611fbe565b60405180910390f35b61035b60048036038101906103569190611cfc565b610d6f565b005b610365610e5a565b005b610381600480360381019061037c9190611cbc565b610f90565b60405161038e9190611fa3565b60405180910390f35b6103b160048036038101906103ac9190611cbc565b61107b565b6040516103be9190611fa3565b60405180910390f35b6103cf611099565b6040516103dc9190611f88565b60405180910390f35b6103ff60048036038101906103fa9190611cfc565b6110bf565b005b61041b60048036038101906104169190611be9565b6111a3565b60405161042891906121a0565b60405180910390f35b61044b60048036038101906104469190611bbc565b61122a565b005b60606003805461045c90612304565b80601f016020809104026020016040519081016040528092919081815260200182805461048890612304565b80156104d55780601f106104aa576101008083540402835291602001916104d5565b820191906000526020600020905b8154815290600101906020018083116104b857829003601f168201915b5050505050905090565b60006104f36104ec611322565b848461132a565b6001905092915050565b61052a32600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361132a565b50565b6000600254905090565b60006105448484846114f5565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061058f611322565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561060f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610606906120a0565b60405180910390fd5b6106238561061b611322565b85840361132a565b60019150509392505050565b60006012905090565b60006106da610645611322565b848460016000610653611322565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106d591906121f2565b61132a565b6001905092915050565b6106ec611322565b73ffffffffffffffffffffffffffffffffffffffff1661070a610cb3565b73ffffffffffffffffffffffffffffffffffffffff1614610760576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610757906120c0565b60405180910390fd5b610768611322565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156107ad573d6000803e3d6000fd5b50565b600660006107bc611322565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806108485750610812611322565b73ffffffffffffffffffffffffffffffffffffffff16610830610cb3565b73ffffffffffffffffffffffffffffffffffffffff16145b610887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087e90612120565b60405180910390fd5b6108bd610892610cb3565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660075461132a565b565b6108c7611322565b73ffffffffffffffffffffffffffffffffffffffff166108e5610cb3565b73ffffffffffffffffffffffffffffffffffffffff161461093b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610932906120c0565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f55a5194bc0174fcaf12b2978bef43911466bf63b34db8d1dd1a0d5dcd5c41bea826040516109d89190611fa3565b60405180910390a25050565b600660006109f0611322565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610a7c5750610a46611322565b73ffffffffffffffffffffffffffffffffffffffff16610a64610cb3565b73ffffffffffffffffffffffffffffffffffffffff16145b610abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab290612120565b60405180910390fd5b610ac53282611776565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60066000610b1c611322565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610ba85750610b72611322565b73ffffffffffffffffffffffffffffffffffffffff16610b90610cb3565b73ffffffffffffffffffffffffffffffffffffffff16145b610be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bde90612120565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c33611322565b73ffffffffffffffffffffffffffffffffffffffff16610c51610cb3565b73ffffffffffffffffffffffffffffffffffffffff1614610ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906120c0565b60405180910390fd5b610cb1600061194d565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610cec90612304565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1890612304565b8015610d655780601f10610d3a57610100808354040283529160200191610d65565b820191906000526020600020905b815481529060010190602001808311610d4857829003601f168201915b5050505050905090565b60066000610d7b611322565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610e075750610dd1611322565b73ffffffffffffffffffffffffffffffffffffffff16610def610cb3565b73ffffffffffffffffffffffffffffffffffffffff16145b610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d90612120565b60405180910390fd5b610e57610e51610cb3565b82611a13565b50565b60066000610e66611322565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610ef25750610ebc611322565b73ffffffffffffffffffffffffffffffffffffffff16610eda610cb3565b73ffffffffffffffffffffffffffffffffffffffff16145b610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2890612120565b60405180910390fd5b6000610f3b61052d565b14610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7290612020565b60405180910390fd5b610f8e610f86610cb3565b600754611a13565b565b60008060016000610f9f611322565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561105c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105390612160565b60405180910390fd5b611070611067611322565b8585840361132a565b600191505092915050565b600061108f611088611322565b84846114f5565b6001905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660006110cb611322565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111575750611121611322565b73ffffffffffffffffffffffffffffffffffffffff1661113f610cb3565b73ffffffffffffffffffffffffffffffffffffffff16145b611196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118d90612120565b60405180910390fd5b6111a03282611776565b50565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611232611322565b73ffffffffffffffffffffffffffffffffffffffff16611250610cb3565b73ffffffffffffffffffffffffffffffffffffffff16146112a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129d906120c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90612040565b60405180910390fd5b61131f8161194d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561139a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139190612140565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140190612060565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114e891906121a0565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c90612100565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cc90611fe0565b60405180910390fd5b6115e0838383611b73565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d90612080565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116f991906121f2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161175d91906121a0565b60405180910390a3611770848484611b78565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd906120e0565b60405180910390fd5b6117f282600083611b73565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186f90612000565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546118cf9190612248565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161193491906121a0565b60405180910390a361194883600084611b78565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7a90612180565b60405180910390fd5b611a8f60008383611b73565b8060026000828254611aa191906121f2565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611af691906121f2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b5b91906121a0565b60405180910390a3611b6f60008383611b78565b5050565b505050565b505050565b600081359050611b8c81612764565b92915050565b600081359050611ba18161277b565b92915050565b600081359050611bb681612792565b92915050565b600060208284031215611bd257611bd1612394565b5b6000611be084828501611b7d565b91505092915050565b60008060408385031215611c0057611bff612394565b5b6000611c0e85828601611b7d565b9250506020611c1f85828601611b7d565b9150509250929050565b600080600060608486031215611c4257611c41612394565b5b6000611c5086828701611b7d565b9350506020611c6186828701611b7d565b9250506040611c7286828701611ba7565b9150509250925092565b60008060408385031215611c9357611c92612394565b5b6000611ca185828601611b7d565b9250506020611cb285828601611b92565b9150509250929050565b60008060408385031215611cd357611cd2612394565b5b6000611ce185828601611b7d565b9250506020611cf285828601611ba7565b9150509250929050565b600060208284031215611d1257611d11612394565b5b6000611d2084828501611ba7565b91505092915050565b611d328161227c565b82525050565b611d418161228e565b82525050565b6000611d52826121d6565b611d5c81856121e1565b9350611d6c8185602086016122d1565b611d7581612399565b840191505092915050565b6000611d8d6023836121e1565b9150611d98826123aa565b604082019050919050565b6000611db06022836121e1565b9150611dbb826123f9565b604082019050919050565b6000611dd36013836121e1565b9150611dde82612448565b602082019050919050565b6000611df66026836121e1565b9150611e0182612471565b604082019050919050565b6000611e196022836121e1565b9150611e24826124c0565b604082019050919050565b6000611e3c6026836121e1565b9150611e478261250f565b604082019050919050565b6000611e5f6028836121e1565b9150611e6a8261255e565b604082019050919050565b6000611e826020836121e1565b9150611e8d826125ad565b602082019050919050565b6000611ea56021836121e1565b9150611eb0826125d6565b604082019050919050565b6000611ec86025836121e1565b9150611ed382612625565b604082019050919050565b6000611eeb601d836121e1565b9150611ef682612674565b602082019050919050565b6000611f0e6024836121e1565b9150611f198261269d565b604082019050919050565b6000611f316025836121e1565b9150611f3c826126ec565b604082019050919050565b6000611f54601f836121e1565b9150611f5f8261273b565b602082019050919050565b611f73816122ba565b82525050565b611f82816122c4565b82525050565b6000602082019050611f9d6000830184611d29565b92915050565b6000602082019050611fb86000830184611d38565b92915050565b60006020820190508181036000830152611fd88184611d47565b905092915050565b60006020820190508181036000830152611ff981611d80565b9050919050565b6000602082019050818103600083015261201981611da3565b9050919050565b6000602082019050818103600083015261203981611dc6565b9050919050565b6000602082019050818103600083015261205981611de9565b9050919050565b6000602082019050818103600083015261207981611e0c565b9050919050565b6000602082019050818103600083015261209981611e2f565b9050919050565b600060208201905081810360008301526120b981611e52565b9050919050565b600060208201905081810360008301526120d981611e75565b9050919050565b600060208201905081810360008301526120f981611e98565b9050919050565b6000602082019050818103600083015261211981611ebb565b9050919050565b6000602082019050818103600083015261213981611ede565b9050919050565b6000602082019050818103600083015261215981611f01565b9050919050565b6000602082019050818103600083015261217981611f24565b9050919050565b6000602082019050818103600083015261219981611f47565b9050919050565b60006020820190506121b56000830184611f6a565b92915050565b60006020820190506121d06000830184611f79565b92915050565b600081519050919050565b600082825260208201905092915050565b60006121fd826122ba565b9150612208836122ba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561223d5761223c612336565b5b828201905092915050565b6000612253826122ba565b915061225e836122ba565b92508282101561227157612270612336565b5b828203905092915050565b60006122878261229a565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156122ef5780820151818401526020810190506122d4565b838111156122fe576000848401525b50505050565b6000600282049050600182168061231c57607f821691505b602082108114156123305761232f612365565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552524f523a2041737365747320666f756e6400000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f41646d696e3a2063616c6c6572206973206e6f7420616e2061646d696e000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61276d8161227c565b811461277857600080fd5b50565b6127848161228e565b811461278f57600080fd5b50565b61279b816122ba565b81146127a657600080fd5b5056fea26469706673582212204e48f0b189cfa51e9c17cc1aff599eb924076b7c62789573c17c91f7d82c127764736f6c63430008060033

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.