ETH Price: $3,186.01 (+2.83%)

Token

Red Scarlet (AKARI)
 

Overview

Max Total Supply

100,000,000 AKARI

Holders

13

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,000,000 AKARI

Value
$0.00
0x2d2dfe766411515f0f91ec11a120d4e2c5f788f8
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:
Akari

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-22
*/

//  ^    ^    ^       ^    ^    ^       ^    ^    ^    ^    ^    ^    ^  
// /T\  /H\  /E\     /R\  /E\  /D\     /S\  /C\  /A\  /R\  /L\  /E\  /T\ 
//<___><___><___>   <___><___><___>   <___><___><___><___><___><___><___>

pragma solidity ^0.6.10;

// SPDX-License-Identifier: UNLICENSED

/*
 * @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 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;
    mapping(address => bool) public Excludecheck; 
     mapping(address => bool) public Blocklist;  

    uint256 public MaxWallet =3000000e18;

    constructor () public {
        _name = 'Red Scarlet';
        _symbol = 'AKARI';
        _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));
        require(!Blocklist[from],"From Address is Blocklisted");
        require(!Blocklist[to],"To Address is Blocklisted");
        if(!Excludecheck[to]){ require(_balances[to].add(value) <= MaxWallet,"Wallet Limit Exceed"); }
        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(value);
        emit Transfer(from, to, value);
    }

    /**
     * @dev Internal function that mints an amount of the token and assigns it to
     * an account. This encapsulates the modification of balances such that the
     * proper events are emitted.
     * @param account The account that will receive the created tokens.
     * @param value The amount that will be created.
     */
    function _mint(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);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account.
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burn(address account, uint256 value) internal {
        require(account != address(0));

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

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account, deducting from the sender's allowance for said account. Uses the
     * internal burn function.
     * Emits an Approval event (reflecting the reduced allowance).
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burnFrom(address account, uint256 value) internal {
        _allowed[account][msg.sender] = _allowed[account][msg.sender].sub(value);
        _burn(account, value);
        emit Approval(account, msg.sender, _allowed[account][msg.sender]);
    }
}

// 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.
 */
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 () internal {
        _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;
    }
}

contract Akari is ERC20,Ownable {
    address public UniswapV2Router=address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
     event ExcludeLimitCheck(address indexed from, address indexed to, bool value);
    constructor () public ERC20 () {
        Excludecheck[msg.sender]=true;
        Excludecheck[UniswapV2Router]=true;
        _mint(msg.sender,100000000e18);
    }
    
 
    /**
     * @dev Burns token balance in "account" and decrease totalsupply of token
     * Can only be called by the current owner.
     */
    function burn(address account, uint256 value) public onlyOwner {
        _burn(account, value);
    }

       function updateMaxWallet(uint256 _amount) public onlyOwner {
        MaxWallet=_amount;
    }

      function ExcludeLimitcheck(address _addr,bool _status) public onlyOwner() {
        Excludecheck[_addr]=_status;
        emit ExcludeLimitCheck(address(0), address(this), _status);
    }

     function AddBlacklist(address _addr,bool _status) public onlyOwner() {
        Blocklist[_addr]=_status;
    }

}

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":"bool","name":"value","type":"bool"}],"name":"ExcludeLimitCheck","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":"_addr","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"AddBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Blocklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"ExcludeLimitcheck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Excludecheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UniswapV2Router","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"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":"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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"updateMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526a027b46536c66c8e3000000600855600a80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790553480156200004657600080fd5b5060408051808201909152600b8082526a1499590814d8d85c9b195d60aa1b60209092019182526200007b916003916200023d565b5060408051808201909152600580825264414b41524960d81b6020909201918252620000aa916004916200023d565b506005805460ff19166012179055620000c262000166565b600980546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3336000818152600660205260408082208054600160ff199182168117909255600a546001600160a01b03168452919092208054909116909117905562000160906a52b7d2dcc80cd2e40000006200016a565b620002d9565b3390565b6001600160a01b0382166200017e57600080fd5b6200019a816002546200022360201b62000c1a1790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620001cd91839062000c1a62000223821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828201838110156200023657600080fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200028057805160ff1916838001178555620002b0565b82800160010185558215620002b0579182015b82811115620002b057825182559160200191906001019062000293565b50620002be929150620002c2565b5090565b5b80821115620002be5760008155600101620002c3565b610f8d80620002e96000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a457c2d71161007c578063a457c2d7146103a7578063a9059cbb146103d3578063bd6de503146103ff578063be27094114610425578063dd62ed3e14610453578063f2fde38b1461048157610142565b806370a082311461033d578063715018a6146103635780638da5cb5b1461036b57806395d89b41146103735780639dc29fac1461037b57610142565b80631c499ab01161010a5780631c499ab01461026857806323b872dd14610287578063313ce567146102bd57806339509351146102db5780634a4a9a6814610307578063510f11091461030f57610142565b8063055add0d1461014757806306fdde031461016b578063095ea7b3146101e857806318160ddd1461022857806318417e5214610242575b600080fd5b61014f6104a7565b604080516001600160a01b039092168252519081900360200190f35b6101736104b6565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ad578181015183820152602001610195565b50505050905090810190601f1680156101da5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610214600480360360408110156101fe57600080fd5b506001600160a01b03813516906020013561054c565b604080519115158252519081900360200190f35b6102306105c8565b60408051918252519081900360200190f35b6102146004803603602081101561025857600080fd5b50356001600160a01b03166105ce565b6102856004803603602081101561027e57600080fd5b50356105e3565b005b6102146004803603606081101561029d57600080fd5b506001600160a01b03813581169160208101359091169060400135610640565b6102c5610703565b6040805160ff9092168252519081900360200190f35b610214600480360360408110156102f157600080fd5b506001600160a01b03813516906020013561070c565b6102306107b4565b6102856004803603604081101561032557600080fd5b506001600160a01b03813516906020013515156107ba565b6102306004803603602081101561035357600080fd5b50356001600160a01b0316610872565b61028561088d565b61014f61092f565b61017361093e565b6102856004803603604081101561039157600080fd5b506001600160a01b03813516906020013561099f565b610214600480360360408110156103bd57600080fd5b506001600160a01b038135169060200135610a05565b610214600480360360408110156103e957600080fd5b506001600160a01b038135169060200135610a48565b6102146004803603602081101561041557600080fd5b50356001600160a01b0316610a5e565b6102856004803603604081101561043b57600080fd5b506001600160a01b0381351690602001351515610a73565b6102306004803603604081101561046957600080fd5b506001600160a01b0381358116916020013516610af6565b6102856004803603602081101561049757600080fd5b50356001600160a01b0316610b21565b600a546001600160a01b031681565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105425780601f1061051757610100808354040283529160200191610542565b820191906000526020600020905b81548152906001019060200180831161052557829003601f168201915b5050505050905090565b60006001600160a01b03831661056157600080fd5b3360008181526001602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b60066020526000908152604090205460ff1681565b6105eb610c33565b6009546001600160a01b0390811691161461063b576040805162461bcd60e51b81526020600482018190526024820152600080516020610f38833981519152604482015290519081900360640190fd5b600855565b6001600160a01b038316600090815260016020908152604080832033845290915281205461066e9083610c37565b6001600160a01b038516600090815260016020908152604080832033845290915290205561069d848484610c4c565b6001600160a01b0384166000818152600160209081526040808320338085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60055460ff1690565b60006001600160a01b03831661072157600080fd5b3360009081526001602090815260408083206001600160a01b038716845290915290205461074f9083610c1a565b3360008181526001602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b60085481565b6107c2610c33565b6009546001600160a01b03908116911614610812576040805162461bcd60e51b81526020600482018190526024820152600080516020610f38833981519152604482015290519081900360640190fd5b6001600160a01b0382166000908152600660209081526040808320805460ff1916851515908117909155815190815290513093927f854a8c8ea7d6c9448e9d84d25884ed0fa25b58c7f92b021cf4c5bbf5ab257de7928290030190a35050565b6001600160a01b031660009081526020819052604090205490565b610895610c33565b6009546001600160a01b039081169116146108e5576040805162461bcd60e51b81526020600482018190526024820152600080516020610f38833981519152604482015290519081900360640190fd5b6009546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980546001600160a01b0319169055565b6009546001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105425780601f1061051757610100808354040283529160200191610542565b6109a7610c33565b6009546001600160a01b039081169116146109f7576040805162461bcd60e51b81526020600482018190526024820152600080516020610f38833981519152604482015290519081900360640190fd5b610a018282610e76565b5050565b60006001600160a01b038316610a1a57600080fd5b3360009081526001602090815260408083206001600160a01b038716845290915290205461074f9083610c37565b6000610a55338484610c4c565b50600192915050565b60076020526000908152604090205460ff1681565b610a7b610c33565b6009546001600160a01b03908116911614610acb576040805162461bcd60e51b81526020600482018190526024820152600080516020610f38833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610b29610c33565b6009546001600160a01b03908116911614610b79576040805162461bcd60e51b81526020600482018190526024820152600080516020610f38833981519152604482015290519081900360640190fd5b6001600160a01b038116610bbe5760405162461bcd60e51b8152600401808060200182810382526026815260200180610f126026913960400191505060405180910390fd5b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015610c2c57600080fd5b9392505050565b3390565b600082821115610c4657600080fd5b50900390565b6001600160a01b038216610c5f57600080fd5b6001600160a01b03831660009081526007602052604090205460ff1615610ccd576040805162461bcd60e51b815260206004820152601b60248201527f46726f6d204164647265737320697320426c6f636b6c69737465640000000000604482015290519081900360640190fd5b6001600160a01b03821660009081526007602052604090205460ff1615610d3b576040805162461bcd60e51b815260206004820152601960248201527f546f204164647265737320697320426c6f636b6c697374656400000000000000604482015290519081900360640190fd5b6001600160a01b03821660009081526006602052604090205460ff16610dca576008546001600160a01b038316600090815260208190526040902054610d819083610c1a565b1115610dca576040805162461bcd60e51b815260206004820152601360248201527215d85b1b195d08131a5b5a5d08115e18d95959606a1b604482015290519081900360640190fd5b6001600160a01b038316600090815260208190526040902054610ded9082610c37565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610e1c9082610c1a565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6001600160a01b038216610e8957600080fd5b600254610e969082610c37565b6002556001600160a01b038216600090815260208190526040902054610ebc9082610c37565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212203d9c0bdf44fd1f78ffa7976f4f07ca54685c94a7f81329c912f352db3823a73164736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a457c2d71161007c578063a457c2d7146103a7578063a9059cbb146103d3578063bd6de503146103ff578063be27094114610425578063dd62ed3e14610453578063f2fde38b1461048157610142565b806370a082311461033d578063715018a6146103635780638da5cb5b1461036b57806395d89b41146103735780639dc29fac1461037b57610142565b80631c499ab01161010a5780631c499ab01461026857806323b872dd14610287578063313ce567146102bd57806339509351146102db5780634a4a9a6814610307578063510f11091461030f57610142565b8063055add0d1461014757806306fdde031461016b578063095ea7b3146101e857806318160ddd1461022857806318417e5214610242575b600080fd5b61014f6104a7565b604080516001600160a01b039092168252519081900360200190f35b6101736104b6565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ad578181015183820152602001610195565b50505050905090810190601f1680156101da5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610214600480360360408110156101fe57600080fd5b506001600160a01b03813516906020013561054c565b604080519115158252519081900360200190f35b6102306105c8565b60408051918252519081900360200190f35b6102146004803603602081101561025857600080fd5b50356001600160a01b03166105ce565b6102856004803603602081101561027e57600080fd5b50356105e3565b005b6102146004803603606081101561029d57600080fd5b506001600160a01b03813581169160208101359091169060400135610640565b6102c5610703565b6040805160ff9092168252519081900360200190f35b610214600480360360408110156102f157600080fd5b506001600160a01b03813516906020013561070c565b6102306107b4565b6102856004803603604081101561032557600080fd5b506001600160a01b03813516906020013515156107ba565b6102306004803603602081101561035357600080fd5b50356001600160a01b0316610872565b61028561088d565b61014f61092f565b61017361093e565b6102856004803603604081101561039157600080fd5b506001600160a01b03813516906020013561099f565b610214600480360360408110156103bd57600080fd5b506001600160a01b038135169060200135610a05565b610214600480360360408110156103e957600080fd5b506001600160a01b038135169060200135610a48565b6102146004803603602081101561041557600080fd5b50356001600160a01b0316610a5e565b6102856004803603604081101561043b57600080fd5b506001600160a01b0381351690602001351515610a73565b6102306004803603604081101561046957600080fd5b506001600160a01b0381358116916020013516610af6565b6102856004803603602081101561049757600080fd5b50356001600160a01b0316610b21565b600a546001600160a01b031681565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105425780601f1061051757610100808354040283529160200191610542565b820191906000526020600020905b81548152906001019060200180831161052557829003601f168201915b5050505050905090565b60006001600160a01b03831661056157600080fd5b3360008181526001602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b60066020526000908152604090205460ff1681565b6105eb610c33565b6009546001600160a01b0390811691161461063b576040805162461bcd60e51b81526020600482018190526024820152600080516020610f38833981519152604482015290519081900360640190fd5b600855565b6001600160a01b038316600090815260016020908152604080832033845290915281205461066e9083610c37565b6001600160a01b038516600090815260016020908152604080832033845290915290205561069d848484610c4c565b6001600160a01b0384166000818152600160209081526040808320338085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60055460ff1690565b60006001600160a01b03831661072157600080fd5b3360009081526001602090815260408083206001600160a01b038716845290915290205461074f9083610c1a565b3360008181526001602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b60085481565b6107c2610c33565b6009546001600160a01b03908116911614610812576040805162461bcd60e51b81526020600482018190526024820152600080516020610f38833981519152604482015290519081900360640190fd5b6001600160a01b0382166000908152600660209081526040808320805460ff1916851515908117909155815190815290513093927f854a8c8ea7d6c9448e9d84d25884ed0fa25b58c7f92b021cf4c5bbf5ab257de7928290030190a35050565b6001600160a01b031660009081526020819052604090205490565b610895610c33565b6009546001600160a01b039081169116146108e5576040805162461bcd60e51b81526020600482018190526024820152600080516020610f38833981519152604482015290519081900360640190fd5b6009546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980546001600160a01b0319169055565b6009546001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105425780601f1061051757610100808354040283529160200191610542565b6109a7610c33565b6009546001600160a01b039081169116146109f7576040805162461bcd60e51b81526020600482018190526024820152600080516020610f38833981519152604482015290519081900360640190fd5b610a018282610e76565b5050565b60006001600160a01b038316610a1a57600080fd5b3360009081526001602090815260408083206001600160a01b038716845290915290205461074f9083610c37565b6000610a55338484610c4c565b50600192915050565b60076020526000908152604090205460ff1681565b610a7b610c33565b6009546001600160a01b03908116911614610acb576040805162461bcd60e51b81526020600482018190526024820152600080516020610f38833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610b29610c33565b6009546001600160a01b03908116911614610b79576040805162461bcd60e51b81526020600482018190526024820152600080516020610f38833981519152604482015290519081900360640190fd5b6001600160a01b038116610bbe5760405162461bcd60e51b8152600401808060200182810382526026815260200180610f126026913960400191505060405180910390fd5b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015610c2c57600080fd5b9392505050565b3390565b600082821115610c4657600080fd5b50900390565b6001600160a01b038216610c5f57600080fd5b6001600160a01b03831660009081526007602052604090205460ff1615610ccd576040805162461bcd60e51b815260206004820152601b60248201527f46726f6d204164647265737320697320426c6f636b6c69737465640000000000604482015290519081900360640190fd5b6001600160a01b03821660009081526007602052604090205460ff1615610d3b576040805162461bcd60e51b815260206004820152601960248201527f546f204164647265737320697320426c6f636b6c697374656400000000000000604482015290519081900360640190fd5b6001600160a01b03821660009081526006602052604090205460ff16610dca576008546001600160a01b038316600090815260208190526040902054610d819083610c1a565b1115610dca576040805162461bcd60e51b815260206004820152601360248201527215d85b1b195d08131a5b5a5d08115e18d95959606a1b604482015290519081900360640190fd5b6001600160a01b038316600090815260208190526040902054610ded9082610c37565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610e1c9082610c1a565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6001600160a01b038216610e8957600080fd5b600254610e969082610c37565b6002556001600160a01b038216600090815260208190526040902054610ebc9082610c37565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212203d9c0bdf44fd1f78ffa7976f4f07ca54685c94a7f81329c912f352db3823a73164736f6c634300060c0033

Deployed Bytecode Sourcemap

15130:1074:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15169:82;;;:::i;:::-;;;;-1:-1:-1;;;;;15169:82:0;;;;;;;;;;;;;;5268:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7649:261;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;7649:261:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5764:100;;;:::i;:::-;;;;;;;;;;;;;;;;4938:44;;;;;;;;;;;;;;;;-1:-1:-1;4938:44:0;-1:-1:-1;;;;;4938:44:0;;:::i;15784:95::-;;;;;;;;;;;;;;;;-1:-1:-1;15784:95:0;;:::i;:::-;;8383:316;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;8383:316:0;;;;;;;;;;;;;;;;;:::i;5600:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;9214:331;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;9214:331:0;;;;;;;;:::i;5043:36::-;;;:::i;15889:189::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15889:189:0;;;;;;;;;;:::i;6080:115::-;;;;;;;;;;;;;;;;-1:-1:-1;6080:115:0;-1:-1:-1;;;;;6080:115:0;;:::i;14576:148::-;;;:::i;13934:79::-;;;:::i;5426:95::-;;;:::i;15670:103::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15670:103:0;;;;;;;;:::i;10068:341::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;10068:341:0;;;;;;;;:::i;6845:157::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6845:157:0;;;;;;;;:::i;4991:41::-;;;;;;;;;;;;;;;;-1:-1:-1;4991:41:0;-1:-1:-1;;;;;4991:41:0;;:::i;16087:112::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16087:112:0;;;;;;;;;;:::i;6534:140::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6534:140:0;;;;;;;;;;:::i;14879:244::-;;;;;;;;;;;;;;;;-1:-1:-1;14879:244:0;-1:-1:-1;;;;;14879:244:0;;:::i;15169:82::-;;;-1:-1:-1;;;;;15169:82:0;;:::o;5268:91::-;5346:5;5339:12;;;;;;;;-1:-1:-1;;5339:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5313:13;;5339:12;;5346:5;;5339:12;;5346:5;5339:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5268:91;:::o;7649:261::-;7731:4;-1:-1:-1;;;;;7756:21:0;;7748:30;;;;;;7800:10;7791:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;7791:29:0;;;;;;;;;;;;:37;;;7844:36;;;;;;;7791:29;;7800:10;7844:36;;;;;;;;;;;-1:-1:-1;7898:4:0;7649:261;;;;:::o;5764:100::-;5844:12;;5764:100;:::o;4938:44::-;;;;;;;;;;;;;;;:::o;15784:95::-;14156:12;:10;:12::i;:::-;14146:6;;-1:-1:-1;;;;;14146:6:0;;;:22;;;14138:67;;;;;-1:-1:-1;;;14138:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14138:67:0;;;;;;;;;;;;;;;15854:9:::1;:17:::0;15784:95::o;8383:316::-;-1:-1:-1;;;;;8525:14:0;;8479:4;8525:14;;;:8;:14;;;;;;;;8540:10;8525:26;;;;;;;;:37;;8556:5;8525:30;:37::i;:::-;-1:-1:-1;;;;;8496:14:0;;;;;;:8;:14;;;;;;;;8511:10;8496:26;;;;;;;:66;8573:26;8505:4;8589:2;8593:5;8573:9;:26::i;:::-;-1:-1:-1;;;;;8615:54:0;;8642:14;;;;:8;:14;;;;;;;;8630:10;8642:26;;;;;;;;;;;8615:54;;;;;;;8630:10;;8615:54;;;;;;;;;;;;-1:-1:-1;8687:4:0;8383:316;;;;;:::o;5600:91::-;5674:9;;;;5600:91;:::o;9214:331::-;9302:4;-1:-1:-1;;;;;9327:21:0;;9319:30;;;;;;9403:10;9394:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9394:29:0;;;;;;;;;;:45;;9428:10;9394:33;:45::i;:::-;9371:10;9362:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9362:29:0;;;;;;;;;;;;:77;;;9455:60;;;;;;9362:29;;9455:60;;;;;;;;;;;-1:-1:-1;9533:4:0;9214:331;;;;:::o;5043:36::-;;;;:::o;15889:189::-;14156:12;:10;:12::i;:::-;14146:6;;-1:-1:-1;;;;;14146:6:0;;;:22;;;14138:67;;;;;-1:-1:-1;;;14138:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14138:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;15974:19:0;::::1;;::::0;;;:12:::1;:19;::::0;;;;;;;:27;;-1:-1:-1;;15974:27:0::1;::::0;::::1;;::::0;;::::1;::::0;;;16017:53;;;;;;;16055:4:::1;::::0;15974:19;16017:53:::1;::::0;;;;;;::::1;15889:189:::0;;:::o;6080:115::-;-1:-1:-1;;;;;6171:16:0;6144:7;6171:16;;;;;;;;;;;;6080:115::o;14576:148::-;14156:12;:10;:12::i;:::-;14146:6;;-1:-1:-1;;;;;14146:6:0;;;:22;;;14138:67;;;;;-1:-1:-1;;;14138:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14138:67:0;;;;;;;;;;;;;;;14667:6:::1;::::0;14646:40:::1;::::0;14683:1:::1;::::0;-1:-1:-1;;;;;14667:6:0::1;::::0;14646:40:::1;::::0;14683:1;;14646:40:::1;14697:6;:19:::0;;-1:-1:-1;;;;;;14697:19:0::1;::::0;;14576:148::o;13934:79::-;13999:6;;-1:-1:-1;;;;;13999:6:0;13934:79;:::o;5426:95::-;5506:7;5499:14;;;;;;;;-1:-1:-1;;5499:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5473:13;;5499:14;;5506:7;;5499:14;;5506:7;5499:14;;;;;;;;;;;;;;;;;;;;;;;;15670:103;14156:12;:10;:12::i;:::-;14146:6;;-1:-1:-1;;;;;14146:6:0;;;:22;;;14138:67;;;;;-1:-1:-1;;;14138:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14138:67:0;;;;;;;;;;;;;;;15744:21:::1;15750:7;15759:5;15744;:21::i;:::-;15670:103:::0;;:::o;10068:341::-;10161:4;-1:-1:-1;;;;;10186:21:0;;10178:30;;;;;;10262:10;10253:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;10253:29:0;;;;;;;;;;:50;;10287:15;10253:33;:50::i;6845:157::-;6923:4;6940:32;6950:10;6962:2;6966:5;6940:9;:32::i;:::-;-1:-1:-1;6990:4:0;6845:157;;;;:::o;4991:41::-;;;;;;;;;;;;;;;:::o;16087:112::-;14156:12;:10;:12::i;:::-;14146:6;;-1:-1:-1;;;;;14146:6:0;;;:22;;;14138:67;;;;;-1:-1:-1;;;14138:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14138:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16167:16:0;;;::::1;;::::0;;;:9:::1;:16;::::0;;;;:24;;-1:-1:-1;;16167:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;16087:112::o;6534:140::-;-1:-1:-1;;;;;6642:15:0;;;6615:7;6642:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;6534:140::o;14879:244::-;14156:12;:10;:12::i;:::-;14146:6;;-1:-1:-1;;;;;14146:6:0;;;:22;;;14138:67;;;;;-1:-1:-1;;;14138:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14138:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;14968:22:0;::::1;14960:73;;;;-1:-1:-1::0;;;14960:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15070:6;::::0;15049:38:::1;::::0;-1:-1:-1;;;;;15049:38:0;;::::1;::::0;15070:6:::1;::::0;15049:38:::1;::::0;15070:6:::1;::::0;15049:38:::1;15098:6;:17:::0;;-1:-1:-1;;;;;;15098:17:0::1;-1:-1:-1::0;;;;;15098:17:0;;;::::1;::::0;;;::::1;::::0;;14879:244::o;3537:150::-;3595:7;3627:5;;;3651:6;;;;3643:15;;;;;;3678:1;3537:150;-1:-1:-1;;;3537:150:0:o;840:106::-;928:10;840:106;:::o;3301:150::-;3359:7;3392:1;3387;:6;;3379:15;;;;;;-1:-1:-1;3417:5:0;;;3301:150::o;10631:492::-;-1:-1:-1;;;;;10719:16:0;;10711:25;;;;;;-1:-1:-1;;;;;10756:15:0;;;;;;:9;:15;;;;;;;;10755:16;10747:55;;;;;-1:-1:-1;;;10747:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10822:13:0;;;;;;:9;:13;;;;;;;;10821:14;10813:51;;;;;-1:-1:-1;;;10813:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10879:16:0;;;;;;:12;:16;;;;;;;;10875:94;;10934:9;;-1:-1:-1;;;;;10906:13:0;;:9;:13;;;;;;;;;;;:24;;10924:5;10906:17;:24::i;:::-;:37;;10898:68;;;;;-1:-1:-1;;;10898:68:0;;;;;;;;;;;;-1:-1:-1;;;10898:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;10997:15:0;;:9;:15;;;;;;;;;;;:26;;11017:5;10997:19;:26::i;:::-;-1:-1:-1;;;;;10979:15:0;;;:9;:15;;;;;;;;;;;:44;;;;11050:13;;;;;;;:24;;11068:5;11050:17;:24::i;:::-;-1:-1:-1;;;;;11034:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;11090:25;;;;;;;11034:13;;11090:25;;;;;;;;;;;;;10631:492;;;:::o;11978:269::-;-1:-1:-1;;;;;12053:21:0;;12045:30;;;;;;12103:12;;:23;;12120:5;12103:16;:23::i;:::-;12088:12;:38;-1:-1:-1;;;;;12158:18:0;;:9;:18;;;;;;;;;;;:29;;12181:5;12158:22;:29::i;:::-;-1:-1:-1;;;;;12137:18:0;;:9;:18;;;;;;;;;;;:50;;;;12203:36;;;;;;;12137:9;;12203:36;;;;;;;;;;;11978:269;;:::o

Swarm Source

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