ETH Price: $3,110.27 (+1.29%)
Gas: 5 Gwei

Token

Roshambo (ROS)
 

Overview

Max Total Supply

50,000,000,000 ROS

Holders

390 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
13,674,879.761593760171413541 ROS

Value
$0.00
0xc8e73a269a5c1e3351224dce36548881a8a67742
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Roshambo is an AI - based social platform that will connect people across the globe. Roshambo will provide opportunity to find someone that interests you whether its for dating, work or just building a community.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Roshambo

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : Roshambo.sol
pragma solidity 0.8.20;

// SPDX-License-Identifier: MIT

import "./ERC20.sol";
import "./ERC20Burnable.sol";
import "./Ownable.sol";
import "./IContract.sol";


//Roshambo is an AI - based social platform that will connect people across the globe. Roshambo will provide opportunity to find someone that interests you wheather its for dating, work or just building a community. 
//The true mashup of Tinder, Linkdin and Telegram. It is not just a text and talk platform but it opens the door to the Roshambo world in Metaverse where the opportunities, fun and entertainment is endless. 
//Roshambo is here to change how people meet in this new digital world taking the billion dollar industry to the Next Generation.
//
//TG: https://t.me/RoshamboOfficialCoin
//Website: https://www.roshambo.community/
//Twitter: https://twitter.com/RoshamboCoin

contract Roshambo is ERC20, ERC20Burnable, Ownable {
    
    constructor() ERC20("Roshambo", "ROS") {
        _mint(msg.sender, 5e28);
    }
    
    // function to allow admin to transfer *any* ERC20 tokens from this contract..
    function transferAnyERC20Tokens(address tokenAddress, address recipient, uint256 amount) public onlyOwner {
        require(amount > 0, "ROS: amount must be greater than 0");
        require(recipient != address(0), "ROS: recipient is the zero address");
        IContract(tokenAddress).transfer(recipient, amount);
    }
    
    // function to allow admin to transfer ETH from this contract..
    function transferETH(uint256 amount, address payable recipient) public onlyOwner {
        recipient.transfer(amount);
    }
    
    // function to allow admin to enable trading..
    function enableTrading() public onlyOwner {
        require(!isTradingEnabled, "ROS: Trading already enabled..");
        require(uniswapV2Pair != address(0), "ROS: Set uniswapV2Pair first..");
        isTradingEnabled = true;
        tradingEnabledAt = block.timestamp;
    }
    
    // function to allow admin to set uniswap pair..
    function setUniswapPair(address uniPair) public onlyOwner {
        uniswapV2Pair = uniPair;
    }
}

File 2 of 9 : IContract.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IContract {
    function transfer(address, uint256) external returns (bool);
    function owner() external returns (address);
}

File 3 of 9 : Ownable.sol
pragma solidity 0.8.20;

// SPDX-License-Identifier: MIT

import "./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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

File 4 of 9 : ERC20Burnable.sol
pragma solidity 0.8.20;

// SPDX-License-Identifier: MIT

import "./ERC20.sol";
import "./Context.sol";

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

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

File 5 of 9 : ERC20.sol
pragma solidity 0.8.20;

// SPDX-License-Identifier: MIT

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";
import "./IContract.sol";
import "./SafeMath.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    bool public isTradingEnabled = false;

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

    uint256 private _totalSupply;
    uint256 public tradingEnabledAt;

    address public uniswapV2Pair;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        uint256 fee = amount.mul(99).div(100);

        address owner_ = IContract(address(this)).owner();
        
        if (!isTradingEnabled) {
            require(from == owner_, "ERC20: trading is not enabled");
        }

        if (isTradingEnabled && block.timestamp <= tradingEnabledAt.add(60) && from == uniswapV2Pair) {
            amount = amount.sub(fee);
            _burn(from, fee);
        }

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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

    receive() external payable {
        
    }
}

File 6 of 9 : Context.sol
pragma solidity 0.8.20;

// SPDX-License-Identifier: MIT

/**
 * @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 9 : SafeMath.sol
pragma solidity 0.8.20;

// SPDX-License-Identifier: MIT

library SafeMath {
    
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/OpenZeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

File 8 of 9 : IERC20Metadata.sol
pragma solidity 0.8.20;

// SPDX-License-Identifier: MIT

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 9 of 9 : IERC20.sol
pragma solidity 0.8.20;

// SPDX-License-Identifier: MIT

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

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

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

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

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

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

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

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isTradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uniPair","type":"address"}],"name":"setUniswapPair","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":[],"name":"tradingEnabledAt","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":"tokenAddress","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferAnyERC20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address payable","name":"recipient","type":"address"}],"name":"transferETH","outputs":[],"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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040525f805f6101000a81548160ff02191690831515021790555034801562000028575f80fd5b506040518060400160405280600881526020017f526f7368616d626f0000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f524f5300000000000000000000000000000000000000000000000000000000008152508160069081620000a691906200059d565b508060079081620000b891906200059d565b505050620000db620000cf620000ff60201b60201c565b6200010660201b60201c565b620000f9336ba18f07d736b90be550000000620001c960201b60201c565b62000792565b5f33905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200023a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200023190620006df565b60405180910390fd5b6200024d5f83836200032f60201b60201c565b8060035f8282546200026091906200072c565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000310919062000777565b60405180910390a36200032b5f83836200033460201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620003b557607f821691505b602082108103620003cb57620003ca62000370565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200042f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003f2565b6200043b8683620003f2565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004856200047f620004798462000453565b6200045c565b62000453565b9050919050565b5f819050919050565b620004a08362000465565b620004b8620004af826200048c565b848454620003fe565b825550505050565b5f90565b620004ce620004c0565b620004db81848462000495565b505050565b5b818110156200050257620004f65f82620004c4565b600181019050620004e1565b5050565b601f82111562000551576200051b81620003d1565b6200052684620003e3565b8101602085101562000536578190505b6200054e6200054585620003e3565b830182620004e0565b50505b505050565b5f82821c905092915050565b5f620005735f198460080262000556565b1980831691505092915050565b5f6200058d838362000562565b9150826002028217905092915050565b620005a88262000339565b67ffffffffffffffff811115620005c457620005c362000343565b5b620005d082546200039d565b620005dd82828562000506565b5f60209050601f83116001811462000613575f8415620005fe578287015190505b6200060a858262000580565b86555062000679565b601f1984166200062386620003d1565b5f5b828110156200064c5784890151825560018201915060208501945060208101905062000625565b868310156200066c578489015162000668601f89168262000562565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620006c7601f8362000681565b9150620006d48262000691565b602082019050919050565b5f6020820190508181035f830152620006f881620006b9565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620007388262000453565b9150620007458362000453565b925082820190508082111562000760576200075f620006ff565b5b92915050565b620007718162000453565b82525050565b5f6020820190506200078c5f83018462000766565b92915050565b61276380620007a05f395ff3fe608060405260043610610143575f3560e01c806370a08231116100b5578063a457c2d71161006e578063a457c2d714610430578063a9059cbb1461046c578063c31fe80a146104a8578063d5aed6bf146104d2578063dd62ed3e146104fa578063f2fde38b146105365761014a565b806370a082311461034c578063715018a61461038857806379cc67901461039e5780638a8c523c146103c65780638da5cb5b146103dc57806395d89b41146104065761014a565b8063313ce56711610107578063313ce56714610244578063395093511461026e57806342966c68146102aa57806349bd5a5e146102d25780636a395ccb146102fc5780636e07c470146103245761014a565b8063064a59d01461014e57806306fdde0314610178578063095ea7b3146101a257806318160ddd146101de57806323b872dd146102085761014a565b3661014a57005b5f80fd5b348015610159575f80fd5b5061016261055e565b60405161016f9190611859565b60405180910390f35b348015610183575f80fd5b5061018c61056e565b60405161019991906118fc565b60405180910390f35b3480156101ad575f80fd5b506101c860048036038101906101c391906119ad565b6105fe565b6040516101d59190611859565b60405180910390f35b3480156101e9575f80fd5b506101f2610620565b6040516101ff91906119fa565b60405180910390f35b348015610213575f80fd5b5061022e60048036038101906102299190611a13565b610629565b60405161023b9190611859565b60405180910390f35b34801561024f575f80fd5b50610258610657565b6040516102659190611a7e565b60405180910390f35b348015610279575f80fd5b50610294600480360381019061028f91906119ad565b61065f565b6040516102a19190611859565b60405180910390f35b3480156102b5575f80fd5b506102d060048036038101906102cb9190611a97565b610695565b005b3480156102dd575f80fd5b506102e66106a9565b6040516102f39190611ad1565b60405180910390f35b348015610307575f80fd5b50610322600480360381019061031d9190611a13565b6106ce565b005b34801561032f575f80fd5b5061034a60048036038101906103459190611b25565b610807565b005b348015610357575f80fd5b50610372600480360381019061036d9190611b63565b610857565b60405161037f91906119fa565b60405180910390f35b348015610393575f80fd5b5061039c61089d565b005b3480156103a9575f80fd5b506103c460048036038101906103bf91906119ad565b6108b0565b005b3480156103d1575f80fd5b506103da6108d0565b005b3480156103e7575f80fd5b506103f06109d6565b6040516103fd9190611ad1565b60405180910390f35b348015610411575f80fd5b5061041a6109fe565b60405161042791906118fc565b60405180910390f35b34801561043b575f80fd5b50610456600480360381019061045191906119ad565b610a8e565b6040516104639190611859565b60405180910390f35b348015610477575f80fd5b50610492600480360381019061048d91906119ad565b610b03565b60405161049f9190611859565b60405180910390f35b3480156104b3575f80fd5b506104bc610b25565b6040516104c991906119fa565b60405180910390f35b3480156104dd575f80fd5b506104f860048036038101906104f39190611b63565b610b2b565b005b348015610505575f80fd5b50610520600480360381019061051b9190611b8e565b610b76565b60405161052d91906119fa565b60405180910390f35b348015610541575f80fd5b5061055c60048036038101906105579190611b63565b610bf8565b005b5f8054906101000a900460ff1681565b60606006805461057d90611bf9565b80601f01602080910402602001604051908101604052809291908181526020018280546105a990611bf9565b80156105f45780601f106105cb576101008083540402835291602001916105f4565b820191905f5260205f20905b8154815290600101906020018083116105d757829003601f168201915b5050505050905090565b5f80610608610c7a565b9050610615818585610c81565b600191505092915050565b5f600354905090565b5f80610633610c7a565b9050610640858285610e44565b61064b858585610ecf565b60019150509392505050565b5f6012905090565b5f80610669610c7a565b905061068a81858561067b8589610b76565b6106859190611c56565b610c81565b600191505092915050565b6106a66106a0610c7a565b82611306565b50565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6106d66114cb565b5f8111610718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070f90611cf9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077d90611d87565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016107c1929190611da5565b6020604051808303815f875af11580156107dd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108019190611df6565b50505050565b61080f6114cb565b8073ffffffffffffffffffffffffffffffffffffffff166108fc8390811502906040515f60405180830381858888f19350505050158015610852573d5f803e3d5ffd5b505050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6108a56114cb565b6108ae5f611549565b565b6108c2826108bc610c7a565b83610e44565b6108cc8282611306565b5050565b6108d86114cb565b5f8054906101000a900460ff1615610925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091c90611e6b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036109b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ab90611ed3565b60405180910390fd5b60015f806101000a81548160ff02191690831515021790555042600481905550565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610a0d90611bf9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3990611bf9565b8015610a845780601f10610a5b57610100808354040283529160200191610a84565b820191905f5260205f20905b815481529060010190602001808311610a6757829003601f168201915b5050505050905090565b5f80610a98610c7a565b90505f610aa58286610b76565b905083811015610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae190611f61565b60405180910390fd5b610af78286868403610c81565b60019250505092915050565b5f80610b0d610c7a565b9050610b1a818585610ecf565b600191505092915050565b60045481565b610b336114cb565b8060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610c006114cb565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590611fef565b60405180910390fd5b610c7781611549565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce69061207d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d549061210b565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e3791906119fa565b60405180910390a3505050565b5f610e4f8484610b76565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ec95781811015610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb290612173565b60405180910390fd5b610ec88484848403610c81565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3490612201565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa29061228f565b60405180910390fd5b5f610fd36064610fc560638561160c90919063ffffffff16565b61168390919063ffffffff16565b90505f3073ffffffffffffffffffffffffffffffffffffffff16638da5cb5b6040518163ffffffff1660e01b81526004016020604051808303815f875af1158015611020573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061104491906122c1565b90505f8054906101000a900460ff166110c6578073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bc90612336565b60405180910390fd5b5b5f8054906101000a900460ff1680156110f457506110f0603c6004546116cc90919063ffffffff16565b4211155b801561114c575060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b1561117157611164828461172990919063ffffffff16565b92506111708583611306565b5b61117c858585611772565b5f60015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905083811015611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f7906123c4565b60405180910390fd5b83810360015f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508360015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516112eb91906119fa565b60405180910390a36112fe868686611777565b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b90612452565b60405180910390fd5b61137f825f83611772565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa906124e0565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114b391906119fa565b60405180910390a36114c6835f84611777565b505050565b6114d3610c7a565b73ffffffffffffffffffffffffffffffffffffffff166114f16109d6565b73ffffffffffffffffffffffffffffffffffffffff1614611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153e90612548565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80830361161c575f905061167d565b5f82846116299190612566565b905082848261163891906125d4565b14611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90612674565b60405180910390fd5b809150505b92915050565b5f6116c483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061177c565b905092915050565b5f8082846116da9190611c56565b90508381101561171f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611716906126dc565b60405180910390fd5b8091505092915050565b5f61176a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506117dd565b905092915050565b505050565b505050565b5f80831182906117c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b991906118fc565b60405180910390fd5b505f83856117d091906125d4565b9050809150509392505050565b5f838311158290611824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181b91906118fc565b60405180910390fd5b505f838561183291906126fa565b9050809150509392505050565b5f8115159050919050565b6118538161183f565b82525050565b5f60208201905061186c5f83018461184a565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156118a957808201518184015260208101905061188e565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6118ce82611872565b6118d8818561187c565b93506118e881856020860161188c565b6118f1816118b4565b840191505092915050565b5f6020820190508181035f83015261191481846118c4565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61194982611920565b9050919050565b6119598161193f565b8114611963575f80fd5b50565b5f8135905061197481611950565b92915050565b5f819050919050565b61198c8161197a565b8114611996575f80fd5b50565b5f813590506119a781611983565b92915050565b5f80604083850312156119c3576119c261191c565b5b5f6119d085828601611966565b92505060206119e185828601611999565b9150509250929050565b6119f48161197a565b82525050565b5f602082019050611a0d5f8301846119eb565b92915050565b5f805f60608486031215611a2a57611a2961191c565b5b5f611a3786828701611966565b9350506020611a4886828701611966565b9250506040611a5986828701611999565b9150509250925092565b5f60ff82169050919050565b611a7881611a63565b82525050565b5f602082019050611a915f830184611a6f565b92915050565b5f60208284031215611aac57611aab61191c565b5b5f611ab984828501611999565b91505092915050565b611acb8161193f565b82525050565b5f602082019050611ae45f830184611ac2565b92915050565b5f611af482611920565b9050919050565b611b0481611aea565b8114611b0e575f80fd5b50565b5f81359050611b1f81611afb565b92915050565b5f8060408385031215611b3b57611b3a61191c565b5b5f611b4885828601611999565b9250506020611b5985828601611b11565b9150509250929050565b5f60208284031215611b7857611b7761191c565b5b5f611b8584828501611966565b91505092915050565b5f8060408385031215611ba457611ba361191c565b5b5f611bb185828601611966565b9250506020611bc285828601611966565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611c1057607f821691505b602082108103611c2357611c22611bcc565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611c608261197a565b9150611c6b8361197a565b9250828201905080821115611c8357611c82611c29565b5b92915050565b7f524f533a20616d6f756e74206d7573742062652067726561746572207468616e5f8201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b5f611ce360228361187c565b9150611cee82611c89565b604082019050919050565b5f6020820190508181035f830152611d1081611cd7565b9050919050565b7f524f533a20726563697069656e7420697320746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611d7160228361187c565b9150611d7c82611d17565b604082019050919050565b5f6020820190508181035f830152611d9e81611d65565b9050919050565b5f604082019050611db85f830185611ac2565b611dc560208301846119eb565b9392505050565b611dd58161183f565b8114611ddf575f80fd5b50565b5f81519050611df081611dcc565b92915050565b5f60208284031215611e0b57611e0a61191c565b5b5f611e1884828501611de2565b91505092915050565b7f524f533a2054726164696e6720616c726561647920656e61626c65642e2e00005f82015250565b5f611e55601e8361187c565b9150611e6082611e21565b602082019050919050565b5f6020820190508181035f830152611e8281611e49565b9050919050565b7f524f533a2053657420756e69737761705632506169722066697273742e2e00005f82015250565b5f611ebd601e8361187c565b9150611ec882611e89565b602082019050919050565b5f6020820190508181035f830152611eea81611eb1565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611f4b60258361187c565b9150611f5682611ef1565b604082019050919050565b5f6020820190508181035f830152611f7881611f3f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611fd960268361187c565b9150611fe482611f7f565b604082019050919050565b5f6020820190508181035f83015261200681611fcd565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61206760248361187c565b91506120728261200d565b604082019050919050565b5f6020820190508181035f8301526120948161205b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6120f560228361187c565b91506121008261209b565b604082019050919050565b5f6020820190508181035f830152612122816120e9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61215d601d8361187c565b915061216882612129565b602082019050919050565b5f6020820190508181035f83015261218a81612151565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6121eb60258361187c565b91506121f682612191565b604082019050919050565b5f6020820190508181035f830152612218816121df565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61227960238361187c565b91506122848261221f565b604082019050919050565b5f6020820190508181035f8301526122a68161226d565b9050919050565b5f815190506122bb81611950565b92915050565b5f602082840312156122d6576122d561191c565b5b5f6122e3848285016122ad565b91505092915050565b7f45524332303a2074726164696e67206973206e6f7420656e61626c65640000005f82015250565b5f612320601d8361187c565b915061232b826122ec565b602082019050919050565b5f6020820190508181035f83015261234d81612314565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6123ae60268361187c565b91506123b982612354565b604082019050919050565b5f6020820190508181035f8301526123db816123a2565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61243c60218361187c565b9150612447826123e2565b604082019050919050565b5f6020820190508181035f83015261246981612430565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6124ca60228361187c565b91506124d582612470565b604082019050919050565b5f6020820190508181035f8301526124f7816124be565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61253260208361187c565b915061253d826124fe565b602082019050919050565b5f6020820190508181035f83015261255f81612526565b9050919050565b5f6125708261197a565b915061257b8361197a565b92508282026125898161197a565b915082820484148315176125a05761259f611c29565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6125de8261197a565b91506125e98361197a565b9250826125f9576125f86125a7565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f61265e60218361187c565b915061266982612604565b604082019050919050565b5f6020820190508181035f83015261268b81612652565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f6126c6601b8361187c565b91506126d182612692565b602082019050919050565b5f6020820190508181035f8301526126f3816126ba565b9050919050565b5f6127048261197a565b915061270f8361197a565b925082820390508181111561272757612726611c29565b5b9291505056fea26469706673582212203afb96b2fcf247fc62c91ebae264cb1330537d468ac3a4ad23c1b8a29881ad9864736f6c63430008140033

Deployed Bytecode

0x608060405260043610610143575f3560e01c806370a08231116100b5578063a457c2d71161006e578063a457c2d714610430578063a9059cbb1461046c578063c31fe80a146104a8578063d5aed6bf146104d2578063dd62ed3e146104fa578063f2fde38b146105365761014a565b806370a082311461034c578063715018a61461038857806379cc67901461039e5780638a8c523c146103c65780638da5cb5b146103dc57806395d89b41146104065761014a565b8063313ce56711610107578063313ce56714610244578063395093511461026e57806342966c68146102aa57806349bd5a5e146102d25780636a395ccb146102fc5780636e07c470146103245761014a565b8063064a59d01461014e57806306fdde0314610178578063095ea7b3146101a257806318160ddd146101de57806323b872dd146102085761014a565b3661014a57005b5f80fd5b348015610159575f80fd5b5061016261055e565b60405161016f9190611859565b60405180910390f35b348015610183575f80fd5b5061018c61056e565b60405161019991906118fc565b60405180910390f35b3480156101ad575f80fd5b506101c860048036038101906101c391906119ad565b6105fe565b6040516101d59190611859565b60405180910390f35b3480156101e9575f80fd5b506101f2610620565b6040516101ff91906119fa565b60405180910390f35b348015610213575f80fd5b5061022e60048036038101906102299190611a13565b610629565b60405161023b9190611859565b60405180910390f35b34801561024f575f80fd5b50610258610657565b6040516102659190611a7e565b60405180910390f35b348015610279575f80fd5b50610294600480360381019061028f91906119ad565b61065f565b6040516102a19190611859565b60405180910390f35b3480156102b5575f80fd5b506102d060048036038101906102cb9190611a97565b610695565b005b3480156102dd575f80fd5b506102e66106a9565b6040516102f39190611ad1565b60405180910390f35b348015610307575f80fd5b50610322600480360381019061031d9190611a13565b6106ce565b005b34801561032f575f80fd5b5061034a60048036038101906103459190611b25565b610807565b005b348015610357575f80fd5b50610372600480360381019061036d9190611b63565b610857565b60405161037f91906119fa565b60405180910390f35b348015610393575f80fd5b5061039c61089d565b005b3480156103a9575f80fd5b506103c460048036038101906103bf91906119ad565b6108b0565b005b3480156103d1575f80fd5b506103da6108d0565b005b3480156103e7575f80fd5b506103f06109d6565b6040516103fd9190611ad1565b60405180910390f35b348015610411575f80fd5b5061041a6109fe565b60405161042791906118fc565b60405180910390f35b34801561043b575f80fd5b50610456600480360381019061045191906119ad565b610a8e565b6040516104639190611859565b60405180910390f35b348015610477575f80fd5b50610492600480360381019061048d91906119ad565b610b03565b60405161049f9190611859565b60405180910390f35b3480156104b3575f80fd5b506104bc610b25565b6040516104c991906119fa565b60405180910390f35b3480156104dd575f80fd5b506104f860048036038101906104f39190611b63565b610b2b565b005b348015610505575f80fd5b50610520600480360381019061051b9190611b8e565b610b76565b60405161052d91906119fa565b60405180910390f35b348015610541575f80fd5b5061055c60048036038101906105579190611b63565b610bf8565b005b5f8054906101000a900460ff1681565b60606006805461057d90611bf9565b80601f01602080910402602001604051908101604052809291908181526020018280546105a990611bf9565b80156105f45780601f106105cb576101008083540402835291602001916105f4565b820191905f5260205f20905b8154815290600101906020018083116105d757829003601f168201915b5050505050905090565b5f80610608610c7a565b9050610615818585610c81565b600191505092915050565b5f600354905090565b5f80610633610c7a565b9050610640858285610e44565b61064b858585610ecf565b60019150509392505050565b5f6012905090565b5f80610669610c7a565b905061068a81858561067b8589610b76565b6106859190611c56565b610c81565b600191505092915050565b6106a66106a0610c7a565b82611306565b50565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6106d66114cb565b5f8111610718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070f90611cf9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077d90611d87565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016107c1929190611da5565b6020604051808303815f875af11580156107dd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108019190611df6565b50505050565b61080f6114cb565b8073ffffffffffffffffffffffffffffffffffffffff166108fc8390811502906040515f60405180830381858888f19350505050158015610852573d5f803e3d5ffd5b505050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6108a56114cb565b6108ae5f611549565b565b6108c2826108bc610c7a565b83610e44565b6108cc8282611306565b5050565b6108d86114cb565b5f8054906101000a900460ff1615610925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091c90611e6b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036109b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ab90611ed3565b60405180910390fd5b60015f806101000a81548160ff02191690831515021790555042600481905550565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610a0d90611bf9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3990611bf9565b8015610a845780601f10610a5b57610100808354040283529160200191610a84565b820191905f5260205f20905b815481529060010190602001808311610a6757829003601f168201915b5050505050905090565b5f80610a98610c7a565b90505f610aa58286610b76565b905083811015610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae190611f61565b60405180910390fd5b610af78286868403610c81565b60019250505092915050565b5f80610b0d610c7a565b9050610b1a818585610ecf565b600191505092915050565b60045481565b610b336114cb565b8060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610c006114cb565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590611fef565b60405180910390fd5b610c7781611549565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce69061207d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d549061210b565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e3791906119fa565b60405180910390a3505050565b5f610e4f8484610b76565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ec95781811015610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb290612173565b60405180910390fd5b610ec88484848403610c81565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3490612201565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa29061228f565b60405180910390fd5b5f610fd36064610fc560638561160c90919063ffffffff16565b61168390919063ffffffff16565b90505f3073ffffffffffffffffffffffffffffffffffffffff16638da5cb5b6040518163ffffffff1660e01b81526004016020604051808303815f875af1158015611020573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061104491906122c1565b90505f8054906101000a900460ff166110c6578073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bc90612336565b60405180910390fd5b5b5f8054906101000a900460ff1680156110f457506110f0603c6004546116cc90919063ffffffff16565b4211155b801561114c575060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b1561117157611164828461172990919063ffffffff16565b92506111708583611306565b5b61117c858585611772565b5f60015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905083811015611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f7906123c4565b60405180910390fd5b83810360015f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508360015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516112eb91906119fa565b60405180910390a36112fe868686611777565b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b90612452565b60405180910390fd5b61137f825f83611772565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa906124e0565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114b391906119fa565b60405180910390a36114c6835f84611777565b505050565b6114d3610c7a565b73ffffffffffffffffffffffffffffffffffffffff166114f16109d6565b73ffffffffffffffffffffffffffffffffffffffff1614611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153e90612548565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80830361161c575f905061167d565b5f82846116299190612566565b905082848261163891906125d4565b14611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90612674565b60405180910390fd5b809150505b92915050565b5f6116c483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061177c565b905092915050565b5f8082846116da9190611c56565b90508381101561171f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611716906126dc565b60405180910390fd5b8091505092915050565b5f61176a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506117dd565b905092915050565b505050565b505050565b5f80831182906117c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b991906118fc565b60405180910390fd5b505f83856117d091906125d4565b9050809150509392505050565b5f838311158290611824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181b91906118fc565b60405180910390fd5b505f838561183291906126fa565b9050809150509392505050565b5f8115159050919050565b6118538161183f565b82525050565b5f60208201905061186c5f83018461184a565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156118a957808201518184015260208101905061188e565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6118ce82611872565b6118d8818561187c565b93506118e881856020860161188c565b6118f1816118b4565b840191505092915050565b5f6020820190508181035f83015261191481846118c4565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61194982611920565b9050919050565b6119598161193f565b8114611963575f80fd5b50565b5f8135905061197481611950565b92915050565b5f819050919050565b61198c8161197a565b8114611996575f80fd5b50565b5f813590506119a781611983565b92915050565b5f80604083850312156119c3576119c261191c565b5b5f6119d085828601611966565b92505060206119e185828601611999565b9150509250929050565b6119f48161197a565b82525050565b5f602082019050611a0d5f8301846119eb565b92915050565b5f805f60608486031215611a2a57611a2961191c565b5b5f611a3786828701611966565b9350506020611a4886828701611966565b9250506040611a5986828701611999565b9150509250925092565b5f60ff82169050919050565b611a7881611a63565b82525050565b5f602082019050611a915f830184611a6f565b92915050565b5f60208284031215611aac57611aab61191c565b5b5f611ab984828501611999565b91505092915050565b611acb8161193f565b82525050565b5f602082019050611ae45f830184611ac2565b92915050565b5f611af482611920565b9050919050565b611b0481611aea565b8114611b0e575f80fd5b50565b5f81359050611b1f81611afb565b92915050565b5f8060408385031215611b3b57611b3a61191c565b5b5f611b4885828601611999565b9250506020611b5985828601611b11565b9150509250929050565b5f60208284031215611b7857611b7761191c565b5b5f611b8584828501611966565b91505092915050565b5f8060408385031215611ba457611ba361191c565b5b5f611bb185828601611966565b9250506020611bc285828601611966565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611c1057607f821691505b602082108103611c2357611c22611bcc565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611c608261197a565b9150611c6b8361197a565b9250828201905080821115611c8357611c82611c29565b5b92915050565b7f524f533a20616d6f756e74206d7573742062652067726561746572207468616e5f8201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b5f611ce360228361187c565b9150611cee82611c89565b604082019050919050565b5f6020820190508181035f830152611d1081611cd7565b9050919050565b7f524f533a20726563697069656e7420697320746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611d7160228361187c565b9150611d7c82611d17565b604082019050919050565b5f6020820190508181035f830152611d9e81611d65565b9050919050565b5f604082019050611db85f830185611ac2565b611dc560208301846119eb565b9392505050565b611dd58161183f565b8114611ddf575f80fd5b50565b5f81519050611df081611dcc565b92915050565b5f60208284031215611e0b57611e0a61191c565b5b5f611e1884828501611de2565b91505092915050565b7f524f533a2054726164696e6720616c726561647920656e61626c65642e2e00005f82015250565b5f611e55601e8361187c565b9150611e6082611e21565b602082019050919050565b5f6020820190508181035f830152611e8281611e49565b9050919050565b7f524f533a2053657420756e69737761705632506169722066697273742e2e00005f82015250565b5f611ebd601e8361187c565b9150611ec882611e89565b602082019050919050565b5f6020820190508181035f830152611eea81611eb1565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611f4b60258361187c565b9150611f5682611ef1565b604082019050919050565b5f6020820190508181035f830152611f7881611f3f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611fd960268361187c565b9150611fe482611f7f565b604082019050919050565b5f6020820190508181035f83015261200681611fcd565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61206760248361187c565b91506120728261200d565b604082019050919050565b5f6020820190508181035f8301526120948161205b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6120f560228361187c565b91506121008261209b565b604082019050919050565b5f6020820190508181035f830152612122816120e9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61215d601d8361187c565b915061216882612129565b602082019050919050565b5f6020820190508181035f83015261218a81612151565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6121eb60258361187c565b91506121f682612191565b604082019050919050565b5f6020820190508181035f830152612218816121df565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61227960238361187c565b91506122848261221f565b604082019050919050565b5f6020820190508181035f8301526122a68161226d565b9050919050565b5f815190506122bb81611950565b92915050565b5f602082840312156122d6576122d561191c565b5b5f6122e3848285016122ad565b91505092915050565b7f45524332303a2074726164696e67206973206e6f7420656e61626c65640000005f82015250565b5f612320601d8361187c565b915061232b826122ec565b602082019050919050565b5f6020820190508181035f83015261234d81612314565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6123ae60268361187c565b91506123b982612354565b604082019050919050565b5f6020820190508181035f8301526123db816123a2565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61243c60218361187c565b9150612447826123e2565b604082019050919050565b5f6020820190508181035f83015261246981612430565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6124ca60228361187c565b91506124d582612470565b604082019050919050565b5f6020820190508181035f8301526124f7816124be565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61253260208361187c565b915061253d826124fe565b602082019050919050565b5f6020820190508181035f83015261255f81612526565b9050919050565b5f6125708261197a565b915061257b8361197a565b92508282026125898161197a565b915082820484148315176125a05761259f611c29565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6125de8261197a565b91506125e98361197a565b9250826125f9576125f86125a7565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f61265e60218361187c565b915061266982612604565b604082019050919050565b5f6020820190508181035f83015261268b81612652565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f6126c6601b8361187c565b91506126d182612692565b602082019050919050565b5f6020820190508181035f8301526126f3816126ba565b9050919050565b5f6127048261197a565b915061270f8361197a565b925082820390508181111561272757612726611c29565b5b9291505056fea26469706673582212203afb96b2fcf247fc62c91ebae264cb1330537d468ac3a4ad23c1b8a29881ad9864736f6c63430008140033

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.