ETH Price: $3,153.69 (+1.10%)
Gas: 2 Gwei

Token

Mosquito Coin (MQC)
 

Overview

Max Total Supply

10,000,000 MQC

Holders

6

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,679,194.629810381805542522 MQC

Value
$0.00
0x7e5857624aedd6582fe419043a546a989f9c04b5
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:
MemeCoin

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license
/**
 *Submitted for verification at Etherscan.io on 2021-04-30
*/

//https://www.reddit.com/r/Meme_Coin_Factory/comments/n1od6m/millie_monka_and_the_meme_coin_factory/
///SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

/*
         _____                                           
       \/,---<                                           
       ( )a a(      YOU STOLE FIZZY LIFTING DRINKS!!!    
        C   >/                                           
         \ ~/      BUT THE D.A. MISHANDLED THE EVIDENCE, 
       ,- >o<-.    SO HERE'S THE KEYS TO MY FUDGE FACTORY
      /   \/   \                                         
     / /|  | |\ \     _                                  
     \ \|  | | \ `---/_)                                 
      \_\_ | |  `----\_O-                                
      /_/____|                                           
        |  | |                                           
        |  | |                                           
        |  | |               ____                        
        |__|_|_           &&& x_ \_,-------.___     |    
Stef00  (____)_)         &&&& x__*_\\._/__--_-_\-._/_    

Image found here: http://www.asciiartfarts.com/20121102.html

My name is Millie Monka
I love Meme Coins
And also you do
So I decided to open the doors of my Meme Coin Factory to you
Every 35 hours you can create a meme coin sending at least 1 ETH
you can choose name, symbol, and total supply
Meme Coin will be created and 99.98% of the total supply will be stored in a pool on UniswapV2 using eth you provided
remaining 0.02% of the Meme Coin total supply will be sent to Meme Coin creator so they can be swapped in future to have back creation fees
Resulting liquidity pool token will be held by the Meme Coin itself
the first burning 65% of the Meme Coin total supply will extract 60% of the pool
All Meme Coins removed from the pool will be burned
40% of removed eth will be sent to who burned tokens
47% of removed eth will be sent back to pool
remaining removed eth will be sent as Factory's fees
The remaining balance of liquidity pool token will be locked inside the Meme Coin forever

In Factory:

you have create(string memory name, string memory symbol, uint256 totalSupplyPlain) method to create a new Meme Coin. The amount is expressed in the decimal format so you DON'T HAVE TO multiply it for 1e18, Meme Coin will directly do it for you.

you have memeCoins() method to retrieve all Meme Coins in order of creation, including latest one
you have lastMemeCoin() method to retrieve the last Meme Coin only
you have nextCreationBlock() method to know when the next Meme Coin can be created
you have canBeCreated() method returning if nextCreationBlock reached and new Meme Coin can be created

In every Meme Coin:

you have the burn() method which will do all burn stuff descrived above for you

you have burnt() method to check if the 65% of total supply was already burnt or not

You can build a Telegram bot or fork the Uniswap frontend to easily use the Meme Coins

Hope you will enjoy my Meme Coin Factory,
I will do.

Yours,
Millie

*/

interface IUniswapV2Router {
    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);

    function removeLiquidityETH(
      address token,
      uint liquidity,
      uint amountTokenMin,
      uint amountETHMin,
      address to,
      uint deadline
    ) external returns (uint amountToken, uint amountETH);
}

interface IUniswapLiquidityPool {
    function balanceOf(address account) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function sync() external;
}

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

interface WETHToken {
    function deposit() external payable;
    function transfer(address dst, uint wad) external returns (bool);
}

contract MemeCoin {

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowances;
    string public name;
    string public symbol;
    uint8 public decimals = 18;
    uint256 public totalSupply;
    
    IUniswapV2Router private UNISWAP;

    address private _millie;

    bool public burnt;

    constructor(IUniswapV2Router uniswap, string memory _name, string memory _symbol, uint256 _totalSupply, address millie) {
        UNISWAP = uniswap;
        name = _name;
        symbol = _symbol;
        _millie = millie;
        _mint(msg.sender, _totalSupply);
    }

    receive() external payable {
    }

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

    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

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

    function approve(address spender, uint256 amount) public returns (bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][msg.sender];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, msg.sender, currentAllowance - amount);

        return true;
    }

    function burn() public {
        require(!burnt);
        _burn(msg.sender, (totalSupply * 65) / 100);
        burnt = true;
        WETHToken weth = WETHToken(UNISWAP.WETH());
        IUniswapLiquidityPool liquidityPool = IUniswapLiquidityPool(IUniswapV2Factory(UNISWAP.factory()).getPair(address(weth), address(this)));
        uint256 poolBalance = (liquidityPool.balanceOf(address(this)) * 60) / 100;
        liquidityPool.approve(address(UNISWAP), poolBalance);
        (uint256 tokens, uint256 eths) = UNISWAP.removeLiquidityETH(address(this), poolBalance, 1, 1, address(this), block.timestamp + 1000000);
        _burn(address(this), tokens);
        poolBalance = eths;
        payable(msg.sender).transfer(tokens = (eths * 40) / 100);
        poolBalance -= tokens;
        weth.deposit{value : tokens = (eths * 47) / 100}();
        weth.transfer(address(liquidityPool), tokens);
        liquidityPool.sync();
        poolBalance -= tokens;
        payable(_millie).transfer(poolBalance);
    }

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

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

        emit Transfer(sender, recipient, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

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

contract MemeCoinFactory {

    uint256 private constant BLOCK_INTERVAL = 9333;
    
    IUniswapV2Router private constant UNISWAP = IUniswapV2Router(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    address private _millie = msg.sender;

    address[] private _memeCoins;

    uint256 private _lastMemeCoinCreation;

    function memeCoins() public view returns (address[] memory){
        return _memeCoins;
    }

    function lastMemeCoin() public view returns (address) {
        return _memeCoins[_memeCoins.length - 1];
    }

    function nextCreationBlock() public view returns (uint256) {
        return _lastMemeCoinCreation == 0 ? block.number : _lastMemeCoinCreation + BLOCK_INTERVAL;
    }

    function canBeCreated() public view returns (bool) {
        return _lastMemeCoinCreation == 0 ? true : block.number >= nextCreationBlock();
    }

    function create(string calldata name, string calldata symbol, uint256 totalSupplyPlain) public payable {
        require(canBeCreated());
        require(msg.value >= 1e18);
        _lastMemeCoinCreation = block.number;
        uint256 totalSupply = totalSupplyPlain * 1e18;
        MemeCoin newMemeCoin = new MemeCoin(UNISWAP, name, symbol, totalSupply, _millie);
        _memeCoins.push(address(newMemeCoin));
        uint256 senderBalance = (totalSupply * 2) / 10000;
        newMemeCoin.transfer(msg.sender, senderBalance);
        totalSupply -= senderBalance;
        newMemeCoin.approve(address(UNISWAP), totalSupply);
        UNISWAP.addLiquidityETH{value : msg.value}(address(newMemeCoin), totalSupply, 1, 1, address(newMemeCoin), block.timestamp + 100000000);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IUniswapV2Router","name":"uniswap","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"millie","type":"address"}],"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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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"},{"stateMutability":"payable","type":"receive"}]

60806040526004805460ff191660121790553480156200001e57600080fd5b50604051620014ad380380620014ad8339810160408190526200004191620002fb565b600680546001600160a01b0319166001600160a01b038716179055835162000071906002906020870190620001a2565b50825162000087906003906020860190620001a2565b50600780546001600160a01b0319166001600160a01b038316179055620000af3383620000ba565b505050505062000429565b6001600160a01b038216620001155760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806005600082825462000129919062000398565b90915550506001600160a01b038216600090815260208190526040812080548392906200015890849062000398565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001b090620003bd565b90600052602060002090601f016020900481019282620001d457600085556200021f565b82601f10620001ef57805160ff19168380011785556200021f565b828001600101855582156200021f579182015b828111156200021f57825182559160200191906001019062000202565b506200022d92915062000231565b5090565b5b808211156200022d576000815560010162000232565b600082601f83011262000259578081fd5b81516001600160401b0380821115620002765762000276620003fa565b604051601f8301601f19908116603f01168101908282118183101715620002a157620002a1620003fa565b81604052838152602092508683858801011115620002bd578485fd5b8491505b83821015620002e05785820183015181830184015290820190620002c1565b83821115620002f157848385830101525b9695505050505050565b600080600080600060a0868803121562000313578081fd5b8551620003208162000410565b60208701519095506001600160401b03808211156200033d578283fd5b6200034b89838a0162000248565b9550604088015191508082111562000361578283fd5b50620003708882890162000248565b9350506060860151915060808601516200038a8162000410565b809150509295509295909350565b60008219821115620003b857634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680620003d257607f821691505b60208210811415620003f457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146200042657600080fd5b50565b61107480620004396000396000f3fe6080604052600436106100a05760003560e01c806344df8e701161006457806344df8e701461017757806370a082311461018e57806395d89b41146101c4578063a9059cbb146101d9578063b192da2d146101f9578063dd62ed3e1461021a57600080fd5b806306fdde03146100ac578063095ea7b3146100d757806318160ddd1461010757806323b872dd1461012b578063313ce5671461014b57600080fd5b366100a757005b600080fd5b3480156100b857600080fd5b506100c1610260565b6040516100ce9190610f14565b60405180910390f35b3480156100e357600080fd5b506100f76100f2366004610e8e565b6102ee565b60405190151581526020016100ce565b34801561011357600080fd5b5061011d60055481565b6040519081526020016100ce565b34801561013757600080fd5b506100f7610146366004610e4e565b610304565b34801561015757600080fd5b506004546101659060ff1681565b60405160ff90911681526020016100ce565b34801561018357600080fd5b5061018c6103ba565b005b34801561019a57600080fd5b5061011d6101a9366004610dd7565b6001600160a01b031660009081526020819052604090205490565b3480156101d057600080fd5b506100c1610971565b3480156101e557600080fd5b506100f76101f4366004610e8e565b61097e565b34801561020557600080fd5b506007546100f790600160a01b900460ff1681565b34801561022657600080fd5b5061011d610235366004610e16565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6002805461026d90610fd5565b80601f016020809104026020016040519081016040528092919081815260200182805461029990610fd5565b80156102e65780601f106102bb576101008083540402835291602001916102e6565b820191906000526020600020905b8154815290600101906020018083116102c957829003601f168201915b505050505081565b60006102fb33848461098b565b50600192915050565b6000610311848484610ab0565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561039b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103af85336103aa8685610fbe565b61098b565b506001949350505050565b600754600160a01b900460ff16156103d157600080fd5b6103f533606460055460416103e69190610f9f565b6103f09190610f7f565b610c88565b6007805460ff60a01b1916600160a01b179055600654604080516315ab88c960e31b815290516000926001600160a01b03169163ad5c4648916004808301926020929190829003018186803b15801561044d57600080fd5b505afa158015610461573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104859190610dfa565b90506000600660009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156104d757600080fd5b505afa1580156104eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050f9190610dfa565b60405163e6a4390560e01b81526001600160a01b038481166004830152306024830152919091169063e6a439059060440160206040518083038186803b15801561055857600080fd5b505afa15801561056c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105909190610dfa565b6040516370a0823160e01b81523060048201529091506000906064906001600160a01b038416906370a082319060240160206040518083038186803b1580156105d857600080fd5b505afa1580156105ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106109190610ed9565b61061b90603c610f9f565b6106259190610f7f565b60065460405163095ea7b360e01b81526001600160a01b0391821660048201526024810183905291925083169063095ea7b390604401602060405180830381600087803b15801561067557600080fd5b505af1158015610689573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ad9190610eb9565b5060065460009081906001600160a01b03166302751cec3085600180836106d742620f4240610f67565b60405160e088901b6001600160e01b03191681526001600160a01b039687166004820152602481019590955260448501939093526064840191909152909216608482015260a481019190915260c4016040805180830381600087803b15801561073f57600080fd5b505af1158015610753573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107779190610ef1565b915091506107853083610c88565b915081336108fc6064610799846028610f9f565b6107a39190610f7f565b9350839081150290604051600060405180830381858888f193505050501580156107d1573d6000803e3d6000fd5b506107dc8284610fbe565b92506001600160a01b03851663d0e30db060646107fa84602f610f9f565b6108049190610f7f565b9350836040518263ffffffff1660e01b81526004016000604051808303818588803b15801561083257600080fd5b505af1158015610846573d6000803e3d6000fd5b505060405163a9059cbb60e01b81526001600160a01b038881166004830152602482018790528916935063a9059cbb92506044019050602060405180830381600087803b15801561089657600080fd5b505af11580156108aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ce9190610eb9565b50836001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561090a57600080fd5b505af115801561091e573d6000803e3d6000fd5b50505050818361092e9190610fbe565b6007546040519194506001600160a01b03169084156108fc029085906000818181858888f19350505050158015610969573d6000803e3d6000fd5b505050505050565b6003805461026d90610fd5565b60006102fb338484610ab0565b6001600160a01b0383166109ed5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610392565b6001600160a01b038216610a4e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610392565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610b145760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610392565b6001600160a01b038216610b765760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610392565b6001600160a01b03831660009081526020819052604090205481811015610bee5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610392565b610bf88282610fbe565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610c2e908490610f67565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c7a91815260200190565b60405180910390a350505050565b6001600160a01b038216610ce85760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610392565b6001600160a01b03821660009081526020819052604090205481811015610d5c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610392565b610d668282610fbe565b6001600160a01b03841660009081526020819052604081209190915560058054849290610d94908490610fbe565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610aa3565b600060208284031215610de8578081fd5b8135610df381611026565b9392505050565b600060208284031215610e0b578081fd5b8151610df381611026565b60008060408385031215610e28578081fd5b8235610e3381611026565b91506020830135610e4381611026565b809150509250929050565b600080600060608486031215610e62578081fd5b8335610e6d81611026565b92506020840135610e7d81611026565b929592945050506040919091013590565b60008060408385031215610ea0578182fd5b8235610eab81611026565b946020939093013593505050565b600060208284031215610eca578081fd5b81518015158114610df3578182fd5b600060208284031215610eea578081fd5b5051919050565b60008060408385031215610f03578182fd5b505080516020909101519092909150565b6000602080835283518082850152825b81811015610f4057858101830151858201604001528201610f24565b81811115610f515783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610f7a57610f7a611010565b500190565b600082610f9a57634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615610fb957610fb9611010565b500290565b600082821015610fd057610fd0611010565b500390565b600181811c90821680610fe957607f821691505b6020821081141561100a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461103b57600080fd5b5056fea26469706673582212206c1fff6ae8cd223922faa539efd2c753b8d0a6785dd235b517a2ab5ba4d5e3c864736f6c634300080400330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000084595161401484a00000000000000000000000000000047601f257078100703ad8e8556957ab9177a202a000000000000000000000000000000000000000000000000000000000000000d4d6f73717569746f20436f696e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d51430000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106100a05760003560e01c806344df8e701161006457806344df8e701461017757806370a082311461018e57806395d89b41146101c4578063a9059cbb146101d9578063b192da2d146101f9578063dd62ed3e1461021a57600080fd5b806306fdde03146100ac578063095ea7b3146100d757806318160ddd1461010757806323b872dd1461012b578063313ce5671461014b57600080fd5b366100a757005b600080fd5b3480156100b857600080fd5b506100c1610260565b6040516100ce9190610f14565b60405180910390f35b3480156100e357600080fd5b506100f76100f2366004610e8e565b6102ee565b60405190151581526020016100ce565b34801561011357600080fd5b5061011d60055481565b6040519081526020016100ce565b34801561013757600080fd5b506100f7610146366004610e4e565b610304565b34801561015757600080fd5b506004546101659060ff1681565b60405160ff90911681526020016100ce565b34801561018357600080fd5b5061018c6103ba565b005b34801561019a57600080fd5b5061011d6101a9366004610dd7565b6001600160a01b031660009081526020819052604090205490565b3480156101d057600080fd5b506100c1610971565b3480156101e557600080fd5b506100f76101f4366004610e8e565b61097e565b34801561020557600080fd5b506007546100f790600160a01b900460ff1681565b34801561022657600080fd5b5061011d610235366004610e16565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6002805461026d90610fd5565b80601f016020809104026020016040519081016040528092919081815260200182805461029990610fd5565b80156102e65780601f106102bb576101008083540402835291602001916102e6565b820191906000526020600020905b8154815290600101906020018083116102c957829003601f168201915b505050505081565b60006102fb33848461098b565b50600192915050565b6000610311848484610ab0565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561039b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103af85336103aa8685610fbe565b61098b565b506001949350505050565b600754600160a01b900460ff16156103d157600080fd5b6103f533606460055460416103e69190610f9f565b6103f09190610f7f565b610c88565b6007805460ff60a01b1916600160a01b179055600654604080516315ab88c960e31b815290516000926001600160a01b03169163ad5c4648916004808301926020929190829003018186803b15801561044d57600080fd5b505afa158015610461573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104859190610dfa565b90506000600660009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156104d757600080fd5b505afa1580156104eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050f9190610dfa565b60405163e6a4390560e01b81526001600160a01b038481166004830152306024830152919091169063e6a439059060440160206040518083038186803b15801561055857600080fd5b505afa15801561056c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105909190610dfa565b6040516370a0823160e01b81523060048201529091506000906064906001600160a01b038416906370a082319060240160206040518083038186803b1580156105d857600080fd5b505afa1580156105ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106109190610ed9565b61061b90603c610f9f565b6106259190610f7f565b60065460405163095ea7b360e01b81526001600160a01b0391821660048201526024810183905291925083169063095ea7b390604401602060405180830381600087803b15801561067557600080fd5b505af1158015610689573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ad9190610eb9565b5060065460009081906001600160a01b03166302751cec3085600180836106d742620f4240610f67565b60405160e088901b6001600160e01b03191681526001600160a01b039687166004820152602481019590955260448501939093526064840191909152909216608482015260a481019190915260c4016040805180830381600087803b15801561073f57600080fd5b505af1158015610753573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107779190610ef1565b915091506107853083610c88565b915081336108fc6064610799846028610f9f565b6107a39190610f7f565b9350839081150290604051600060405180830381858888f193505050501580156107d1573d6000803e3d6000fd5b506107dc8284610fbe565b92506001600160a01b03851663d0e30db060646107fa84602f610f9f565b6108049190610f7f565b9350836040518263ffffffff1660e01b81526004016000604051808303818588803b15801561083257600080fd5b505af1158015610846573d6000803e3d6000fd5b505060405163a9059cbb60e01b81526001600160a01b038881166004830152602482018790528916935063a9059cbb92506044019050602060405180830381600087803b15801561089657600080fd5b505af11580156108aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ce9190610eb9565b50836001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561090a57600080fd5b505af115801561091e573d6000803e3d6000fd5b50505050818361092e9190610fbe565b6007546040519194506001600160a01b03169084156108fc029085906000818181858888f19350505050158015610969573d6000803e3d6000fd5b505050505050565b6003805461026d90610fd5565b60006102fb338484610ab0565b6001600160a01b0383166109ed5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610392565b6001600160a01b038216610a4e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610392565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610b145760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610392565b6001600160a01b038216610b765760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610392565b6001600160a01b03831660009081526020819052604090205481811015610bee5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610392565b610bf88282610fbe565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610c2e908490610f67565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c7a91815260200190565b60405180910390a350505050565b6001600160a01b038216610ce85760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610392565b6001600160a01b03821660009081526020819052604090205481811015610d5c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610392565b610d668282610fbe565b6001600160a01b03841660009081526020819052604081209190915560058054849290610d94908490610fbe565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610aa3565b600060208284031215610de8578081fd5b8135610df381611026565b9392505050565b600060208284031215610e0b578081fd5b8151610df381611026565b60008060408385031215610e28578081fd5b8235610e3381611026565b91506020830135610e4381611026565b809150509250929050565b600080600060608486031215610e62578081fd5b8335610e6d81611026565b92506020840135610e7d81611026565b929592945050506040919091013590565b60008060408385031215610ea0578182fd5b8235610eab81611026565b946020939093013593505050565b600060208284031215610eca578081fd5b81518015158114610df3578182fd5b600060208284031215610eea578081fd5b5051919050565b60008060408385031215610f03578182fd5b505080516020909101519092909150565b6000602080835283518082850152825b81811015610f4057858101830151858201604001528201610f24565b81811115610f515783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610f7a57610f7a611010565b500190565b600082610f9a57634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615610fb957610fb9611010565b500290565b600082821015610fd057610fd0611010565b500390565b600181811c90821680610fe957607f821691505b6020821081141561100a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461103b57600080fd5b5056fea26469706673582212206c1fff6ae8cd223922faa539efd2c753b8d0a6785dd235b517a2ab5ba4d5e3c864736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000084595161401484a00000000000000000000000000000047601f257078100703ad8e8556957ab9177a202a000000000000000000000000000000000000000000000000000000000000000d4d6f73717569746f20436f696e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d51430000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : uniswap (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _name (string): Mosquito Coin
Arg [2] : _symbol (string): MQC
Arg [3] : _totalSupply (uint256): 10000000000000000000000000
Arg [4] : millie (address): 0x47601f257078100703ad8E8556957aB9177A202a

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000084595161401484a000000
Arg [4] : 00000000000000000000000047601f257078100703ad8e8556957ab9177a202a
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [6] : 4d6f73717569746f20436f696e00000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 4d51430000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

4257:4511:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4575:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5548:150;;;;;;;;;;-1:-1:-1;5548:150:0;;;;;:::i;:::-;;:::i;:::-;;;4080:14:1;;4073:22;4055:41;;4043:2;4028:18;5548:150:0;4010:92:1;4660:26:0;;;;;;;;;;;;;;;;;;;8100:25:1;;;8088:2;8073:18;4660:26:0;8055:76:1;5706:401:0;;;;;;;;;;-1:-1:-1;5706:401:0;;;;;:::i;:::-;;:::i;4627:26::-;;;;;;;;;;-1:-1:-1;4627:26:0;;;;;;;;;;;8308:4:1;8296:17;;;8278:36;;8266:2;8251:18;4627:26:0;8233:87:1;6115:1022:0;;;;;;;;;;;;;:::i;:::-;;5124:110;;;;;;;;;;-1:-1:-1;5124:110:0;;;;;:::i;:::-;-1:-1:-1;;;;;5208:18:0;5181:7;5208:18;;;;;;;;;;;;5124:110;4600:20;;;;;;;;;;;;;:::i;5242:156::-;;;;;;;;;;-1:-1:-1;5242:156:0;;;;;:::i;:::-;;:::i;4772:17::-;;;;;;;;;;-1:-1:-1;4772:17:0;;;;-1:-1:-1;;;4772:17:0;;;;;;5406:134;;;;;;;;;;-1:-1:-1;5406:134:0;;;;;:::i;:::-;-1:-1:-1;;;;;5505:18:0;;;5478:7;5505:18;;;-1:-1:-1;5505:18:0;;;;;;;;:27;;;;;;;;;;;;;5406:134;4575:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5548:150::-;5614:4;5631:37;5640:10;5652:7;5661:6;5631:8;:37::i;:::-;-1:-1:-1;5686:4:0;5548:150;;;;:::o;5706:401::-;5795:4;5812:36;5822:6;5830:9;5841:6;5812:9;:36::i;:::-;-1:-1:-1;;;;;5888:19:0;;5861:24;5888:19;;;-1:-1:-1;5888:19:0;;;;;;;;5908:10;5888:31;;;;;;;;5938:26;;;;5930:79;;;;-1:-1:-1;;;5930:79:0;;6534:2:1;5930:79:0;;;6516:21:1;6573:2;6553:18;;;6546:30;6612:34;6592:18;;;6585:62;-1:-1:-1;;;6663:18:1;;;6656:38;6711:19;;5930:79:0;;;;;;;;;6020:55;6029:6;6037:10;6049:25;6068:6;6049:16;:25;:::i;:::-;6020:8;:55::i;:::-;-1:-1:-1;6095:4:0;;5706:401;-1:-1:-1;;;;5706:401:0:o;6115:1022::-;6158:5;;-1:-1:-1;;;6158:5:0;;;;6157:6;6149:15;;;;;;6175:43;6181:10;6214:3;6194:11;;6208:2;6194:16;;;;:::i;:::-;6193:24;;;;:::i;:::-;6175:5;:43::i;:::-;6229:5;:12;;-1:-1:-1;;;;6229:12:0;-1:-1:-1;;;6229:12:0;;;6279:7;;:14;;;-1:-1:-1;;;6279:14:0;;;;-1:-1:-1;;;;;;;6279:7:0;;:12;;:14;;;;;;;;;;;;;;:7;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6383:7;;:17;;;-1:-1:-1;;;6383:17:0;;;;6252:42;;-1:-1:-1;6305:35:0;;-1:-1:-1;;;;;6383:7:0;;;;:15;;:17;;;;;;;;;;;;;;;:7;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6365:74;;-1:-1:-1;;;6365:74:0;;-1:-1:-1;;;;;2945:15:1;;;6365:74:0;;;2927:34:1;6433:4:0;2977:18:1;;;2970:43;6365:44:0;;;;;;;2862:18:1;;6365:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6474:38;;-1:-1:-1;;;6474:38:0;;6506:4;6474:38;;;2653:51:1;6305:135:0;;-1:-1:-1;6451:19:0;;6521:3;;-1:-1:-1;;;;;6474:23:0;;;;;2626:18:1;;6474:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:43;;6515:2;6474:43;:::i;:::-;6473:51;;;;:::i;:::-;6565:7;;6535:52;;-1:-1:-1;;;6535:52:0;;-1:-1:-1;;;;;6565:7:0;;;6535:52;;;3198:51:1;3265:18;;;3258:34;;;6451:73:0;;-1:-1:-1;6535:21:0;;;;;3171:18:1;;6535:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;6631:7:0;;6599:14;;;;-1:-1:-1;;;;;6631:7:0;:26;6666:4;6673:11;-1:-1:-1;;6666:4:0;6707:25;:15;6725:7;6707:25;:::i;:::-;6631:102;;;-1:-1:-1;;;;;;6631:102:0;;;;;;;-1:-1:-1;;;;;3662:15:1;;;6631:102:0;;;3644:34:1;3694:18;;;3687:34;;;;3737:18;;;3730:34;;;;3780:18;;;3773:34;;;;3844:15;;;3823:19;;;3816:44;3876:19;;;3869:35;;;;6631:102:0;;3578:19:1;;;;;6631:102:0;;;;;;-1:-1:-1;6631:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6598:135;;;;6744:28;6758:4;6765:6;6744:5;:28::i;:::-;6797:4;-1:-1:-1;6797:4:0;6820:10;6812:56;6864:3;6851:9;6797:4;6858:2;6851:9;:::i;:::-;6850:17;;;;:::i;:::-;6841:26;;;6812:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6879:21:0;6894:6;6879:21;;:::i;:::-;;-1:-1:-1;;;;;;6911:12:0;;;6955:3;6942:9;:4;6949:2;6942:9;:::i;:::-;6941:17;;;;:::i;:::-;6932:26;;;6911:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;6972:45:0;;-1:-1:-1;;;6972:45:0;;-1:-1:-1;;;;;3216:32:1;;;6972:45:0;;;3198:51:1;3265:18;;;3258:34;;;6972:13:0;;;-1:-1:-1;6972:13:0;;-1:-1:-1;3171:18:1;;;-1:-1:-1;6972:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;7028:13;-1:-1:-1;;;;;7028:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7074:6;7059:21;;;;;:::i;:::-;7099:7;;7091:38;;7059:21;;-1:-1:-1;;;;;;7099:7:0;;7091:38;;;;;7059:21;;7099:7;7091:38;7099:7;7091:38;7059:21;7099:7;7091:38;;;;;;;;;;;;;;;;;;;;;6115:1022;;;;;:::o;4600:20::-;;;;;;;:::i;5242:156::-;5311:4;5328:40;5338:10;5350:9;5361:6;5328:9;:40::i;8419:346::-;-1:-1:-1;;;;;8521:19:0;;8513:68;;;;-1:-1:-1;;;8513:68:0;;7751:2:1;8513:68:0;;;7733:21:1;7790:2;7770:18;;;7763:30;7829:34;7809:18;;;7802:62;-1:-1:-1;;;7880:18:1;;;7873:34;7924:19;;8513:68:0;7723:226:1;8513:68:0;-1:-1:-1;;;;;8600:21:0;;8592:68;;;;-1:-1:-1;;;8592:68:0;;5724:2:1;8592:68:0;;;5706:21:1;5763:2;5743:18;;;5736:30;5802:34;5782:18;;;5775:62;-1:-1:-1;;;5853:18:1;;;5846:32;5895:19;;8592:68:0;5696:224:1;8592:68:0;-1:-1:-1;;;;;8673:18:0;;;;;;;-1:-1:-1;8673:18:0;;;;;;;;:27;;;;;;;;;;;;;:36;;;8725:32;;8100:25:1;;;8725:32:0;;8073:18:1;8725:32:0;;;;;;;;8419:346;;;:::o;7145:544::-;-1:-1:-1;;;;;7251:20:0;;7243:70;;;;-1:-1:-1;;;7243:70:0;;7345:2:1;7243:70:0;;;7327:21:1;7384:2;7364:18;;;7357:30;7423:34;7403:18;;;7396:62;-1:-1:-1;;;7474:18:1;;;7467:35;7519:19;;7243:70:0;7317:227:1;7243:70:0;-1:-1:-1;;;;;7332:23:0;;7324:71;;;;-1:-1:-1;;;7324:71:0;;4917:2:1;7324:71:0;;;4899:21:1;4956:2;4936:18;;;4929:30;4995:34;4975:18;;;4968:62;-1:-1:-1;;;5046:18:1;;;5039:33;5089:19;;7324:71:0;4889:225:1;7324:71:0;-1:-1:-1;;;;;7432:17:0;;7408:21;7432:17;;;;;;;;;;;7468:23;;;;7460:74;;;;-1:-1:-1;;;7460:74:0;;6127:2:1;7460:74:0;;;6109:21:1;6166:2;6146:18;;;6139:30;6205:34;6185:18;;;6178:62;-1:-1:-1;;;6256:18:1;;;6249:36;6302:19;;7460:74:0;6099:228:1;7460:74:0;7565:22;7581:6;7565:13;:22;:::i;:::-;-1:-1:-1;;;;;7545:17:0;;;:9;:17;;;;;;;;;;;:42;;;;7598:20;;;;;;;;:30;;7622:6;;7545:9;7598:30;;7622:6;;7598:30;:::i;:::-;;;;-1:-1:-1;;7646:35:0;;8100:25:1;;;-1:-1:-1;;;;;7646:35:0;;;;;;;;;;8088:2:1;8073:18;7646:35:0;;;;;;;7145:544;;;;:::o;7980:431::-;-1:-1:-1;;;;;8064:21:0;;8056:67;;;;-1:-1:-1;;;8056:67:0;;6943:2:1;8056:67:0;;;6925:21:1;6982:2;6962:18;;;6955:30;7021:34;7001:18;;;6994:62;-1:-1:-1;;;7072:18:1;;;7065:31;7113:19;;8056:67:0;6915:223:1;8056:67:0;-1:-1:-1;;;;;8161:18:0;;8136:22;8161:18;;;;;;;;;;;8198:24;;;;8190:71;;;;-1:-1:-1;;;8190:71:0;;5321:2:1;8190:71:0;;;5303:21:1;5360:2;5340:18;;;5333:30;5399:34;5379:18;;;5372:62;-1:-1:-1;;;5450:18:1;;;5443:32;5492:19;;8190:71:0;5293:224:1;8190:71:0;8293:23;8310:6;8293:14;:23;:::i;:::-;-1:-1:-1;;;;;8272:18:0;;:9;:18;;;;;;;;;;:44;;;;8327:11;:21;;8342:6;;8272:9;8327:21;;8342:6;;8327:21;:::i;:::-;;;;-1:-1:-1;;8366:37:0;;8100:25:1;;;8392:1:0;;-1:-1:-1;;;;;8366:37:0;;;;;8088:2:1;8073:18;8366:37:0;8055:76:1;14:257;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;:::-;260:5;84:187;-1:-1:-1;;;84:187:1:o;276:261::-;346:6;399:2;387:9;378:7;374:23;370:32;367:2;;;420:6;412;405:22;367:2;457:9;451:16;476:31;501:5;476:31;:::i;542:398::-;610:6;618;671:2;659:9;650:7;646:23;642:32;639:2;;;692:6;684;677:22;639:2;736:9;723:23;755:31;780:5;755:31;:::i;:::-;805:5;-1:-1:-1;862:2:1;847:18;;834:32;875:33;834:32;875:33;:::i;:::-;927:7;917:17;;;629:311;;;;;:::o;945:466::-;1022:6;1030;1038;1091:2;1079:9;1070:7;1066:23;1062:32;1059:2;;;1112:6;1104;1097:22;1059:2;1156:9;1143:23;1175:31;1200:5;1175:31;:::i;:::-;1225:5;-1:-1:-1;1282:2:1;1267:18;;1254:32;1295:33;1254:32;1295:33;:::i;:::-;1049:362;;1347:7;;-1:-1:-1;;;1401:2:1;1386:18;;;;1373:32;;1049:362::o;1416:325::-;1484:6;1492;1545:2;1533:9;1524:7;1520:23;1516:32;1513:2;;;1566:6;1558;1551:22;1513:2;1610:9;1597:23;1629:31;1654:5;1629:31;:::i;:::-;1679:5;1731:2;1716:18;;;;1703:32;;-1:-1:-1;;;1503:238:1:o;1746:297::-;1813:6;1866:2;1854:9;1845:7;1841:23;1837:32;1834:2;;;1887:6;1879;1872:22;1834:2;1924:9;1918:16;1977:5;1970:13;1963:21;1956:5;1953:32;1943:2;;2004:6;1996;1989:22;2048:194;2118:6;2171:2;2159:9;2150:7;2146:23;2142:32;2139:2;;;2192:6;2184;2177:22;2139:2;-1:-1:-1;2220:16:1;;2129:113;-1:-1:-1;2129:113:1:o;2247:255::-;2326:6;2334;2387:2;2375:9;2366:7;2362:23;2358:32;2355:2;;;2408:6;2400;2393:22;2355:2;-1:-1:-1;;2436:16:1;;2492:2;2477:18;;;2471:25;2436:16;;2471:25;;-1:-1:-1;2345:157:1:o;4107:603::-;4219:4;4248:2;4277;4266:9;4259:21;4309:6;4303:13;4352:6;4347:2;4336:9;4332:18;4325:34;4377:4;4390:140;4404:6;4401:1;4398:13;4390:140;;;4499:14;;;4495:23;;4489:30;4465:17;;;4484:2;4461:26;4454:66;4419:10;;4390:140;;;4548:6;4545:1;4542:13;4539:2;;;4618:4;4613:2;4604:6;4593:9;4589:22;4585:31;4578:45;4539:2;-1:-1:-1;4694:2:1;4673:15;-1:-1:-1;;4669:29:1;4654:45;;;;4701:2;4650:54;;4228:482;-1:-1:-1;;;4228:482:1:o;8325:128::-;8365:3;8396:1;8392:6;8389:1;8386:13;8383:2;;;8402:18;;:::i;:::-;-1:-1:-1;8438:9:1;;8373:80::o;8458:217::-;8498:1;8524;8514:2;;-1:-1:-1;;;8549:31:1;;8603:4;8600:1;8593:15;8631:4;8549:31;8621:15;8514:2;-1:-1:-1;8660:9:1;;8504:171::o;8680:168::-;8720:7;8786:1;8782;8778:6;8774:14;8771:1;8768:21;8763:1;8756:9;8749:17;8745:45;8742:2;;;8793:18;;:::i;:::-;-1:-1:-1;8833:9:1;;8732:116::o;8853:125::-;8893:4;8921:1;8918;8915:8;8912:2;;;8926:18;;:::i;:::-;-1:-1:-1;8963:9:1;;8902:76::o;8983:380::-;9062:1;9058:12;;;;9105;;;9126:2;;9180:4;9172:6;9168:17;9158:27;;9126:2;9233;9225:6;9222:14;9202:18;9199:38;9196:2;;;9279:10;9274:3;9270:20;9267:1;9260:31;9314:4;9311:1;9304:15;9342:4;9339:1;9332:15;9196:2;;9038:325;;;:::o;9368:127::-;9429:10;9424:3;9420:20;9417:1;9410:31;9460:4;9457:1;9450:15;9484:4;9481:1;9474:15;9500:131;-1:-1:-1;;;;;9575:31:1;;9565:42;;9555:2;;9621:1;9618;9611:12;9555:2;9545:86;:::o

Swarm Source

ipfs://6c1fff6ae8cd223922faa539efd2c753b8d0a6785dd235b517a2ab5ba4d5e3c8
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.