ETH Price: $3,396.32 (-2.16%)
Gas: 15 Gwei

Token

BUTTPOOP (BTPP)
 

Overview

Max Total Supply

89,312,847,864.646356860886845911 BTPP

Holders

959

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
ButtPoop: BTPP Token
Balance
0 BTPP

Value
$0.00
0xbebe03d890a535fd2427358eb030996cfe456ed7
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

BUTTPOOP (BTPP) is a community-driven token that is focused on creating a future where all humans have their basic necessities met and dismantling plutocracies

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BUTTPOOP

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 5: BTPP.sol
pragma solidity ^0.8.0;
//SPDX-License-Identifier: MIT
//BUTTPOOP was created in the stalls
//Adapted from original code written by Cheyenne Atapour
//Birthed by Steve Gartman
//Goals of BUTTPOOP below
//Get someone on TV to say “Buttpoop?” 
//Destroy FIAT
//Take control of government sanitary systems once they inevitably fail
//Redistribution of the guns to everyone under the age of 18, along with a horse, but only 50% of the guns and horses collectively work
//Free pot and/or weed for everybody 
////Make killing bees a felony
//BUTTPOOP.COM
//a Raptor Planet Production
//FLUSHED & GLEEBORKED

import "./ERC20.sol";

contract BUTTPOOP is ERC20 {

    uint FLUSH_FEE = 69;
    uint LOTTERY_FEE = 420;
    uint counter = 0;
    address public owner;

    //mapping of all holders 
    mapping(address => bool) public holders; //people's balances
    mapping(uint => address) public indexes;
    uint public topindex;

    
function gleebork() public view returns (uint256) 
{
        uint256 sum =0;
        for(uint i = 1; i <= 100; i++)
        {
            sum += uint256(blockhash(block.number - i)) % topindex;
        }
        return sum;
}
    
constructor() ERC20 ('BUTTPOOP','BTPP') {
    _mint(msg.sender, 91166642069* 10 ** 18);
    owner = msg.sender;
    holders[msg.sender] = true;
    indexes[topindex] = msg.sender;
    topindex += 1;
    }
    

    
    
function transfer(address recipient, uint256 amount) public override returns (bool){

            
            uint burnAmount = amount*(FLUSH_FEE) / 10000;
            uint lotteryAmount = amount*(LOTTERY_FEE) / 10000;
            _transfer(_msgSender(), address(this), lotteryAmount);
            _burn(_msgSender(), burnAmount);
            _transfer(_msgSender(), recipient, amount-(burnAmount)-(lotteryAmount));
            
            

        
      if (!holders[recipient]) 
        {
            holders[recipient] = true;
            indexes[topindex] = recipient;
            topindex += 1;
        }
        
        counter += 1;
        if (counter == 10) 
        {
        counter = 0;
        address payable winner = payable(indexes[gleebork() % topindex]);
        _transfer(address(this), winner, balanceOf(address(this)));
        }
      
      return true;
    }    


 
}

File 2 of 5: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 3 of 5: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @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_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * 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 override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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 _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

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

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

        _beforeTokenTransfer(account, address(0), amount);

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

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

        _afterTokenTransfer(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 Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 4 of 5: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @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);
}

File 5 of 5: IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[],"name":"gleebork","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"holders","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"indexes","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"topindex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

608060405260456005556101a460065560006007553480156200002157600080fd5b506040805180820182526008815267042555454504f4f560c41b6020808301918252835180850190945260048452630425450560e41b9084015281519192916200006e91600391620001f6565b50805162000084906004906020840190620001f6565b505050620000a6336c0126934761788d8061493400006200010f60201b60201c565b60088054336001600160a01b031991821681179092556000828152600960209081526040808320805460ff19166001908117909155600b80548552600a9093529083208054909416909417909255815462000103908490620002dc565b909155506200033e9050565b6001600160a01b038216620001415760405162461bcd60e51b815260040162000138906200029c565b60405180910390fd5b6200014f60008383620001f1565b8060026000828254620001639190620002dc565b90915550506001600160a01b0382166000908152602081905260408120805483929062000192908490620002dc565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001d7908590620002d3565b60405180910390a3620001ed60008383620001f1565b5050565b505050565b828054620002049062000301565b90600052602060002090601f01602090048101928262000228576000855562000273565b82601f106200024357805160ff191683800117855562000273565b8280016001018555821562000273579182015b828111156200027357825182559160200191906001019062000256565b506200028192915062000285565b5090565b5b8082111562000281576000815560010162000286565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620002fc57634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200031657607f821691505b602082108114156200033857634e487b7160e01b600052602260045260246000fd5b50919050565b610e92806200034e6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146101f1578063a9059cbb14610204578063b2fe33fe14610217578063dd62ed3e1461021f57610100565b806370a08231146101ae5780638da5cb5b146101c157806392f8eb94146101d657806395d89b41146101e957610100565b806318a5bbdc116100d357806318a5bbdc1461016057806323b872dd14610173578063313ce56714610186578063395093511461019b57610100565b806306c9c4121461010557806306fdde0314610123578063095ea7b31461013857806318160ddd14610158575b600080fd5b61010d610232565b60405161011a9190610d4d565b60405180910390f35b61012b61027c565b60405161011a9190610a96565b61014b610146366004610a36565b61030e565b60405161011a9190610a8b565b61010d61032b565b61014b61016e3660046109a8565b610331565b61014b6101813660046109fb565b610346565b61018e6103df565b60405161011a9190610d56565b61014b6101a9366004610a36565b6103e4565b61010d6101bc3660046109a8565b610438565b6101c9610457565b60405161011a9190610a77565b6101c96101e4366004610a5f565b610466565b61012b610481565b61014b6101ff366004610a36565b610490565b61014b610212366004610a36565b610509565b61010d61068c565b61010d61022d3660046109c9565b610692565b60008060015b6064811161027657600b5461024d8243610daf565b610258919040610e1c565b6102629083610d64565b91508061026e81610e01565b915050610238565b50905090565b60606003805461028b90610dc6565b80601f01602080910402602001604051908101604052809291908181526020018280546102b790610dc6565b80156103045780601f106102d957610100808354040283529160200191610304565b820191906000526020600020905b8154815290600101906020018083116102e757829003601f168201915b5050505050905090565b600061032261031b6106bd565b84846106c1565b50600192915050565b60025490565b60096020526000908152604090205460ff1681565b6000610353848484610775565b6001600160a01b0384166000908152600160205260408120816103746106bd565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103c05760405162461bcd60e51b81526004016103b790610bf6565b60405180910390fd5b6103d4856103cc6106bd565b8584036106c1565b506001949350505050565b601290565b60006103226103f16106bd565b8484600160006103ff6106bd565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546104339190610d64565b6106c1565b6001600160a01b0381166000908152602081905260409020545b919050565b6008546001600160a01b031681565b600a602052600090815260409020546001600160a01b031681565b60606004805461028b90610dc6565b6000806001600061049f6106bd565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156104eb5760405162461bcd60e51b81526004016103b790610d08565b6104ff6104f66106bd565b858584036106c1565b5060019392505050565b6000806127106005548461051d9190610d90565b6105279190610d7c565b905060006127106006548561053c9190610d90565b6105469190610d7c565b905061055a6105536106bd565b3083610775565b61056b6105656106bd565b8361089f565b6105916105766106bd565b86836105828689610daf565b61058c9190610daf565b610775565b6001600160a01b03851660009081526009602052604090205460ff16610610576001600160a01b0385166000818152600960209081526040808320805460ff19166001908117909155600b80548552600a90935290832080546001600160a01b031916909417909355805490919061060a908490610d64565b90915550505b6001600760008282546106239190610d64565b9091555050600754600a14156103d45760006007819055506000600a6000600b5461064c610232565b6106569190610e1c565b81526020810191909152604001600020546001600160a01b03169050610680308261058c82610438565b50506001949350505050565b600b5481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166106e75760405162461bcd60e51b81526004016103b790610cc4565b6001600160a01b03821661070d5760405162461bcd60e51b81526004016103b790610b6e565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610768908590610d4d565b60405180910390a3505050565b6001600160a01b03831661079b5760405162461bcd60e51b81526004016103b790610c7f565b6001600160a01b0382166107c15760405162461bcd60e51b81526004016103b790610ae9565b6107cc83838361098c565b6001600160a01b038316600090815260208190526040902054818110156108055760405162461bcd60e51b81526004016103b790610bb0565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061083c908490610d64565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108869190610d4d565b60405180910390a361089984848461098c565b50505050565b6001600160a01b0382166108c55760405162461bcd60e51b81526004016103b790610c3e565b6108d18260008361098c565b6001600160a01b0382166000908152602081905260409020548181101561090a5760405162461bcd60e51b81526004016103b790610b2c565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610939908490610daf565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061097c908690610d4d565b60405180910390a361098c836000845b505050565b80356001600160a01b038116811461045257600080fd5b6000602082840312156109b9578081fd5b6109c282610991565b9392505050565b600080604083850312156109db578081fd5b6109e483610991565b91506109f260208401610991565b90509250929050565b600080600060608486031215610a0f578081fd5b610a1884610991565b9250610a2660208501610991565b9150604084013590509250925092565b60008060408385031215610a48578182fd5b610a5183610991565b946020939093013593505050565b600060208284031215610a70578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610ac257858101830151858201604001528201610aa6565b81811115610ad35783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610d7757610d77610e30565b500190565b600082610d8b57610d8b610e46565b500490565b6000816000190483118215151615610daa57610daa610e30565b500290565b600082821015610dc157610dc1610e30565b500390565b600281046001821680610dda57607f821691505b60208210811415610dfb57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415610e1557610e15610e30565b5060010190565b600082610e2b57610e2b610e46565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fdfea264697066735822122009bf591bd545dc4127b1e08f419b9e523c323aecffe78c89c131340624ff5da964736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146101f1578063a9059cbb14610204578063b2fe33fe14610217578063dd62ed3e1461021f57610100565b806370a08231146101ae5780638da5cb5b146101c157806392f8eb94146101d657806395d89b41146101e957610100565b806318a5bbdc116100d357806318a5bbdc1461016057806323b872dd14610173578063313ce56714610186578063395093511461019b57610100565b806306c9c4121461010557806306fdde0314610123578063095ea7b31461013857806318160ddd14610158575b600080fd5b61010d610232565b60405161011a9190610d4d565b60405180910390f35b61012b61027c565b60405161011a9190610a96565b61014b610146366004610a36565b61030e565b60405161011a9190610a8b565b61010d61032b565b61014b61016e3660046109a8565b610331565b61014b6101813660046109fb565b610346565b61018e6103df565b60405161011a9190610d56565b61014b6101a9366004610a36565b6103e4565b61010d6101bc3660046109a8565b610438565b6101c9610457565b60405161011a9190610a77565b6101c96101e4366004610a5f565b610466565b61012b610481565b61014b6101ff366004610a36565b610490565b61014b610212366004610a36565b610509565b61010d61068c565b61010d61022d3660046109c9565b610692565b60008060015b6064811161027657600b5461024d8243610daf565b610258919040610e1c565b6102629083610d64565b91508061026e81610e01565b915050610238565b50905090565b60606003805461028b90610dc6565b80601f01602080910402602001604051908101604052809291908181526020018280546102b790610dc6565b80156103045780601f106102d957610100808354040283529160200191610304565b820191906000526020600020905b8154815290600101906020018083116102e757829003601f168201915b5050505050905090565b600061032261031b6106bd565b84846106c1565b50600192915050565b60025490565b60096020526000908152604090205460ff1681565b6000610353848484610775565b6001600160a01b0384166000908152600160205260408120816103746106bd565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103c05760405162461bcd60e51b81526004016103b790610bf6565b60405180910390fd5b6103d4856103cc6106bd565b8584036106c1565b506001949350505050565b601290565b60006103226103f16106bd565b8484600160006103ff6106bd565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546104339190610d64565b6106c1565b6001600160a01b0381166000908152602081905260409020545b919050565b6008546001600160a01b031681565b600a602052600090815260409020546001600160a01b031681565b60606004805461028b90610dc6565b6000806001600061049f6106bd565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156104eb5760405162461bcd60e51b81526004016103b790610d08565b6104ff6104f66106bd565b858584036106c1565b5060019392505050565b6000806127106005548461051d9190610d90565b6105279190610d7c565b905060006127106006548561053c9190610d90565b6105469190610d7c565b905061055a6105536106bd565b3083610775565b61056b6105656106bd565b8361089f565b6105916105766106bd565b86836105828689610daf565b61058c9190610daf565b610775565b6001600160a01b03851660009081526009602052604090205460ff16610610576001600160a01b0385166000818152600960209081526040808320805460ff19166001908117909155600b80548552600a90935290832080546001600160a01b031916909417909355805490919061060a908490610d64565b90915550505b6001600760008282546106239190610d64565b9091555050600754600a14156103d45760006007819055506000600a6000600b5461064c610232565b6106569190610e1c565b81526020810191909152604001600020546001600160a01b03169050610680308261058c82610438565b50506001949350505050565b600b5481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166106e75760405162461bcd60e51b81526004016103b790610cc4565b6001600160a01b03821661070d5760405162461bcd60e51b81526004016103b790610b6e565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610768908590610d4d565b60405180910390a3505050565b6001600160a01b03831661079b5760405162461bcd60e51b81526004016103b790610c7f565b6001600160a01b0382166107c15760405162461bcd60e51b81526004016103b790610ae9565b6107cc83838361098c565b6001600160a01b038316600090815260208190526040902054818110156108055760405162461bcd60e51b81526004016103b790610bb0565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061083c908490610d64565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108869190610d4d565b60405180910390a361089984848461098c565b50505050565b6001600160a01b0382166108c55760405162461bcd60e51b81526004016103b790610c3e565b6108d18260008361098c565b6001600160a01b0382166000908152602081905260409020548181101561090a5760405162461bcd60e51b81526004016103b790610b2c565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610939908490610daf565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061097c908690610d4d565b60405180910390a361098c836000845b505050565b80356001600160a01b038116811461045257600080fd5b6000602082840312156109b9578081fd5b6109c282610991565b9392505050565b600080604083850312156109db578081fd5b6109e483610991565b91506109f260208401610991565b90509250929050565b600080600060608486031215610a0f578081fd5b610a1884610991565b9250610a2660208501610991565b9150604084013590509250925092565b60008060408385031215610a48578182fd5b610a5183610991565b946020939093013593505050565b600060208284031215610a70578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610ac257858101830151858201604001528201610aa6565b81811115610ad35783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610d7757610d77610e30565b500190565b600082610d8b57610d8b610e46565b500490565b6000816000190483118215151615610daa57610daa610e30565b500290565b600082821015610dc157610dc1610e30565b500390565b600281046001821680610dda57607f821691505b60208210811415610dfb57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415610e1557610e15610e30565b5060010190565b600082610e2b57610e2b610e46565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fdfea264697066735822122009bf591bd545dc4127b1e08f419b9e523c323aecffe78c89c131340624ff5da964736f6c63430008000033

Deployed Bytecode Sourcemap

629:1653:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;933:225;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2063:98:2;;;:::i;:::-;;;;;;;:::i;4160:166::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3151:106::-;;;:::i;795:39:0:-;;;;;;:::i;:::-;;:::i;4793:478:2:-;;;;;;:::i;:::-;;:::i;3000:91::-;;;:::i;:::-;;;;;;;:::i;5666:212::-;;;;;;:::i;:::-;;:::i;3315:125::-;;;;;;:::i;:::-;;:::i;738:20:0:-;;;:::i;:::-;;;;;;;:::i;860:39::-;;;;;;:::i;:::-;;:::i;2274:102:2:-;;;:::i;6365:405::-;;;;;;:::i;:::-;;:::i;1385:887:0:-;;;;;;:::i;:::-;;:::i;905:20::-;;;:::i;3873:149:2:-;;;;;;:::i;:::-;;:::i;933:225:0:-;974:7;;1031:1;1018:118;1039:3;1034:1;:8;1018:118;;1117:8;;1096:16;1111:1;1096:12;:16;:::i;:::-;1078:47;;;1086:27;1078:47;:::i;:::-;1071:54;;;;:::i;:::-;;-1:-1:-1;1044:3:0;;;;:::i;:::-;;;;1018:118;;;-1:-1:-1;1152:3:0;-1:-1:-1;933:225:0;:::o;2063:98:2:-;2117:13;2149:5;2142:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2063:98;:::o;4160:166::-;4243:4;4259:39;4268:12;:10;:12::i;:::-;4282:7;4291:6;4259:8;:39::i;:::-;-1:-1:-1;4315:4:2;4160:166;;;;:::o;3151:106::-;3238:12;;3151:106;:::o;795:39:0:-;;;;;;;;;;;;;;;:::o;4793:478:2:-;4929:4;4945:36;4955:6;4963:9;4974:6;4945:9;:36::i;:::-;-1:-1:-1;;;;;5019:19:2;;4992:24;5019:19;;;:11;:19;;;;;4992:24;5039:12;:10;:12::i;:::-;-1:-1:-1;;;;;5019:33:2;-1:-1:-1;;;;;5019:33:2;;;;;;;;;;;;;4992:60;;5090:6;5070:16;:26;;5062:79;;;;-1:-1:-1;;;5062:79:2;;;;;;;:::i;:::-;;;;;;;;;5175:57;5184:6;5192:12;:10;:12::i;:::-;5225:6;5206:16;:25;5175:8;:57::i;:::-;-1:-1:-1;5260:4:2;;4793:478;-1:-1:-1;;;;4793:478:2:o;3000:91::-;3082:2;3000:91;:::o;5666:212::-;5754:4;5770:80;5779:12;:10;:12::i;:::-;5793:7;5839:10;5802:11;:25;5814:12;:10;:12::i;:::-;-1:-1:-1;;;;;5802:25:2;;;;;;;;;;;;;;;;;-1:-1:-1;5802:25:2;;;:34;;;;;;;;;;:47;;;;:::i;:::-;5770:8;:80::i;3315:125::-;-1:-1:-1;;;;;3415:18:2;;3389:7;3415:18;;;;;;;;;;;3315:125;;;;:::o;738:20:0:-;;;-1:-1:-1;;;;;738:20:0;;:::o;860:39::-;;;;;;;;;;;;-1:-1:-1;;;;;860:39:0;;:::o;2274:102:2:-;2330:13;2362:7;2355:14;;;;;:::i;6365:405::-;6458:4;6474:24;6501:11;:25;6513:12;:10;:12::i;:::-;-1:-1:-1;;;;;6501:25:2;;;;;;;;;;;;;;;;;-1:-1:-1;6501:25:2;;;:34;;;;;;;;;;;-1:-1:-1;6553:35:2;;;;6545:85;;;;-1:-1:-1;;;6545:85:2;;;;;;;:::i;:::-;6664:67;6673:12;:10;:12::i;:::-;6687:7;6715:15;6696:16;:34;6664:8;:67::i;:::-;-1:-1:-1;6759:4:2;;6365:405;-1:-1:-1;;;6365:405:2:o;1385:887:0:-;1463:4;1496:15;1535:5;1522:9;;1514:6;:18;;;;:::i;:::-;:26;;;;:::i;:::-;1496:44;;1554:18;1598:5;1583:11;;1575:6;:20;;;;:::i;:::-;:28;;;;:::i;:::-;1554:49;;1617:53;1627:12;:10;:12::i;:::-;1649:4;1656:13;1617:9;:53::i;:::-;1684:31;1690:12;:10;:12::i;:::-;1704:10;1684:5;:31::i;:::-;1729:71;1739:12;:10;:12::i;:::-;1753:9;1785:13;1764:19;1772:10;1764:6;:19;:::i;:::-;:35;;;;:::i;:::-;1729:9;:71::i;:::-;-1:-1:-1;;;;;1849:18:0;;;;;;:7;:18;;;;;;;;1844:154;;-1:-1:-1;;;;;1892:18:0;;;;;;:7;:18;;;;;;;;:25;;-1:-1:-1;;1892:25:0;1913:4;1892:25;;;;;;1939:8;;;1931:17;;:7;:17;;;;;;:29;;-1:-1:-1;;;;;;1931:29:0;;;;;;;1974:13;;1939:8;;1892:18;1974:13;;1913:4;;1974:13;:::i;:::-;;;;-1:-1:-1;;1844:154:0;2027:1;2016:7;;:12;;;;;;;:::i;:::-;;;;-1:-1:-1;;2042:7:0;;2053:2;2042:13;2038:202;;;2086:1;2076:7;:11;;;;2097:22;2130:7;:30;2151:8;;2138:10;:8;:10::i;:::-;:21;;;;:::i;:::-;2130:30;;;;;;;;;;;-1:-1:-1;2130:30:0;;-1:-1:-1;;;;;2130:30:0;;-1:-1:-1;2171:58:0;2189:4;2130:30;2204:24;2189:4;2204:9;:24::i;2171:58::-;2038:202;-1:-1:-1;2261:4:0;;1385:887;-1:-1:-1;;;;1385:887:0:o;905:20::-;;;;:::o;3873:149:2:-;-1:-1:-1;;;;;3988:18:2;;;3962:7;3988:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3873:149::o;587:96:1:-;666:10;587:96;:::o;9941:370:2:-;-1:-1:-1;;;;;10072:19:2;;10064:68;;;;-1:-1:-1;;;10064:68:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;10150:21:2;;10142:68;;;;-1:-1:-1;;;10142:68:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;10221:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;10272:32;;;;;10251:6;;10272:32;:::i;:::-;;;;;;;;9941:370;;;:::o;7244:713::-;-1:-1:-1;;;;;7379:20:2;;7371:70;;;;-1:-1:-1;;;7371:70:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;7459:23:2;;7451:71;;;;-1:-1:-1;;;7451:71:2;;;;;;;:::i;:::-;7533:47;7554:6;7562:9;7573:6;7533:20;:47::i;:::-;-1:-1:-1;;;;;7615:17:2;;7591:21;7615:17;;;;;;;;;;;7650:23;;;;7642:74;;;;-1:-1:-1;;;7642:74:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;7750:17:2;;;:9;:17;;;;;;;;;;;7770:22;;;7750:42;;7812:20;;;;;;;;:30;;7786:6;;7750:9;7812:30;;7786:6;;7812:30;:::i;:::-;;;;;;;;7875:9;-1:-1:-1;;;;;7858:35:2;7867:6;-1:-1:-1;;;;;7858:35:2;;7886:6;7858:35;;;;;;:::i;:::-;;;;;;;;7904:46;7924:6;7932:9;7943:6;7904:19;:46::i;:::-;7244:713;;;;:::o;8942:576::-;-1:-1:-1;;;;;9025:21:2;;9017:67;;;;-1:-1:-1;;;9017:67:2;;;;;;;:::i;:::-;9095:49;9116:7;9133:1;9137:6;9095:20;:49::i;:::-;-1:-1:-1;;;;;9180:18:2;;9155:22;9180:18;;;;;;;;;;;9216:24;;;;9208:71;;;;-1:-1:-1;;;9208:71:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;9313:18:2;;:9;:18;;;;;;;;;;9334:23;;;9313:44;;9377:12;:22;;9351:6;;9313:9;9377:22;;9351:6;;9377:22;:::i;:::-;;;;-1:-1:-1;;9415:37:2;;9441:1;;-1:-1:-1;;;;;9415:37:2;;;;;;;9445:6;;9415:37;:::i;:::-;;;;;;;;9463:48;9483:7;9500:1;9504:6;9463:48;8942:576;;;:::o;14:175:5:-;84:20;;-1:-1:-1;;;;;133:31:5;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:5:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:5:o;1294:190::-;;1406:2;1394:9;1385:7;1381:23;1377:32;1374:2;;;1427:6;1419;1412:22;1374:2;-1:-1:-1;1455:23:5;;1364:120;-1:-1:-1;1364:120:5:o;1489:203::-;-1:-1:-1;;;;;1653:32:5;;;;1635:51;;1623:2;1608:18;;1590:102::o;1697:187::-;1862:14;;1855:22;1837:41;;1825:2;1810:18;;1792:92::o;1889:603::-;;2030:2;2059;2048:9;2041:21;2091:6;2085:13;2134:6;2129:2;2118:9;2114:18;2107:34;2159:4;2172:140;2186:6;2183:1;2180:13;2172:140;;;2281:14;;;2277:23;;2271:30;2247:17;;;2266:2;2243:26;2236:66;2201:10;;2172:140;;;2330:6;2327:1;2324:13;2321:2;;;2400:4;2395:2;2386:6;2375:9;2371:22;2367:31;2360:45;2321:2;-1:-1:-1;2476:2:5;2455:15;-1:-1:-1;;2451:29:5;2436:45;;;;2483:2;2432:54;;2010:482;-1:-1:-1;;;2010:482:5:o;2497:399::-;2699:2;2681:21;;;2738:2;2718:18;;;2711:30;2777:34;2772:2;2757:18;;2750:62;-1:-1:-1;;;2843:2:5;2828:18;;2821:33;2886:3;2871:19;;2671:225::o;2901:398::-;3103:2;3085:21;;;3142:2;3122:18;;;3115:30;3181:34;3176:2;3161:18;;3154:62;-1:-1:-1;;;3247:2:5;3232:18;;3225:32;3289:3;3274:19;;3075:224::o;3304:398::-;3506:2;3488:21;;;3545:2;3525:18;;;3518:30;3584:34;3579:2;3564:18;;3557:62;-1:-1:-1;;;3650:2:5;3635:18;;3628:32;3692:3;3677:19;;3478:224::o;3707:402::-;3909:2;3891:21;;;3948:2;3928:18;;;3921:30;3987:34;3982:2;3967:18;;3960:62;-1:-1:-1;;;4053:2:5;4038:18;;4031:36;4099:3;4084:19;;3881:228::o;4114:404::-;4316:2;4298:21;;;4355:2;4335:18;;;4328:30;4394:34;4389:2;4374:18;;4367:62;-1:-1:-1;;;4460:2:5;4445:18;;4438:38;4508:3;4493:19;;4288:230::o;4523:397::-;4725:2;4707:21;;;4764:2;4744:18;;;4737:30;4803:34;4798:2;4783:18;;4776:62;-1:-1:-1;;;4869:2:5;4854:18;;4847:31;4910:3;4895:19;;4697:223::o;4925:401::-;5127:2;5109:21;;;5166:2;5146:18;;;5139:30;5205:34;5200:2;5185:18;;5178:62;-1:-1:-1;;;5271:2:5;5256:18;;5249:35;5316:3;5301:19;;5099:227::o;5331:400::-;5533:2;5515:21;;;5572:2;5552:18;;;5545:30;5611:34;5606:2;5591:18;;5584:62;-1:-1:-1;;;5677:2:5;5662:18;;5655:34;5721:3;5706:19;;5505:226::o;5736:401::-;5938:2;5920:21;;;5977:2;5957:18;;;5950:30;6016:34;6011:2;5996:18;;5989:62;-1:-1:-1;;;6082:2:5;6067:18;;6060:35;6127:3;6112:19;;5910:227::o;6142:177::-;6288:25;;;6276:2;6261:18;;6243:76::o;6324:184::-;6496:4;6484:17;;;;6466:36;;6454:2;6439:18;;6421:87::o;6513:128::-;;6584:1;6580:6;6577:1;6574:13;6571:2;;;6590:18;;:::i;:::-;-1:-1:-1;6626:9:5;;6561:80::o;6646:120::-;;6712:1;6702:2;;6717:18;;:::i;:::-;-1:-1:-1;6751:9:5;;6692:74::o;6771:168::-;;6877:1;6873;6869:6;6865:14;6862:1;6859:21;6854:1;6847:9;6840:17;6836:45;6833:2;;;6884:18;;:::i;:::-;-1:-1:-1;6924:9:5;;6823:116::o;6944:125::-;;7012:1;7009;7006:8;7003:2;;;7017:18;;:::i;:::-;-1:-1:-1;7054:9:5;;6993:76::o;7074:380::-;7159:1;7149:12;;7206:1;7196:12;;;7217:2;;7271:4;7263:6;7259:17;7249:27;;7217:2;7324;7316:6;7313:14;7293:18;7290:38;7287:2;;;7370:10;7365:3;7361:20;7358:1;7351:31;7405:4;7402:1;7395:15;7433:4;7430:1;7423:15;7287:2;;7129:325;;;:::o;7459:135::-;;-1:-1:-1;;7519:17:5;;7516:2;;;7539:18;;:::i;:::-;-1:-1:-1;7586:1:5;7575:13;;7506:88::o;7599:112::-;;7657:1;7647:2;;7662:18;;:::i;:::-;-1:-1:-1;7696:9:5;;7637:74::o;7716:127::-;7777:10;7772:3;7768:20;7765:1;7758:31;7808:4;7805:1;7798:15;7832:4;7829:1;7822:15;7848:127;7909:10;7904:3;7900:20;7897:1;7890:31;7940:4;7937:1;7930:15;7964:4;7961:1;7954:15

Swarm Source

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