Token VORZ

 

Overview ERC-20

Price
$0.00 @ 0.000000 MATIC
Fully Diluted Market Cap
Total Supply:
100,000,000,000 VORZ

Holders:
10,041 addresses
 
Filtered by Token Holder (OpenSea: OPENSTORE Token)

Balance
905.1189674 VORZ

Value
$0.00
0x2953399124f0cbb46d2cbacd8a89cf0599974963
Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Vorz

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 6 of 6: VORZ.sol
/**
 ______  ______  ______  ______  ______  ______  ______  ______ 
|______||______||______||______||______||______||______||______|
 


██╗░░░██╗░█████╗░██████╗░███████╗
██║░░░██║██╔══██╗██╔══██╗╚════██║
╚██╗░██╔╝██║░░██║██████╔╝░░███╔═╝
░╚████╔╝░██║░░██║██╔══██╗██╔══╝░░
░░╚██╔╝░░╚█████╔╝██║░░██║███████╗
░░░╚═╝░░░░╚════╝░╚═╝░░╚═╝╚══════╝


 ______  ______  ______  ______  ______  ______  ______  ______ 
|______||______||______||______||______||______||______||______|


█▄─▄▄─█▄─▀█▄─▄█─▄─▄─█▄─▄▄─█▄─▄▄▀█─▄─▄─██▀▄─██▄─▄█▄─▀█▄─▄█▄─▀█▀─▄█▄─▄▄─█▄─▀█▄─▄█─▄─▄─█
██─▄█▀██─█▄▀─████─████─▄█▀██─▄─▄███─████─▀─███─███─█▄▀─███─█▄█─███─▄█▀██─█▄▀─████─███
▀▄▄▄▄▄▀▄▄▄▀▀▄▄▀▀▄▄▄▀▀▄▄▄▄▄▀▄▄▀▄▄▀▀▄▄▄▀▀▄▄▀▄▄▀▄▄▄▀▄▄▄▀▀▄▄▀▄▄▄▀▄▄▄▀▄▄▄▄▄▀▄▄▄▀▀▄▄▀▀▄▄▄▀▀

█▄─▀█▀─▄█▄─▄▄─█─▄─▄─██▀▄─██▄─█─▄█▄─▄▄─█▄─▄▄▀█─▄▄▄▄█▄─▄▄─█
██─█▄█─███─▄█▀███─████─▀─███▄▀▄███─▄█▀██─▄─▄█▄▄▄▄─██─▄█▀█
▀▄▄▄▀▄▄▄▀▄▄▄▄▄▀▀▄▄▄▀▀▄▄▀▄▄▀▀▀▄▀▀▀▄▄▄▄▄▀▄▄▀▄▄▀▄▄▄▄▄▀▄▄▄▄▄▀


t.me/vorzofficial
twitter.com/vorzapp
facebook.com/vorzapp
instagram.com/vorzapp  
reddit.com/r/vorz                 

 ______  ______  ______  ______  ______  ______  ______  ______ 
|______||______||______||______||______||______||______||______|
  																		
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;

import {Ownable} from "./Ownable.sol";
import {ERC20} from "./ERC20.sol";
import {IERC20} from "./IERC20.sol";


contract Vorz is ERC20, Ownable{

    mapping(address => bool) public isExempt;

    bool public tradingStarted;

    uint256 private maxTxAmount;

    address public teamWallet;


    constructor() ERC20("VORZ", "VORZ"){
        isExempt[msg.sender] = true;
        isExempt[teamWallet] = true;
        maxTxAmount = 100e9 * 10**8;
        _mint(msg.sender, 100e9 * 10**8);
    }

    function decimals() public view virtual override returns (uint8) {
        return 8;
    }

    function _transfer(address from, address to, uint256 amount) internal override{
        if(!isExempt[from] && !isExempt[to]){
            require(tradingStarted, "Trading not started yet");
            require(amount <= maxTxAmount, "You are exceeding maxTxAmount");
        }

        super._transfer(from, to, amount);
    }

    function startTrading() external onlyOwner{
        tradingStarted = true;
    }

    function setMaxTxAmount(uint256 amount) external onlyOwner{
        maxTxAmount = amount * 10**8;
    }

    function setTeamWallet(address newWallet) external onlyOwner{
        teamWallet = newWallet;
    }

    function setIsExempt(address account, bool state) external onlyOwner{
        isExempt[account] = state;
    }

    function rescueWronglySentTokens(address tokenAddress, uint256 amount) external onlyOwner{
        IERC20(tokenAddress).transfer(msg.sender, amount);
    }

    function getMaxTxAmount() external view returns(uint256){
        return maxTxAmount / 10**8;
    }

}

File 1 of 6: Context.sol
// SPDX-License-Identifier: MIT
// 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 2 of 6: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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 `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:
     *
     * - `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;
        }
        _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;
        _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 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 3 of 6: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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 4 of 6: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";

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

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

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

File 5 of 6: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.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);
    }
}

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":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMaxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueWronglySentTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setIsExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040805180820182526004808252632b27a92d60e11b60208084018281528551808701909652928552840152815191929162000051916003916200021d565b508051620000679060049060208401906200021d565b505050620000846200007e620000df60201b60201c565b620000e3565b336000818152600660205260408082208054600160ff1991821681179092556009546001600160a01b031684529190922080549091169091179055678ac7230489e800006008819055620000d9919062000135565b62000326565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001905760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001a49190620002c3565b90915550506001600160a01b03821660009081526020819052604081208054839290620001d3908490620002c3565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200022b90620002ea565b90600052602060002090601f0160209004810192826200024f57600085556200029a565b82601f106200026a57805160ff19168380011785556200029a565b828001600101855582156200029a579182015b828111156200029a5782518255916020019190600101906200027d565b50620002a8929150620002ac565b5090565b5b80821115620002a85760008155600101620002ad565b60008219821115620002e557634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620002ff57607f821691505b6020821081036200032057634e487b7160e01b600052602260045260246000fd5b50919050565b610ef680620003366000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063ad5dff731161007c578063ad5dff73146102a7578063b5790bbd146102ca578063cc4ed5d2146102dd578063dd62ed3e146102f0578063ec28438a14610303578063f2fde38b1461031657600080fd5b806370a0823114610237578063715018a6146102605780638da5cb5b1461026857806395d89b4114610279578063a457c2d714610281578063a9059cbb1461029457600080fd5b8063293230b811610115578063293230b8146101cd578063313ce567146101d557806339509351146101e457806359927044146101f75780635b4f472a146102225780636d8b05271461022f57600080fd5b806306fdde0314610152578063095ea7b3146101705780631525ff7d1461019357806318160ddd146101a857806323b872dd146101ba575b600080fd5b61015a610329565b6040516101679190610c3b565b60405180910390f35b61018361017e366004610cac565b6103bb565b6040519015158152602001610167565b6101a66101a1366004610cd6565b6103d3565b005b6002545b604051908152602001610167565b6101836101c8366004610cf8565b610428565b6101a661044c565b60405160088152602001610167565b6101836101f2366004610cac565b610485565b60095461020a906001600160a01b031681565b6040516001600160a01b039091168152602001610167565b6007546101839060ff1681565b6101ac6104a7565b6101ac610245366004610cd6565b6001600160a01b031660009081526020819052604090205490565b6101a66104c0565b6005546001600160a01b031661020a565b61015a6104f6565b61018361028f366004610cac565b610505565b6101836102a2366004610cac565b610580565b6101836102b5366004610cd6565b60066020526000908152604090205460ff1681565b6101a66102d8366004610d42565b61058e565b6101a66102eb366004610cac565b6105e3565b6101ac6102fe366004610d79565b610683565b6101a6610311366004610dac565b6106ae565b6101a6610324366004610cd6565b6106ec565b60606003805461033890610dc5565b80601f016020809104026020016040519081016040528092919081815260200182805461036490610dc5565b80156103b15780601f10610386576101008083540402835291602001916103b1565b820191906000526020600020905b81548152906001019060200180831161039457829003601f168201915b5050505050905090565b6000336103c9818585610787565b5060019392505050565b6005546001600160a01b031633146104065760405162461bcd60e51b81526004016103fd90610dff565b60405180910390fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000336104368582856108ab565b610441858585610925565b506001949350505050565b6005546001600160a01b031633146104765760405162461bcd60e51b81526004016103fd90610dff565b6007805460ff19166001179055565b6000336103c98185856104988383610683565b6104a29190610e4a565b610787565b60006305f5e1006008546104bb9190610e62565b905090565b6005546001600160a01b031633146104ea5760405162461bcd60e51b81526004016103fd90610dff565b6104f46000610a1b565b565b60606004805461033890610dc5565b600033816105138286610683565b9050838110156105735760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103fd565b6104418286868403610787565b6000336103c9818585610925565b6005546001600160a01b031633146105b85760405162461bcd60e51b81526004016103fd90610dff565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331461060d5760405162461bcd60e51b81526004016103fd90610dff565b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0383169063a9059cbb906044016020604051808303816000875af115801561065a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061067e9190610e84565b505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146106d85760405162461bcd60e51b81526004016103fd90610dff565b6106e6816305f5e100610ea1565b60085550565b6005546001600160a01b031633146107165760405162461bcd60e51b81526004016103fd90610dff565b6001600160a01b03811661077b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103fd565b61078481610a1b565b50565b6001600160a01b0383166107e95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103fd565b6001600160a01b03821661084a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103fd565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006108b78484610683565b9050600019811461091f57818110156109125760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103fd565b61091f8484848403610787565b50505050565b6001600160a01b03831660009081526006602052604090205460ff1615801561096757506001600160a01b03821660009081526006602052604090205460ff16155b15610a105760075460ff166109be5760405162461bcd60e51b815260206004820152601760248201527f54726164696e67206e6f7420737461727465642079657400000000000000000060448201526064016103fd565b600854811115610a105760405162461bcd60e51b815260206004820152601d60248201527f596f752061726520657863656564696e67206d61785478416d6f756e7400000060448201526064016103fd565b61067e838383610a6d565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610ad15760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103fd565b6001600160a01b038216610b335760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103fd565b6001600160a01b03831660009081526020819052604090205481811015610bab5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103fd565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610be2908490610e4a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c2e91815260200190565b60405180910390a361091f565b600060208083528351808285015260005b81811015610c6857858101830151858201604001528201610c4c565b81811115610c7a576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610ca757600080fd5b919050565b60008060408385031215610cbf57600080fd5b610cc883610c90565b946020939093013593505050565b600060208284031215610ce857600080fd5b610cf182610c90565b9392505050565b600080600060608486031215610d0d57600080fd5b610d1684610c90565b9250610d2460208501610c90565b9150604084013590509250925092565b801515811461078457600080fd5b60008060408385031215610d5557600080fd5b610d5e83610c90565b91506020830135610d6e81610d34565b809150509250929050565b60008060408385031215610d8c57600080fd5b610d9583610c90565b9150610da360208401610c90565b90509250929050565b600060208284031215610dbe57600080fd5b5035919050565b600181811c90821680610dd957607f821691505b602082108103610df957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115610e5d57610e5d610e34565b500190565b600082610e7f57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215610e9657600080fd5b8151610cf181610d34565b6000816000190483118215151615610ebb57610ebb610e34565b50029056fea2646970667358221220e863b835e6b78604a7e349eef7e23d15f5bd3ee9d21c3c0206816a149e15355764736f6c634300080d0033

Deployed ByteCode Sourcemap

2649:1548:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2196:100:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4547:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:6;;1211:22;1193:41;;1181:2;1166:18;4547:201:1;1053:187:6;3697:101:5;;;;;;:::i;:::-;;:::i;:::-;;3316:108:1;3404:12;;3316:108;;;1582:25:6;;;1570:2;1555:18;3316:108:1;1436:177:6;5328:295:1;;;;;;:::i;:::-;;:::i;3494:82:5:-;;;:::i;3053:92::-;;;3136:1;2093:36:6;;2081:2;2066:18;3053:92:5;1951:184:6;6032:238:1;;;;;;:::i;:::-;;:::i;2809:25:5:-;;;;;-1:-1:-1;;;;;2809:25:5;;;;;;-1:-1:-1;;;;;2304:32:6;;;2286:51;;2274:2;2259:18;2809:25:5;2140:203:6;2738:26:5;;;;;;;;;4091:101;;;:::i;3487:127:1:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3588:18:1;3561:7;3588:18;;;;;;;;;;;;3487:127;1714:103:4;;;:::i;1063:87::-;1136:6;;-1:-1:-1;;;;;1136:6:4;1063:87;;2415:104:1;;;:::i;6773:436::-;;;;;;:::i;:::-;;:::i;3820:193::-;;;;;;:::i;:::-;;:::i;2689:40:5:-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;3806:112;;;;;;:::i;:::-;;:::i;3926:157::-;;;;;;:::i;:::-;;:::i;4076:151:1:-;;;;;;:::i;:::-;;:::i;3584:105:5:-;;;;;;:::i;:::-;;:::i;1972:201:4:-;;;;;;:::i;:::-;;:::i;2196:100:1:-;2250:13;2283:5;2276:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2196:100;:::o;4547:201::-;4630:4;736:10:0;4686:32:1;736:10:0;4702:7:1;4711:6;4686:8;:32::i;:::-;-1:-1:-1;4736:4:1;;4547:201;-1:-1:-1;;;4547:201:1:o;3697:101:5:-;1136:6:4;;-1:-1:-1;;;;;1136:6:4;736:10:0;1283:23:4;1275:68;;;;-1:-1:-1;;;1275:68:4;;;;;;;:::i;:::-;;;;;;;;;3768:10:5::1;:22:::0;;-1:-1:-1;;;;;;3768:22:5::1;-1:-1:-1::0;;;;;3768:22:5;;;::::1;::::0;;;::::1;::::0;;3697:101::o;5328:295:1:-;5459:4;736:10:0;5517:38:1;5533:4;736:10:0;5548:6:1;5517:15;:38::i;:::-;5566:27;5576:4;5582:2;5586:6;5566:9;:27::i;:::-;-1:-1:-1;5611:4:1;;5328:295;-1:-1:-1;;;;5328:295:1:o;3494:82:5:-;1136:6:4;;-1:-1:-1;;;;;1136:6:4;736:10:0;1283:23:4;1275:68;;;;-1:-1:-1;;;1275:68:4;;;;;;;:::i;:::-;3547:14:5::1;:21:::0;;-1:-1:-1;;3547:21:5::1;3564:4;3547:21;::::0;;3494:82::o;6032:238:1:-;6120:4;736:10:0;6176:64:1;736:10:0;6192:7:1;6229:10;6201:25;736:10:0;6192:7:1;6201:9;:25::i;:::-;:38;;;;:::i;:::-;6176:8;:64::i;4091:101:5:-;4139:7;4179:5;4165:11;;:19;;;;:::i;:::-;4158:26;;4091:101;:::o;1714:103:4:-;1136:6;;-1:-1:-1;;;;;1136:6:4;736:10:0;1283:23:4;1275:68;;;;-1:-1:-1;;;1275:68:4;;;;;;;:::i;:::-;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;2415:104:1:-;2471:13;2504:7;2497:14;;;;;:::i;6773:436::-;6866:4;736:10:0;6866:4:1;6949:25;736:10:0;6966:7:1;6949:9;:25::i;:::-;6922:52;;7013:15;6993:16;:35;;6985:85;;;;-1:-1:-1;;;6985:85:1;;4676:2:6;6985:85:1;;;4658:21:6;4715:2;4695:18;;;4688:30;4754:34;4734:18;;;4727:62;-1:-1:-1;;;4805:18:6;;;4798:35;4850:19;;6985:85:1;4474:401:6;6985:85:1;7106:60;7115:5;7122:7;7150:15;7131:16;:34;7106:8;:60::i;3820:193::-;3899:4;736:10:0;3955:28:1;736:10:0;3972:2:1;3976:6;3955:9;:28::i;3806:112:5:-;1136:6:4;;-1:-1:-1;;;;;1136:6:4;736:10:0;1283:23:4;1275:68;;;;-1:-1:-1;;;1275:68:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;3885:17:5;;;::::1;;::::0;;;:8:::1;:17;::::0;;;;:25;;-1:-1:-1;;3885:25:5::1;::::0;::::1;;::::0;;;::::1;::::0;;3806:112::o;3926:157::-;1136:6:4;;-1:-1:-1;;;;;1136:6:4;736:10:0;1283:23:4;1275:68;;;;-1:-1:-1;;;1275:68:4;;;;;;;:::i;:::-;4026:49:5::1;::::0;-1:-1:-1;;;4026:49:5;;4056:10:::1;4026:49;::::0;::::1;5054:51:6::0;5121:18;;;5114:34;;;-1:-1:-1;;;;;4026:29:5;::::1;::::0;::::1;::::0;5027:18:6;;4026:49:5::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;3926:157:::0;;:::o;4076:151:1:-;-1:-1:-1;;;;;4192:18:1;;;4165:7;4192:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4076:151::o;3584:105:5:-;1136:6:4;;-1:-1:-1;;;;;1136:6:4;736:10:0;1283:23:4;1275:68;;;;-1:-1:-1;;;1275:68:4;;;;;;;:::i;:::-;3667:14:5::1;:6:::0;3676:5:::1;3667:14;:::i;:::-;3653:11;:28:::0;-1:-1:-1;3584:105:5:o;1972:201:4:-;1136:6;;-1:-1:-1;;;;;1136:6:4;736:10:0;1283:23:4;1275:68;;;;-1:-1:-1;;;1275:68:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;2061:22:4;::::1;2053:73;;;::::0;-1:-1:-1;;;2053:73:4;;5784:2:6;2053:73:4::1;::::0;::::1;5766:21:6::0;5823:2;5803:18;;;5796:30;5862:34;5842:18;;;5835:62;-1:-1:-1;;;5913:18:6;;;5906:36;5959:19;;2053:73:4::1;5582:402:6::0;2053:73:4::1;2137:28;2156:8;2137:18;:28::i;:::-;1972:201:::0;:::o;10407:380:1:-;-1:-1:-1;;;;;10543:19:1;;10535:68;;;;-1:-1:-1;;;10535:68:1;;6191:2:6;10535:68:1;;;6173:21:6;6230:2;6210:18;;;6203:30;6269:34;6249:18;;;6242:62;-1:-1:-1;;;6320:18:6;;;6313:34;6364:19;;10535:68:1;5989:400:6;10535:68:1;-1:-1:-1;;;;;10622:21:1;;10614:68;;;;-1:-1:-1;;;10614:68:1;;6596:2:6;10614:68:1;;;6578:21:6;6635:2;6615:18;;;6608:30;6674:34;6654:18;;;6647:62;-1:-1:-1;;;6725:18:6;;;6718:32;6767:19;;10614:68:1;6394:398:6;10614:68:1;-1:-1:-1;;;;;10695:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10747:32;;1582:25:6;;;10747:32:1;;1555:18:6;10747:32:1;;;;;;;10407:380;;;:::o;11078:453::-;11213:24;11240:25;11250:5;11257:7;11240:9;:25::i;:::-;11213:52;;-1:-1:-1;;11280:16:1;:37;11276:248;;11362:6;11342:16;:26;;11334:68;;;;-1:-1:-1;;;11334:68:1;;6999:2:6;11334:68:1;;;6981:21:6;7038:2;7018:18;;;7011:30;7077:31;7057:18;;;7050:59;7126:18;;11334:68:1;6797:353:6;11334:68:1;11446:51;11455:5;11462:7;11490:6;11471:16;:25;11446:8;:51::i;:::-;11202:329;11078:453;;;:::o;3153:333:5:-;-1:-1:-1;;;;;3246:14:5;;;;;;:8;:14;;;;;;;;3245:15;:32;;;;-1:-1:-1;;;;;;3265:12:5;;;;;;:8;:12;;;;;;;;3264:13;3245:32;3242:191;;;3301:14;;;;3293:50;;;;-1:-1:-1;;;3293:50:5;;7357:2:6;3293:50:5;;;7339:21:6;7396:2;7376:18;;;7369:30;7435:25;7415:18;;;7408:53;7478:18;;3293:50:5;7155:347:6;3293:50:5;3376:11;;3366:6;:21;;3358:63;;;;-1:-1:-1;;;3358:63:5;;7709:2:6;3358:63:5;;;7691:21:6;7748:2;7728:18;;;7721:30;7787:31;7767:18;;;7760:59;7836:18;;3358:63:5;7507:353:6;3358:63:5;3445:33;3461:4;3467:2;3471:6;3445:15;:33::i;2333:191:4:-;2426:6;;;-1:-1:-1;;;;;2443:17:4;;;-1:-1:-1;;;;;;2443:17:4;;;;;;;2476:40;;2426:6;;;2443:17;2426:6;;2476:40;;2407:16;;2476:40;2396:128;2333:191;:::o;7688:671:1:-;-1:-1:-1;;;;;7819:18:1;;7811:68;;;;-1:-1:-1;;;7811:68:1;;8067:2:6;7811:68:1;;;8049:21:6;8106:2;8086:18;;;8079:30;8145:34;8125:18;;;8118:62;-1:-1:-1;;;8196:18:6;;;8189:35;8241:19;;7811:68:1;7865:401:6;7811:68:1;-1:-1:-1;;;;;7898:16:1;;7890:64;;;;-1:-1:-1;;;7890:64:1;;8473:2:6;7890:64:1;;;8455:21:6;8512:2;8492:18;;;8485:30;8551:34;8531:18;;;8524:62;-1:-1:-1;;;8602:18:6;;;8595:33;8645:19;;7890:64:1;8271:399:6;7890:64:1;-1:-1:-1;;;;;8040:15:1;;8018:19;8040:15;;;;;;;;;;;8074:21;;;;8066:72;;;;-1:-1:-1;;;8066:72:1;;8877:2:6;8066:72:1;;;8859:21:6;8916:2;8896:18;;;8889:30;8955:34;8935:18;;;8928:62;-1:-1:-1;;;9006:18:6;;;8999:36;9052:19;;8066:72:1;8675:402:6;8066:72:1;-1:-1:-1;;;;;8174:15:1;;;:9;:15;;;;;;;;;;;8192:20;;;8174:38;;8234:13;;;;;;;;:23;;8206:6;;8174:9;8234:23;;8206:6;;8234:23;:::i;:::-;;;;;;;;8290:2;-1:-1:-1;;;;;8275:26:1;8284:4;-1:-1:-1;;;;;8275:26:1;;8294:6;8275:26;;;;1582:25:6;;1570:2;1555:18;;1436:177;8275:26:1;;;;;;;;8314:37;3926:157:5;14:597:6;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:6;574:15;-1:-1:-1;;570:29:6;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:6:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:6;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:6:o;1245:186::-;1304:6;1357:2;1345:9;1336:7;1332:23;1328:32;1325:52;;;1373:1;1370;1363:12;1325:52;1396:29;1415:9;1396:29;:::i;:::-;1386:39;1245:186;-1:-1:-1;;;1245:186:6:o;1618:328::-;1695:6;1703;1711;1764:2;1752:9;1743:7;1739:23;1735:32;1732:52;;;1780:1;1777;1770:12;1732:52;1803:29;1822:9;1803:29;:::i;:::-;1793:39;;1851:38;1885:2;1874:9;1870:18;1851:38;:::i;:::-;1841:48;;1936:2;1925:9;1921:18;1908:32;1898:42;;1618:328;;;;;:::o;2348:118::-;2434:5;2427:13;2420:21;2413:5;2410:32;2400:60;;2456:1;2453;2446:12;2471:315;2536:6;2544;2597:2;2585:9;2576:7;2572:23;2568:32;2565:52;;;2613:1;2610;2603:12;2565:52;2636:29;2655:9;2636:29;:::i;:::-;2626:39;;2715:2;2704:9;2700:18;2687:32;2728:28;2750:5;2728:28;:::i;:::-;2775:5;2765:15;;;2471:315;;;;;:::o;2791:260::-;2859:6;2867;2920:2;2908:9;2899:7;2895:23;2891:32;2888:52;;;2936:1;2933;2926:12;2888:52;2959:29;2978:9;2959:29;:::i;:::-;2949:39;;3007:38;3041:2;3030:9;3026:18;3007:38;:::i;:::-;2997:48;;2791:260;;;;;:::o;3056:180::-;3115:6;3168:2;3156:9;3147:7;3143:23;3139:32;3136:52;;;3184:1;3181;3174:12;3136:52;-1:-1:-1;3207:23:6;;3056:180;-1:-1:-1;3056:180:6:o;3241:380::-;3320:1;3316:12;;;;3363;;;3384:61;;3438:4;3430:6;3426:17;3416:27;;3384:61;3491:2;3483:6;3480:14;3460:18;3457:38;3454:161;;3537:10;3532:3;3528:20;3525:1;3518:31;3572:4;3569:1;3562:15;3600:4;3597:1;3590:15;3454:161;;3241:380;;;:::o;3626:356::-;3828:2;3810:21;;;3847:18;;;3840:30;3906:34;3901:2;3886:18;;3879:62;3973:2;3958:18;;3626:356::o;3987:127::-;4048:10;4043:3;4039:20;4036:1;4029:31;4079:4;4076:1;4069:15;4103:4;4100:1;4093:15;4119:128;4159:3;4190:1;4186:6;4183:1;4180:13;4177:39;;;4196:18;;:::i;:::-;-1:-1:-1;4232:9:6;;4119:128::o;4252:217::-;4292:1;4318;4308:132;;4362:10;4357:3;4353:20;4350:1;4343:31;4397:4;4394:1;4387:15;4425:4;4422:1;4415:15;4308:132;-1:-1:-1;4454:9:6;;4252:217::o;5159:245::-;5226:6;5279:2;5267:9;5258:7;5254:23;5250:32;5247:52;;;5295:1;5292;5285:12;5247:52;5327:9;5321:16;5346:28;5368:5;5346:28;:::i;5409:168::-;5449:7;5515:1;5511;5507:6;5503:14;5500:1;5497:21;5492:1;5485:9;5478:17;5474:45;5471:71;;;5522:18;;:::i;:::-;-1:-1:-1;5562:9:6;;5409:168::o

Swarm Source

ipfs://e863b835e6b78604a7e349eef7e23d15f5bd3ee9d21c3c0206816a149e153557
Loading