ETH Price: $3,505.54 (-0.11%)
Gas: 2 Gwei

Token

COPIUM (COPIUM)
 

Overview

Max Total Supply

1,000,000,000 COPIUM

Holders

52

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.000000006 COPIUM

Value
$0.00
0xA8644423DE1Df7B40f5183D80504BB67111E97a9
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
COPIUM

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
https://t.me/Copiumerc20
                                                  *@*      @((((@               
                                               (((((((((@(((((((((((@           
                                             @#((((((((@((((((((((((((.         
                                          @&@#((#&@%(@@(((((#@(%&((((((&        
                                         @((((((((((%(((((((((((#@%((((&((#     
                                           @(((((((((@(((((((((@(((((((((@@@    
           @@@%@                             *%@@@@(&@@((@#(((((((((((@@@@@@(   
           @/                               ((((/@*@//*%&///(@((((#@@@@@@((((@  
           @*@   @.                        ##////(@@///////*##(@*#/@@@((((((((  
           ,,,               @             @##&   (#@///////////(*&//((((((((   
   ,,,,,,,,,,,,,,,,,,,,&    .   *(       /@  @@@@@@@@@@%%((((((((((((((((((@    
   ,,,@@/(##@,(@,@(,,@,,@          @&    #,         @(((((((((((((((%@%&%%%%%(  
   ,,,(,,@,*,,.,%,@,,@,,@                         @%%%%%%%%%%%%%%%%%%%%%%%%%%%  
   .,,,,,,,,,,,,,,,,,,,,@                       %%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ 
*/
pragma solidity ^0.8.0;
// SPDX-License-Identifier: MIT
/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with 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;
    }
}
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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);
    }
}

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

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

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

contract COPIUM is ERC20, Ownable {
    uint256 constant maxWalletStart = 1e18;
    uint256 constant addMaxWalletPerMinute = 1e18;
    uint256 public constant totalSupplyOnStart = 1e18;
    uint256 tradingStartTime;
    address public pool;

    constructor() ERC20("COPIUM", "COPIUM") {
        _mint(msg.sender, totalSupplyOnStart);
    }

    function decimals() public pure override returns (uint8) {
        return 9;
    }

    function maxWallet() public view returns (uint256) {
        if (tradingStartTime == 0) return totalSupply();
        uint256 res = maxWalletStart +
            ((block.timestamp - tradingStartTime) * addMaxWalletPerMinute) /
            (1 minutes);
        if (res > totalSupply()) return totalSupply();
        return res;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        // before start trading only owner can manipulate the token
        if (pool == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        // check max wallet
        if (to != pool)
            require(balanceOf(to) + amount <= maxWallet(), "wallet maximum");
    }

    function startTrade(address poolAddress) public onlyOwner {
        tradingStartTime = block.timestamp;
        pool = poolAddress;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"poolAddress","type":"address"}],"name":"startTrade","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":[],"name":"totalSupplyOnStart","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252600680825265434f5049554d60d01b602080840182815285518087019096529285528401528151919291620000539160039162000376565b5080516200006990600490602084019062000376565b5050506200008662000080620000a060201b60201c565b620000a5565b6200009a33670de0b6b3a7640000620000f7565b62000586565b335b90565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001295760405162461bcd60e51b815260040162000120906200047b565b60405180910390fd5b6200013760008383620001d9565b80600260008282546200014b9190620004bb565b90915550506001600160a01b038216600090815260208190526040812080548392906200017a908490620004bb565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001bf908590620004b2565b60405180910390a3620001d560008383620002ac565b5050565b6007546001600160a01b03166200025357620001f4620002b1565b6001600160a01b0316836001600160a01b031614806200022e575062000219620002b1565b6001600160a01b0316826001600160a01b0316145b6200024d5760405162461bcd60e51b815260040162000120906200041c565b620002ac565b6007546001600160a01b03838116911614620002ac5762000273620002c0565b816200027f8462000355565b6200028b9190620004bb565b1115620002ac5760405162461bcd60e51b8152600401620001209062000453565b505050565b6005546001600160a01b031690565b600060065460001415620002e057620002d862000370565b9050620000a2565b6000603c670de0b6b3a764000060065442620002fd919062000519565b620003099190620004f7565b620003159190620004d6565b6200032990670de0b6b3a7640000620004bb565b90506200033562000370565b81111562000350576200034762000370565b915050620000a2565b905090565b6001600160a01b031660009081526020819052604090205490565b60025490565b828054620003849062000533565b90600052602060002090601f016020900481019282620003a85760008555620003f3565b82601f10620003c357805160ff1916838001178555620003f3565b82800160010185558215620003f3579182015b82811115620003f3578251825591602001919060010190620003d6565b506200040192915062000405565b5090565b5b8082111562000401576000815560010162000406565b60208082526016908201527f74726164696e67206973206e6f74207374617274656400000000000000000000604082015260600190565b6020808252600e908201526d77616c6c6574206d6178696d756d60901b604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620004d157620004d162000570565b500190565b600082620004f257634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161562000514576200051462000570565b500290565b6000828210156200052e576200052e62000570565b500390565b6002810460018216806200054857607f821691505b602082108114156200056a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610eae80620005966000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d714610206578063a9059cbb14610219578063dd62ed3e1461022c578063f2fde38b1461023f578063f8b45b051461025257610116565b8063715018a6146101e657806375a50dae146101ee5780638da5cb5b146101f657806395d89b41146101fe57610116565b806323b872dd116100e957806323b872dd14610183578063313ce5671461019657806339509351146101ab5780636b0ec5b6146101be57806370a08231146101d357610116565b806306fdde031461011b578063095ea7b31461013957806316f0115b1461015957806318160ddd1461016e575b600080fd5b61012361025a565b6040516101309190610a9b565b60405180910390f35b61014c610147366004610a53565b6102ed565b6040516101309190610a90565b61016161030a565b6040516101309190610a7c565b610176610319565b6040516101309190610da2565b61014c610191366004610a18565b61031f565b61019e6103b8565b6040516101309190610dab565b61014c6101b9366004610a53565b6103bd565b6101d16101cc3660046109c5565b610411565b005b6101766101e13660046109c5565b610476565b6101d1610495565b6101766104e0565b6101616104ec565b6101236104fb565b61014c610214366004610a53565b61050a565b61014c610227366004610a53565b610583565b61017661023a3660046109e6565b610597565b6101d161024d3660046109c5565b6105c2565b610176610633565b60606003805461026990610e27565b80601f016020809104026020016040519081016040528092919081815260200182805461029590610e27565b80156102e25780601f106102b7576101008083540402835291602001916102e2565b820191906000526020600020905b8154815290600101906020018083116102c557829003601f168201915b505050505090505b90565b60006103016102fa6106b6565b84846106ba565b50600192915050565b6007546001600160a01b031681565b60025490565b600061032c84848461076e565b6001600160a01b03841660009081526001602052604081208161034d6106b6565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103995760405162461bcd60e51b815260040161039090610bff565b60405180910390fd5b6103ad856103a56106b6565b8584036106ba565b506001949350505050565b600990565b60006103016103ca6106b6565b8484600160006103d86106b6565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205461040c9190610db9565b6106ba565b6104196106b6565b6001600160a01b031661042a6104ec565b6001600160a01b0316146104505760405162461bcd60e51b815260040161039090610c47565b42600655600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0381166000908152602081905260409020545b919050565b61049d6106b6565b6001600160a01b03166104ae6104ec565b6001600160a01b0316146104d45760405162461bcd60e51b815260040161039090610c47565b6104de6000610898565b565b670de0b6b3a764000081565b6005546001600160a01b031690565b60606004805461026990610e27565b600080600160006105196106b6565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105655760405162461bcd60e51b815260040161039090610d5d565b6105796105706106b6565b858584036106ba565b5060019392505050565b60006103016105906106b6565b848461076e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105ca6106b6565b6001600160a01b03166105db6104ec565b6001600160a01b0316146106015760405162461bcd60e51b815260040161039090610c47565b6001600160a01b0381166106275760405162461bcd60e51b815260040161039090610b31565b61063081610898565b50565b60006006546000141561064f57610648610319565b90506102ea565b6000603c670de0b6b3a76400006006544261066a9190610e10565b6106749190610df1565b61067e9190610dd1565b61069090670de0b6b3a7640000610db9565b905061069a610319565b8111156106b1576106a9610319565b9150506102ea565b905090565b3390565b6001600160a01b0383166106e05760405162461bcd60e51b815260040161039090610cf1565b6001600160a01b0382166107065760405162461bcd60e51b815260040161039090610b77565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610761908590610da2565b60405180910390a3505050565b6001600160a01b0383166107945760405162461bcd60e51b815260040161039090610cac565b6001600160a01b0382166107ba5760405162461bcd60e51b815260040161039090610aee565b6107c58383836108ea565b6001600160a01b038316600090815260208190526040902054818110156107fe5760405162461bcd60e51b815260040161039090610bb9565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610835908490610db9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161087f9190610da2565b60405180910390a36108928484846109a9565b50505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b031661095a576109026104ec565b6001600160a01b0316836001600160a01b0316148061093957506109246104ec565b6001600160a01b0316826001600160a01b0316145b6109555760405162461bcd60e51b815260040161039090610c7c565b6109a9565b6007546001600160a01b038381169116146109a957610977610633565b8161098184610476565b61098b9190610db9565b11156109a95760405162461bcd60e51b815260040161039090610d35565b505050565b80356001600160a01b038116811461049057600080fd5b6000602082840312156109d6578081fd5b6109df826109ae565b9392505050565b600080604083850312156109f8578081fd5b610a01836109ae565b9150610a0f602084016109ae565b90509250929050565b600080600060608486031215610a2c578081fd5b610a35846109ae565b9250610a43602085016109ae565b9150604084013590509250925092565b60008060408385031215610a65578182fd5b610a6e836109ae565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610ac757858101830151858201604001528201610aab565b81811115610ad85783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601690820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252600e908201526d77616c6c6574206d6178696d756d60901b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610dcc57610dcc610e62565b500190565b600082610dec57634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615610e0b57610e0b610e62565b500290565b600082821015610e2257610e22610e62565b500390565b600281046001821680610e3b57607f821691505b60208210811415610e5c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212200b971080cebe8d3202fd96a86db8cac399c4d9150797a7890c22a926173ed50a64736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d714610206578063a9059cbb14610219578063dd62ed3e1461022c578063f2fde38b1461023f578063f8b45b051461025257610116565b8063715018a6146101e657806375a50dae146101ee5780638da5cb5b146101f657806395d89b41146101fe57610116565b806323b872dd116100e957806323b872dd14610183578063313ce5671461019657806339509351146101ab5780636b0ec5b6146101be57806370a08231146101d357610116565b806306fdde031461011b578063095ea7b31461013957806316f0115b1461015957806318160ddd1461016e575b600080fd5b61012361025a565b6040516101309190610a9b565b60405180910390f35b61014c610147366004610a53565b6102ed565b6040516101309190610a90565b61016161030a565b6040516101309190610a7c565b610176610319565b6040516101309190610da2565b61014c610191366004610a18565b61031f565b61019e6103b8565b6040516101309190610dab565b61014c6101b9366004610a53565b6103bd565b6101d16101cc3660046109c5565b610411565b005b6101766101e13660046109c5565b610476565b6101d1610495565b6101766104e0565b6101616104ec565b6101236104fb565b61014c610214366004610a53565b61050a565b61014c610227366004610a53565b610583565b61017661023a3660046109e6565b610597565b6101d161024d3660046109c5565b6105c2565b610176610633565b60606003805461026990610e27565b80601f016020809104026020016040519081016040528092919081815260200182805461029590610e27565b80156102e25780601f106102b7576101008083540402835291602001916102e2565b820191906000526020600020905b8154815290600101906020018083116102c557829003601f168201915b505050505090505b90565b60006103016102fa6106b6565b84846106ba565b50600192915050565b6007546001600160a01b031681565b60025490565b600061032c84848461076e565b6001600160a01b03841660009081526001602052604081208161034d6106b6565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103995760405162461bcd60e51b815260040161039090610bff565b60405180910390fd5b6103ad856103a56106b6565b8584036106ba565b506001949350505050565b600990565b60006103016103ca6106b6565b8484600160006103d86106b6565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205461040c9190610db9565b6106ba565b6104196106b6565b6001600160a01b031661042a6104ec565b6001600160a01b0316146104505760405162461bcd60e51b815260040161039090610c47565b42600655600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0381166000908152602081905260409020545b919050565b61049d6106b6565b6001600160a01b03166104ae6104ec565b6001600160a01b0316146104d45760405162461bcd60e51b815260040161039090610c47565b6104de6000610898565b565b670de0b6b3a764000081565b6005546001600160a01b031690565b60606004805461026990610e27565b600080600160006105196106b6565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105655760405162461bcd60e51b815260040161039090610d5d565b6105796105706106b6565b858584036106ba565b5060019392505050565b60006103016105906106b6565b848461076e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105ca6106b6565b6001600160a01b03166105db6104ec565b6001600160a01b0316146106015760405162461bcd60e51b815260040161039090610c47565b6001600160a01b0381166106275760405162461bcd60e51b815260040161039090610b31565b61063081610898565b50565b60006006546000141561064f57610648610319565b90506102ea565b6000603c670de0b6b3a76400006006544261066a9190610e10565b6106749190610df1565b61067e9190610dd1565b61069090670de0b6b3a7640000610db9565b905061069a610319565b8111156106b1576106a9610319565b9150506102ea565b905090565b3390565b6001600160a01b0383166106e05760405162461bcd60e51b815260040161039090610cf1565b6001600160a01b0382166107065760405162461bcd60e51b815260040161039090610b77565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610761908590610da2565b60405180910390a3505050565b6001600160a01b0383166107945760405162461bcd60e51b815260040161039090610cac565b6001600160a01b0382166107ba5760405162461bcd60e51b815260040161039090610aee565b6107c58383836108ea565b6001600160a01b038316600090815260208190526040902054818110156107fe5760405162461bcd60e51b815260040161039090610bb9565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610835908490610db9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161087f9190610da2565b60405180910390a36108928484846109a9565b50505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b031661095a576109026104ec565b6001600160a01b0316836001600160a01b0316148061093957506109246104ec565b6001600160a01b0316826001600160a01b0316145b6109555760405162461bcd60e51b815260040161039090610c7c565b6109a9565b6007546001600160a01b038381169116146109a957610977610633565b8161098184610476565b61098b9190610db9565b11156109a95760405162461bcd60e51b815260040161039090610d35565b505050565b80356001600160a01b038116811461049057600080fd5b6000602082840312156109d6578081fd5b6109df826109ae565b9392505050565b600080604083850312156109f8578081fd5b610a01836109ae565b9150610a0f602084016109ae565b90509250929050565b600080600060608486031215610a2c578081fd5b610a35846109ae565b9250610a43602085016109ae565b9150604084013590509250925092565b60008060408385031215610a65578182fd5b610a6e836109ae565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610ac757858101830151858201604001528201610aab565b81811115610ad85783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601690820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252600e908201526d77616c6c6574206d6178696d756d60901b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610dcc57610dcc610e62565b500190565b600082610dec57634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615610e0b57610e0b610e62565b500290565b600082821015610e2257610e22610e62565b500390565b600281046001821680610e3b57607f821691505b60208210811415610e5c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212200b971080cebe8d3202fd96a86db8cac399c4d9150797a7890c22a926173ed50a64736f6c63430008000033

Deployed Bytecode Sourcemap

19668:1439:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9707:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11874:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;19893:19::-;;;:::i;:::-;;;;;;;:::i;10827:108::-;;;:::i;:::-;;;;;;;:::i;12525:492::-;;;;;;:::i;:::-;;:::i;20025:84::-;;;:::i;:::-;;;;;;;:::i;13426:215::-;;;;;;:::i;:::-;;:::i;20964:140::-;;;;;;:::i;:::-;;:::i;:::-;;10998:127;;;;;;:::i;:::-;;:::i;3619:103::-;;;:::i;19806:49::-;;;:::i;2968:87::-;;;:::i;9926:104::-;;;:::i;14144:413::-;;;;;;:::i;:::-;;:::i;11338:175::-;;;;;;:::i;:::-;;:::i;11576:151::-;;;;;;:::i;:::-;;:::i;3877:201::-;;;;;;:::i;:::-;;:::i;20117:338::-;;;:::i;9707:100::-;9761:13;9794:5;9787:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9707:100;;:::o;11874:169::-;11957:4;11974:39;11983:12;:10;:12::i;:::-;11997:7;12006:6;11974:8;:39::i;:::-;-1:-1:-1;12031:4:0;11874:169;;;;:::o;19893:19::-;;;-1:-1:-1;;;;;19893:19:0;;:::o;10827:108::-;10915:12;;10827:108;:::o;12525:492::-;12665:4;12682:36;12692:6;12700:9;12711:6;12682:9;:36::i;:::-;-1:-1:-1;;;;;12758:19:0;;12731:24;12758:19;;;:11;:19;;;;;12731:24;12778:12;:10;:12::i;:::-;-1:-1:-1;;;;;12758:33:0;-1:-1:-1;;;;;12758:33:0;;;;;;;;;;;;;12731:60;;12830:6;12810:16;:26;;12802:79;;;;-1:-1:-1;;;12802:79:0;;;;;;;:::i;:::-;;;;;;;;;12917:57;12926:6;12934:12;:10;:12::i;:::-;12967:6;12948:16;:25;12917:8;:57::i;:::-;-1:-1:-1;13005:4:0;;12525:492;-1:-1:-1;;;;12525:492:0:o;20025:84::-;20100:1;20025:84;:::o;13426:215::-;13514:4;13531:80;13540:12;:10;:12::i;:::-;13554:7;13600:10;13563:11;:25;13575:12;:10;:12::i;:::-;-1:-1:-1;;;;;13563:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13563:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;13531:8;:80::i;20964:140::-;3199:12;:10;:12::i;:::-;-1:-1:-1;;;;;3188:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3188:23:0;;3180:68;;;;-1:-1:-1;;;3180:68:0;;;;;;;:::i;:::-;21052:15:::1;21033:16;:34:::0;21078:4:::1;:18:::0;;-1:-1:-1;;;;;;21078:18:0::1;-1:-1:-1::0;;;;;21078:18:0;;;::::1;::::0;;;::::1;::::0;;20964:140::o;10998:127::-;-1:-1:-1;;;;;11099:18:0;;11072:7;11099:18;;;;;;;;;;;10998:127;;;;:::o;3619:103::-;3199:12;:10;:12::i;:::-;-1:-1:-1;;;;;3188:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3188:23:0;;3180:68;;;;-1:-1:-1;;;3180:68:0;;;;;;;:::i;:::-;3684:30:::1;3711:1;3684:18;:30::i;:::-;3619:103::o:0;19806:49::-;19851:4;19806:49;:::o;2968:87::-;3041:6;;-1:-1:-1;;;;;3041:6:0;2968:87;:::o;9926:104::-;9982:13;10015:7;10008:14;;;;;:::i;14144:413::-;14237:4;14254:24;14281:11;:25;14293:12;:10;:12::i;:::-;-1:-1:-1;;;;;14281:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14281:25:0;;;:34;;;;;;;;;;;-1:-1:-1;14334:35:0;;;;14326:85;;;;-1:-1:-1;;;14326:85:0;;;;;;;:::i;:::-;14447:67;14456:12;:10;:12::i;:::-;14470:7;14498:15;14479:16;:34;14447:8;:67::i;:::-;-1:-1:-1;14545:4:0;;14144:413;-1:-1:-1;;;14144:413:0:o;11338:175::-;11424:4;11441:42;11451:12;:10;:12::i;:::-;11465:9;11476:6;11441:9;:42::i;11576:151::-;-1:-1:-1;;;;;11692:18:0;;;11665:7;11692:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11576:151::o;3877:201::-;3199:12;:10;:12::i;:::-;-1:-1:-1;;;;;3188:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;3188:23:0;;3180:68;;;;-1:-1:-1;;;3180:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3966:22:0;::::1;3958:73;;;;-1:-1:-1::0;;;3958:73:0::1;;;;;;;:::i;:::-;4042:28;4061:8;4042:18;:28::i;:::-;3877:201:::0;:::o;20117:338::-;20159:7;20183:16;;20203:1;20183:21;20179:47;;;20213:13;:11;:13::i;:::-;20206:20;;;;20179:47;20237:11;20360:9;19795:4;20301:16;;20283:15;:34;;;;:::i;:::-;20282:60;;;;:::i;:::-;20281:89;;;;:::i;:::-;20251:119;;19743:4;20251:119;:::i;:::-;20237:133;;20391:13;:11;:13::i;:::-;20385:3;:19;20381:45;;;20413:13;:11;:13::i;:::-;20406:20;;;;;20381:45;20444:3;-1:-1:-1;20117:338:0;:::o;1780:98::-;1860:10;1780:98;:::o;17828:380::-;-1:-1:-1;;;;;17964:19:0;;17956:68;;;;-1:-1:-1;;;17956:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18043:21:0;;18035:68;;;;-1:-1:-1;;;18035:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18116:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;18168:32;;;;;18146:6;;18168:32;:::i;:::-;;;;;;;;17828:380;;;:::o;15047:733::-;-1:-1:-1;;;;;15187:20:0;;15179:70;;;;-1:-1:-1;;;15179:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15268:23:0;;15260:71;;;;-1:-1:-1;;;15260:71:0;;;;;;;:::i;:::-;15344:47;15365:6;15373:9;15384:6;15344:20;:47::i;:::-;-1:-1:-1;;;;;15428:17:0;;15404:21;15428:17;;;;;;;;;;;15464:23;;;;15456:74;;;;-1:-1:-1;;;15456:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15566:17:0;;;:9;:17;;;;;;;;;;;15586:22;;;15566:42;;15630:20;;;;;;;;:30;;15602:6;;15566:9;15630:30;;15602:6;;15630:30;:::i;:::-;;;;;;;;15695:9;-1:-1:-1;;;;;15678:35:0;15687:6;-1:-1:-1;;;;;15678:35:0;;15706:6;15678:35;;;;;;:::i;:::-;;;;;;;;15726:46;15746:6;15754:9;15765:6;15726:19;:46::i;:::-;15047:733;;;;:::o;4238:191::-;4331:6;;;-1:-1:-1;;;;;4348:17:0;;;-1:-1:-1;;;;;;4348:17:0;;;;;;;4381:40;;4331:6;;;4348:17;4331:6;;4381:40;;4312:16;;4381:40;4238:191;;:::o;20463:493::-;20679:4;;-1:-1:-1;;;;;20679:4:0;20675:139;;20730:7;:5;:7::i;:::-;-1:-1:-1;;;;;20722:15:0;:4;-1:-1:-1;;;;;20722:15:0;;:32;;;;20747:7;:5;:7::i;:::-;-1:-1:-1;;;;;20741:13:0;:2;-1:-1:-1;;;;;20741:13:0;;20722:32;20714:67;;;;-1:-1:-1;;;20714:67:0;;;;;;;:::i;:::-;20796:7;;20675:139;20865:4;;-1:-1:-1;;;;;20859:10:0;;;20865:4;;20859:10;20855:93;;20918:11;:9;:11::i;:::-;20908:6;20892:13;20902:2;20892:9;:13::i;:::-;:22;;;;:::i;:::-;:37;;20884:64;;;;-1:-1:-1;;;20884:64:0;;;;;;;:::i;:::-;20463:493;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;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:1: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:1:o;1294:203::-;-1:-1:-1;;;;;1458:32:1;;;;1440:51;;1428:2;1413:18;;1395:102::o;1502:187::-;1667:14;;1660:22;1642:41;;1630:2;1615:18;;1597:92::o;1694:603::-;;1835:2;1864;1853:9;1846:21;1896:6;1890:13;1939:6;1934:2;1923:9;1919:18;1912:34;1964:4;1977:140;1991:6;1988:1;1985:13;1977:140;;;2086:14;;;2082:23;;2076:30;2052:17;;;2071:2;2048:26;2041:66;2006:10;;1977:140;;;2135:6;2132:1;2129:13;2126:2;;;2205:4;2200:2;2191:6;2180:9;2176:22;2172:31;2165:45;2126:2;-1:-1:-1;2281:2:1;2260:15;-1:-1:-1;;2256:29:1;2241:45;;;;2288:2;2237:54;;1815:482;-1:-1:-1;;;1815:482:1:o;2302:399::-;2504:2;2486:21;;;2543:2;2523:18;;;2516:30;2582:34;2577:2;2562:18;;2555:62;-1:-1:-1;;;2648:2:1;2633:18;;2626:33;2691:3;2676:19;;2476:225::o;2706:402::-;2908:2;2890:21;;;2947:2;2927:18;;;2920:30;2986:34;2981:2;2966:18;;2959:62;-1:-1:-1;;;3052:2:1;3037:18;;3030:36;3098:3;3083:19;;2880:228::o;3113:398::-;3315:2;3297:21;;;3354:2;3334:18;;;3327:30;3393:34;3388:2;3373:18;;3366:62;-1:-1:-1;;;3459:2:1;3444:18;;3437:32;3501:3;3486:19;;3287:224::o;3516:402::-;3718:2;3700:21;;;3757:2;3737:18;;;3730:30;3796:34;3791:2;3776:18;;3769:62;-1:-1:-1;;;3862:2:1;3847:18;;3840:36;3908:3;3893:19;;3690:228::o;3923:404::-;4125:2;4107:21;;;4164:2;4144:18;;;4137:30;4203:34;4198:2;4183:18;;4176:62;-1:-1:-1;;;4269:2:1;4254:18;;4247:38;4317:3;4302:19;;4097:230::o;4332:356::-;4534:2;4516:21;;;4553:18;;;4546:30;4612:34;4607:2;4592:18;;4585:62;4679:2;4664:18;;4506:182::o;4693:346::-;4895:2;4877:21;;;4934:2;4914:18;;;4907:30;-1:-1:-1;;;4968:2:1;4953:18;;4946:52;5030:2;5015:18;;4867:172::o;5044:401::-;5246:2;5228:21;;;5285:2;5265:18;;;5258:30;5324:34;5319:2;5304:18;;5297:62;-1:-1:-1;;;5390:2:1;5375:18;;5368:35;5435:3;5420:19;;5218:227::o;5450:400::-;5652:2;5634:21;;;5691:2;5671:18;;;5664:30;5730:34;5725:2;5710:18;;5703:62;-1:-1:-1;;;5796:2:1;5781:18;;5774:34;5840:3;5825:19;;5624:226::o;5855:338::-;6057:2;6039:21;;;6096:2;6076:18;;;6069:30;-1:-1:-1;;;6130:2:1;6115:18;;6108:44;6184:2;6169:18;;6029:164::o;6198:401::-;6400:2;6382:21;;;6439:2;6419:18;;;6412:30;6478:34;6473:2;6458:18;;6451:62;-1:-1:-1;;;6544:2:1;6529:18;;6522:35;6589:3;6574:19;;6372:227::o;6604:177::-;6750:25;;;6738:2;6723:18;;6705:76::o;6786:184::-;6958:4;6946:17;;;;6928:36;;6916:2;6901:18;;6883:87::o;6975:128::-;;7046:1;7042:6;7039:1;7036:13;7033:2;;;7052:18;;:::i;:::-;-1:-1:-1;7088:9:1;;7023:80::o;7108:217::-;;7174:1;7164:2;;-1:-1:-1;;;7199:31:1;;7253:4;7250:1;7243:15;7281:4;7206:1;7271:15;7164:2;-1:-1:-1;7310:9:1;;7154:171::o;7330:168::-;;7436:1;7432;7428:6;7424:14;7421:1;7418:21;7413:1;7406:9;7399:17;7395:45;7392:2;;;7443:18;;:::i;:::-;-1:-1:-1;7483:9:1;;7382:116::o;7503:125::-;;7571:1;7568;7565:8;7562:2;;;7576:18;;:::i;:::-;-1:-1:-1;7613:9:1;;7552:76::o;7633:380::-;7718:1;7708:12;;7765:1;7755:12;;;7776:2;;7830:4;7822:6;7818:17;7808:27;;7776:2;7883;7875:6;7872:14;7852:18;7849:38;7846:2;;;7929:10;7924:3;7920:20;7917:1;7910:31;7964:4;7961:1;7954:15;7992:4;7989:1;7982:15;7846:2;;7688:325;;;:::o;8018:127::-;8079:10;8074:3;8070:20;8067:1;8060:31;8110:4;8107:1;8100:15;8134:4;8131:1;8124:15

Swarm Source

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