ETH Price: $3,178.17 (+1.39%)
Gas: 8 Gwei

Token

KASPAMINING (KMN)
 

Overview

Max Total Supply

100,000,000 KMN

Holders

774

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

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

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

Contract Source Code Verified (Exact Match)

Contract Name:
KASPAMINING

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 999 runs

Other Settings:
byzantium EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-08
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.12;

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

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

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

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

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

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

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

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

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

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

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

    /* solhint-disable-next-line func-name-mixedcase */
    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 KASPAMINING is Context, IERC20 {
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;


    address payable private constant TREASURY_WALLET = payable(0x375Ad7A3f94441b2A5b093169893aA3F6D1D3d3a);

    uint256 public constant INIT_TAX = 30;
    uint256 public constant N_FIRST_SWAPS = 50;
    uint256 public _currentSwap;

    uint256 public constant BUY_TAX = 3;
    uint256 public constant SELL_TAX = 3;

    string private constant _NAME = "KASPAMINING";
    string private constant _SYMBOL = "KMN";
    uint8 private constant _DECIMALS = 9;
    uint256 private constant _SUPPLY = 100_000_000 * 10 ** _DECIMALS; 

    uint256 public constant MAX_TX_AMOUNT = _SUPPLY / 100; //1%
    uint256 public constant MAX_WALLET_SIZE = _SUPPLY / 50; //2%
    uint256 public constant TAX_SWAP_THRESHOLD = _SUPPLY / 2000; //0.05%
    uint256 public constant MAX_TAX_SWAP = _SUPPLY / 1000; //0.1%

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

    modifier lockTheSwap() {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor() {
        _balances[TREASURY_WALLET] = _SUPPLY;

        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());

        emit Transfer(address(0), TREASURY_WALLET, _SUPPLY);
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public pure returns (string memory) {
        return _NAME;
    }

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

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

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

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

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

    /**
     * @dev See previous function, same functionality but recipient is dead address.
     *
     * Requirements:
     *
     * - the caller must have a balance of at least `amount`.
     */
    function burn(uint256 amount) public returns (bool) {
        _transfer(_msgSender(), address(0xdEaD), amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        require(_allowances[sender][_msgSender()] >= amount, "ERC20: transfer amount exceeds allowance");
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()] - amount);
        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `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");

        if (to != address(this) && to != uniswapV2Pair && _currentSwap < N_FIRST_SWAPS && to != TREASURY_WALLET && from != TREASURY_WALLET) {
            uint256 heldTokens = balanceOf(to);
            require(
                (heldTokens + amount) <= MAX_WALLET_SIZE,
                "Total Holding is currently limited, you can not buy that much."
            );
            require(amount <= MAX_TX_AMOUNT, "TX Limit Exceeded");
        }

        uint256 taxAmount = 0;   
        uint256 taxApply = 0;    
        if(to != TREASURY_WALLET && from != TREASURY_WALLET) {
            if (from == uniswapV2Pair && to != address(this)) {                
                taxApply = _currentSwap < N_FIRST_SWAPS ? INIT_TAX : BUY_TAX;
            }
            if (to == uniswapV2Pair && from != address(this)) {
                taxApply = _currentSwap < N_FIRST_SWAPS ? INIT_TAX : SELL_TAX;
            }
        }
        taxAmount = amount * taxApply / 100;        

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

        if (taxAmount > 0) {
            _currentSwap++;
            _balances[address(this)] += taxAmount;
            emit Transfer(from, address(this), taxAmount);
        }

        _balances[from] -= amount;
        _balances[to] += (amount - taxAmount);
        emit Transfer(from, to, amount - taxAmount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) 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 min(uint256 a, uint256 b) private pure returns (uint256) {
        return (a > b) ? b : a;
    }

    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        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 sendETHToFee(uint256 amount) private {
        TREASURY_WALLET.transfer(amount);
    }

    function openTrading() external payable {
        require(!tradingOpen, "Trading is already open");
        require(msg.sender == TREASURY_WALLET, "Not allowed");
        
        _approve(address(this), address(uniswapV2Router), type(uint256).max);        
        uniswapV2Router.addLiquidityETH{value: msg.value}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            address(msg.sender),
            block.timestamp
        );
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
        swapEnabled = true;
        tradingOpen = true;
    }

    /* solhint-disable-next-line no-empty-blocks */
    receive() external payable {}
}

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":[],"name":"BUY_TAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INIT_TAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TAX_SWAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TX_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WALLET_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"N_FIRST_SWAPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SELL_TAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TAX_SWAP_THRESHOLD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_currentSwap","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"payable","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":[{"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"}]

60c06040526003805462ffff00191690553480156200001d57600080fd5b506200002c6009600a620003d8565b6200003c906305f5e100620003f0565b73375ad7a3f94441b2a5b093169893aa3f6d1d3d3a600090815260209081527feff7c2562760576c67fbf50ebf6743615f8441055c2b3013519848bfd2939aeb91909155737a250d5630b4cf539739df2c5dacb4c659f2488d6080819052604080517fc45a01550000000000000000000000000000000000000000000000000000000081529051919263c45a0155926004808401938290030181865afa158015620000eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000111919062000412565b600160a060020a031663c9c6539630608051600160a060020a031663ad5c46486040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381865afa1580156200017d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a3919062000412565b6040517c010000000000000000000000000000000000000000000000000000000063ffffffff8516028152600160a060020a039283166004820152911660248201526044016020604051808303816000875af115801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e919062000412565b600160a060020a031660a05273375ad7a3f94441b2a5b093169893aa3f6d1d3d3a60007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620002806009600a620003d8565b62000290906305f5e100620003f0565b60405190815260200160405180910390a36200043d565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600181815b8085111562000319578160001904821115620002fb57620002fb620002a7565b808516156200030957918102915b60029094049390800290620002db565b509250929050565b6000826200033257506001620003d2565b816200034157506000620003d2565b81600181146200035a5760028114620003655762000386565b6001915050620003d2565b60ff841115620003795762000379620002a7565b8360020a915050620003d2565b5060208310610133831016604e8410600b8410161715620003ab575081810a620003d2565b620003b78383620002d6565b8060001904821115620003ce57620003ce620002a7565b0290505b92915050565b6000620003e960ff84168362000321565b9392505050565b60008160001904831182151516156200040d576200040d620002a7565b500290565b6000602082840312156200042557600080fd5b8151600160a060020a0381168114620003e957600080fd5b60805160a0516118f5620004a26000396000818161094e01528181610cd401528181610f0601528181610f6c015261100f0152600081816107d5015281816107fe0152818161091e015281816112920152818161136701526113bc01526118f56000f3fe608060405260043610610196576000357c01000000000000000000000000000000000000000000000000000000009004806370a08231116100e8578063c3ea6b2c1161009c578063dd62ed3e11610076578063dd62ed3e14610409578063e3ec905d1461044f578063fa7eec7c1461046557600080fd5b8063c3ea6b2c146103d5578063c9567bf9146103ea578063cb05afbd146103f457600080fd5b806395d89b41116100cd57806395d89b411461034f578063a457c2d714610395578063a9059cbb146103b557600080fd5b806370a08231146103045780638ae2702f1461033a57600080fd5b806328df9ada1161014a57806342966c681161012457806342966c68146102cf5780634f054317146102ef57806354ad8aee146101a257600080fd5b806328df9ada1461027e578063313ce5671461029357806339509351146102af57600080fd5b8063095ea7b31161017b578063095ea7b31461021957806318160ddd1461024957806323b872dd1461025e57600080fd5b806302af37bb146101a257806306fdde03146101ca57600080fd5b3661019d57005b600080fd5b3480156101ae57600080fd5b506101b7600381565b6040519081526020015b60405180910390f35b3480156101d657600080fd5b5060408051808201909152600b81527f4b415350414d494e494e4700000000000000000000000000000000000000000060208201525b6040516101c19190611480565b34801561022557600080fd5b506102396102343660046114ed565b61047a565b60405190151581526020016101c1565b34801561025557600080fd5b506101b7610491565b34801561026a57600080fd5b50610239610279366004611519565b6104b2565b34801561028a57600080fd5b506101b76105a8565b34801561029f57600080fd5b50604051600981526020016101c1565b3480156102bb57600080fd5b506102396102ca3660046114ed565b6105d2565b3480156102db57600080fd5b506102396102ea36600461155a565b610609565b3480156102fb57600080fd5b506101b7610620565b34801561031057600080fd5b506101b761031f366004611573565b600160a060020a031660009081526020819052604090205490565b34801561034657600080fd5b506101b761062e565b34801561035b57600080fd5b5060408051808201909152600381527f4b4d4e0000000000000000000000000000000000000000000000000000000000602082015261020c565b3480156103a157600080fd5b506102396103b03660046114ed565b61063c565b3480156103c157600080fd5b506102396103d03660046114ed565b6106ed565b3480156103e157600080fd5b506101b76106fa565b6103f2610709565b005b34801561040057600080fd5b506101b7601e81565b34801561041557600080fd5b506101b7610424366004611590565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b34801561045b57600080fd5b506101b760025481565b34801561047157600080fd5b506101b7603281565b60006104873384846109d0565b5060015b92915050565b600061049f6009600a6116df565b6104ad906305f5e1006116ee565b905090565b600160a060020a0383166000908152600160209081526040808320338452909152812054821115610558576040516000805160206118a0833981519152815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610563848484610b38565b600160a060020a03841660009081526001602090815260408083203380855292529091205461059e91869161059990869061170d565b6109d0565b5060019392505050565b6107d06105b76009600a6116df565b6105c5906305f5e1006116ee565b6105cf9190611724565b81565b336000818152600160209081526040808320600160a060020a0387168452909152812054909161048791859061059990869061175f565b60006106183361dead84610b38565b506001919050565b60326105b76009600a6116df565b60646105b76009600a6116df565b336000908152600160209081526040808320600160a060020a0386168452909152812054828110156106de576040516000805160206118a0833981519152815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161054f565b61059e3385610599868561170d565b6000610487338484610b38565b6103e86105b76009600a6116df565b60035460ff1615610764576040516000805160206118a0833981519152815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e000000000000000000604482015260640161054f565b3373375ad7a3f94441b2a5b093169893aa3f6d1d3d3a146107cf576040516000805160206118a0833981519152815260206004820152600b60248201527f4e6f7420616c6c6f776564000000000000000000000000000000000000000000604482015260640161054f565b6107fc307f00000000000000000000000000000000000000000000000000000000000000006000196109d0565b7f0000000000000000000000000000000000000000000000000000000000000000600160a060020a031663f305d719343061084c30600160a060020a031660009081526020819052604090205490565b6040517c010000000000000000000000000000000000000000000000000000000063ffffffff8616028152600160a060020a039092166004830152602482015260006044820181905260648201523360848201524260a482015260c40160606040518083038185885af11580156108c7573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906108ec9190611777565b50506040517f095ea7b3000000000000000000000000000000000000000000000000000000008152600160a060020a037f00000000000000000000000000000000000000000000000000000000000000008116600483015260001960248301527f000000000000000000000000000000000000000000000000000000000000000016915063095ea7b3906044016020604051808303816000875af1158015610998573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109bc91906117a5565b506003805462ff00ff191662010001179055565b600160a060020a038316610a53576040516000805160206118a08339815191528152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161054f565b600160a060020a038216610ad7576040516000805160206118a0833981519152815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161054f565b600160a060020a0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600160a060020a038316610bbc576040516000805160206118a0833981519152815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161054f565b600160a060020a038216610c40576040516000805160206118a0833981519152815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161054f565b60008111610cbe576040516000805160206118a0833981519152815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f0000000000000000000000000000000000000000000000606482015260840161054f565b600160a060020a0382163014801590610d0957507f0000000000000000000000000000000000000000000000000000000000000000600160a060020a031682600160a060020a031614155b8015610d1757506032600254105b8015610d405750600160a060020a03821673375ad7a3f94441b2a5b093169893aa3f6d1d3d3a14155b8015610d695750600160a060020a03831673375ad7a3f94441b2a5b093169893aa3f6d1d3d3a14155b15610eb257600160a060020a0382166000908152602081905260409020546032610d956009600a6116df565b610da3906305f5e1006116ee565b610dad9190611724565b610db7838361175f565b1115610e33576040516000805160206118a0833981519152815260206004820152603e60248201527f546f74616c20486f6c64696e672069732063757272656e746c79206c696d697460448201527f65642c20796f752063616e206e6f74206275792074686174206d7563682e0000606482015260840161054f565b6064610e416009600a6116df565b610e4f906305f5e1006116ee565b610e599190611724565b821115610eb0576040516000805160206118a0833981519152815260206004820152601160248201527f5458204c696d6974204578636565646564000000000000000000000000000000604482015260640161054f565b505b600080600160a060020a03841673375ad7a3f94441b2a5b093169893aa3f6d1d3d3a14801590610eff5750600160a060020a03851673375ad7a3f94441b2a5b093169893aa3f6d1d3d3a14155b15610fd0577f0000000000000000000000000000000000000000000000000000000000000000600160a060020a031685600160a060020a0316148015610f4e5750600160a060020a0384163014155b15610f6a57603260025410610f64576003610f67565b601e5b90505b7f0000000000000000000000000000000000000000000000000000000000000000600160a060020a031684600160a060020a0316148015610fb45750600160a060020a0385163014155b15610fd057603260025410610fca576003610fcd565b601e5b90505b6064610fdc82856116ee565b610fe69190611724565b3060009081526020819052604090205460035491935090610100900460ff1615801561104357507f0000000000000000000000000000000000000000000000000000000000000000600160a060020a031685600160a060020a0316145b8015611057575060035462010000900460ff165b801561108857506107d061106d6009600a6116df565b61107b906305f5e1006116ee565b6110859190611724565b81115b156110dd576110c96110c4856110bf846103e86110a76009600a6116df565b6110b5906305f5e1006116ee565b6110bf9190611724565b611214565b61122c565b303180156110db576110db303161143b565b505b821561115d57600280549060006110f3836117c7565b9091555050306000908152602081905260408120805485929061111790849061175f565b90915550506040518381523090600160a060020a038816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b600160a060020a0386166000908152602081905260408120805486929061118590849061170d565b909155506111959050838561170d565b600160a060020a038616600090815260208190526040812080549091906111bd90849061175f565b9091555050600160a060020a038086169087167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6111fb868861170d565b60405190815260200160405180910390a3505050505050565b60008183116112235782611225565b815b9392505050565b6003805461ff0019166101001790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611270576112706117e2565b6020026020010190600160a060020a03169081600160a060020a0316815250507f0000000000000000000000000000000000000000000000000000000000000000600160a060020a031663ad5c46486040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381865afa15801561130a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132e9190611811565b81600181518110611341576113416117e2565b6020026020010190600160a060020a03169081600160a060020a03168152505061138c307f0000000000000000000000000000000000000000000000000000000000000000846109d0565b6040517f791ac947000000000000000000000000000000000000000000000000000000008152600160a060020a037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906113fa90859060009086903090429060040161182e565b600060405180830381600087803b15801561141457600080fd5b505af1158015611428573d6000803e3d6000fd5b50506003805461ff001916905550505050565b60405173375ad7a3f94441b2a5b093169893aa3f6d1d3d3a9082156108fc029083906000818181858888f1935050505015801561147c573d6000803e3d6000fd5b5050565b600060208083528351808285015260005b818110156114ad57858101830151858201604001528201611491565b818111156114bf576000604083870101525b50601f01601f1916929092016040019392505050565b600160a060020a03811681146114ea57600080fd5b50565b6000806040838503121561150057600080fd5b823561150b816114d5565b946020939093013593505050565b60008060006060848603121561152e57600080fd5b8335611539816114d5565b92506020840135611549816114d5565b929592945050506040919091013590565b60006020828403121561156c57600080fd5b5035919050565b60006020828403121561158557600080fd5b8135611225816114d5565b600080604083850312156115a357600080fd5b82356115ae816114d5565b915060208301356115be816114d5565b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600181815b80851115611635578160001904821115611619576116196115c9565b8085161561162657918102915b600290940493908002906115fd565b509250929050565b60008261164c5750600161048b565b816116595750600061048b565b816001811461166f576002811461167957611696565b600191505061048b565b60ff84111561168a5761168a6115c9565b8360020a91505061048b565b5060208310610133831016604e8410600b84101617156116b9575081810a61048b565b6116c383836115f8565b80600019048211156116d7576116d76115c9565b029392505050565b600061122560ff84168361163d565b6000816000190483118215151615611708576117086115c9565b500290565b60008282101561171f5761171f6115c9565b500390565b60008261175a577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60008219821115611772576117726115c9565b500190565b60008060006060848603121561178c57600080fd5b8351925060208401519150604084015190509250925092565b6000602082840312156117b757600080fd5b8151801515811461122557600080fd5b60006000198214156117db576117db6115c9565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561182357600080fd5b8151611225816114d5565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561187e578451600160a060020a031683529383019391830191600101611859565b5050600160a060020a0396909616606085015250505060800152939250505056fe08c379a000000000000000000000000000000000000000000000000000000000a2646970667358221220f97ea2d94268e3e0d9271e317e0f8fb6f99f0450933fef6857ad58989b2d7b6264736f6c634300080c0033

Deployed Bytecode

0x608060405260043610610196576000357c01000000000000000000000000000000000000000000000000000000009004806370a08231116100e8578063c3ea6b2c1161009c578063dd62ed3e11610076578063dd62ed3e14610409578063e3ec905d1461044f578063fa7eec7c1461046557600080fd5b8063c3ea6b2c146103d5578063c9567bf9146103ea578063cb05afbd146103f457600080fd5b806395d89b41116100cd57806395d89b411461034f578063a457c2d714610395578063a9059cbb146103b557600080fd5b806370a08231146103045780638ae2702f1461033a57600080fd5b806328df9ada1161014a57806342966c681161012457806342966c68146102cf5780634f054317146102ef57806354ad8aee146101a257600080fd5b806328df9ada1461027e578063313ce5671461029357806339509351146102af57600080fd5b8063095ea7b31161017b578063095ea7b31461021957806318160ddd1461024957806323b872dd1461025e57600080fd5b806302af37bb146101a257806306fdde03146101ca57600080fd5b3661019d57005b600080fd5b3480156101ae57600080fd5b506101b7600381565b6040519081526020015b60405180910390f35b3480156101d657600080fd5b5060408051808201909152600b81527f4b415350414d494e494e4700000000000000000000000000000000000000000060208201525b6040516101c19190611480565b34801561022557600080fd5b506102396102343660046114ed565b61047a565b60405190151581526020016101c1565b34801561025557600080fd5b506101b7610491565b34801561026a57600080fd5b50610239610279366004611519565b6104b2565b34801561028a57600080fd5b506101b76105a8565b34801561029f57600080fd5b50604051600981526020016101c1565b3480156102bb57600080fd5b506102396102ca3660046114ed565b6105d2565b3480156102db57600080fd5b506102396102ea36600461155a565b610609565b3480156102fb57600080fd5b506101b7610620565b34801561031057600080fd5b506101b761031f366004611573565b600160a060020a031660009081526020819052604090205490565b34801561034657600080fd5b506101b761062e565b34801561035b57600080fd5b5060408051808201909152600381527f4b4d4e0000000000000000000000000000000000000000000000000000000000602082015261020c565b3480156103a157600080fd5b506102396103b03660046114ed565b61063c565b3480156103c157600080fd5b506102396103d03660046114ed565b6106ed565b3480156103e157600080fd5b506101b76106fa565b6103f2610709565b005b34801561040057600080fd5b506101b7601e81565b34801561041557600080fd5b506101b7610424366004611590565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b34801561045b57600080fd5b506101b760025481565b34801561047157600080fd5b506101b7603281565b60006104873384846109d0565b5060015b92915050565b600061049f6009600a6116df565b6104ad906305f5e1006116ee565b905090565b600160a060020a0383166000908152600160209081526040808320338452909152812054821115610558576040516000805160206118a0833981519152815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610563848484610b38565b600160a060020a03841660009081526001602090815260408083203380855292529091205461059e91869161059990869061170d565b6109d0565b5060019392505050565b6107d06105b76009600a6116df565b6105c5906305f5e1006116ee565b6105cf9190611724565b81565b336000818152600160209081526040808320600160a060020a0387168452909152812054909161048791859061059990869061175f565b60006106183361dead84610b38565b506001919050565b60326105b76009600a6116df565b60646105b76009600a6116df565b336000908152600160209081526040808320600160a060020a0386168452909152812054828110156106de576040516000805160206118a0833981519152815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161054f565b61059e3385610599868561170d565b6000610487338484610b38565b6103e86105b76009600a6116df565b60035460ff1615610764576040516000805160206118a0833981519152815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e000000000000000000604482015260640161054f565b3373375ad7a3f94441b2a5b093169893aa3f6d1d3d3a146107cf576040516000805160206118a0833981519152815260206004820152600b60248201527f4e6f7420616c6c6f776564000000000000000000000000000000000000000000604482015260640161054f565b6107fc307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6000196109d0565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600160a060020a031663f305d719343061084c30600160a060020a031660009081526020819052604090205490565b6040517c010000000000000000000000000000000000000000000000000000000063ffffffff8616028152600160a060020a039092166004830152602482015260006044820181905260648201523360848201524260a482015260c40160606040518083038185885af11580156108c7573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906108ec9190611777565b50506040517f095ea7b3000000000000000000000000000000000000000000000000000000008152600160a060020a037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8116600483015260001960248301527f00000000000000000000000094fc2c96dd09f2f2ffe748b0c2db8badd75dbc1f16915063095ea7b3906044016020604051808303816000875af1158015610998573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109bc91906117a5565b506003805462ff00ff191662010001179055565b600160a060020a038316610a53576040516000805160206118a08339815191528152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161054f565b600160a060020a038216610ad7576040516000805160206118a0833981519152815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161054f565b600160a060020a0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600160a060020a038316610bbc576040516000805160206118a0833981519152815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161054f565b600160a060020a038216610c40576040516000805160206118a0833981519152815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161054f565b60008111610cbe576040516000805160206118a0833981519152815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f0000000000000000000000000000000000000000000000606482015260840161054f565b600160a060020a0382163014801590610d0957507f00000000000000000000000094fc2c96dd09f2f2ffe748b0c2db8badd75dbc1f600160a060020a031682600160a060020a031614155b8015610d1757506032600254105b8015610d405750600160a060020a03821673375ad7a3f94441b2a5b093169893aa3f6d1d3d3a14155b8015610d695750600160a060020a03831673375ad7a3f94441b2a5b093169893aa3f6d1d3d3a14155b15610eb257600160a060020a0382166000908152602081905260409020546032610d956009600a6116df565b610da3906305f5e1006116ee565b610dad9190611724565b610db7838361175f565b1115610e33576040516000805160206118a0833981519152815260206004820152603e60248201527f546f74616c20486f6c64696e672069732063757272656e746c79206c696d697460448201527f65642c20796f752063616e206e6f74206275792074686174206d7563682e0000606482015260840161054f565b6064610e416009600a6116df565b610e4f906305f5e1006116ee565b610e599190611724565b821115610eb0576040516000805160206118a0833981519152815260206004820152601160248201527f5458204c696d6974204578636565646564000000000000000000000000000000604482015260640161054f565b505b600080600160a060020a03841673375ad7a3f94441b2a5b093169893aa3f6d1d3d3a14801590610eff5750600160a060020a03851673375ad7a3f94441b2a5b093169893aa3f6d1d3d3a14155b15610fd0577f00000000000000000000000094fc2c96dd09f2f2ffe748b0c2db8badd75dbc1f600160a060020a031685600160a060020a0316148015610f4e5750600160a060020a0384163014155b15610f6a57603260025410610f64576003610f67565b601e5b90505b7f00000000000000000000000094fc2c96dd09f2f2ffe748b0c2db8badd75dbc1f600160a060020a031684600160a060020a0316148015610fb45750600160a060020a0385163014155b15610fd057603260025410610fca576003610fcd565b601e5b90505b6064610fdc82856116ee565b610fe69190611724565b3060009081526020819052604090205460035491935090610100900460ff1615801561104357507f00000000000000000000000094fc2c96dd09f2f2ffe748b0c2db8badd75dbc1f600160a060020a031685600160a060020a0316145b8015611057575060035462010000900460ff165b801561108857506107d061106d6009600a6116df565b61107b906305f5e1006116ee565b6110859190611724565b81115b156110dd576110c96110c4856110bf846103e86110a76009600a6116df565b6110b5906305f5e1006116ee565b6110bf9190611724565b611214565b61122c565b303180156110db576110db303161143b565b505b821561115d57600280549060006110f3836117c7565b9091555050306000908152602081905260408120805485929061111790849061175f565b90915550506040518381523090600160a060020a038816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b600160a060020a0386166000908152602081905260408120805486929061118590849061170d565b909155506111959050838561170d565b600160a060020a038616600090815260208190526040812080549091906111bd90849061175f565b9091555050600160a060020a038086169087167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6111fb868861170d565b60405190815260200160405180910390a3505050505050565b60008183116112235782611225565b815b9392505050565b6003805461ff0019166101001790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611270576112706117e2565b6020026020010190600160a060020a03169081600160a060020a0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600160a060020a031663ad5c46486040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381865afa15801561130a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132e9190611811565b81600181518110611341576113416117e2565b6020026020010190600160a060020a03169081600160a060020a03168152505061138c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846109d0565b6040517f791ac947000000000000000000000000000000000000000000000000000000008152600160a060020a037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906113fa90859060009086903090429060040161182e565b600060405180830381600087803b15801561141457600080fd5b505af1158015611428573d6000803e3d6000fd5b50506003805461ff001916905550505050565b60405173375ad7a3f94441b2a5b093169893aa3f6d1d3d3a9082156108fc029083906000818181858888f1935050505015801561147c573d6000803e3d6000fd5b5050565b600060208083528351808285015260005b818110156114ad57858101830151858201604001528201611491565b818111156114bf576000604083870101525b50601f01601f1916929092016040019392505050565b600160a060020a03811681146114ea57600080fd5b50565b6000806040838503121561150057600080fd5b823561150b816114d5565b946020939093013593505050565b60008060006060848603121561152e57600080fd5b8335611539816114d5565b92506020840135611549816114d5565b929592945050506040919091013590565b60006020828403121561156c57600080fd5b5035919050565b60006020828403121561158557600080fd5b8135611225816114d5565b600080604083850312156115a357600080fd5b82356115ae816114d5565b915060208301356115be816114d5565b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600181815b80851115611635578160001904821115611619576116196115c9565b8085161561162657918102915b600290940493908002906115fd565b509250929050565b60008261164c5750600161048b565b816116595750600061048b565b816001811461166f576002811461167957611696565b600191505061048b565b60ff84111561168a5761168a6115c9565b8360020a91505061048b565b5060208310610133831016604e8410600b84101617156116b9575081810a61048b565b6116c383836115f8565b80600019048211156116d7576116d76115c9565b029392505050565b600061122560ff84168361163d565b6000816000190483118215151615611708576117086115c9565b500290565b60008282101561171f5761171f6115c9565b500390565b60008261175a577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60008219821115611772576117726115c9565b500190565b60008060006060848603121561178c57600080fd5b8351925060208401519150604084015190509250925092565b6000602082840312156117b757600080fd5b8151801515811461122557600080fd5b60006000198214156117db576117db6115c9565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561182357600080fd5b8151611225816114d5565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561187e578451600160a060020a031683529383019391830191600101611859565b5050600160a060020a0396909616606085015250505060800152939250505056fe08c379a000000000000000000000000000000000000000000000000000000000a2646970667358221220f97ea2d94268e3e0d9271e317e0f8fb6f99f0450933fef6857ad58989b2d7b6264736f6c634300080c0033

Deployed Bytecode Sourcemap

4323:11448:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4740:35;;;;;;;;;;;;4774:1;4740:35;;;;;160:25:1;;;148:2;133:18;4740:35:0;;;;;;;;6044:83;;;;;;;;;;-1:-1:-1;6114:5:0;;;;;;;;;;;;;;;;;6044:83;;;;;;;:::i;8484:161::-;;;;;;;;;;-1:-1:-1;8484:161:0;;;;;:::i;:::-;;:::i;:::-;;;1442:14:1;;1435:22;1417:41;;1405:2;1390:18;8484:161:0;1277:187:1;7120:95:0;;;;;;;;;;;;;:::i;9127:373::-;;;;;;;;;;-1:-1:-1;9127:373:0;;;;;:::i;:::-;;:::i;5173:59::-;;;;;;;;;;;;;:::i;6972:83::-;;;;;;;;;;-1:-1:-1;6972:83:0;;4960:1;2072:36:1;;2060:2;2045:18;6972:83:0;1930:184:1;9909:207:0;;;;;;;;;;-1:-1:-1;9909:207:0;;;;;:::i;:::-;;:::i;7990:141::-;;;;;;;;;;-1:-1:-1;7990:141:0;;;;;:::i;:::-;;:::i;5107:54::-;;;;;;;;;;;;;:::i;7278:119::-;;;;;;;;;;-1:-1:-1;7278:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;7371:18:0;7344:7;7371:18;;;;;;;;;;;;7278:119;5042:53;;;;;;;;;;;;;:::i;6246:87::-;;;;;;;;;;-1:-1:-1;6318:7:0;;;;;;;;;;;;;;;;;6246:87;;10619:369;;;;;;;;;;-1:-1:-1;10619:369:0;;;;;:::i;:::-;;:::i;7610:167::-;;;;;;;;;;-1:-1:-1;7610:167:0;;;;;:::i;:::-;;:::i;5247:53::-;;;;;;;;;;;;;:::i;15036:642::-;;;:::i;:::-;;4611:37;;;;;;;;;;;;4646:2;4611:37;;8194:143;;;;;;;;;;-1:-1:-1;8194:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;8302:18:0;;;8275:7;8302:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8194:143;4704:27;;;;;;;;;;;;;;;;4655:42;;;;;;;;;;;;4695:2;4655:42;;8484:161;8559:4;8576:39;683:10;8599:7;8608:6;8576:8;:39::i;:::-;-1:-1:-1;8633:4:0;8484:161;;;;;:::o;7120:95::-;7173:7;5017:15;4960:1;5017:2;:15;:::i;:::-;5003:29;;:11;:29;:::i;:::-;7193:14;;7120:95;:::o;9127:373::-;-1:-1:-1;;;;;9250:19:0;;9225:4;9250:19;;;:11;:19;;;;;;;;683:10;9250:33;;;;;;;;:43;-1:-1:-1;9250:43:0;9242:96;;;;-1:-1:-1;;;;;;;;;;;9242:96:0;;4893:2:1;9242:96:0;;;4875:21:1;4932:2;4912:18;;;4905:30;4971:34;4951:18;;;4944:62;5042:10;5022:18;;;5015:38;5070:19;;9242:96:0;;;;;;;;;9349:36;9359:6;9367:9;9378:6;9349:9;:36::i;:::-;-1:-1:-1;;;;;9427:19:0;;;;;;:11;:19;;;;;;;;683:10;9427:33;;;;;;;;;9396:74;;9405:6;;9427:42;;9463:6;;9427:42;:::i;:::-;9396:8;:74::i;:::-;-1:-1:-1;9488:4:0;9127:373;;;;;:::o;5173:59::-;5228:4;5017:15;4960:1;5017:2;:15;:::i;:::-;5003:29;;:11;:29;:::i;:::-;5218:14;;;;:::i;:::-;5173:59;:::o;9909:207::-;683:10;9989:4;10038:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10038:34:0;;;;;;;;;;9989:4;;10006:80;;10029:7;;10038:47;;10075:10;;10038:47;:::i;7990:141::-;8036:4;8053:48;683:10;8085:6;8094;8053:9;:48::i;:::-;-1:-1:-1;8119:4:0;;7990:141;-1:-1:-1;7990:141:0:o;5107:54::-;5159:2;5017:15;4960:1;5017:2;:15;:::i;5042:53::-;5092:3;5017:15;4960:1;5017:2;:15;:::i;10619:369::-;683:10;10704:4;10748:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10748:34:0;;;;;;;;;;10801:35;;;;10793:85;;;;-1:-1:-1;;;;;;;;;;;10793:85:0;;5844:2:1;10793:85:0;;;5826:21:1;5883:2;5863:18;;;5856:30;5922:34;5902:18;;;5895:62;5993:7;5973:18;;;5966:35;6018:19;;10793:85:0;5642:401:1;10793:85:0;10889:67;683:10;10912:7;10921:34;10940:15;10921:16;:34;:::i;7610:167::-;7688:4;7705:42;683:10;7729:9;7740:6;7705:9;:42::i;5247:53::-;5296:4;5017:15;4960:1;5017:2;:15;:::i;15036:642::-;15096:11;;;;15095:12;15087:48;;;;-1:-1:-1;;;;;;;;;;;15087:48:0;;6250:2:1;15087:48:0;;;6232:21:1;6289:2;6269:18;;;6262:30;6328:25;6308:18;;;6301:53;6371:18;;15087:48:0;6048:347:1;15087:48:0;15154:10;4559:42;15154:29;15146:53;;;;-1:-1:-1;;;;;;;;;;;15146:53:0;;6602:2:1;15146:53:0;;;6584:21:1;6641:2;6621:18;;;6614:30;6680:13;6660:18;;;6653:41;6711:18;;15146:53:0;6400:335:1;15146:53:0;15220:68;15237:4;15252:15;-1:-1:-1;;15220:8:0;:68::i;:::-;15307:15;-1:-1:-1;;;;;15307:31:0;;15346:9;15379:4;15399:24;15417:4;-1:-1:-1;;;;;7371:18:0;7344:7;7371:18;;;;;;;;;;;;7278:119;15399:24;15307:223;;;;;;;;;-1:-1:-1;;;;;7122:15:1;;;15307:223:0;;;7104:34:1;7154:18;;;7147:34;15438:1:0;7197:18:1;;;7190:34;;;7240:18;;;7233:34;15478:10:0;7283:19:1;;;7276:44;15504:15:0;7336:19:1;;;7329:35;7015:19;;15307:223:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;15541:71:0;;;;;-1:-1:-1;;;;;15579:15:0;7878:55:1;;15541:71:0;;;7860:74:1;-1:-1:-1;;7950:18:1;;;7943:34;15548:13:0;15541:29;;-1:-1:-1;15541:29:0;;7833:18:1;;15541:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;15623:11:0;:18;;-1:-1:-1;;15652:18:0;;;;;15036:642::o;13982:335::-;-1:-1:-1;;;;;14075:19:0;;14067:68;;;;-1:-1:-1;;;;;;;;;;;14067:68:0;;8472:2:1;14067:68:0;;;8454:21:1;8511:2;8491:18;;;8484:30;8550:34;8530:18;;;8523:62;8621:6;8601:18;;;8594:34;8645:19;;14067:68:0;8270:400:1;14067:68:0;-1:-1:-1;;;;;14154:21:0;;14146:68;;;;-1:-1:-1;;;;;;;;;;;14146:68:0;;8877:2:1;14146:68:0;;;8859:21:1;8916:2;8896:18;;;8889:30;8955:34;8935:18;;;8928:62;9026:4;9006:18;;;8999:32;9048:19;;14146:68:0;8675:398:1;14146:68:0;-1:-1:-1;;;;;14225:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14277:32;;160:25:1;;;14277:32:0;;133:18:1;14277:32:0;;;;;;;13982:335;;;:::o;11478:2066::-;-1:-1:-1;;;;;11566:18:0;;11558:68;;;;-1:-1:-1;;;;;;;;;;;11558:68:0;;9280:2:1;11558:68:0;;;9262:21:1;9319:2;9299:18;;;9292:30;9358:34;9338:18;;;9331:62;9429:7;9409:18;;;9402:35;9454:19;;11558:68:0;9078:401:1;11558:68:0;-1:-1:-1;;;;;11645:16:0;;11637:64;;;;-1:-1:-1;;;;;;;;;;;11637:64:0;;9686:2:1;11637:64:0;;;9668:21:1;9725:2;9705:18;;;9698:30;9764:34;9744:18;;;9737:62;9835:5;9815:18;;;9808:33;9858:19;;11637:64:0;9484:399:1;11637:64:0;11729:1;11720:6;:10;11712:64;;;;-1:-1:-1;;;;;;;;;;;11712:64:0;;10090:2:1;11712:64:0;;;10072:21:1;10129:2;10109:18;;;10102:30;10168:34;10148:18;;;10141:62;10239:11;10219:18;;;10212:39;10268:19;;11712:64:0;9888:405:1;11712:64:0;-1:-1:-1;;;;;11793:19:0;;11807:4;11793:19;;;;:42;;;11822:13;-1:-1:-1;;;;;11816:19:0;:2;-1:-1:-1;;;;;11816:19:0;;;11793:42;:74;;;;;4695:2;11839:12;;:28;11793:74;:99;;;;-1:-1:-1;;;;;;11871:21:0;;4559:42;11871:21;;11793:99;:126;;;;-1:-1:-1;;;;;;11896:23:0;;4559:42;11896:23;;11793:126;11789:440;;;-1:-1:-1;;;;;7371:18:0;;11936;7371;;;;;;;;;;;5159:2;5017:15;4960:1;5017:2;:15;:::i;:::-;5003:29;;:11;:29;:::i;:::-;5149:12;;;;:::i;:::-;12012:19;12025:6;12012:10;:19;:::i;:::-;12011:40;;11985:164;;;;-1:-1:-1;;;;;;;;;;;11985:164:0;;10500:2:1;11985:164:0;;;10482:21:1;10539:2;10519:18;;;10512:30;10578:34;10558:18;;;10551:62;10649:32;10629:18;;;10622:60;10699:19;;11985:164:0;10298:426:1;11985:164:0;5092:3;5017:15;4960:1;5017:2;:15;:::i;:::-;5003:29;;:11;:29;:::i;:::-;5082:13;;;;:::i;:::-;12172:6;:23;;12164:53;;;;-1:-1:-1;;;;;;;;;;;12164:53:0;;10931:2:1;12164:53:0;;;10913:21:1;10970:2;10950:18;;;10943:30;11009:19;10989:18;;;10982:47;11046:18;;12164:53:0;10729:341:1;12164:53:0;11921:308;11789:440;12241:17;;-1:-1:-1;;;;;12314:21:0;;4559:42;12314:21;;;;:48;;-1:-1:-1;;;;;;12339:23:0;;4559:42;12339:23;;12314:48;12311:400;;;12391:13;-1:-1:-1;;;;;12383:21:0;:4;-1:-1:-1;;;;;12383:21:0;;:44;;;;-1:-1:-1;;;;;;12408:19:0;;12422:4;12408:19;;12383:44;12379:161;;;4695:2;12475:12;;:28;:49;;4774:1;12475:49;;;4646:2;12475:49;12464:60;;12379:161;12564:13;-1:-1:-1;;;;;12558:19:0;:2;-1:-1:-1;;;;;12558:19:0;;:44;;;;-1:-1:-1;;;;;;12581:21:0;;12597:4;12581:21;;12558:44;12554:146;;;4695:2;12634:12;;:28;:50;;4817:1;12634:50;;;4646:2;12634:50;12623:61;;12554:146;12753:3;12733:17;12742:8;12733:6;:17;:::i;:::-;:23;;;;:::i;:::-;12826:4;12777:28;7371:18;;;;;;;;;;;12848:6;;12721:35;;-1:-1:-1;7371:18:0;12848:6;;;;;12847:7;:30;;;;;12864:13;-1:-1:-1;;;;;12858:19:0;:2;-1:-1:-1;;;;;12858:19:0;;12847:30;:45;;;;-1:-1:-1;12881:11:0;;;;;;;12847:45;:90;;;;-1:-1:-1;5228:4:0;5017:15;4960:1;5017:2;:15;:::i;:::-;5003:29;;:11;:29;:::i;:::-;5218:14;;;;:::i;:::-;12896:20;:41;12847:90;12843:370;;;12954:70;12971:52;12975:6;12983:39;12987:20;5296:4;5017:15;4960:1;5017:2;:15;:::i;:::-;5003:29;;:11;:29;:::i;:::-;5286:14;;;;:::i;:::-;12983:3;:39::i;12971:52::-;12954:16;:70::i;:::-;13076:4;13068:21;13108:22;;13104:98;;13151:35;13172:4;13164:21;13151:12;:35::i;:::-;12939:274;12843:370;13229:13;;13225:172;;13259:12;:14;;;:12;:14;;;:::i;:::-;;;;-1:-1:-1;;13306:4:0;13288:9;:24;;;;;;;;;;:37;;13316:9;;13288;:37;;13316:9;;13288:37;:::i;:::-;;;;-1:-1:-1;;13345:40:0;;160:25:1;;;13368:4:0;;-1:-1:-1;;;;;13345:40:0;;;;;148:2:1;133:18;13345:40:0;;;;;;;13225:172;-1:-1:-1;;;;;13409:15:0;;:9;:15;;;;;;;;;;:25;;13428:6;;13409:9;:25;;13428:6;;13409:25;:::i;:::-;;;;-1:-1:-1;13463:18:0;;-1:-1:-1;13472:9:0;13463:6;:18;:::i;:::-;-1:-1:-1;;;;;13445:13:0;;:9;:13;;;;;;;;;;:37;;:13;;:9;:37;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13498:38:0;;;;;;;13517:18;13526:9;13517:6;:18;:::i;:::-;13498:38;;160:25:1;;;148:2;133:18;13498:38:0;;;;;;;11547:1997;;;11478:2066;;;:::o;14325:107::-;14382:7;14414:1;14410;:5;14409:15;;14423:1;14409:15;;;14419:1;14409:15;14402:22;14325:107;-1:-1:-1;;;14325:107:0:o;14440:483::-;5561:6;:13;;-1:-1:-1;;5561:13:0;;;;;14542:16:::1;::::0;;14556:1:::1;14542:16:::0;;;;;::::1;::::0;;-1:-1:-1;;14542:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;14542:16:0::1;14518:40;;14587:4;14569;14574:1;14569:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;14569:23:0::1;;;-1:-1:-1::0;;;;;14569:23:0::1;;;::::0;::::1;14613:15;-1:-1:-1::0;;;;;14613:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;14603:4;14608:1;14603:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;14603:32:0::1;;;-1:-1:-1::0;;;;;14603:32:0::1;;;::::0;::::1;14646:62;14663:4;14678:15;14696:11;14646:8;:62::i;:::-;14719:196;::::0;;;;-1:-1:-1;;;;;14719:15:0::1;:66;::::0;::::1;::::0;:196:::1;::::0;14800:11;;14826:1:::1;::::0;14842:4;;14869::::1;::::0;14889:15:::1;::::0;14719:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;5597:6:0;:14;;-1:-1:-1;;5597:14:0;;;-1:-1:-1;;;;14440:483:0:o;14931:97::-;14988:32;;4559:42;;14988:32;;;;;15013:6;;14988:32;;;;15013:6;4559:42;14988:32;;;;;;;;;;;;;;;;;;;;;14931:97;:::o;196:597:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;634:6;631:1;628:13;625:91;;;704:1;699:2;690:6;679:9;675:22;671:31;664:42;625:91;-1:-1:-1;777:2:1;756:15;-1:-1:-1;;752:29:1;737:45;;;;784:2;733:54;;196:597;-1:-1:-1;;;196:597:1:o;798:154::-;-1:-1:-1;;;;;877:5:1;873:54;866:5;863:65;853:93;;942:1;939;932:12;853:93;798:154;:::o;957:315::-;1025:6;1033;1086:2;1074:9;1065:7;1061:23;1057:32;1054:52;;;1102:1;1099;1092:12;1054:52;1141:9;1128:23;1160:31;1185:5;1160:31;:::i;:::-;1210:5;1262:2;1247:18;;;;1234:32;;-1:-1:-1;;;957:315:1:o;1469:456::-;1546:6;1554;1562;1615:2;1603:9;1594:7;1590:23;1586:32;1583:52;;;1631:1;1628;1621:12;1583:52;1670:9;1657:23;1689:31;1714:5;1689:31;:::i;:::-;1739:5;-1:-1:-1;1796:2:1;1781:18;;1768:32;1809:33;1768:32;1809:33;:::i;:::-;1469:456;;1861:7;;-1:-1:-1;;;1915:2:1;1900:18;;;;1887:32;;1469:456::o;2119:180::-;2178:6;2231:2;2219:9;2210:7;2206:23;2202:32;2199:52;;;2247:1;2244;2237:12;2199:52;-1:-1:-1;2270:23:1;;2119:180;-1:-1:-1;2119:180:1:o;2304:247::-;2363:6;2416:2;2404:9;2395:7;2391:23;2387:32;2384:52;;;2432:1;2429;2422:12;2384:52;2471:9;2458:23;2490:31;2515:5;2490:31;:::i;2556:388::-;2624:6;2632;2685:2;2673:9;2664:7;2660:23;2656:32;2653:52;;;2701:1;2698;2691:12;2653:52;2740:9;2727:23;2759:31;2784:5;2759:31;:::i;:::-;2809:5;-1:-1:-1;2866:2:1;2851:18;;2838:32;2879:33;2838:32;2879:33;:::i;:::-;2931:7;2921:17;;;2556:388;;;;;:::o;2949:184::-;3001:77;2998:1;2991:88;3098:4;3095:1;3088:15;3122:4;3119:1;3112:15;3138:419;3227:1;3270:5;3227:1;3284:267;3305:7;3295:8;3292:21;3284:267;;;3364:4;3360:1;3356:6;3352:17;3346:4;3343:27;3340:53;;;3373:18;;:::i;:::-;3423:7;3413:8;3409:22;3406:55;;;3443:16;;;;3406:55;3536:4;3522:19;;;;3482:15;;;;3284:267;;;3288:3;3138:419;;;;;:::o;3562:806::-;3611:5;3641:8;3631:80;;-1:-1:-1;3682:1:1;3696:5;;3631:80;3730:4;3720:76;;-1:-1:-1;3767:1:1;3781:5;;3720:76;3812:4;3830:1;3825:59;;;;3898:1;3893:130;;;;3805:218;;3825:59;3855:1;3846:10;;3869:5;;;3893:130;3930:3;3920:8;3917:17;3914:43;;;3937:18;;:::i;:::-;3986:8;3983:1;3979:16;3970:25;;4008:5;;;3805:218;;4107:2;4097:8;4094:16;4088:3;4082:4;4079:13;4075:36;4069:2;4059:8;4056:16;4051:2;4045:4;4042:12;4038:35;4035:77;4032:159;;;-1:-1:-1;4144:19:1;;;4176:5;;4032:159;4223:34;4248:8;4242:4;4223:34;:::i;:::-;4293:6;4289:1;4285:6;4281:19;4272:7;4269:32;4266:58;;;4304:18;;:::i;:::-;4342:20;;3562:806;-1:-1:-1;;;3562:806:1:o;4373:140::-;4431:5;4460:47;4501:4;4491:8;4487:19;4481:4;4460:47;:::i;4518:168::-;4558:7;4624:1;4620;4616:6;4612:14;4609:1;4606:21;4601:1;4594:9;4587:17;4583:45;4580:71;;;4631:18;;:::i;:::-;-1:-1:-1;4671:9:1;;4518:168::o;5100:125::-;5140:4;5168:1;5165;5162:8;5159:34;;;5173:18;;:::i;:::-;-1:-1:-1;5210:9:1;;5100:125::o;5230:274::-;5270:1;5296;5286:189;;5331:77;5328:1;5321:88;5432:4;5429:1;5422:15;5460:4;5457:1;5450:15;5286:189;-1:-1:-1;5489:9:1;;5230:274::o;5509:128::-;5549:3;5580:1;5576:6;5573:1;5570:13;5567:39;;;5586:18;;:::i;:::-;-1:-1:-1;5622:9:1;;5509:128::o;7375:306::-;7463:6;7471;7479;7532:2;7520:9;7511:7;7507:23;7503:32;7500:52;;;7548:1;7545;7538:12;7500:52;7577:9;7571:16;7561:26;;7627:2;7616:9;7612:18;7606:25;7596:35;;7671:2;7660:9;7656:18;7650:25;7640:35;;7375:306;;;;;:::o;7988:277::-;8055:6;8108:2;8096:9;8087:7;8083:23;8079:32;8076:52;;;8124:1;8121;8114:12;8076:52;8156:9;8150:16;8209:5;8202:13;8195:21;8188:5;8185:32;8175:60;;8231:1;8228;8221:12;11075:135;11114:3;-1:-1:-1;;11135:17:1;;11132:43;;;11155:18;;:::i;:::-;-1:-1:-1;11202:1:1;11191:13;;11075:135::o;11404:184::-;11456:77;11453:1;11446:88;11553:4;11550:1;11543:15;11577:4;11574:1;11567:15;11593:251;11663:6;11716:2;11704:9;11695:7;11691:23;11687:32;11684:52;;;11732:1;11729;11722:12;11684:52;11764:9;11758:16;11783:31;11808:5;11783:31;:::i;11849:1026::-;12111:4;12159:3;12148:9;12144:19;12190:6;12179:9;12172:25;12216:2;12254:6;12249:2;12238:9;12234:18;12227:34;12297:3;12292:2;12281:9;12277:18;12270:31;12321:6;12356;12350:13;12387:6;12379;12372:22;12425:3;12414:9;12410:19;12403:26;;12464:2;12456:6;12452:15;12438:29;;12485:1;12495:218;12509:6;12506:1;12503:13;12495:218;;;12574:13;;-1:-1:-1;;;;;12570:62:1;12558:75;;12688:15;;;;12653:12;;;;12531:1;12524:9;12495:218;;;-1:-1:-1;;;;;;;12769:55:1;;;;12764:2;12749:18;;12742:83;-1:-1:-1;;;12856:3:1;12841:19;12834:35;12730:3;11849:1026;-1:-1:-1;;;11849:1026:1:o

Swarm Source

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