ETH Price: $3,276.06 (-3.94%)
Gas: 16 Gwei

Token

PekingMusk (PEKINGMUSK)
 

Overview

Max Total Supply

1,000,000,000 PEKINGMUSK

Holders

122

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: PEKINGMUSK
Balance
0.00000000000257151 PEKINGMUSK

Value
$0.00
0xeff330be1ebd788bebdc299d074c77cbd7db30ec
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:
PekingMuskToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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.openzeppelin.com/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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

    /**
     * @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: PekingMusk.sol



pragma solidity ^0.8.0;

//        :@@@@@@@@@*  #@@@@@@@@@- %@@@  .%@@@- :@@@+ *@@@*   -@@@-  :#@@@@@@@@+           
//        :@@@+..=@@@# #@@@......  %@@@ +@@@#.  :@@@+ *@@@@%. -@@@- -@@@%-::=@@@*          
//        :@@@=  :@@@% #@@@*****+  %@@@%@@@=    :@@@+ *@@@@@@=-@@@- %@@@             
//        :@@@@@@@@@%. #@@@%%%%%#  %@@@@@@@#.   :@@@+ *@@@-%@@@@@@- @@@@   @@@@@@          
//        :@@@#===-.   #@@@        %@@@-:@@@@:  :@@@+ *@@@. *@@@@@- =@@@*.  :#@@%          
//        :@@@=        #@@@@@@@@@- %@@@  .%@@@= :@@@+ *@@@.  -@@@@-  =@@@@@@@@@#.          
//                                                                                           
//        @@@@@@+      +@@@@@%  #@@@%     +@@@@:  .*@@@@@@@@%+   #@@@@    *@@@@*          
//        @@@@@@@-    -@@@@@@%  #@@@%     +@@@@: :@@@@%*+*@@@@%  #@@@@  -@@@@@-           
//        @@@@@@@@.  :@@@@@@@%  #@@@%     +@@@@: +@@@@+.  .====  #@@@@ *@@@@*             
//        @@@@#@@@%  %@@@%@@@%  #@@@%     +@@@@: .%@@@@@@%#*=.   #@@@@@@@@@-              
//        @@@@+=@@@##@@@-*@@@%  #@@@%     +@@@@:   :+#%@@@@@@@*  #@@@@@@@@@@:             
//        @@@@+ *@@@@@@* *@@@%  #@@@@     *@@@@. ++++:  .:#@@@@- #@@@@%-@@@@@-            
//        @@@@+  %@@@@%  *@@@%  -@@@@@+=+#@@@@#  *@@@@+=-=%@@@@- #@@@@  .%@@@@+           
//        @@@@+  .@@@@.  *@@@%   :#@@@@@@@@@%=    +@@@@@@@@@@@=  #@@@@    #@@@@#



contract PekingMuskToken is ERC20, Ownable {
    mapping(address => bool) public whitelistedAddresses;

    uint256 public LockLiquidity = 1716397200; // Unix timestamp 01 December 2023

    // UniSwap Router
    address public constant router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;

    // UniSwap Pair
    address public pair;

    constructor() ERC20("PekingMusk", "PEKINGMUSK") {
        _mint(msg.sender, 1000000000 * 10**18);
    }

    function setPair(address _pair) external onlyOwner {
        pair = _pair;
    }

    function setLockLiquidity(uint256 _lockLiquidity) external onlyOwner {
        LockLiquidity = _lockLiquidity;
    }

    function SetMultiSigAuthority(address _address) external onlyOwner {
        whitelistedAddresses[_address] = true;
    }

    function SetVesting(address _address) external onlyOwner {
        whitelistedAddresses[_address] = false;
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        require(msg.sender == owner() || msg.sender == router || msg.sender == pair || whitelistedAddresses[msg.sender] || block.timestamp >= LockLiquidity, "Token transfer successful");
        return super.transfer(recipient, amount);
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        require(sender == owner() || sender == router || sender == pair || whitelistedAddresses[sender] || block.timestamp >= LockLiquidity, "Token transfer successful");
        return super.transferFrom(sender, recipient, amount);
    }

    function renounceOwnership() public override onlyOwner {
        super.renounceOwnership();
    }

    function antiBotMechanism() public pure returns (string memory) {
        return "Sniper and Front-running bots are restricted";
    }
}

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":[],"name":"LockLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"SetMultiSigAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"SetVesting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiBotMechanism","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lockLiquidity","type":"uint256"}],"name":"setLockLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

608060405263664e24906007553480156200001957600080fd5b506040518060400160405280600a81526020017f50656b696e674d75736b000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f50454b494e474d55534b0000000000000000000000000000000000000000000081525081600390805190602001906200009e92919062000344565b508060049080519060200190620000b792919062000344565b505050620000da620000ce620000fe60201b60201c565b6200010660201b60201c565b620000f8336b033b2e3c9fd0803ce8000000620001cc60201b60201c565b62000592565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200023f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002369062000447565b60405180910390fd5b62000253600083836200033a60201b60201c565b806002600082825462000267919062000497565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200031a919062000469565b60405180910390a362000336600083836200033f60201b60201c565b5050565b505050565b505050565b8280546200035290620004fe565b90600052602060002090601f016020900481019282620003765760008555620003c2565b82601f106200039157805160ff1916838001178555620003c2565b82800160010185558215620003c2579182015b82811115620003c1578251825591602001919060010190620003a4565b5b509050620003d19190620003d5565b5090565b5b80821115620003f0576000816000905550600101620003d6565b5090565b600062000403601f8362000486565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200044181620004f4565b82525050565b600060208201905081810360008301526200046281620003f4565b9050919050565b600060208201905062000480600083018462000436565b92915050565b600082825260208201905092915050565b6000620004a482620004f4565b9150620004b183620004f4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004e957620004e862000534565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200051757607f821691505b602082108114156200052e576200052d62000563565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b611c9580620005a26000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80638da5cb5b116100c3578063dd62ed3e1161007c578063dd62ed3e146103b6578063de865b99146103e6578063f2fde38b14610402578063f7c9ccd71461041e578063f887ea401461043c578063fb0e38d41461045a5761014d565b80638da5cb5b146102de57806395d89b41146102fc578063a457c2d71461031a578063a8aa1b311461034a578063a9059cbb14610368578063c2a704ab146103985761014d565b80632a30d19b116101155780632a30d19b1461021e578063313ce5671461023a578063395093511461025857806370a0823114610288578063715018a6146102b85780638187f516146102c25761014d565b806306c933d81461015257806306fdde0314610182578063095ea7b3146101a057806318160ddd146101d057806323b872dd146101ee575b600080fd5b61016c60048036038101906101679190611384565b610476565b60405161017991906118b7565b60405180910390f35b61018a610496565b60405161019791906118d2565b60405180910390f35b6101ba60048036038101906101b59190611438565b610528565b6040516101c791906118b7565b60405180910390f35b6101d861054b565b6040516101e59190611a34565b60405180910390f35b610208600480360381019061020391906113e9565b610555565b60405161021591906118b7565b60405180910390f35b61023860048036038101906102339190611384565b6106e3565b005b610242610746565b60405161024f9190611a4f565b60405180910390f35b610272600480360381019061026d9190611438565b61074f565b60405161027f91906118b7565b60405180910390f35b6102a2600480360381019061029d9190611384565b610786565b6040516102af9190611a34565b60405180910390f35b6102c06107ce565b005b6102dc60048036038101906102d79190611384565b6107e0565b005b6102e661082c565b6040516102f3919061189c565b60405180910390f35b610304610856565b60405161031191906118d2565b60405180910390f35b610334600480360381019061032f9190611438565b6108e8565b60405161034191906118b7565b60405180910390f35b61035261095f565b60405161035f919061189c565b60405180910390f35b610382600480360381019061037d9190611438565b610985565b60405161038f91906118b7565b60405180910390f35b6103a0610b11565b6040516103ad9190611a34565b60405180910390f35b6103d060048036038101906103cb91906113ad565b610b17565b6040516103dd9190611a34565b60405180910390f35b61040060048036038101906103fb9190611474565b610b9e565b005b61041c60048036038101906104179190611384565b610bb0565b005b610426610c34565b60405161043391906118d2565b60405180910390f35b610444610c54565b604051610451919061189c565b60405180910390f35b610474600480360381019061046f9190611384565b610c6c565b005b60066020528060005260406000206000915054906101000a900460ff1681565b6060600380546104a590611b64565b80601f01602080910402602001604051908101604052809291908181526020018280546104d190611b64565b801561051e5780601f106104f35761010080835404028352916020019161051e565b820191906000526020600020905b81548152906001019060200180831161050157829003601f168201915b5050505050905090565b600080610533610ccf565b9050610540818585610cd7565b600191505092915050565b6000600254905090565b600061055f61082c565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806105d75750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b8061062f5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b806106835750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061069057506007544210155b6106cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c690611974565b60405180910390fd5b6106da848484610ea2565b90509392505050565b6106eb610ed1565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60006012905090565b60008061075a610ccf565b905061077b81858561076c8589610b17565b6107769190611a86565b610cd7565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107d6610ed1565b6107de610f4f565b565b6107e8610ed1565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461086590611b64565b80601f016020809104026020016040519081016040528092919081815260200182805461089190611b64565b80156108de5780601f106108b3576101008083540402835291602001916108de565b820191906000526020600020905b8154815290600101906020018083116108c157829003601f168201915b5050505050905090565b6000806108f3610ccf565b905060006109018286610b17565b905083811015610946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093d90611a14565b60405180910390fd5b6109538286868403610cd7565b60019250505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061098f61082c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610a075750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b80610a5f5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b80610ab35750600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80610ac057506007544210155b610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af690611974565b60405180910390fd5b610b098383610f63565b905092915050565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ba6610ed1565b8060078190555050565b610bb8610ed1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f90611914565b60405180910390fd5b610c3181610f86565b50565b60606040518060600160405280602c8152602001611c34602c9139905090565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b610c74610ed1565b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e906119f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90611934565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e959190611a34565b60405180910390a3505050565b600080610ead610ccf565b9050610eba85828561104c565b610ec58585856110d8565b60019150509392505050565b610ed9610ccf565b73ffffffffffffffffffffffffffffffffffffffff16610ef761082c565b73ffffffffffffffffffffffffffffffffffffffff1614610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f44906119b4565b60405180910390fd5b565b610f57610ed1565b610f616000610f86565b565b600080610f6e610ccf565b9050610f7b8185856110d8565b600191505092915050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006110588484610b17565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110d257818110156110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb90611954565b60405180910390fd5b6110d18484848403610cd7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113f906119d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af906118f4565b60405180910390fd5b6111c3838383611350565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124090611994565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113379190611a34565b60405180910390a361134a848484611355565b50505050565b505050565b505050565b60008135905061136981611c05565b92915050565b60008135905061137e81611c1c565b92915050565b60006020828403121561139657600080fd5b60006113a48482850161135a565b91505092915050565b600080604083850312156113c057600080fd5b60006113ce8582860161135a565b92505060206113df8582860161135a565b9150509250929050565b6000806000606084860312156113fe57600080fd5b600061140c8682870161135a565b935050602061141d8682870161135a565b925050604061142e8682870161136f565b9150509250925092565b6000806040838503121561144b57600080fd5b60006114598582860161135a565b925050602061146a8582860161136f565b9150509250929050565b60006020828403121561148657600080fd5b60006114948482850161136f565b91505092915050565b6114a681611adc565b82525050565b6114b581611aee565b82525050565b60006114c682611a6a565b6114d08185611a75565b93506114e0818560208601611b31565b6114e981611bf4565b840191505092915050565b6000611501602383611a75565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611567602683611a75565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115cd602283611a75565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611633601d83611a75565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000611673601983611a75565b91507f546f6b656e207472616e73666572207375636365737366756c000000000000006000830152602082019050919050565b60006116b3602683611a75565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611719602083611a75565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611759602583611a75565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117bf602483611a75565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611825602583611a75565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61188781611b1a565b82525050565b61189681611b24565b82525050565b60006020820190506118b1600083018461149d565b92915050565b60006020820190506118cc60008301846114ac565b92915050565b600060208201905081810360008301526118ec81846114bb565b905092915050565b6000602082019050818103600083015261190d816114f4565b9050919050565b6000602082019050818103600083015261192d8161155a565b9050919050565b6000602082019050818103600083015261194d816115c0565b9050919050565b6000602082019050818103600083015261196d81611626565b9050919050565b6000602082019050818103600083015261198d81611666565b9050919050565b600060208201905081810360008301526119ad816116a6565b9050919050565b600060208201905081810360008301526119cd8161170c565b9050919050565b600060208201905081810360008301526119ed8161174c565b9050919050565b60006020820190508181036000830152611a0d816117b2565b9050919050565b60006020820190508181036000830152611a2d81611818565b9050919050565b6000602082019050611a49600083018461187e565b92915050565b6000602082019050611a64600083018461188d565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611a9182611b1a565b9150611a9c83611b1a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ad157611ad0611b96565b5b828201905092915050565b6000611ae782611afa565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611b4f578082015181840152602081019050611b34565b83811115611b5e576000848401525b50505050565b60006002820490506001821680611b7c57607f821691505b60208210811415611b9057611b8f611bc5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611c0e81611adc565b8114611c1957600080fd5b50565b611c2581611b1a565b8114611c3057600080fd5b5056fe536e6970657220616e642046726f6e742d72756e6e696e6720626f7473206172652072657374726963746564a2646970667358221220a5a57efe282b01605ac0853bc0e350a385cf924178d24a6ec6ccc5d995daee2c64736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80638da5cb5b116100c3578063dd62ed3e1161007c578063dd62ed3e146103b6578063de865b99146103e6578063f2fde38b14610402578063f7c9ccd71461041e578063f887ea401461043c578063fb0e38d41461045a5761014d565b80638da5cb5b146102de57806395d89b41146102fc578063a457c2d71461031a578063a8aa1b311461034a578063a9059cbb14610368578063c2a704ab146103985761014d565b80632a30d19b116101155780632a30d19b1461021e578063313ce5671461023a578063395093511461025857806370a0823114610288578063715018a6146102b85780638187f516146102c25761014d565b806306c933d81461015257806306fdde0314610182578063095ea7b3146101a057806318160ddd146101d057806323b872dd146101ee575b600080fd5b61016c60048036038101906101679190611384565b610476565b60405161017991906118b7565b60405180910390f35b61018a610496565b60405161019791906118d2565b60405180910390f35b6101ba60048036038101906101b59190611438565b610528565b6040516101c791906118b7565b60405180910390f35b6101d861054b565b6040516101e59190611a34565b60405180910390f35b610208600480360381019061020391906113e9565b610555565b60405161021591906118b7565b60405180910390f35b61023860048036038101906102339190611384565b6106e3565b005b610242610746565b60405161024f9190611a4f565b60405180910390f35b610272600480360381019061026d9190611438565b61074f565b60405161027f91906118b7565b60405180910390f35b6102a2600480360381019061029d9190611384565b610786565b6040516102af9190611a34565b60405180910390f35b6102c06107ce565b005b6102dc60048036038101906102d79190611384565b6107e0565b005b6102e661082c565b6040516102f3919061189c565b60405180910390f35b610304610856565b60405161031191906118d2565b60405180910390f35b610334600480360381019061032f9190611438565b6108e8565b60405161034191906118b7565b60405180910390f35b61035261095f565b60405161035f919061189c565b60405180910390f35b610382600480360381019061037d9190611438565b610985565b60405161038f91906118b7565b60405180910390f35b6103a0610b11565b6040516103ad9190611a34565b60405180910390f35b6103d060048036038101906103cb91906113ad565b610b17565b6040516103dd9190611a34565b60405180910390f35b61040060048036038101906103fb9190611474565b610b9e565b005b61041c60048036038101906104179190611384565b610bb0565b005b610426610c34565b60405161043391906118d2565b60405180910390f35b610444610c54565b604051610451919061189c565b60405180910390f35b610474600480360381019061046f9190611384565b610c6c565b005b60066020528060005260406000206000915054906101000a900460ff1681565b6060600380546104a590611b64565b80601f01602080910402602001604051908101604052809291908181526020018280546104d190611b64565b801561051e5780601f106104f35761010080835404028352916020019161051e565b820191906000526020600020905b81548152906001019060200180831161050157829003601f168201915b5050505050905090565b600080610533610ccf565b9050610540818585610cd7565b600191505092915050565b6000600254905090565b600061055f61082c565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806105d75750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b8061062f5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b806106835750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061069057506007544210155b6106cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c690611974565b60405180910390fd5b6106da848484610ea2565b90509392505050565b6106eb610ed1565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60006012905090565b60008061075a610ccf565b905061077b81858561076c8589610b17565b6107769190611a86565b610cd7565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107d6610ed1565b6107de610f4f565b565b6107e8610ed1565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461086590611b64565b80601f016020809104026020016040519081016040528092919081815260200182805461089190611b64565b80156108de5780601f106108b3576101008083540402835291602001916108de565b820191906000526020600020905b8154815290600101906020018083116108c157829003601f168201915b5050505050905090565b6000806108f3610ccf565b905060006109018286610b17565b905083811015610946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093d90611a14565b60405180910390fd5b6109538286868403610cd7565b60019250505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061098f61082c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610a075750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b80610a5f5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b80610ab35750600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80610ac057506007544210155b610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af690611974565b60405180910390fd5b610b098383610f63565b905092915050565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ba6610ed1565b8060078190555050565b610bb8610ed1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f90611914565b60405180910390fd5b610c3181610f86565b50565b60606040518060600160405280602c8152602001611c34602c9139905090565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b610c74610ed1565b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3e906119f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90611934565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e959190611a34565b60405180910390a3505050565b600080610ead610ccf565b9050610eba85828561104c565b610ec58585856110d8565b60019150509392505050565b610ed9610ccf565b73ffffffffffffffffffffffffffffffffffffffff16610ef761082c565b73ffffffffffffffffffffffffffffffffffffffff1614610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f44906119b4565b60405180910390fd5b565b610f57610ed1565b610f616000610f86565b565b600080610f6e610ccf565b9050610f7b8185856110d8565b600191505092915050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006110588484610b17565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110d257818110156110c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bb90611954565b60405180910390fd5b6110d18484848403610cd7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113f906119d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111af906118f4565b60405180910390fd5b6111c3838383611350565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124090611994565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113379190611a34565b60405180910390a361134a848484611355565b50505050565b505050565b505050565b60008135905061136981611c05565b92915050565b60008135905061137e81611c1c565b92915050565b60006020828403121561139657600080fd5b60006113a48482850161135a565b91505092915050565b600080604083850312156113c057600080fd5b60006113ce8582860161135a565b92505060206113df8582860161135a565b9150509250929050565b6000806000606084860312156113fe57600080fd5b600061140c8682870161135a565b935050602061141d8682870161135a565b925050604061142e8682870161136f565b9150509250925092565b6000806040838503121561144b57600080fd5b60006114598582860161135a565b925050602061146a8582860161136f565b9150509250929050565b60006020828403121561148657600080fd5b60006114948482850161136f565b91505092915050565b6114a681611adc565b82525050565b6114b581611aee565b82525050565b60006114c682611a6a565b6114d08185611a75565b93506114e0818560208601611b31565b6114e981611bf4565b840191505092915050565b6000611501602383611a75565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611567602683611a75565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115cd602283611a75565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611633601d83611a75565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000611673601983611a75565b91507f546f6b656e207472616e73666572207375636365737366756c000000000000006000830152602082019050919050565b60006116b3602683611a75565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611719602083611a75565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611759602583611a75565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117bf602483611a75565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611825602583611a75565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61188781611b1a565b82525050565b61189681611b24565b82525050565b60006020820190506118b1600083018461149d565b92915050565b60006020820190506118cc60008301846114ac565b92915050565b600060208201905081810360008301526118ec81846114bb565b905092915050565b6000602082019050818103600083015261190d816114f4565b9050919050565b6000602082019050818103600083015261192d8161155a565b9050919050565b6000602082019050818103600083015261194d816115c0565b9050919050565b6000602082019050818103600083015261196d81611626565b9050919050565b6000602082019050818103600083015261198d81611666565b9050919050565b600060208201905081810360008301526119ad816116a6565b9050919050565b600060208201905081810360008301526119cd8161170c565b9050919050565b600060208201905081810360008301526119ed8161174c565b9050919050565b60006020820190508181036000830152611a0d816117b2565b9050919050565b60006020820190508181036000830152611a2d81611818565b9050919050565b6000602082019050611a49600083018461187e565b92915050565b6000602082019050611a64600083018461188d565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611a9182611b1a565b9150611a9c83611b1a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ad157611ad0611b96565b5b828201905092915050565b6000611ae782611afa565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611b4f578082015181840152602081019050611b34565b83811115611b5e576000848401525b50505050565b60006002820490506001821680611b7c57607f821691505b60208210811415611b9057611b8f611bc5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611c0e81611adc565b8114611c1957600080fd5b50565b611c2581611b1a565b8114611c3057600080fd5b5056fe536e6970657220616e642046726f6e742d72756e6e696e6720626f7473206172652072657374726963746564a2646970667358221220a5a57efe282b01605ac0853bc0e350a385cf924178d24a6ec6ccc5d995daee2c64736f6c63430008000033

Deployed Bytecode Sourcemap

21976:1874:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22026:52;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9351:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11702:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10471:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23249:347;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22788:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10313:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13187:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10642:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23604:99;;;:::i;:::-;;22441:82;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2128:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9570:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13928:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22300:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22910:331;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22087:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11231:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22531:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3034:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23711:136;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22195:75;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22657:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22026:52;;;;;;;;;;;;;;;;;;;;;;:::o;9351:100::-;9405:13;9438:5;9431:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9351:100;:::o;11702:201::-;11785:4;11802:13;11818:12;:10;:12::i;:::-;11802:28;;11841:32;11850:5;11857:7;11866:6;11841:8;:32::i;:::-;11891:4;11884:11;;;11702:201;;;;:::o;10471:108::-;10532:7;10559:12;;10552:19;;10471:108;:::o;23249:347::-;23347:4;23382:7;:5;:7::i;:::-;23372:17;;:6;:17;;;:37;;;;22228:42;23393:16;;:6;:16;;;23372:37;:55;;;;23423:4;;;;;;;;;;;23413:14;;:6;:14;;;23372:55;:87;;;;23431:20;:28;23452:6;23431:28;;;;;;;;;;;;;;;;;;;;;;;;;23372:87;:123;;;;23482:13;;23463:15;:32;;23372:123;23364:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;23543:45;23562:6;23570:9;23581:6;23543:18;:45::i;:::-;23536:52;;23249:347;;;;;:::o;22788:114::-;2014:13;:11;:13::i;:::-;22889:5:::1;22856:20;:30;22877:8;22856:30;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;22788:114:::0;:::o;10313:93::-;10371:5;10396:2;10389:9;;10313:93;:::o;13187:238::-;13275:4;13292:13;13308:12;:10;:12::i;:::-;13292:28;;13331:64;13340:5;13347:7;13384:10;13356:25;13366:5;13373:7;13356:9;:25::i;:::-;:38;;;;:::i;:::-;13331:8;:64::i;:::-;13413:4;13406:11;;;13187:238;;;;:::o;10642:127::-;10716:7;10743:9;:18;10753:7;10743:18;;;;;;;;;;;;;;;;10736:25;;10642:127;;;:::o;23604:99::-;2014:13;:11;:13::i;:::-;23670:25:::1;:23;:25::i;:::-;23604:99::o:0;22441:82::-;2014:13;:11;:13::i;:::-;22510:5:::1;22503:4;;:12;;;;;;;;;;;;;;;;;;22441:82:::0;:::o;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;9570:104::-;9626:13;9659:7;9652:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9570:104;:::o;13928:436::-;14021:4;14038:13;14054:12;:10;:12::i;:::-;14038:28;;14077:24;14104:25;14114:5;14121:7;14104:9;:25::i;:::-;14077:52;;14168:15;14148:16;:35;;14140:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14261:60;14270:5;14277:7;14305:15;14286:16;:34;14261:8;:60::i;:::-;14352:4;14345:11;;;;13928:436;;;;:::o;22300:19::-;;;;;;;;;;;;;:::o;22910:331::-;22988:4;23027:7;:5;:7::i;:::-;23013:21;;:10;:21;;;:45;;;;22228:42;23038:20;;:10;:20;;;23013:45;:67;;;;23076:4;;;;;;;;;;;23062:18;;:10;:18;;;23013:67;:103;;;;23084:20;:32;23105:10;23084:32;;;;;;;;;;;;;;;;;;;;;;;;;23013:103;:139;;;;23139:13;;23120:15;:32;;23013:139;23005:177;;;;;;;;;;;;:::i;:::-;;;;;;;;;23200:33;23215:9;23226:6;23200:14;:33::i;:::-;23193:40;;22910:331;;;;:::o;22087:41::-;;;;:::o;11231:151::-;11320:7;11347:11;:18;11359:5;11347:18;;;;;;;;;;;;;;;:27;11366:7;11347:27;;;;;;;;;;;;;;;;11340:34;;11231:151;;;;:::o;22531:118::-;2014:13;:11;:13::i;:::-;22627:14:::1;22611:13;:30;;;;22531:118:::0;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;;;3115:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;23711:136::-;23760:13;23786:53;;;;;;;;;;;;;;;;;;;23711:136;:::o;22195:75::-;22228:42;22195:75;:::o;22657:123::-;2014:13;:11;:13::i;:::-;22768:4:::1;22735:20;:30;22756:8;22735:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;22657:123:::0;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;17955:380::-;18108:1;18091:19;;:5;:19;;;;18083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18189:1;18170:21;;:7;:21;;;;18162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18273:6;18243:11;:18;18255:5;18243:18;;;;;;;;;;;;;;;:27;18262:7;18243:27;;;;;;;;;;;;;;;:36;;;;18311:7;18295:32;;18304:5;18295:32;;;18320:6;18295:32;;;;;;:::i;:::-;;;;;;;;17955:380;;;:::o;12483:295::-;12614:4;12631:15;12649:12;:10;:12::i;:::-;12631:30;;12672:38;12688:4;12694:7;12703:6;12672:15;:38::i;:::-;12721:27;12731:4;12737:2;12741:6;12721:9;:27::i;:::-;12766:4;12759:11;;;12483:295;;;;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;10975:193::-;11054:4;11071:13;11087:12;:10;:12::i;:::-;11071:28;;11110;11120:5;11127:2;11131:6;11110:9;:28::i;:::-;11156:4;11149:11;;;10975:193;;;;:::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3395:191;;:::o;18626:453::-;18761:24;18788:25;18798:5;18805:7;18788:9;:25::i;:::-;18761:52;;18848:17;18828:16;:37;18824:248;;18910:6;18890:16;:26;;18882:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18994:51;19003:5;19010:7;19038:6;19019:16;:25;18994:8;:51::i;:::-;18824:248;18626:453;;;;:::o;14834:840::-;14981:1;14965:18;;:4;:18;;;;14957:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15058:1;15044:16;;:2;:16;;;;15036:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15113:38;15134:4;15140:2;15144:6;15113:20;:38::i;:::-;15164:19;15186:9;:15;15196:4;15186:15;;;;;;;;;;;;;;;;15164:37;;15235:6;15220:11;:21;;15212:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15352:6;15338:11;:20;15320:9;:15;15330:4;15320:15;;;;;;;;;;;;;;;:38;;;;15555:6;15538:9;:13;15548:2;15538:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15605:2;15590:26;;15599:4;15590:26;;;15609:6;15590:26;;;;;;:::i;:::-;;;;;;;;15629:37;15649:4;15655:2;15659:6;15629:19;:37::i;:::-;14834:840;;;;:::o;19679:125::-;;;;:::o;20408:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:370::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:34;3455:1;3450:3;3446:11;3439:55;3525:8;3520:2;3515:3;3511:12;3504:30;3560:2;3555:3;3551:12;3544:19;;3345:224;;;:::o;3575:366::-;;3738:67;3802:2;3797:3;3738:67;:::i;:::-;3731:74;;3835:34;3831:1;3826:3;3822:11;3815:55;3901:4;3896:2;3891:3;3887:12;3880:26;3932:2;3927:3;3923:12;3916:19;;3721:220;;;:::o;3947:327::-;;4110:67;4174:2;4169:3;4110:67;:::i;:::-;4103:74;;4207:31;4203:1;4198:3;4194:11;4187:52;4265:2;4260:3;4256:12;4249:19;;4093:181;;;:::o;4280:323::-;;4443:67;4507:2;4502:3;4443:67;:::i;:::-;4436:74;;4540:27;4536:1;4531:3;4527:11;4520:48;4594:2;4589:3;4585:12;4578:19;;4426:177;;;:::o;4609:370::-;;4772:67;4836:2;4831:3;4772:67;:::i;:::-;4765:74;;4869:34;4865:1;4860:3;4856:11;4849:55;4935:8;4930:2;4925:3;4921:12;4914:30;4970:2;4965:3;4961:12;4954:19;;4755:224;;;:::o;4985:330::-;;5148:67;5212:2;5207:3;5148:67;:::i;:::-;5141:74;;5245:34;5241:1;5236:3;5232:11;5225:55;5306:2;5301:3;5297:12;5290:19;;5131:184;;;:::o;5321:369::-;;5484:67;5548:2;5543:3;5484:67;:::i;:::-;5477:74;;5581:34;5577:1;5572:3;5568:11;5561:55;5647:7;5642:2;5637:3;5633:12;5626:29;5681:2;5676:3;5672:12;5665:19;;5467:223;;;:::o;5696:368::-;;5859:67;5923:2;5918:3;5859:67;:::i;:::-;5852:74;;5956:34;5952:1;5947:3;5943:11;5936:55;6022:6;6017:2;6012:3;6008:12;6001:28;6055:2;6050:3;6046:12;6039:19;;5842:222;;;:::o;6070:369::-;;6233:67;6297:2;6292:3;6233:67;:::i;:::-;6226:74;;6330:34;6326:1;6321:3;6317:11;6310:55;6396:7;6391:2;6386:3;6382:12;6375:29;6430:2;6425:3;6421:12;6414:19;;6216:223;;;:::o;6445:118::-;6532:24;6550:5;6532:24;:::i;:::-;6527:3;6520:37;6510:53;;:::o;6569:112::-;6652:22;6668:5;6652:22;:::i;:::-;6647:3;6640:35;6630:51;;:::o;6687:222::-;;6818:2;6807:9;6803:18;6795:26;;6831:71;6899:1;6888:9;6884:17;6875:6;6831:71;:::i;:::-;6785:124;;;;:::o;6915:210::-;;7040:2;7029:9;7025:18;7017:26;;7053:65;7115:1;7104:9;7100:17;7091:6;7053:65;:::i;:::-;7007:118;;;;:::o;7131:313::-;;7282:2;7271:9;7267:18;7259:26;;7331:9;7325:4;7321:20;7317:1;7306:9;7302:17;7295:47;7359:78;7432:4;7423:6;7359:78;:::i;:::-;7351:86;;7249:195;;;;:::o;7450:419::-;;7654:2;7643:9;7639:18;7631:26;;7703:9;7697:4;7693:20;7689:1;7678:9;7674:17;7667:47;7731:131;7857:4;7731:131;:::i;:::-;7723:139;;7621:248;;;:::o;7875:419::-;;8079:2;8068:9;8064:18;8056:26;;8128:9;8122:4;8118:20;8114:1;8103:9;8099:17;8092:47;8156:131;8282:4;8156:131;:::i;:::-;8148:139;;8046:248;;;:::o;8300:419::-;;8504:2;8493:9;8489:18;8481:26;;8553:9;8547:4;8543:20;8539:1;8528:9;8524:17;8517:47;8581:131;8707:4;8581:131;:::i;:::-;8573:139;;8471:248;;;:::o;8725:419::-;;8929:2;8918:9;8914:18;8906:26;;8978:9;8972:4;8968:20;8964:1;8953:9;8949:17;8942:47;9006:131;9132:4;9006:131;:::i;:::-;8998:139;;8896:248;;;:::o;9150:419::-;;9354:2;9343:9;9339:18;9331:26;;9403:9;9397:4;9393:20;9389:1;9378:9;9374:17;9367:47;9431:131;9557:4;9431:131;:::i;:::-;9423:139;;9321:248;;;:::o;9575:419::-;;9779:2;9768:9;9764:18;9756:26;;9828:9;9822:4;9818:20;9814:1;9803:9;9799:17;9792:47;9856:131;9982:4;9856:131;:::i;:::-;9848:139;;9746:248;;;:::o;10000:419::-;;10204:2;10193:9;10189:18;10181:26;;10253:9;10247:4;10243:20;10239:1;10228:9;10224:17;10217:47;10281:131;10407:4;10281:131;:::i;:::-;10273:139;;10171:248;;;:::o;10425:419::-;;10629:2;10618:9;10614:18;10606:26;;10678:9;10672:4;10668:20;10664:1;10653:9;10649:17;10642:47;10706:131;10832:4;10706:131;:::i;:::-;10698:139;;10596:248;;;:::o;10850:419::-;;11054:2;11043:9;11039:18;11031:26;;11103:9;11097:4;11093:20;11089:1;11078:9;11074:17;11067:47;11131:131;11257:4;11131:131;:::i;:::-;11123:139;;11021:248;;;:::o;11275:419::-;;11479:2;11468:9;11464:18;11456:26;;11528:9;11522:4;11518:20;11514:1;11503:9;11499:17;11492:47;11556:131;11682:4;11556:131;:::i;:::-;11548:139;;11446:248;;;:::o;11700:222::-;;11831:2;11820:9;11816:18;11808:26;;11844:71;11912:1;11901:9;11897:17;11888:6;11844:71;:::i;:::-;11798:124;;;;:::o;11928:214::-;;12055:2;12044:9;12040:18;12032:26;;12068:67;12132:1;12121:9;12117:17;12108:6;12068:67;:::i;:::-;12022:120;;;;:::o;12148:99::-;;12234:5;12228:12;12218:22;;12207:40;;;:::o;12253:169::-;;12371:6;12366:3;12359:19;12411:4;12406:3;12402:14;12387:29;;12349:73;;;;:::o;12428:305::-;;12487:20;12505:1;12487:20;:::i;:::-;12482:25;;12521:20;12539:1;12521:20;:::i;:::-;12516:25;;12675:1;12607:66;12603:74;12600:1;12597:81;12594:2;;;12681:18;;:::i;:::-;12594:2;12725:1;12722;12718:9;12711:16;;12472:261;;;;:::o;12739:96::-;;12805:24;12823:5;12805:24;:::i;:::-;12794:35;;12784:51;;;:::o;12841:90::-;;12918:5;12911:13;12904:21;12893:32;;12883:48;;;:::o;12937:126::-;;13014:42;13007:5;13003:54;12992:65;;12982:81;;;:::o;13069:77::-;;13135:5;13124:16;;13114:32;;;:::o;13152:86::-;;13227:4;13220:5;13216:16;13205:27;;13195:43;;;:::o;13244:307::-;13312:1;13322:113;13336:6;13333:1;13330:13;13322:113;;;13421:1;13416:3;13412:11;13406:18;13402:1;13397:3;13393:11;13386:39;13358:2;13355:1;13351:10;13346:15;;13322:113;;;13453:6;13450:1;13447:13;13444:2;;;13533:1;13524:6;13519:3;13515:16;13508:27;13444:2;13293:258;;;;:::o;13557:320::-;;13638:1;13632:4;13628:12;13618:22;;13685:1;13679:4;13675:12;13706:18;13696:2;;13762:4;13754:6;13750:17;13740:27;;13696:2;13824;13816:6;13813:14;13793:18;13790:38;13787:2;;;13843:18;;:::i;:::-;13787:2;13608:269;;;;:::o;13883:180::-;13931:77;13928:1;13921:88;14028:4;14025:1;14018:15;14052:4;14049:1;14042:15;14069:180;14117:77;14114:1;14107:88;14214:4;14211:1;14204:15;14238:4;14235:1;14228:15;14255:102;;14347:2;14343:7;14338:2;14331:5;14327:14;14323:28;14313:38;;14303:54;;;:::o;14363:122::-;14436:24;14454:5;14436:24;:::i;:::-;14429:5;14426:35;14416:2;;14475:1;14472;14465:12;14416:2;14406:79;:::o;14491:122::-;14564:24;14582:5;14564:24;:::i;:::-;14557:5;14554:35;14544:2;;14603:1;14600;14593:12;14544:2;14534:79;:::o

Swarm Source

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