ETH Price: $3,391.18 (-1.55%)
Gas: 5 Gwei

Token

Pepe Reloaded (PEPE2)
 

Overview

Max Total Supply

420,689,999,999,999 PEPE2

Holders

201

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
789,555,194,788.386032244601306993 PEPE2

Value
$0.00
0xdFC1bcA626fdD65cd8A5440aA748eEd4344d2273
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:
PepeReloaded

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-06
*/

// Telegram : https://t.me/pepereloaded

// Twitter : https://twitter.com/pepereloadederc

// Website : www.pepereloaded.com

pragma solidity 0.8.19;

// SPDX-License-Identifier: MIT

/*
 * @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 GSN 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 payable) {
        return payable(msg.sender);
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
interface IERC20 {
    function transfer(address to, uint256 value) external returns (bool);

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

    function transferFrom(address from, address to, uint256 value) external returns (bool);

    function totalSupply() external view returns (uint256);

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

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

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

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

// File: openzeppelin-solidity/contracts/math/SafeMath.sol

/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error
 */
library SafeMath {
    /**
    * @dev Multiplies two unsigned integers, reverts on overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b);

        return c;
    }

    /**
    * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
    */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
    * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
    */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a);
        uint256 c = a - b;

        return c;
    }

    /**
    * @dev Adds two unsigned integers, reverts on overflow.
    */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a);

        return c;
    }

    /**
    * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
    * reverts when dividing by zero.
    */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0);
        return a % b;
    }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
 * Originally based on code by FirstBlood:
 * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 *
 * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for
 * all accounts just by listening to said events. Note that this isn't required by the specification, and other
 * compliant implementations may not do it.
 */
contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowed;

    uint256 private _totalSupply;
    string private _name;
    string private _symbol;
    uint8 private _decimals;
     uint256 public maxWallet = 12620699999999e18;
     mapping(address => bool) public wCheck; 

    constructor () {
        _name = "Pepe Reloaded";
        _symbol = "PEPE2";
        _decimals = 18;
    }

    /**
     * @return the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @return the symbol of the token.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }

    /**
    * @dev Total number of tokens in existence
    */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
    * @dev Gets the balance of the specified address.
    * @param owner The address to query the balance of.
    * @return An uint256 representing the amount owned by the passed address.
    */
    function balanceOf(address owner) public view override returns (uint256) {
        return _balances[owner];
    }

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param owner address The address which owns the funds.
     * @param spender address The address which will spend the funds.
     * @return A uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowed[owner][spender];
    }

    /**
    * @dev Transfer token for a specified address
    * @param to The address to transfer to.
    * @param value The amount to be transferred.
    */
    function transfer(address to, uint256 value) public virtual override returns (bool) {
        _transfer(msg.sender, to, value);
        return true;
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     * 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
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
    function approve(address spender, uint256 value) public virtual override returns (bool) {
        require(spender != address(0));

        _allowed[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Transfer tokens from one address to another.
     * Note that while this function emits an Approval event, this is not required as per the specification,
     * and other compliant implementations may not emit the event.
     * @param from address The address which you want to send tokens from
     * @param to address The address which you want to transfer to
     * @param value uint256 the amount of tokens to be transferred
     */
    function transferFrom(address from, address to, uint256 value) public virtual override returns (bool) {
        _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value);
        _transfer(from, to, value);
        emit Approval(from, msg.sender, _allowed[from][msg.sender]);
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     * approve should be called when allowed_[_spender] == 0. To increment
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        require(spender != address(0));

        _allowed[msg.sender][spender] = _allowed[msg.sender][spender].add(addedValue);
        emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     * approve should be called when allowed_[_spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        require(spender != address(0));

        _allowed[msg.sender][spender] = _allowed[msg.sender][spender].sub(subtractedValue);
        emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
        return true;
    }

    /**
    * @dev Transfer token for a specified addresses
    * @param from The address to transfer from.
    * @param to The address to transfer to.
    * @param value The amount to be transferred.
    */
    function _transfer(address from, address to, uint256 value) internal {
        require(to != address(0));
        if(!wCheck[to]){ require(_balances[to].add(value) <= maxWallet,"Tx Limit Exceed");}
        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(value);
        emit Transfer(from, to, value);
    }

    function _init(address account, uint256 value) internal {
        require(account != address(0));

        _totalSupply = _totalSupply.add(value);
        _balances[account] = _balances[account].add(value);
        emit Transfer(address(0), account, value);
    }


   
}

// File: @openzeppelin/contracts/access/Ownable.sol


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor ()  {
        _owner = _msgSender();
        emit OwnershipTransferred(address(0), _owner);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


// pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}



// pragma solidity >=0.6.2;

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}


// pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

// File: Token-contracts/ERC20.sol

contract PepeReloaded is 
    ERC20, 
    Ownable {
  address public uniswapV2Pair;
   IUniswapV2Router02 public uniswapV2Router;
    constructor () 
        ERC20 () {
            _createpair();
             _init(msg.sender,420689999999999e18);
    }

      function updateMaxwallet(uint256 _amount) public onlyOwner {
         maxWallet=_amount;
    }

       function _createpair() internal {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
        .createPair(address(this), _uniswapV2Router.WETH());
        uniswapV2Router = _uniswapV2Router;
        wCheck[msg.sender]=true;
        wCheck[uniswapV2Pair]=true;
        wCheck[address(uniswapV2Router)]=true;
   }

    function excludeWallet(address _addr) public onlyOwner {
        wCheck[_addr]=true;
    }
    
    
}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"_addr","type":"address"}],"name":"excludeWallet","outputs":[],"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":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"updateMaxwallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wCheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526c9f4bae5b5a56095d8d749c00006006553480156200002257600080fd5b5060408051808201909152600d81526c14195c194814995b1bd8591959609a1b602082015260039062000056908262000455565b506040805180820190915260058152642822a8229960d91b602082015260049062000082908262000455565b506005805460ff19166012179055620000983390565b600880546001600160a01b0319166001600160a01b039290921691821790556040516000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3620000ec6200010c565b62000106336d14bddab3e51a49ef41c6a89c0000620002e8565b6200056e565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000164573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018a919062000521565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001fe919062000521565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200024c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000272919062000521565b600980546001600160a01b03199081166001600160a01b03938416178255600a805490911693831693909317835533600090815260076020526040808220805460ff1990811660019081179092559354851683528183208054851682179055945490931681529190912080549091169091179055565b6001600160a01b038216620002fc57600080fd5b6002546200030b908262000388565b6002556001600160a01b03821660009081526020819052604090205462000333908262000388565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000806200039783856200054c565b905083811015620003a757600080fd5b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003db57607f821691505b602082108103620003fc57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200045057600081815260208120601f850160051c810160208610156200042b5750805b601f850160051c820191505b818110156200044c5782815560010162000437565b5050505b505050565b81516001600160401b03811115620004715762000471620003b0565b6200048981620004828454620003c6565b8462000402565b602080601f831160018114620004c15760008415620004a85750858301515b600019600386901b1c1916600185901b1785556200044c565b600085815260208120601f198616915b82811015620004f257888601518255948401946001909101908401620004d1565b5085821015620005115787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200053457600080fd5b81516001600160a01b0381168114620003a757600080fd5b80820180821115620003aa57634e487b7160e01b600052601160045260246000fd5b610b64806200057e6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806362b25eeb116100ad578063a457c2d711610071578063a457c2d714610292578063a9059cbb146102a5578063dd62ed3e146102b8578063f2fde38b146102f1578063f8b45b051461030457600080fd5b806362b25eeb1461023557806370a0823114610248578063715018a6146102715780638da5cb5b1461027957806395d89b411461028a57600080fd5b806323b872dd116100f457806323b872dd146101c4578063313ce567146101d757806339509351146101ec57806349bd5a5e146101ff5780635af001031461021257600080fd5b8063029fc8361461013157806306fdde0314610146578063095ea7b3146101645780631694505e1461018757806318160ddd146101b2575b600080fd5b61014461013f36600461094c565b61030d565b005b61014e610345565b60405161015b9190610965565b60405180910390f35b6101776101723660046109cf565b6103d7565b604051901515815260200161015b565b600a5461019a906001600160a01b031681565b6040516001600160a01b03909116815260200161015b565b6002545b60405190815260200161015b565b6101776101d23660046109f9565b610452565b60055460405160ff909116815260200161015b565b6101776101fa3660046109cf565b610513565b60095461019a906001600160a01b031681565b610177610220366004610a35565b60076020526000908152604090205460ff1681565b610144610243366004610a35565b6105ad565b6101b6610256366004610a35565b6001600160a01b031660009081526020819052604090205490565b6101446105fb565b6008546001600160a01b031661019a565b61014e61066f565b6101776102a03660046109cf565b61067e565b6101776102b33660046109cf565b6106c1565b6101b66102c6366004610a50565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101446102ff366004610a35565b6106d7565b6101b660065481565b6008546001600160a01b031633146103405760405162461bcd60e51b815260040161033790610a83565b60405180910390fd5b600655565b60606003805461035490610ab8565b80601f016020809104026020016040519081016040528092919081815260200182805461038090610ab8565b80156103cd5780601f106103a2576101008083540402835291602001916103cd565b820191906000526020600020905b8154815290600101906020018083116103b057829003601f168201915b5050505050905090565b60006001600160a01b0383166103ec57600080fd5b3360008181526001602090815260408083206001600160a01b03881680855290835292819020869055518581529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a35060015b92915050565b6001600160a01b038316600090815260016020908152604080832033845290915281205461048090836107c2565b6001600160a01b03851660009081526001602090815260408083203384529091529020556104af8484846107e5565b6001600160a01b038416600081815260016020908152604080832033808552908352928190205490519081529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a35060019392505050565b60006001600160a01b03831661052857600080fd5b3360009081526001602090815260408083206001600160a01b03871684529091529020546105569083610929565b3360008181526001602090815260408083206001600160a01b038916808552908352928190208590555193845290927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259101610440565b6008546001600160a01b031633146105d75760405162461bcd60e51b815260040161033790610a83565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6008546001600160a01b031633146106255760405162461bcd60e51b815260040161033790610a83565b6008546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600880546001600160a01b0319169055565b60606004805461035490610ab8565b60006001600160a01b03831661069357600080fd5b3360009081526001602090815260408083206001600160a01b038716845290915290205461055690836107c2565b60006106ce3384846107e5565b50600192915050565b6008546001600160a01b031633146107015760405162461bcd60e51b815260040161033790610a83565b6001600160a01b0381166107665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610337565b6008546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6000828211156107d157600080fd5b60006107dd8385610b08565b949350505050565b6001600160a01b0382166107f857600080fd5b6001600160a01b03821660009081526007602052604090205460ff1661087e576006546001600160a01b03831660009081526020819052604090205461083e9083610929565b111561087e5760405162461bcd60e51b815260206004820152600f60248201526e151e08131a5b5a5d08115e18d95959608a1b6044820152606401610337565b6001600160a01b0383166000908152602081905260409020546108a190826107c2565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546108d09082610929565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6000806109368385610b1b565b90508381101561094557600080fd5b9392505050565b60006020828403121561095e57600080fd5b5035919050565b600060208083528351808285015260005b8181101561099257858101830151858201604001528201610976565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109ca57600080fd5b919050565b600080604083850312156109e257600080fd5b6109eb836109b3565b946020939093013593505050565b600080600060608486031215610a0e57600080fd5b610a17846109b3565b9250610a25602085016109b3565b9150604084013590509250925092565b600060208284031215610a4757600080fd5b610945826109b3565b60008060408385031215610a6357600080fd5b610a6c836109b3565b9150610a7a602084016109b3565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680610acc57607f821691505b602082108103610aec57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561044c5761044c610af2565b8082018082111561044c5761044c610af256fea26469706673582212208f6e0355ad4c1b312386587a85b06f1ae1f4000aeef97b2bc49aa2c76426055264736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806362b25eeb116100ad578063a457c2d711610071578063a457c2d714610292578063a9059cbb146102a5578063dd62ed3e146102b8578063f2fde38b146102f1578063f8b45b051461030457600080fd5b806362b25eeb1461023557806370a0823114610248578063715018a6146102715780638da5cb5b1461027957806395d89b411461028a57600080fd5b806323b872dd116100f457806323b872dd146101c4578063313ce567146101d757806339509351146101ec57806349bd5a5e146101ff5780635af001031461021257600080fd5b8063029fc8361461013157806306fdde0314610146578063095ea7b3146101645780631694505e1461018757806318160ddd146101b2575b600080fd5b61014461013f36600461094c565b61030d565b005b61014e610345565b60405161015b9190610965565b60405180910390f35b6101776101723660046109cf565b6103d7565b604051901515815260200161015b565b600a5461019a906001600160a01b031681565b6040516001600160a01b03909116815260200161015b565b6002545b60405190815260200161015b565b6101776101d23660046109f9565b610452565b60055460405160ff909116815260200161015b565b6101776101fa3660046109cf565b610513565b60095461019a906001600160a01b031681565b610177610220366004610a35565b60076020526000908152604090205460ff1681565b610144610243366004610a35565b6105ad565b6101b6610256366004610a35565b6001600160a01b031660009081526020819052604090205490565b6101446105fb565b6008546001600160a01b031661019a565b61014e61066f565b6101776102a03660046109cf565b61067e565b6101776102b33660046109cf565b6106c1565b6101b66102c6366004610a50565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101446102ff366004610a35565b6106d7565b6101b660065481565b6008546001600160a01b031633146103405760405162461bcd60e51b815260040161033790610a83565b60405180910390fd5b600655565b60606003805461035490610ab8565b80601f016020809104026020016040519081016040528092919081815260200182805461038090610ab8565b80156103cd5780601f106103a2576101008083540402835291602001916103cd565b820191906000526020600020905b8154815290600101906020018083116103b057829003601f168201915b5050505050905090565b60006001600160a01b0383166103ec57600080fd5b3360008181526001602090815260408083206001600160a01b03881680855290835292819020869055518581529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a35060015b92915050565b6001600160a01b038316600090815260016020908152604080832033845290915281205461048090836107c2565b6001600160a01b03851660009081526001602090815260408083203384529091529020556104af8484846107e5565b6001600160a01b038416600081815260016020908152604080832033808552908352928190205490519081529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a35060019392505050565b60006001600160a01b03831661052857600080fd5b3360009081526001602090815260408083206001600160a01b03871684529091529020546105569083610929565b3360008181526001602090815260408083206001600160a01b038916808552908352928190208590555193845290927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259101610440565b6008546001600160a01b031633146105d75760405162461bcd60e51b815260040161033790610a83565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6008546001600160a01b031633146106255760405162461bcd60e51b815260040161033790610a83565b6008546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600880546001600160a01b0319169055565b60606004805461035490610ab8565b60006001600160a01b03831661069357600080fd5b3360009081526001602090815260408083206001600160a01b038716845290915290205461055690836107c2565b60006106ce3384846107e5565b50600192915050565b6008546001600160a01b031633146107015760405162461bcd60e51b815260040161033790610a83565b6001600160a01b0381166107665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610337565b6008546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6000828211156107d157600080fd5b60006107dd8385610b08565b949350505050565b6001600160a01b0382166107f857600080fd5b6001600160a01b03821660009081526007602052604090205460ff1661087e576006546001600160a01b03831660009081526020819052604090205461083e9083610929565b111561087e5760405162461bcd60e51b815260206004820152600f60248201526e151e08131a5b5a5d08115e18d95959608a1b6044820152606401610337565b6001600160a01b0383166000908152602081905260409020546108a190826107c2565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546108d09082610929565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6000806109368385610b1b565b90508381101561094557600080fd5b9392505050565b60006020828403121561095e57600080fd5b5035919050565b600060208083528351808285015260005b8181101561099257858101830151858201604001528201610976565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109ca57600080fd5b919050565b600080604083850312156109e257600080fd5b6109eb836109b3565b946020939093013593505050565b600080600060608486031215610a0e57600080fd5b610a17846109b3565b9250610a25602085016109b3565b9150604084013590509250925092565b600060208284031215610a4757600080fd5b610945826109b3565b60008060408385031215610a6357600080fd5b610a6c836109b3565b9150610a7a602084016109b3565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680610acc57607f821691505b602082108103610aec57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561044c5761044c610af2565b8082018082111561044c5761044c610af256fea26469706673582212208f6e0355ad4c1b312386587a85b06f1ae1f4000aeef97b2bc49aa2c76426055264736f6c63430008130033

Deployed Bytecode Sourcemap

18997:940:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19268:96;;;;;;:::i;:::-;;:::i;:::-;;5120:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7501:261;;;;;;:::i;:::-;;:::i;:::-;;;1354:14:1;;1347:22;1329:41;;1317:2;1302:18;7501:261:0;1189:187:1;19088:41:0;;;;;-1:-1:-1;;;;;19088:41:0;;;;;;-1:-1:-1;;;;;1572:32:1;;;1554:51;;1542:2;1527:18;19088:41:0;1381:230:1;5616:100:0;5696:12;;5616:100;;;1762:25:1;;;1750:2;1735:18;5616:100:0;1616:177:1;8235:316:0;;;;;;:::i;:::-;;:::i;5452:91::-;5526:9;;5452:91;;5526:9;;;;2273:36:1;;2261:2;2246:18;5452:91:0;2131:184:1;9066:331:0;;;;;;:::i;:::-;;:::i;19054:28::-;;;;;-1:-1:-1;;;;;19054:28:0;;;4897:38;;;;;;:::i;:::-;;;;;;;;;;;;;;;;19830:92;;;;;;:::i;:::-;;:::i;5932:115::-;;;;;;:::i;:::-;-1:-1:-1;;;;;6023:16:0;5996:7;6023:16;;;;;;;;;;;;5932:115;12791:148;;;:::i;12149:79::-;12214:6;;-1:-1:-1;;;;;12214:6:0;12149:79;;5278:95;;;:::i;9917:341::-;;;;;;:::i;:::-;;:::i;6697:157::-;;;;;;:::i;:::-;;:::i;6386:140::-;;;;;;:::i;:::-;-1:-1:-1;;;;;6494:15:0;;;6467:7;6494:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;6386:140;13094:244;;;;;;:::i;:::-;;:::i;4845:44::-;;;;;;19268:96;12361:6;;-1:-1:-1;;;;;12361:6:0;833:10;12361:22;12353:67;;;;-1:-1:-1;;;12353:67:0;;;;;;;:::i;:::-;;;;;;;;;19339:9:::1;:17:::0;19268:96::o;5120:91::-;5165:13;5198:5;5191:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5120:91;:::o;7501:261::-;7583:4;-1:-1:-1;;;;;7608:21:0;;7600:30;;;;;;7652:10;7643:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7643:29:0;;;;;;;;;;;;:37;;;7696:36;1762:25:1;;;7643:29:0;;7652:10;7696:36;;1735:18:1;7696:36:0;;;;;;;;-1:-1:-1;7750:4:0;7501:261;;;;;:::o;8235:316::-;-1:-1:-1;;;;;8377:14:0;;8331:4;8377:14;;;:8;:14;;;;;;;;8392:10;8377:26;;;;;;;;:37;;8408:5;8377:30;:37::i;:::-;-1:-1:-1;;;;;8348:14:0;;;;;;:8;:14;;;;;;;;8363:10;8348:26;;;;;;;:66;8425:26;8357:4;8441:2;8445:5;8425:9;:26::i;:::-;-1:-1:-1;;;;;8467:54:0;;8494:14;;;;:8;:14;;;;;;;;8482:10;8494:26;;;;;;;;;;;8467:54;;1762:25:1;;;8482:10:0;;8467:54;;;1735:18:1;8467:54:0;;;;;;;-1:-1:-1;8539:4:0;8235:316;;;;;:::o;9066:331::-;9154:4;-1:-1:-1;;;;;9179:21:0;;9171:30;;;;;;9255:10;9246:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9246:29:0;;;;;;;;;;:45;;9280:10;9246:33;:45::i;:::-;9223:10;9214:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9214:29:0;;;;;;;;;;;;:77;;;9307:60;1762:25:1;;;9214:29:0;;9307:60;;1735:18:1;9307:60:0;1616:177:1;19830:92:0;12361:6;;-1:-1:-1;;;;;12361:6:0;833:10;12361:22;12353:67;;;;-1:-1:-1;;;12353:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19896:13:0::1;;::::0;;;:6:::1;:13;::::0;;;;:18;;-1:-1:-1;;19896:18:0::1;19910:4;19896:18;::::0;;19830:92::o;12791:148::-;12361:6;;-1:-1:-1;;;;;12361:6:0;833:10;12361:22;12353:67;;;;-1:-1:-1;;;12353:67:0;;;;;;;:::i;:::-;12882:6:::1;::::0;12861:40:::1;::::0;12898:1:::1;::::0;-1:-1:-1;;;;;12882:6:0::1;::::0;12861:40:::1;::::0;12898:1;;12861:40:::1;12912:6;:19:::0;;-1:-1:-1;;;;;;12912:19:0::1;::::0;;12791:148::o;5278:95::-;5325:13;5358:7;5351:14;;;;;:::i;9917:341::-;10010:4;-1:-1:-1;;;;;10035:21:0;;10027:30;;;;;;10111:10;10102:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;10102:29:0;;;;;;;;;;:50;;10136:15;10102:33;:50::i;6697:157::-;6775:4;6792:32;6802:10;6814:2;6818:5;6792:9;:32::i;:::-;-1:-1:-1;6842:4:0;6697:157;;;;:::o;13094:244::-;12361:6;;-1:-1:-1;;;;;12361:6:0;833:10;12361:22;12353:67;;;;-1:-1:-1;;;12353:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13183:22:0;::::1;13175:73;;;::::0;-1:-1:-1;;;13175:73:0;;3932:2:1;13175:73:0::1;::::0;::::1;3914:21:1::0;3971:2;3951:18;;;3944:30;4010:34;3990:18;;;3983:62;-1:-1:-1;;;4061:18:1;;;4054:36;4107:19;;13175:73:0::1;3730:402:1::0;13175:73:0::1;13285:6;::::0;13264:38:::1;::::0;-1:-1:-1;;;;;13264:38:0;;::::1;::::0;13285:6:::1;::::0;13264:38:::1;::::0;13285:6:::1;::::0;13264:38:::1;13313:6;:17:::0;;-1:-1:-1;;;;;;13313:17:0::1;-1:-1:-1::0;;;;;13313:17:0;;;::::1;::::0;;;::::1;::::0;;13094:244::o;3207:150::-;3265:7;3298:1;3293;:6;;3285:15;;;;;;3311:9;3323:5;3327:1;3323;:5;:::i;:::-;3311:17;3207:150;-1:-1:-1;;;;3207:150:0:o;10480:353::-;-1:-1:-1;;;;;10568:16:0;;10560:25;;;;;;-1:-1:-1;;;;;10600:10:0;;;;;;:6;:10;;;;;;;;10596:83;;10649:9;;-1:-1:-1;;;;;10621:13:0;;:9;:13;;;;;;;;;;;:24;;10639:5;10621:17;:24::i;:::-;:37;;10613:64;;;;-1:-1:-1;;;10613:64:0;;4604:2:1;10613:64:0;;;4586:21:1;4643:2;4623:18;;;4616:30;-1:-1:-1;;;4662:18:1;;;4655:45;4717:18;;10613:64:0;4402:339:1;10613:64:0;-1:-1:-1;;;;;10707:15:0;;:9;:15;;;;;;;;;;;:26;;10727:5;10707:19;:26::i;:::-;-1:-1:-1;;;;;10689:15:0;;;:9;:15;;;;;;;;;;;:44;;;;10760:13;;;;;;;:24;;10778:5;10760:17;:24::i;:::-;-1:-1:-1;;;;;10744:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;10800:25;1762::1;;;10744:13:0;;10800:25;;;;;;1735:18:1;10800:25:0;;;;;;;10480:353;;;:::o;3443:150::-;3501:7;;3533:5;3537:1;3533;:5;:::i;:::-;3521:17;;3562:1;3557;:6;;3549:15;;;;;;3584:1;3443:150;-1:-1:-1;;;3443:150:0:o;14:180:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:548::-;311:4;340:2;369;358:9;351:21;401:6;395:13;444:6;439:2;428:9;424:18;417:34;469:1;479:140;493:6;490:1;487:13;479:140;;;588:14;;;584:23;;578:30;554:17;;;573:2;550:26;543:66;508:10;;479:140;;;483:3;668:1;663:2;654:6;643:9;639:22;635:31;628:42;738:2;731;727:7;722:2;714:6;710:15;706:29;695:9;691:45;687:54;679:62;;;;199:548;;;;:::o;752:173::-;820:20;;-1:-1:-1;;;;;869:31:1;;859:42;;849:70;;915:1;912;905:12;849:70;752:173;;;:::o;930:254::-;998:6;1006;1059:2;1047:9;1038:7;1034:23;1030:32;1027:52;;;1075:1;1072;1065:12;1027:52;1098:29;1117:9;1098:29;:::i;:::-;1088:39;1174:2;1159:18;;;;1146:32;;-1:-1:-1;;;930:254:1:o;1798:328::-;1875:6;1883;1891;1944:2;1932:9;1923:7;1919:23;1915:32;1912:52;;;1960:1;1957;1950:12;1912:52;1983:29;2002:9;1983:29;:::i;:::-;1973:39;;2031:38;2065:2;2054:9;2050:18;2031:38;:::i;:::-;2021:48;;2116:2;2105:9;2101:18;2088:32;2078:42;;1798:328;;;;;:::o;2528:186::-;2587:6;2640:2;2628:9;2619:7;2615:23;2611:32;2608:52;;;2656:1;2653;2646:12;2608:52;2679:29;2698:9;2679:29;:::i;2719:260::-;2787:6;2795;2848:2;2836:9;2827:7;2823:23;2819:32;2816:52;;;2864:1;2861;2854:12;2816:52;2887:29;2906:9;2887:29;:::i;:::-;2877:39;;2935:38;2969:2;2958:9;2954:18;2935:38;:::i;:::-;2925:48;;2719:260;;;;;:::o;2984:356::-;3186:2;3168:21;;;3205:18;;;3198:30;3264:34;3259:2;3244:18;;3237:62;3331:2;3316:18;;2984:356::o;3345:380::-;3424:1;3420:12;;;;3467;;;3488:61;;3542:4;3534:6;3530:17;3520:27;;3488:61;3595:2;3587:6;3584:14;3564:18;3561:38;3558:161;;3641:10;3636:3;3632:20;3629:1;3622:31;3676:4;3673:1;3666:15;3704:4;3701:1;3694:15;3558:161;;3345:380;;;:::o;4137:127::-;4198:10;4193:3;4189:20;4186:1;4179:31;4229:4;4226:1;4219:15;4253:4;4250:1;4243:15;4269:128;4336:9;;;4357:11;;;4354:37;;;4371:18;;:::i;4746:125::-;4811:9;;;4832:10;;;4829:36;;;4845:18;;:::i

Swarm Source

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