ETH Price: $2,626.08 (+1.84%)

Token

Gas World Economical Incident (GWEI)
 

Overview

Max Total Supply

1,111,111,111 GWEI

Holders

209

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
709,931.397058145 GWEI

Value
$0.00
0xb04cf0940f74602f4a1a05b776fbae7b574bcc03
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:
GWEI

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license
File 1 of 1 : main
// SPDX-License-Identifier: MIT
/**

https://t.me/GWEIERC20

In the not-so-distant future, humanity had made incredible strides in technology, harnessing the power of the blockchain to revolutionize the global economy. With the widespread adoption of cryptocurrencies, the traditional financial systems were replaced by a decentralized and borderless landscape, where individuals had complete control over their wealth and transactions.

However, with every revolutionary change, there are bound to be challenges. Enter the "Gas World Economical Incident," an unexpected and uproarious turn of events that changed the course of the crypto world forever.

It all began when a brilliant but quirky scientist, Dr. Amelia Sparks, made a groundbreaking discovery in her secret laboratory. She developed a new type of renewable energy that could power not just homes and industries but also the very fabric of the blockchain itself. This revolutionary energy source was aptly named "Gasium."

The crypto community couldn't believe their luck. Finally, a solution to the soaring gas fees that had been plaguing the blockchain since its inception. Gasium could make transactions lightning-fast and practically feeless, opening up a world of possibilities for everyone.

Excitement buzzed through the markets as the news spread like wildfire. People rushed to invest in the token that represented Dr. Amelia Sparks' revolutionary discovery - "GAS," short for Gasium.

The GAS token skyrocketed to unimaginable heights, and for a brief moment, it seemed like a utopian dream come true. Transactions were seamless, and users rejoiced in the newfound financial freedom. Gas fees were a thing of the past, and the crypto world was a joyful place.

But, as with any good story, there was a twist. Dr. Sparks' laboratory had been infiltrated by a group of eccentric hackers known as "The Giggle Bandits." These hackers, though mischievous, were not malicious at heart. They believed in the power of humor and wanted to remind the crypto community not to take itself too seriously.

The Giggle Bandits pulled off an elaborate prank, introducing a fictional "Gas World Economical Incident" that seemed to threaten the stability of the GAS token. They created mock news articles, fake tweets, and even a parody website, all meant to elicit laughter and poke fun at the crypto world's tendency to overreact to every little event.

The crypto community, though initially baffled, soon caught on to the prank. Memes flooded social media, and a sense of camaraderie and humor permeated the entire blockchain ecosystem. The "Gas World Economical Incident" became a symbol of resilience, reminding everyone that even in the midst of serious financial endeavors, laughter was the best medicine.

Dr. Amelia Sparks, with her brilliant mind, quickly embraced the prank as an opportunity to spread awareness about the importance of balance in the crypto world. She acknowledged the humor while reiterating the significance of her discovery, Gasium, which continued to power the blockchain and offer feeless transactions.

And so, the "Gas World Economical Incident" became a legendary tale in the crypto universe, a story that showcased the power of innovation, humor, and community. The GAS token thrived, not just for its technological marvel, but for the spirit of laughter that surrounded it.

To this day, the crypto world cherishes the memory of the "Gas World Economical Incident," where a bunch of quirky hackers taught everyone the value of not just financial gains, but also the joy of being part of something larger than themselves.

**/
pragma solidity 0.8.20;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}

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

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) {
        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;
        return c;
    }

}

contract Ownable is Context {
    address private _owner;
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

}

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

contract GWEI is Context, IERC20, Ownable {
    using SafeMath for uint256;
    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => bool) private _isExcludedFromFee;
    mapping (address => bool) private _buyerMap;
    mapping (address => bool) private bots;
    mapping(address => uint256) private _holderLastTransferTimestamp;
    bool public transferDelayEnabled = false;
    address payable private _taxWallet;

    uint256 private _initialBuyTax=15;
    uint256 private _initialSellTax=15;
    uint256 private _finalBuyTax=2;
    uint256 private _finalSellTax=2;
    uint256 private _reduceBuyTaxAt=20;
    uint256 private _reduceSellTaxAt=20;
    uint256 private _preventSwapBefore=25;
    uint256 private _buyCount=0;

    uint8 private constant _decimals = 9;
    uint256 private constant _tTotal = 1111111111 * 10**_decimals;
    string private constant _name = unicode"Gas World Economical Incident";
    string private constant _symbol = unicode"GWEI";
    uint256 public _maxTxAmount =   22222222 * 10**_decimals;
    uint256 public _maxWalletSize = 22222222 * 10**_decimals;
    uint256 public _taxSwapThreshold=0 * 10**_decimals;
    uint256 public _maxTaxSwap=11111111 * 10**_decimals;

    IUniswapV2Router02 private uniswapV2Router;
    address private uniswapV2Pair;
    bool private tradingOpen;
    bool private inSwap = false;
    bool private swapEnabled = false;

    event MaxTxAmountUpdated(uint _maxTxAmount);
    modifier lockTheSwap {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor () {
        _taxWallet = payable(_msgSender());
        _balances[_msgSender()] = _tTotal;
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_taxWallet] = true;

        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

    function totalSupply() public pure override returns (uint256) {
        return _tTotal;
    }

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

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

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

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

    function transferFrom(address sender, address recipient, uint256 amount) public 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) private {
        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 _transfer(address from, address to, uint256 amount) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        uint256 taxAmount=0;
        if (from != owner() && to != owner()) {
            require(!bots[from] && !bots[to]);

            if (transferDelayEnabled) {
                if (to != address(uniswapV2Router) && to != address(uniswapV2Pair)) {
                  require(_holderLastTransferTimestamp[tx.origin] < block.number,"Only one transfer per block allowed.");
                  _holderLastTransferTimestamp[tx.origin] = block.number;
                }
            }

            if (from == uniswapV2Pair && to != address(uniswapV2Router) && ! _isExcludedFromFee[to] ) {
                require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount.");
                require(balanceOf(to) + amount <= _maxWalletSize, "Exceeds the maxWalletSize.");
                if(_buyCount<_preventSwapBefore){
                  require(!isContract(to));
                }
                _buyCount++;
                _buyerMap[to]=true;
            }


            taxAmount = amount.mul((_buyCount>_reduceBuyTaxAt)?_finalBuyTax:_initialBuyTax).div(100);
            if(to == uniswapV2Pair && from!= address(this) ){
                require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount.");
                taxAmount = amount.mul((_buyCount>_reduceSellTaxAt)?_finalSellTax:_initialSellTax).div(100);
                require(_buyCount>_preventSwapBefore || _buyerMap[from],"Seller is not buyer");
            }

            uint256 contractTokenBalance = balanceOf(address(this));
            if (!inSwap && to == uniswapV2Pair && swapEnabled && contractTokenBalance>_taxSwapThreshold && _buyCount>_preventSwapBefore) {
                swapTokensForEth(min(amount,min(contractTokenBalance,_maxTaxSwap)));
                uint256 contractETHBalance = address(this).balance;
                if(contractETHBalance > 0) {
                    sendETHToFee(address(this).balance);
                }
            }
        }

        if(taxAmount>0){
          _balances[address(this)]=_balances[address(this)].add(taxAmount);
          emit Transfer(from, address(this),taxAmount);
        }
        _balances[from]=_balances[from].sub(amount);
        _balances[to]=_balances[to].add(amount.sub(taxAmount));
        emit Transfer(from, to, amount.sub(taxAmount));
    }


    function min(uint256 a, uint256 b) private pure returns (uint256){
      return (a>b)?b:a;
    }

    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        if(tokenAmount==0){return;}
        if(!tradingOpen){return;}
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function removeLimits() external onlyOwner{
        _maxTxAmount = _tTotal;
        _maxWalletSize=_tTotal;
        transferDelayEnabled=false;
        emit MaxTxAmountUpdated(_tTotal);
    }

    function sendETHToFee(uint256 amount) private {
        _taxWallet.transfer(amount);
    }

    function isBot(address a) public view returns (bool){
      return bots[a];
    }

    function openTrading() external onlyOwner() {
        require(!tradingOpen,"trading is already open");
        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this), address(uniswapV2Router), _tTotal);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp);
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
        swapEnabled = true;
        tradingOpen = true;
    }

    receive() external payable {}

    function isContract(address account) private view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    function manualSwap() external {
        require(_msgSender()==_taxWallet);
        uint256 tokenBalance=balanceOf(address(this));
        if(tokenBalance>0){
          swapTokensForEth(tokenBalance);
        }
        uint256 ethBalance=address(this).balance;
        if(ethBalance>0){
          sendETHToFee(ethBalance);
        }
    }

    
    
    
}

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

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":false,"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","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":[],"name":"_maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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"},{"stateMutability":"payable","type":"receive"}]

60806040526007805460ff19169055600f600881905560098181556002600a818155600b919091556014600c819055600d556019600e555f909255620000459162000341565b6200005590630153158e62000358565b601055620000666009600a62000341565b6200007690630153158e62000358565b601155620000876009600a62000341565b62000093905f62000358565b601255620000a46009600a62000341565b620000b39062a98ac762000358565b6013556015805461ffff60a81b19169055348015620000d0575f80fd5b505f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060078054610100600160a81b0319166101003302179055620001366009600a62000341565b620001469063423a35c762000358565b335f9081526001602081905260408220929092556003906200016f5f546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff1996871617905530815260039093528183208054851660019081179091556007546101009004909116835291208054909216179055620001d23390565b6001600160a01b03165f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6200020b6009600a62000341565b6200021b9063423a35c762000358565b60405190815260200160405180910390a362000372565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200028657815f19048211156200026a576200026a62000232565b808516156200027857918102915b93841c93908002906200024b565b509250929050565b5f826200029e575060016200033b565b81620002ac57505f6200033b565b8160018114620002c55760028114620002d057620002f0565b60019150506200033b565b60ff841115620002e457620002e462000232565b50506001821b6200033b565b5060208310610133831016604e8410600b841016171562000315575081810a6200033b565b62000321838362000246565b805f190482111562000337576200033762000232565b0290505b92915050565b5f6200035160ff8416836200028e565b9392505050565b80820281158282048414176200033b576200033b62000232565b61196c80620003805f395ff3fe60806040526004361061011e575f3560e01c8063751039fc1161009d578063a9059cbb11610062578063a9059cbb14610345578063bf474bed14610364578063c876d0b914610379578063c9567bf914610392578063dd62ed3e146103a6575f80fd5b8063751039fc146102b55780637d1db4a5146102c95780638da5cb5b146102de5780638f9a55c01461030457806395d89b4114610319575f80fd5b8063313ce567116100e3578063313ce567146102055780633bbac5791461022057806351bc3c851461025757806370a082311461026d578063715018a6146102a1575f80fd5b806306fdde0314610129578063095ea7b3146101805780630faee56f146101af57806318160ddd146101d257806323b872dd146101e6575f80fd5b3661012557005b5f80fd5b348015610134575f80fd5b5060408051808201909152601d81527f47617320576f726c642045636f6e6f6d6963616c20496e636964656e7400000060208201525b604051610177919061155f565b60405180910390f35b34801561018b575f80fd5b5061019f61019a3660046115c1565b6103ea565b6040519015158152602001610177565b3480156101ba575f80fd5b506101c460135481565b604051908152602001610177565b3480156101dd575f80fd5b506101c4610400565b3480156101f1575f80fd5b5061019f6102003660046115eb565b610420565b348015610210575f80fd5b5060405160098152602001610177565b34801561022b575f80fd5b5061019f61023a366004611629565b6001600160a01b03165f9081526005602052604090205460ff1690565b348015610262575f80fd5b5061026b610487565b005b348015610278575f80fd5b506101c4610287366004611629565b6001600160a01b03165f9081526001602052604090205490565b3480156102ac575f80fd5b5061026b6104dd565b3480156102c0575f80fd5b5061026b610557565b3480156102d4575f80fd5b506101c460105481565b3480156102e9575f80fd5b505f546040516001600160a01b039091168152602001610177565b34801561030f575f80fd5b506101c460115481565b348015610324575f80fd5b506040805180820190915260048152634757454960e01b602082015261016a565b348015610350575f80fd5b5061019f61035f3660046115c1565b610612565b34801561036f575f80fd5b506101c460125481565b348015610384575f80fd5b5060075461019f9060ff1681565b34801561039d575f80fd5b5061026b61061e565b3480156103b1575f80fd5b506101c46103c0366004611644565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f6103f63384846109c7565b5060015b92915050565b5f61040d6009600a61176f565b61041b9063423a35c761177d565b905090565b5f61042c848484610aea565b61047d84336104788560405180606001604052806028815260200161190f602891396001600160a01b038a165f90815260026020908152604080832033845290915290205491906111be565b6109c7565b5060019392505050565b60075461010090046001600160a01b0316336001600160a01b0316146104ab575f80fd5b305f9081526001602052604090205480156104c9576104c9816111f6565b4780156104d9576104d98161137f565b5050565b5f546001600160a01b0316331461050f5760405162461bcd60e51b815260040161050690611794565b60405180910390fd5b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146105805760405162461bcd60e51b815260040161050690611794565b61058c6009600a61176f565b61059a9063423a35c761177d565b6010556105a96009600a61176f565b6105b79063423a35c761177d565b6011556007805460ff191690557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6105f16009600a61176f565b6105ff9063423a35c761177d565b60405190815260200160405180910390a1565b5f6103f6338484610aea565b5f546001600160a01b031633146106475760405162461bcd60e51b815260040161050690611794565b601554600160a01b900460ff16156106a15760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610506565b601480546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556106ea9030906106dc6009600a61176f565b6104789063423a35c761177d565b60145f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561073a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061075e91906117c9565b6001600160a01b031663c9c653963060145f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107bd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107e191906117c9565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801561082b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061084f91906117c9565b601580546001600160a01b039283166001600160a01b03199091161790556014541663f305d7194730610896816001600160a01b03165f9081526001602052604090205490565b5f806108a95f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561090f573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061093491906117e4565b505060155460145460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610989573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109ad919061180f565b506015805462ff00ff60a01b19166201000160a01b179055565b6001600160a01b038316610a295760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610506565b6001600160a01b038216610a8a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610506565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b4e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610506565b6001600160a01b038216610bb05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610506565b5f8111610c115760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610506565b5f80546001600160a01b03858116911614801590610c3c57505f546001600160a01b03848116911614155b15611081576001600160a01b0384165f9081526005602052604090205460ff16158015610c8157506001600160a01b0383165f9081526005602052604090205460ff16155b610c89575f80fd5b60075460ff1615610d40576014546001600160a01b03848116911614801590610cc057506015546001600160a01b03848116911614155b15610d4057325f908152600660205260409020544311610d2e5760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b6064820152608401610506565b325f9081526006602052604090204390555b6015546001600160a01b038581169116148015610d6b57506014546001600160a01b03848116911614155b8015610d8f57506001600160a01b0383165f9081526003602052604090205460ff16155b15610eaa57601054821115610de25760405162461bcd60e51b815260206004820152601960248201527822bc31b2b2b239903a3432902fb6b0bc2a3c20b6b7bab73a1760391b6044820152606401610506565b60115482610e04856001600160a01b03165f9081526001602052604090205490565b610e0e919061182e565b1115610e5c5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610506565b600e54600f541015610e7357823b15610e73575f80fd5b600f8054905f610e8283611841565b90915550506001600160a01b0383165f908152600460205260409020805460ff191660011790555b610ed66064610ed0600c54600f5411610ec557600854610ec9565b600a545b85906113ba565b9061143f565b6015549091506001600160a01b038481169116148015610eff57506001600160a01b0384163014155b15610fe457601054821115610f525760405162461bcd60e51b815260206004820152601960248201527822bc31b2b2b239903a3432902fb6b0bc2a3c20b6b7bab73a1760391b6044820152606401610506565b610f776064610ed0600d54600f5411610f6d57600954610ec9565b600b5485906113ba565b9050600e54600f541180610fa257506001600160a01b0384165f9081526004602052604090205460ff165b610fe45760405162461bcd60e51b815260206004820152601360248201527229b2b63632b91034b9903737ba10313abcb2b960691b6044820152606401610506565b305f90815260016020526040902054601554600160a81b900460ff1615801561101a57506015546001600160a01b038581169116145b801561102f5750601554600160b01b900460ff165b801561103c575060125481115b801561104b5750600e54600f54115b1561107f5761106d6110688461106384601354611480565b611480565b6111f6565b47801561107d5761107d4761137f565b505b505b80156110f957305f908152600160205260409020546110a09082611494565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110f09085815260200190565b60405180910390a35b6001600160a01b0384165f9081526001602052604090205461111b90836114f2565b6001600160a01b0385165f9081526001602052604090205561115e61114083836114f2565b6001600160a01b0385165f9081526001602052604090205490611494565b6001600160a01b038085165f8181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6111a785856114f2565b60405190815260200160405180910390a350505050565b5f81848411156111e15760405162461bcd60e51b8152600401610506919061155f565b505f6111ed8486611859565b95945050505050565b6015805460ff60a81b1916600160a81b179055801561136f57601554600160a01b900460ff161561136f576040805160028082526060820183525f9260208301908036833701905050905030815f815181106112545761125461186c565b6001600160a01b03928316602091820292909201810191909152601454604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156112ab573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112cf91906117c9565b816001815181106112e2576112e261186c565b6001600160a01b03928316602091820292909201015260145461130891309116846109c7565b60145460405163791ac94760e01b81526001600160a01b039091169063791ac947906113409085905f90869030904290600401611880565b5f604051808303815f87803b158015611357575f80fd5b505af1158015611369573d5f803e3d5ffd5b50505050505b506015805460ff60a81b19169055565b6007546040516101009091046001600160a01b0316906108fc8315029083905f818181858888f193505050501580156104d9573d5f803e3d5ffd5b5f825f036113c957505f6103fa565b5f6113d4838561177d565b9050826113e185836118ef565b146114385760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610506565b9392505050565b5f61143883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611533565b5f81831161148e5782611438565b50919050565b5f806114a0838561182e565b9050838110156114385760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610506565b5f61143883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111be565b5f81836115535760405162461bcd60e51b8152600401610506919061155f565b505f6111ed84866118ef565b5f6020808352835180828501525f5b8181101561158a5785810183015185820160400152820161156e565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146115be575f80fd5b50565b5f80604083850312156115d2575f80fd5b82356115dd816115aa565b946020939093013593505050565b5f805f606084860312156115fd575f80fd5b8335611608816115aa565b92506020840135611618816115aa565b929592945050506040919091013590565b5f60208284031215611639575f80fd5b8135611438816115aa565b5f8060408385031215611655575f80fd5b8235611660816115aa565b91506020830135611670816115aa565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156116c957815f19048211156116af576116af61167b565b808516156116bc57918102915b93841c9390800290611694565b509250929050565b5f826116df575060016103fa565b816116eb57505f6103fa565b8160018114611701576002811461170b57611727565b60019150506103fa565b60ff84111561171c5761171c61167b565b50506001821b6103fa565b5060208310610133831016604e8410600b841016171561174a575081810a6103fa565b611754838361168f565b805f19048211156117675761176761167b565b029392505050565b5f61143860ff8416836116d1565b80820281158282048414176103fa576103fa61167b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f602082840312156117d9575f80fd5b8151611438816115aa565b5f805f606084860312156117f6575f80fd5b8351925060208401519150604084015190509250925092565b5f6020828403121561181f575f80fd5b81518015158114611438575f80fd5b808201808211156103fa576103fa61167b565b5f600182016118525761185261167b565b5060010190565b818103818111156103fa576103fa61167b565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156118ce5784516001600160a01b0316835293830193918301916001016118a9565b50506001600160a01b03969096166060850152505050608001529392505050565b5f8261190957634e487b7160e01b5f52601260045260245ffd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212204ce50a71bffb6c4456f5244a99cf18fd8826930fd42eaa3f6240a6fdfbd0a39a64736f6c63430008140033

Deployed Bytecode

0x60806040526004361061011e575f3560e01c8063751039fc1161009d578063a9059cbb11610062578063a9059cbb14610345578063bf474bed14610364578063c876d0b914610379578063c9567bf914610392578063dd62ed3e146103a6575f80fd5b8063751039fc146102b55780637d1db4a5146102c95780638da5cb5b146102de5780638f9a55c01461030457806395d89b4114610319575f80fd5b8063313ce567116100e3578063313ce567146102055780633bbac5791461022057806351bc3c851461025757806370a082311461026d578063715018a6146102a1575f80fd5b806306fdde0314610129578063095ea7b3146101805780630faee56f146101af57806318160ddd146101d257806323b872dd146101e6575f80fd5b3661012557005b5f80fd5b348015610134575f80fd5b5060408051808201909152601d81527f47617320576f726c642045636f6e6f6d6963616c20496e636964656e7400000060208201525b604051610177919061155f565b60405180910390f35b34801561018b575f80fd5b5061019f61019a3660046115c1565b6103ea565b6040519015158152602001610177565b3480156101ba575f80fd5b506101c460135481565b604051908152602001610177565b3480156101dd575f80fd5b506101c4610400565b3480156101f1575f80fd5b5061019f6102003660046115eb565b610420565b348015610210575f80fd5b5060405160098152602001610177565b34801561022b575f80fd5b5061019f61023a366004611629565b6001600160a01b03165f9081526005602052604090205460ff1690565b348015610262575f80fd5b5061026b610487565b005b348015610278575f80fd5b506101c4610287366004611629565b6001600160a01b03165f9081526001602052604090205490565b3480156102ac575f80fd5b5061026b6104dd565b3480156102c0575f80fd5b5061026b610557565b3480156102d4575f80fd5b506101c460105481565b3480156102e9575f80fd5b505f546040516001600160a01b039091168152602001610177565b34801561030f575f80fd5b506101c460115481565b348015610324575f80fd5b506040805180820190915260048152634757454960e01b602082015261016a565b348015610350575f80fd5b5061019f61035f3660046115c1565b610612565b34801561036f575f80fd5b506101c460125481565b348015610384575f80fd5b5060075461019f9060ff1681565b34801561039d575f80fd5b5061026b61061e565b3480156103b1575f80fd5b506101c46103c0366004611644565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b5f6103f63384846109c7565b5060015b92915050565b5f61040d6009600a61176f565b61041b9063423a35c761177d565b905090565b5f61042c848484610aea565b61047d84336104788560405180606001604052806028815260200161190f602891396001600160a01b038a165f90815260026020908152604080832033845290915290205491906111be565b6109c7565b5060019392505050565b60075461010090046001600160a01b0316336001600160a01b0316146104ab575f80fd5b305f9081526001602052604090205480156104c9576104c9816111f6565b4780156104d9576104d98161137f565b5050565b5f546001600160a01b0316331461050f5760405162461bcd60e51b815260040161050690611794565b60405180910390fd5b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146105805760405162461bcd60e51b815260040161050690611794565b61058c6009600a61176f565b61059a9063423a35c761177d565b6010556105a96009600a61176f565b6105b79063423a35c761177d565b6011556007805460ff191690557f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6105f16009600a61176f565b6105ff9063423a35c761177d565b60405190815260200160405180910390a1565b5f6103f6338484610aea565b5f546001600160a01b031633146106475760405162461bcd60e51b815260040161050690611794565b601554600160a01b900460ff16156106a15760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610506565b601480546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556106ea9030906106dc6009600a61176f565b6104789063423a35c761177d565b60145f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561073a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061075e91906117c9565b6001600160a01b031663c9c653963060145f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107bd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107e191906117c9565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801561082b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061084f91906117c9565b601580546001600160a01b039283166001600160a01b03199091161790556014541663f305d7194730610896816001600160a01b03165f9081526001602052604090205490565b5f806108a95f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561090f573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061093491906117e4565b505060155460145460405163095ea7b360e01b81526001600160a01b0391821660048201525f1960248201529116915063095ea7b3906044016020604051808303815f875af1158015610989573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109ad919061180f565b506015805462ff00ff60a01b19166201000160a01b179055565b6001600160a01b038316610a295760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610506565b6001600160a01b038216610a8a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610506565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b4e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610506565b6001600160a01b038216610bb05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610506565b5f8111610c115760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610506565b5f80546001600160a01b03858116911614801590610c3c57505f546001600160a01b03848116911614155b15611081576001600160a01b0384165f9081526005602052604090205460ff16158015610c8157506001600160a01b0383165f9081526005602052604090205460ff16155b610c89575f80fd5b60075460ff1615610d40576014546001600160a01b03848116911614801590610cc057506015546001600160a01b03848116911614155b15610d4057325f908152600660205260409020544311610d2e5760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b6064820152608401610506565b325f9081526006602052604090204390555b6015546001600160a01b038581169116148015610d6b57506014546001600160a01b03848116911614155b8015610d8f57506001600160a01b0383165f9081526003602052604090205460ff16155b15610eaa57601054821115610de25760405162461bcd60e51b815260206004820152601960248201527822bc31b2b2b239903a3432902fb6b0bc2a3c20b6b7bab73a1760391b6044820152606401610506565b60115482610e04856001600160a01b03165f9081526001602052604090205490565b610e0e919061182e565b1115610e5c5760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e0000000000006044820152606401610506565b600e54600f541015610e7357823b15610e73575f80fd5b600f8054905f610e8283611841565b90915550506001600160a01b0383165f908152600460205260409020805460ff191660011790555b610ed66064610ed0600c54600f5411610ec557600854610ec9565b600a545b85906113ba565b9061143f565b6015549091506001600160a01b038481169116148015610eff57506001600160a01b0384163014155b15610fe457601054821115610f525760405162461bcd60e51b815260206004820152601960248201527822bc31b2b2b239903a3432902fb6b0bc2a3c20b6b7bab73a1760391b6044820152606401610506565b610f776064610ed0600d54600f5411610f6d57600954610ec9565b600b5485906113ba565b9050600e54600f541180610fa257506001600160a01b0384165f9081526004602052604090205460ff165b610fe45760405162461bcd60e51b815260206004820152601360248201527229b2b63632b91034b9903737ba10313abcb2b960691b6044820152606401610506565b305f90815260016020526040902054601554600160a81b900460ff1615801561101a57506015546001600160a01b038581169116145b801561102f5750601554600160b01b900460ff165b801561103c575060125481115b801561104b5750600e54600f54115b1561107f5761106d6110688461106384601354611480565b611480565b6111f6565b47801561107d5761107d4761137f565b505b505b80156110f957305f908152600160205260409020546110a09082611494565b305f81815260016020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110f09085815260200190565b60405180910390a35b6001600160a01b0384165f9081526001602052604090205461111b90836114f2565b6001600160a01b0385165f9081526001602052604090205561115e61114083836114f2565b6001600160a01b0385165f9081526001602052604090205490611494565b6001600160a01b038085165f8181526001602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6111a785856114f2565b60405190815260200160405180910390a350505050565b5f81848411156111e15760405162461bcd60e51b8152600401610506919061155f565b505f6111ed8486611859565b95945050505050565b6015805460ff60a81b1916600160a81b179055801561136f57601554600160a01b900460ff161561136f576040805160028082526060820183525f9260208301908036833701905050905030815f815181106112545761125461186c565b6001600160a01b03928316602091820292909201810191909152601454604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156112ab573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112cf91906117c9565b816001815181106112e2576112e261186c565b6001600160a01b03928316602091820292909201015260145461130891309116846109c7565b60145460405163791ac94760e01b81526001600160a01b039091169063791ac947906113409085905f90869030904290600401611880565b5f604051808303815f87803b158015611357575f80fd5b505af1158015611369573d5f803e3d5ffd5b50505050505b506015805460ff60a81b19169055565b6007546040516101009091046001600160a01b0316906108fc8315029083905f818181858888f193505050501580156104d9573d5f803e3d5ffd5b5f825f036113c957505f6103fa565b5f6113d4838561177d565b9050826113e185836118ef565b146114385760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610506565b9392505050565b5f61143883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611533565b5f81831161148e5782611438565b50919050565b5f806114a0838561182e565b9050838110156114385760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610506565b5f61143883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111be565b5f81836115535760405162461bcd60e51b8152600401610506919061155f565b505f6111ed84866118ef565b5f6020808352835180828501525f5b8181101561158a5785810183015185820160400152820161156e565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146115be575f80fd5b50565b5f80604083850312156115d2575f80fd5b82356115dd816115aa565b946020939093013593505050565b5f805f606084860312156115fd575f80fd5b8335611608816115aa565b92506020840135611618816115aa565b929592945050506040919091013590565b5f60208284031215611639575f80fd5b8135611438816115aa565b5f8060408385031215611655575f80fd5b8235611660816115aa565b91506020830135611670816115aa565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156116c957815f19048211156116af576116af61167b565b808516156116bc57918102915b93841c9390800290611694565b509250929050565b5f826116df575060016103fa565b816116eb57505f6103fa565b8160018114611701576002811461170b57611727565b60019150506103fa565b60ff84111561171c5761171c61167b565b50506001821b6103fa565b5060208310610133831016604e8410600b841016171561174a575081810a6103fa565b611754838361168f565b805f19048211156117675761176761167b565b029392505050565b5f61143860ff8416836116d1565b80820281158282048414176103fa576103fa61167b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f602082840312156117d9575f80fd5b8151611438816115aa565b5f805f606084860312156117f6575f80fd5b8351925060208401519150604084015190509250925092565b5f6020828403121561181f575f80fd5b81518015158114611438575f80fd5b808201808211156103fa576103fa61167b565b5f600182016118525761185261167b565b5060010190565b818103818111156103fa576103fa61167b565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156118ce5784516001600160a01b0316835293830193918301916001016118a9565b50506001600160a01b03969096166060850152505050608001529392505050565b5f8261190957634e487b7160e01b5f52601260045260245ffd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212204ce50a71bffb6c4456f5244a99cf18fd8826930fd42eaa3f6240a6fdfbd0a39a64736f6c63430008140033

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.