ETH Price: $2,832.15 (-10.39%)
Gas: 11 Gwei

Token

EGGMAN (EGGMAN)
 

Overview

Max Total Supply

10,888,420,690 EGGMAN

Holders

271

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
74,685,757.640425804377503922 EGGMAN

Value
$0.00
0x9a83877d43f3c0a4f29eea29a3403965090addac
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:
EGGMAN

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 6: 1.EGGMAN.sol
// SPDX-License-Identifier: MIT


pragma solidity ^0.8.0;

import { ERC20 } from "./2.ERC20.sol";
import { Ownable } from "./3.Ownable.sol";


// ==== Contract definition =====
contract EGGMAN is Ownable, ERC20 {

    // ==== Variables declaration ====
        // ==== LP-related variables ====
        address public uniswapContractAddress;
        uint256 public tradingStartTime;

        // ===== Whale prevention-related variables
        bool public holdLimitState = false;
        uint256 public holdLimitAmount;

        // ===== Tax-related variables ====
        address public taxWallet;
        uint256 public NewWLTaxRate;
        uint256 public WLTaxWindow = 48 hours; // WL TAX PERIOD - 48 hours
        uint256 public WLTaxRate = 1500; // WL STARTING TAX RATE at 20% defined in bp format
        uint256 public WLTaxInterval = 1 minutes; //Tax reduced every minute
    
        // ===== BL & WL variables
        mapping(address => bool) public blacklisted;
        mapping(address => bool) public whitelisted;

        // ==== Emit events declaration ====       
        event Blacklisted(address indexed _address);
        event Whitelisted(address indexed _address);
        event UnBlacklisted(address indexed _address);
        event UnWhitelisted(address indexed _address);

    // ==== Constructor definition (Sets total supply & tax wallet address ====
    constructor(uint256 _totalSupply, address _taxWallet) ERC20("EGGMAN", "EGGMAN") { 
        _mint(msg.sender, _totalSupply);
        taxWallet = _taxWallet;
    }

    // ==== Token airdrop function ====
    function airdropTokens(address[] calldata recipients, uint256[] calldata amounts) external onlyOwner   {
        require(recipients.length == amounts.length, "Mismatched input arrays");

        for (uint256 i = 0; i < recipients.length; i++) {
            _transfer(owner(), recipients[i], amounts[i]);
        }
    }

    // ==== Set holding limit ====
    function setHoldLimit (bool _holdLimitState, uint256 _holdLimitAmount) external onlyOwner   {
        holdLimitState = _holdLimitState;
        holdLimitAmount = _holdLimitAmount;
    }

    // ==== BL function ====
   function blacklist(address[] calldata _address, bool _isBlacklisted) external onlyOwner {
        for (uint256 i = 0; i < _address.length; i++) {
            blacklisted[_address[i]] = _isBlacklisted;
            if (_isBlacklisted) {
                emit Blacklisted(_address[i]);
            } else {
                emit UnBlacklisted(_address[i]);
            }
        }
    }

    // ==== WL function ====
     function whitelist(address[] calldata _address, bool _isWhitelisted) external onlyOwner {
        for (uint256 i = 0; i < _address.length; i++) {
            whitelisted[_address[i]] = _isWhitelisted;
            if (_isWhitelisted) {
                emit Whitelisted(_address[i]);
            } else {
                emit UnWhitelisted(_address[i]);
            }
        }
    }

    // ==== Set WL Tax ====
    function setWLTaxSettings(uint256 _WLTaxWindow, uint256 _WLTaxRate, uint256 _WLTaxInterval) external onlyOwner  {
        WLTaxWindow = _WLTaxWindow;
        WLTaxRate = _WLTaxRate;
        WLTaxInterval = _WLTaxInterval;
    }

      // ==== Calculate amount of tokens to be transfered ====
    function calculateTransferAmount(address from, address to, uint256 amount) internal returns (uint256 transferAmount, uint256 taxAmount) {
        bool isWhitelisted = whitelisted[to] || whitelisted[from]; // Check if wallet is WL

        if (isWhitelisted && (to == uniswapContractAddress || whitelisted[from])) { // Condition where wallet is WL and sell transaction
            uint256 timePassed = block.timestamp - tradingStartTime; // Check amount of time that have passed since trading started
            uint256 intervalsPassed = timePassed / WLTaxInterval; // Calculate number of intervals based on time passed
            uint256 taxReduction = intervalsPassed * WLTaxInterval * WLTaxRate / WLTaxWindow; // Calculate amount of tax to be adjusted
            if (timePassed > WLTaxWindow) { //Condition where WL tax period have ended
                transferAmount = amount;
                taxAmount = 0;
                NewWLTaxRate = 0;
            } else {
                NewWLTaxRate = WLTaxRate - taxReduction; // Calculate new tax rate based on amount of time that have passed
            }
            require(amount > 1 ether, "Transfer amount must be greater than 1 token due to tax implications"); // Prevent 1 token sell transfer transaction to avoid 0 token transfer and gas
            if (NewWLTaxRate > 0) {
                taxAmount = amount * NewWLTaxRate / 10000;  // Calculate amount of tokens to be taxed
                transferAmount = amount - taxAmount; // Calculate amount of token after tax
                          
            } else {
                transferAmount = amount;
                taxAmount = 0;
            }
        } else {
            transferAmount = amount;// 0 sell tax for non-WL addresses 
            taxAmount = 0;     
            }
        return (transferAmount, taxAmount);
    }

    // ==== set Uniswap V2 Pair address ====
    function setUniswapContractAddress(address _uniswapContractAddress) external onlyOwner   {
        require(tradingStartTime == 0, "Can only set pair once.");
        uniswapContractAddress = _uniswapContractAddress;
        tradingStartTime = block.timestamp;
    }
    
   // ==== Token transfer logic ====
   function _transfer(
    address from, 
    address to, 
    uint256 amount
    ) internal virtual override {
        // Calculate transfer and tax amounts
        (uint256 transferAmount, uint256 taxAmount) = calculateTransferAmount(from, to, amount);

        // Transfer calculated amounts
        if (taxAmount == 0){
            super._transfer(from, to, transferAmount);
        }
        else {
            super._transfer(from, to, transferAmount);
            super._transfer(from, taxWallet, taxAmount);
        }
    }


    // ==== Checks before token transfer happens ====
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual  {      
        // ==== Check if wallet is blacklisted ====
        require(!blacklisted[to] && !blacklisted[from], "Wallet is blacklisted");

        // ==== Check if trading started ====
        if (uniswapContractAddress == address(0) && from != address(0)) {
            require(from == owner(), "Trading yet to begin");
            return;
        }

        // ==== Check if successful buy transaction will exceed holding limit ====
        if (holdLimitState && from == uniswapContractAddress) {
            require(super.balanceOf(to) + amount <= holdLimitAmount, "Exceeds allowable holding limit per wallet");
        }

    }
}

File 2 of 6: 2.ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./4.IERC20.sol";
import "./5.IERC20Metadata.sol";
import "./6.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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 3 of 6: 3.Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)


pragma solidity ^0.8.0;
import "./6.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 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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 4 of 6: 4.IERC20.sol
// SPDX-License-Identifier: MIT
// 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 5 of 6: 5.IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)


pragma solidity ^0.8.0;

import "./4.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 6 of 6: 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;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"_taxWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"Blacklisted","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"UnBlacklisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"UnWhitelisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"Whitelisted","type":"event"},{"inputs":[],"name":"NewWLTaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WLTaxInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WLTaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WLTaxWindow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdropTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"bool","name":"_isBlacklisted","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"holdLimitAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holdLimitState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"bool","name":"_holdLimitState","type":"bool"},{"internalType":"uint256","name":"_holdLimitAmount","type":"uint256"}],"name":"setHoldLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapContractAddress","type":"address"}],"name":"setUniswapContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_WLTaxWindow","type":"uint256"},{"internalType":"uint256","name":"_WLTaxRate","type":"uint256"},{"internalType":"uint256","name":"_WLTaxInterval","type":"uint256"}],"name":"setWLTaxSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","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":"tradingStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"bool","name":"_isWhitelisted","type":"bool"}],"name":"whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526000600860006101000a81548160ff0219169083151502179055506202a300600c556105dc600d55603c600e553480156200003e57600080fd5b50604051620038b6380380620038b68339818101604052810190620000649190620007a7565b6040518060400160405280600681526020017f4547474d414e00000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4547474d414e0000000000000000000000000000000000000000000000000000815250620000f0620000e46200017160201b60201c565b6200017960201b60201c565b816004908162000101919062000a5e565b50806005908162000113919062000a5e565b5050506200012833836200023d60201b60201c565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000ddc565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002af576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a69062000ba6565b60405180910390fd5b620002c360008383620003ab60201b60201c565b8060036000828254620002d7919062000bf7565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200038b919062000c43565b60405180910390a3620003a7600083836200068b60201b60201c565b5050565b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620004505750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b62000492576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004899062000cb0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480156200051e5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15620005aa57620005346200069060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620005a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200059b9062000d22565b60405180910390fd5b62000686565b600860009054906101000a900460ff168015620006145750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156200068557600954816200063484620006b960201b62000a341760201c565b62000640919062000bf7565b111562000684576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200067b9062000dba565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080fd5b6000819050919050565b6200071c8162000707565b81146200072857600080fd5b50565b6000815190506200073c8162000711565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200076f8262000742565b9050919050565b620007818162000762565b81146200078d57600080fd5b50565b600081519050620007a18162000776565b92915050565b60008060408385031215620007c157620007c062000702565b5b6000620007d1858286016200072b565b9250506020620007e48582860162000790565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200087057607f821691505b60208210810362000886576200088562000828565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008f07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008b1565b620008fc8683620008b1565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200093f62000939620009338462000707565b62000914565b62000707565b9050919050565b6000819050919050565b6200095b836200091e565b620009736200096a8262000946565b848454620008be565b825550505050565b600090565b6200098a6200097b565b6200099781848462000950565b505050565b5b81811015620009bf57620009b360008262000980565b6001810190506200099d565b5050565b601f82111562000a0e57620009d8816200088c565b620009e384620008a1565b81016020851015620009f3578190505b62000a0b62000a0285620008a1565b8301826200099c565b50505b505050565b600082821c905092915050565b600062000a336000198460080262000a13565b1980831691505092915050565b600062000a4e838362000a20565b9150826002028217905092915050565b62000a6982620007ee565b67ffffffffffffffff81111562000a855762000a84620007f9565b5b62000a91825462000857565b62000a9e828285620009c3565b600060209050601f83116001811462000ad6576000841562000ac1578287015190505b62000acd858262000a40565b86555062000b3d565b601f19841662000ae6866200088c565b60005b8281101562000b105784890151825560018201915060208501945060208101905062000ae9565b8683101562000b30578489015162000b2c601f89168262000a20565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000b8e601f8362000b45565b915062000b9b8262000b56565b602082019050919050565b6000602082019050818103600083015262000bc18162000b7f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c048262000707565b915062000c118362000707565b925082820190508082111562000c2c5762000c2b62000bc8565b5b92915050565b62000c3d8162000707565b82525050565b600060208201905062000c5a600083018462000c32565b92915050565b7f57616c6c657420697320626c61636b6c69737465640000000000000000000000600082015250565b600062000c9860158362000b45565b915062000ca58262000c60565b602082019050919050565b6000602082019050818103600083015262000ccb8162000c89565b9050919050565b7f54726164696e672079657420746f20626567696e000000000000000000000000600082015250565b600062000d0a60148362000b45565b915062000d178262000cd2565b602082019050919050565b6000602082019050818103600083015262000d3d8162000cfb565b9050919050565b7f4578636565647320616c6c6f7761626c6520686f6c64696e67206c696d69742060008201527f7065722077616c6c657400000000000000000000000000000000000000000000602082015250565b600062000da2602a8362000b45565b915062000daf8262000d44565b604082019050919050565b6000602082019050818103600083015262000dd58162000d93565b9050919050565b612aca8062000dec6000396000f3fe608060405234801561001057600080fd5b50600436106101e45760003560e01c8063706f69371161010f578063b99618e0116100a2578063dd62ed3e11610071578063dd62ed3e14610585578063f2fde38b146105b5578063f66db086146105d1578063fe494b41146105ed576101e4565b8063b99618e0146104ed578063c997eb8d14610509578063d936547e14610525578063dbac26e914610555576101e4565b80638da5cb5b116100de5780638da5cb5b1461045157806395d89b411461046f578063a457c2d71461048d578063a9059cbb146104bd576101e4565b8063706f6937146103dd57806370a08231146103f957806370b7b80c14610429578063715018a614610447576101e4565b806318160ddd116101875780632dc0562d116101565780632dc0562d14610353578063313ce56714610371578063395093511461038f57806364c505bb146103bf576101e4565b806318160ddd146102c957806322586e64146102e757806323b872dd1461030557806323bd372114610335576101e4565b806308ed2c71116101c357806308ed2c7114610241578063090816b01461025f578063095ea7b31461027d57806312d98add146102ad576101e4565b806223e798146101e957806301b38af51461020757806306fdde0314610223575b600080fd5b6101f161060b565b6040516101fe9190611b61565b60405180910390f35b610221600480360381019061021c9190611c23565b610611565b005b61022b61079e565b6040516102389190611d13565b60405180910390f35b610249610830565b6040516102569190611d76565b60405180910390f35b610267610856565b6040516102749190611b61565b60405180910390f35b61029760048036038101906102929190611de9565b61085c565b6040516102a49190611e38565b60405180910390f35b6102c760048036038101906102c29190611e53565b61087f565b005b6102d16108ac565b6040516102de9190611b61565b60405180910390f35b6102ef6108b6565b6040516102fc9190611e38565b60405180910390f35b61031f600480360381019061031a9190611e93565b6108c9565b60405161032c9190611e38565b60405180910390f35b61033d6108f8565b60405161034a9190611b61565b60405180910390f35b61035b6108fe565b6040516103689190611d76565b60405180910390f35b610379610924565b6040516103869190611f02565b60405180910390f35b6103a960048036038101906103a49190611de9565b61092d565b6040516103b69190611e38565b60405180910390f35b6103c7610964565b6040516103d49190611b61565b60405180910390f35b6103f760048036038101906103f29190611f73565b61096a565b005b610413600480360381019061040e9190611ff4565b610a34565b6040516104209190611b61565b60405180910390f35b610431610a7d565b60405161043e9190611b61565b60405180910390f35b61044f610a83565b005b610459610a97565b6040516104669190611d76565b60405180910390f35b610477610ac0565b6040516104849190611d13565b60405180910390f35b6104a760048036038101906104a29190611de9565b610b52565b6040516104b49190611e38565b60405180910390f35b6104d760048036038101906104d29190611de9565b610bc9565b6040516104e49190611e38565b60405180910390f35b61050760048036038101906105029190611ff4565b610bec565b005b610523600480360381019061051e9190611c23565b610c84565b005b61053f600480360381019061053a9190611ff4565b610e11565b60405161054c9190611e38565b60405180910390f35b61056f600480360381019061056a9190611ff4565b610e31565b60405161057c9190611e38565b60405180910390f35b61059f600480360381019061059a9190612021565b610e51565b6040516105ac9190611b61565b60405180910390f35b6105cf60048036038101906105ca9190611ff4565b610ed8565b005b6105eb60048036038101906105e69190612061565b610f5b565b005b6105f5610f7d565b6040516106029190611b61565b60405180910390f35b600b5481565b610619610f83565b60005b8383905081101561079857816010600086868581811061063f5761063e6120b4565b5b90506020020160208101906106549190611ff4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550811561071a578383828181106106be576106bd6120b4565b5b90506020020160208101906106d39190611ff4565b73ffffffffffffffffffffffffffffffffffffffff167faab7954e9d246b167ef88aeddad35209ca2489d95a8aeb59e288d9b19fae5a5460405160405180910390a2610785565b83838281811061072d5761072c6120b4565b5b90506020020160208101906107429190611ff4565b73ffffffffffffffffffffffffffffffffffffffff167f7cdb51b0cc2e541ad7e9471c358de415f5dbaff6cca78e3393d445346c610c1b60405160405180910390a25b808061079090612112565b91505061061c565b50505050565b6060600480546107ad90612189565b80601f01602080910402602001604051908101604052809291908181526020018280546107d990612189565b80156108265780601f106107fb57610100808354040283529160200191610826565b820191906000526020600020905b81548152906001019060200180831161080957829003601f168201915b5050505050905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b600080610867611001565b9050610874818585611009565b600191505092915050565b610887610f83565b81600860006101000a81548160ff021916908315150217905550806009819055505050565b6000600354905090565b600860009054906101000a900460ff1681565b6000806108d4611001565b90506108e18582856111d2565b6108ec85858561125e565b60019150509392505050565b60095481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b600080610938611001565b905061095981858561094a8589610e51565b61095491906121ba565b611009565b600191505092915050565b600d5481565b610972610f83565b8181905084849050146109ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b19061223a565b60405180910390fd5b60005b84849050811015610a2d57610a1a6109d3610a97565b8686848181106109e6576109e56120b4565b5b90506020020160208101906109fb9190611ff4565b858585818110610a0e57610a0d6120b4565b5b9050602002013561125e565b8080610a2590612112565b9150506109bd565b5050505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60075481565b610a8b610f83565b610a9560006112c8565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610acf90612189565b80601f0160208091040260200160405190810160405280929190818152602001828054610afb90612189565b8015610b485780601f10610b1d57610100808354040283529160200191610b48565b820191906000526020600020905b815481529060010190602001808311610b2b57829003601f168201915b5050505050905090565b600080610b5d611001565b90506000610b6b8286610e51565b905083811015610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba7906122cc565b60405180910390fd5b610bbd8286868403611009565b60019250505092915050565b600080610bd4611001565b9050610be181858561125e565b600191505092915050565b610bf4610f83565b600060075414610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090612338565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260078190555050565b610c8c610f83565b60005b83839050811015610e0b5781600f6000868685818110610cb257610cb16120b4565b5b9050602002016020810190610cc79190611ff4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508115610d8d57838382818110610d3157610d306120b4565b5b9050602002016020810190610d469190611ff4565b73ffffffffffffffffffffffffffffffffffffffff167fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b85560405160405180910390a2610df8565b838382818110610da057610d9f6120b4565b5b9050602002016020810190610db59190611ff4565b73ffffffffffffffffffffffffffffffffffffffff167f117e3210bb9aa7d9baff172026820255c6f6c30ba8999d1c2fd88e2848137c4e60405160405180910390a25b8080610e0390612112565b915050610c8f565b50505050565b60106020528060005260406000206000915054906101000a900460ff1681565b600f6020528060005260406000206000915054906101000a900460ff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ee0610f83565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f46906123ca565b60405180910390fd5b610f58816112c8565b50565b610f63610f83565b82600c8190555081600d8190555080600e81905550505050565b600e5481565b610f8b611001565b73ffffffffffffffffffffffffffffffffffffffff16610fa9610a97565b73ffffffffffffffffffffffffffffffffffffffff1614610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff690612436565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f906124c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de9061255a565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111c59190611b61565b60405180910390a3505050565b60006111de8484610e51565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611258578181101561124a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611241906125c6565b60405180910390fd5b6112578484848403611009565b5b50505050565b60008061126c85858561138c565b915091506000810361128857611283858584611610565b6112c1565b611293858584611610565b6112c085600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611610565b5b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000806000601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114325750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b90508080156114e25750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806114e15750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b5b156115ff576000600754426114f791906125e6565b90506000600e54826115099190612649565b90506000600c54600d54600e5484611521919061267a565b61152b919061267a565b6115359190612649565b9050600c5483111561155557869550600094506000600b8190555061156a565b80600d5461156391906125e6565b600b819055505b670de0b6b3a764000087116115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab90612754565b60405180910390fd5b6000600b5411156115ef57612710600b54886115d0919061267a565b6115da9190612649565b945084876115e891906125e6565b95506115f7565b869550600094505b505050611607565b839250600091505b50935093915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361167f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611676906127e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e590612878565b60405180910390fd5b6116f9838383611889565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611780576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117779061290a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118709190611b61565b60405180910390a3611883848484611b43565b50505050565b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561192d5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61196c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196390612976565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480156119f75750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611a7657611a04610a97565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a68906129e2565b60405180910390fd5b611b3e565b600860009054906101000a900460ff168015611adf5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611b3d5760095481611af184610a34565b611afb91906121ba565b1115611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3390612a74565b60405180910390fd5b5b5b505050565b505050565b6000819050919050565b611b5b81611b48565b82525050565b6000602082019050611b766000830184611b52565b92915050565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b60008083601f840112611bab57611baa611b86565b5b8235905067ffffffffffffffff811115611bc857611bc7611b8b565b5b602083019150836020820283011115611be457611be3611b90565b5b9250929050565b60008115159050919050565b611c0081611beb565b8114611c0b57600080fd5b50565b600081359050611c1d81611bf7565b92915050565b600080600060408486031215611c3c57611c3b611b7c565b5b600084013567ffffffffffffffff811115611c5a57611c59611b81565b5b611c6686828701611b95565b93509350506020611c7986828701611c0e565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b60005b83811015611cbd578082015181840152602081019050611ca2565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ce582611c83565b611cef8185611c8e565b9350611cff818560208601611c9f565b611d0881611cc9565b840191505092915050565b60006020820190508181036000830152611d2d8184611cda565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d6082611d35565b9050919050565b611d7081611d55565b82525050565b6000602082019050611d8b6000830184611d67565b92915050565b611d9a81611d55565b8114611da557600080fd5b50565b600081359050611db781611d91565b92915050565b611dc681611b48565b8114611dd157600080fd5b50565b600081359050611de381611dbd565b92915050565b60008060408385031215611e0057611dff611b7c565b5b6000611e0e85828601611da8565b9250506020611e1f85828601611dd4565b9150509250929050565b611e3281611beb565b82525050565b6000602082019050611e4d6000830184611e29565b92915050565b60008060408385031215611e6a57611e69611b7c565b5b6000611e7885828601611c0e565b9250506020611e8985828601611dd4565b9150509250929050565b600080600060608486031215611eac57611eab611b7c565b5b6000611eba86828701611da8565b9350506020611ecb86828701611da8565b9250506040611edc86828701611dd4565b9150509250925092565b600060ff82169050919050565b611efc81611ee6565b82525050565b6000602082019050611f176000830184611ef3565b92915050565b60008083601f840112611f3357611f32611b86565b5b8235905067ffffffffffffffff811115611f5057611f4f611b8b565b5b602083019150836020820283011115611f6c57611f6b611b90565b5b9250929050565b60008060008060408587031215611f8d57611f8c611b7c565b5b600085013567ffffffffffffffff811115611fab57611faa611b81565b5b611fb787828801611b95565b9450945050602085013567ffffffffffffffff811115611fda57611fd9611b81565b5b611fe687828801611f1d565b925092505092959194509250565b60006020828403121561200a57612009611b7c565b5b600061201884828501611da8565b91505092915050565b6000806040838503121561203857612037611b7c565b5b600061204685828601611da8565b925050602061205785828601611da8565b9150509250929050565b60008060006060848603121561207a57612079611b7c565b5b600061208886828701611dd4565b935050602061209986828701611dd4565b92505060406120aa86828701611dd4565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061211d82611b48565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361214f5761214e6120e3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806121a157607f821691505b6020821081036121b4576121b361215a565b5b50919050565b60006121c582611b48565b91506121d083611b48565b92508282019050808211156121e8576121e76120e3565b5b92915050565b7f4d69736d61746368656420696e70757420617272617973000000000000000000600082015250565b6000612224601783611c8e565b915061222f826121ee565b602082019050919050565b6000602082019050818103600083015261225381612217565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006122b6602583611c8e565b91506122c18261225a565b604082019050919050565b600060208201905081810360008301526122e5816122a9565b9050919050565b7f43616e206f6e6c79207365742070616972206f6e63652e000000000000000000600082015250565b6000612322601783611c8e565b915061232d826122ec565b602082019050919050565b6000602082019050818103600083015261235181612315565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006123b4602683611c8e565b91506123bf82612358565b604082019050919050565b600060208201905081810360008301526123e3816123a7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612420602083611c8e565b915061242b826123ea565b602082019050919050565b6000602082019050818103600083015261244f81612413565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006124b2602483611c8e565b91506124bd82612456565b604082019050919050565b600060208201905081810360008301526124e1816124a5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612544602283611c8e565b915061254f826124e8565b604082019050919050565b6000602082019050818103600083015261257381612537565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006125b0601d83611c8e565b91506125bb8261257a565b602082019050919050565b600060208201905081810360008301526125df816125a3565b9050919050565b60006125f182611b48565b91506125fc83611b48565b9250828203905081811115612614576126136120e3565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061265482611b48565b915061265f83611b48565b92508261266f5761266e61261a565b5b828204905092915050565b600061268582611b48565b915061269083611b48565b925082820261269e81611b48565b915082820484148315176126b5576126b46120e3565b5b5092915050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e203120746f6b656e2064756520746f2074617820696d706c6963617460208201527f696f6e7300000000000000000000000000000000000000000000000000000000604082015250565b600061273e604483611c8e565b9150612749826126bc565b606082019050919050565b6000602082019050818103600083015261276d81612731565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006127d0602583611c8e565b91506127db82612774565b604082019050919050565b600060208201905081810360008301526127ff816127c3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612862602383611c8e565b915061286d82612806565b604082019050919050565b6000602082019050818103600083015261289181612855565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006128f4602683611c8e565b91506128ff82612898565b604082019050919050565b60006020820190508181036000830152612923816128e7565b9050919050565b7f57616c6c657420697320626c61636b6c69737465640000000000000000000000600082015250565b6000612960601583611c8e565b915061296b8261292a565b602082019050919050565b6000602082019050818103600083015261298f81612953565b9050919050565b7f54726164696e672079657420746f20626567696e000000000000000000000000600082015250565b60006129cc601483611c8e565b91506129d782612996565b602082019050919050565b600060208201905081810360008301526129fb816129bf565b9050919050565b7f4578636565647320616c6c6f7761626c6520686f6c64696e67206c696d69742060008201527f7065722077616c6c657400000000000000000000000000000000000000000000602082015250565b6000612a5e602a83611c8e565b9150612a6982612a02565b604082019050919050565b60006020820190508181036000830152612a8d81612a51565b905091905056fea2646970667358221220f006c9e59ceeba9e0294d9f0250a1294b225bc8cab417c9f29aa4c41bb6a0be664736f6c634300081200330000000000000000000000000000000000000000232eb0c45a096381f20800000000000000000000000000009561b8bba65a5b047e58dcff5dfdf06047764f5d

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e45760003560e01c8063706f69371161010f578063b99618e0116100a2578063dd62ed3e11610071578063dd62ed3e14610585578063f2fde38b146105b5578063f66db086146105d1578063fe494b41146105ed576101e4565b8063b99618e0146104ed578063c997eb8d14610509578063d936547e14610525578063dbac26e914610555576101e4565b80638da5cb5b116100de5780638da5cb5b1461045157806395d89b411461046f578063a457c2d71461048d578063a9059cbb146104bd576101e4565b8063706f6937146103dd57806370a08231146103f957806370b7b80c14610429578063715018a614610447576101e4565b806318160ddd116101875780632dc0562d116101565780632dc0562d14610353578063313ce56714610371578063395093511461038f57806364c505bb146103bf576101e4565b806318160ddd146102c957806322586e64146102e757806323b872dd1461030557806323bd372114610335576101e4565b806308ed2c71116101c357806308ed2c7114610241578063090816b01461025f578063095ea7b31461027d57806312d98add146102ad576101e4565b806223e798146101e957806301b38af51461020757806306fdde0314610223575b600080fd5b6101f161060b565b6040516101fe9190611b61565b60405180910390f35b610221600480360381019061021c9190611c23565b610611565b005b61022b61079e565b6040516102389190611d13565b60405180910390f35b610249610830565b6040516102569190611d76565b60405180910390f35b610267610856565b6040516102749190611b61565b60405180910390f35b61029760048036038101906102929190611de9565b61085c565b6040516102a49190611e38565b60405180910390f35b6102c760048036038101906102c29190611e53565b61087f565b005b6102d16108ac565b6040516102de9190611b61565b60405180910390f35b6102ef6108b6565b6040516102fc9190611e38565b60405180910390f35b61031f600480360381019061031a9190611e93565b6108c9565b60405161032c9190611e38565b60405180910390f35b61033d6108f8565b60405161034a9190611b61565b60405180910390f35b61035b6108fe565b6040516103689190611d76565b60405180910390f35b610379610924565b6040516103869190611f02565b60405180910390f35b6103a960048036038101906103a49190611de9565b61092d565b6040516103b69190611e38565b60405180910390f35b6103c7610964565b6040516103d49190611b61565b60405180910390f35b6103f760048036038101906103f29190611f73565b61096a565b005b610413600480360381019061040e9190611ff4565b610a34565b6040516104209190611b61565b60405180910390f35b610431610a7d565b60405161043e9190611b61565b60405180910390f35b61044f610a83565b005b610459610a97565b6040516104669190611d76565b60405180910390f35b610477610ac0565b6040516104849190611d13565b60405180910390f35b6104a760048036038101906104a29190611de9565b610b52565b6040516104b49190611e38565b60405180910390f35b6104d760048036038101906104d29190611de9565b610bc9565b6040516104e49190611e38565b60405180910390f35b61050760048036038101906105029190611ff4565b610bec565b005b610523600480360381019061051e9190611c23565b610c84565b005b61053f600480360381019061053a9190611ff4565b610e11565b60405161054c9190611e38565b60405180910390f35b61056f600480360381019061056a9190611ff4565b610e31565b60405161057c9190611e38565b60405180910390f35b61059f600480360381019061059a9190612021565b610e51565b6040516105ac9190611b61565b60405180910390f35b6105cf60048036038101906105ca9190611ff4565b610ed8565b005b6105eb60048036038101906105e69190612061565b610f5b565b005b6105f5610f7d565b6040516106029190611b61565b60405180910390f35b600b5481565b610619610f83565b60005b8383905081101561079857816010600086868581811061063f5761063e6120b4565b5b90506020020160208101906106549190611ff4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550811561071a578383828181106106be576106bd6120b4565b5b90506020020160208101906106d39190611ff4565b73ffffffffffffffffffffffffffffffffffffffff167faab7954e9d246b167ef88aeddad35209ca2489d95a8aeb59e288d9b19fae5a5460405160405180910390a2610785565b83838281811061072d5761072c6120b4565b5b90506020020160208101906107429190611ff4565b73ffffffffffffffffffffffffffffffffffffffff167f7cdb51b0cc2e541ad7e9471c358de415f5dbaff6cca78e3393d445346c610c1b60405160405180910390a25b808061079090612112565b91505061061c565b50505050565b6060600480546107ad90612189565b80601f01602080910402602001604051908101604052809291908181526020018280546107d990612189565b80156108265780601f106107fb57610100808354040283529160200191610826565b820191906000526020600020905b81548152906001019060200180831161080957829003601f168201915b5050505050905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b600080610867611001565b9050610874818585611009565b600191505092915050565b610887610f83565b81600860006101000a81548160ff021916908315150217905550806009819055505050565b6000600354905090565b600860009054906101000a900460ff1681565b6000806108d4611001565b90506108e18582856111d2565b6108ec85858561125e565b60019150509392505050565b60095481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b600080610938611001565b905061095981858561094a8589610e51565b61095491906121ba565b611009565b600191505092915050565b600d5481565b610972610f83565b8181905084849050146109ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b19061223a565b60405180910390fd5b60005b84849050811015610a2d57610a1a6109d3610a97565b8686848181106109e6576109e56120b4565b5b90506020020160208101906109fb9190611ff4565b858585818110610a0e57610a0d6120b4565b5b9050602002013561125e565b8080610a2590612112565b9150506109bd565b5050505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60075481565b610a8b610f83565b610a9560006112c8565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610acf90612189565b80601f0160208091040260200160405190810160405280929190818152602001828054610afb90612189565b8015610b485780601f10610b1d57610100808354040283529160200191610b48565b820191906000526020600020905b815481529060010190602001808311610b2b57829003601f168201915b5050505050905090565b600080610b5d611001565b90506000610b6b8286610e51565b905083811015610bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba7906122cc565b60405180910390fd5b610bbd8286868403611009565b60019250505092915050565b600080610bd4611001565b9050610be181858561125e565b600191505092915050565b610bf4610f83565b600060075414610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090612338565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055504260078190555050565b610c8c610f83565b60005b83839050811015610e0b5781600f6000868685818110610cb257610cb16120b4565b5b9050602002016020810190610cc79190611ff4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508115610d8d57838382818110610d3157610d306120b4565b5b9050602002016020810190610d469190611ff4565b73ffffffffffffffffffffffffffffffffffffffff167fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b85560405160405180910390a2610df8565b838382818110610da057610d9f6120b4565b5b9050602002016020810190610db59190611ff4565b73ffffffffffffffffffffffffffffffffffffffff167f117e3210bb9aa7d9baff172026820255c6f6c30ba8999d1c2fd88e2848137c4e60405160405180910390a25b8080610e0390612112565b915050610c8f565b50505050565b60106020528060005260406000206000915054906101000a900460ff1681565b600f6020528060005260406000206000915054906101000a900460ff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ee0610f83565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f46906123ca565b60405180910390fd5b610f58816112c8565b50565b610f63610f83565b82600c8190555081600d8190555080600e81905550505050565b600e5481565b610f8b611001565b73ffffffffffffffffffffffffffffffffffffffff16610fa9610a97565b73ffffffffffffffffffffffffffffffffffffffff1614610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff690612436565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f906124c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de9061255a565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111c59190611b61565b60405180910390a3505050565b60006111de8484610e51565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611258578181101561124a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611241906125c6565b60405180910390fd5b6112578484848403611009565b5b50505050565b60008061126c85858561138c565b915091506000810361128857611283858584611610565b6112c1565b611293858584611610565b6112c085600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611610565b5b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000806000601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114325750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b90508080156114e25750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806114e15750601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b5b156115ff576000600754426114f791906125e6565b90506000600e54826115099190612649565b90506000600c54600d54600e5484611521919061267a565b61152b919061267a565b6115359190612649565b9050600c5483111561155557869550600094506000600b8190555061156a565b80600d5461156391906125e6565b600b819055505b670de0b6b3a764000087116115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab90612754565b60405180910390fd5b6000600b5411156115ef57612710600b54886115d0919061267a565b6115da9190612649565b945084876115e891906125e6565b95506115f7565b869550600094505b505050611607565b839250600091505b50935093915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361167f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611676906127e6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e590612878565b60405180910390fd5b6116f9838383611889565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611780576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117779061290a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118709190611b61565b60405180910390a3611883848484611b43565b50505050565b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561192d5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61196c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196390612976565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480156119f75750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611a7657611a04610a97565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611a71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a68906129e2565b60405180910390fd5b611b3e565b600860009054906101000a900460ff168015611adf5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15611b3d5760095481611af184610a34565b611afb91906121ba565b1115611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3390612a74565b60405180910390fd5b5b5b505050565b505050565b6000819050919050565b611b5b81611b48565b82525050565b6000602082019050611b766000830184611b52565b92915050565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b60008083601f840112611bab57611baa611b86565b5b8235905067ffffffffffffffff811115611bc857611bc7611b8b565b5b602083019150836020820283011115611be457611be3611b90565b5b9250929050565b60008115159050919050565b611c0081611beb565b8114611c0b57600080fd5b50565b600081359050611c1d81611bf7565b92915050565b600080600060408486031215611c3c57611c3b611b7c565b5b600084013567ffffffffffffffff811115611c5a57611c59611b81565b5b611c6686828701611b95565b93509350506020611c7986828701611c0e565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b60005b83811015611cbd578082015181840152602081019050611ca2565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ce582611c83565b611cef8185611c8e565b9350611cff818560208601611c9f565b611d0881611cc9565b840191505092915050565b60006020820190508181036000830152611d2d8184611cda565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611d6082611d35565b9050919050565b611d7081611d55565b82525050565b6000602082019050611d8b6000830184611d67565b92915050565b611d9a81611d55565b8114611da557600080fd5b50565b600081359050611db781611d91565b92915050565b611dc681611b48565b8114611dd157600080fd5b50565b600081359050611de381611dbd565b92915050565b60008060408385031215611e0057611dff611b7c565b5b6000611e0e85828601611da8565b9250506020611e1f85828601611dd4565b9150509250929050565b611e3281611beb565b82525050565b6000602082019050611e4d6000830184611e29565b92915050565b60008060408385031215611e6a57611e69611b7c565b5b6000611e7885828601611c0e565b9250506020611e8985828601611dd4565b9150509250929050565b600080600060608486031215611eac57611eab611b7c565b5b6000611eba86828701611da8565b9350506020611ecb86828701611da8565b9250506040611edc86828701611dd4565b9150509250925092565b600060ff82169050919050565b611efc81611ee6565b82525050565b6000602082019050611f176000830184611ef3565b92915050565b60008083601f840112611f3357611f32611b86565b5b8235905067ffffffffffffffff811115611f5057611f4f611b8b565b5b602083019150836020820283011115611f6c57611f6b611b90565b5b9250929050565b60008060008060408587031215611f8d57611f8c611b7c565b5b600085013567ffffffffffffffff811115611fab57611faa611b81565b5b611fb787828801611b95565b9450945050602085013567ffffffffffffffff811115611fda57611fd9611b81565b5b611fe687828801611f1d565b925092505092959194509250565b60006020828403121561200a57612009611b7c565b5b600061201884828501611da8565b91505092915050565b6000806040838503121561203857612037611b7c565b5b600061204685828601611da8565b925050602061205785828601611da8565b9150509250929050565b60008060006060848603121561207a57612079611b7c565b5b600061208886828701611dd4565b935050602061209986828701611dd4565b92505060406120aa86828701611dd4565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061211d82611b48565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361214f5761214e6120e3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806121a157607f821691505b6020821081036121b4576121b361215a565b5b50919050565b60006121c582611b48565b91506121d083611b48565b92508282019050808211156121e8576121e76120e3565b5b92915050565b7f4d69736d61746368656420696e70757420617272617973000000000000000000600082015250565b6000612224601783611c8e565b915061222f826121ee565b602082019050919050565b6000602082019050818103600083015261225381612217565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006122b6602583611c8e565b91506122c18261225a565b604082019050919050565b600060208201905081810360008301526122e5816122a9565b9050919050565b7f43616e206f6e6c79207365742070616972206f6e63652e000000000000000000600082015250565b6000612322601783611c8e565b915061232d826122ec565b602082019050919050565b6000602082019050818103600083015261235181612315565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006123b4602683611c8e565b91506123bf82612358565b604082019050919050565b600060208201905081810360008301526123e3816123a7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612420602083611c8e565b915061242b826123ea565b602082019050919050565b6000602082019050818103600083015261244f81612413565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006124b2602483611c8e565b91506124bd82612456565b604082019050919050565b600060208201905081810360008301526124e1816124a5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612544602283611c8e565b915061254f826124e8565b604082019050919050565b6000602082019050818103600083015261257381612537565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006125b0601d83611c8e565b91506125bb8261257a565b602082019050919050565b600060208201905081810360008301526125df816125a3565b9050919050565b60006125f182611b48565b91506125fc83611b48565b9250828203905081811115612614576126136120e3565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061265482611b48565b915061265f83611b48565b92508261266f5761266e61261a565b5b828204905092915050565b600061268582611b48565b915061269083611b48565b925082820261269e81611b48565b915082820484148315176126b5576126b46120e3565b5b5092915050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e203120746f6b656e2064756520746f2074617820696d706c6963617460208201527f696f6e7300000000000000000000000000000000000000000000000000000000604082015250565b600061273e604483611c8e565b9150612749826126bc565b606082019050919050565b6000602082019050818103600083015261276d81612731565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006127d0602583611c8e565b91506127db82612774565b604082019050919050565b600060208201905081810360008301526127ff816127c3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612862602383611c8e565b915061286d82612806565b604082019050919050565b6000602082019050818103600083015261289181612855565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006128f4602683611c8e565b91506128ff82612898565b604082019050919050565b60006020820190508181036000830152612923816128e7565b9050919050565b7f57616c6c657420697320626c61636b6c69737465640000000000000000000000600082015250565b6000612960601583611c8e565b915061296b8261292a565b602082019050919050565b6000602082019050818103600083015261298f81612953565b9050919050565b7f54726164696e672079657420746f20626567696e000000000000000000000000600082015250565b60006129cc601483611c8e565b91506129d782612996565b602082019050919050565b600060208201905081810360008301526129fb816129bf565b9050919050565b7f4578636565647320616c6c6f7761626c6520686f6c64696e67206c696d69742060008201527f7065722077616c6c657400000000000000000000000000000000000000000000602082015250565b6000612a5e602a83611c8e565b9150612a6982612a02565b604082019050919050565b60006020820190508181036000830152612a8d81612a51565b905091905056fea2646970667358221220f006c9e59ceeba9e0294d9f0250a1294b225bc8cab417c9f29aa4c41bb6a0be664736f6c63430008120033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000232eb0c45a096381f20800000000000000000000000000009561b8bba65a5b047e58dcff5dfdf06047764f5d

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 10888420690000000000000000000
Arg [1] : _taxWallet (address): 0x9561b8bbA65A5B047E58DcFf5DFDF06047764F5d

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000232eb0c45a096381f2080000
Arg [1] : 0000000000000000000000009561b8bba65a5b047e58dcff5dfdf06047764f5d


Deployed Bytecode Sourcemap

187:6840:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;630:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2656:390;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2143:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;317:37:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;668;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4429:197:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2002:188:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3240:106:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;462:34:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5188:256:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;507:30:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;595:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3089:91:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5839:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;744:31:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1633:325;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3404:125:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;365:31:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1819:101:2;;;:::i;:::-;;1196:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2354:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6560:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3725:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5314:269:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2227:390;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1012:43;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;958;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3972:149:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2069:198:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3083:231:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;838:40;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;630:27;;;;:::o;2656:390::-;1089:13:2;:11;:13::i;:::-;2760:9:0::1;2755:284;2779:8;;:15;;2775:1;:19;2755:284;;;2843:14;2816:11;:24;2828:8;;2837:1;2828:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2816:24;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;2876:14;2872:156;;;2928:8;;2937:1;2928:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2916:24;;;;;;;;;;;;2872:156;;;3000:8;;3009:1;3000:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2986:26;;;;;;;;;;;;2872:156;2796:3;;;;;:::i;:::-;;;;2755:284;;;;2656:390:::0;;;:::o;2143:98:1:-;2197:13;2229:5;2222:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2143:98;:::o;317:37:0:-;;;;;;;;;;;;;:::o;668:::-;;;;:::o;4429:197:1:-;4512:4;4528:13;4544:12;:10;:12::i;:::-;4528:28;;4566:32;4575:5;4582:7;4591:6;4566:8;:32::i;:::-;4615:4;4608:11;;;4429:197;;;;:::o;2002:188:0:-;1089:13:2;:11;:13::i;:::-;2122:15:0::1;2105:14;;:32;;;;;;;;;;;;;;;;;;2166:16;2148:15;:34;;;;2002:188:::0;;:::o;3240:106:1:-;3301:7;3327:12;;3320:19;;3240:106;:::o;462:34:0:-;;;;;;;;;;;;;:::o;5188:256:1:-;5285:4;5301:15;5319:12;:10;:12::i;:::-;5301:30;;5341:38;5357:4;5363:7;5372:6;5341:15;:38::i;:::-;5389:27;5399:4;5405:2;5409:6;5389:9;:27::i;:::-;5433:4;5426:11;;;5188:256;;;;;:::o;507:30:0:-;;;;:::o;595:24::-;;;;;;;;;;;;;:::o;3089:91:1:-;3147:5;3171:2;3164:9;;3089:91;:::o;5839:234::-;5927:4;5943:13;5959:12;:10;:12::i;:::-;5943:28;;5981:64;5990:5;5997:7;6034:10;6006:25;6016:5;6023:7;6006:9;:25::i;:::-;:38;;;;:::i;:::-;5981:8;:64::i;:::-;6062:4;6055:11;;;5839:234;;;;:::o;744:31:0:-;;;;:::o;1633:325::-;1089:13:2;:11;:13::i;:::-;1776:7:0::1;;:14;;1755:10;;:17;;:35;1747:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;1836:9;1831:120;1855:10;;:17;;1851:1;:21;1831:120;;;1894:45;1904:7;:5;:7::i;:::-;1913:10;;1924:1;1913:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;1928:7;;1936:1;1928:10;;;;;;;:::i;:::-;;;;;;;;1894:9;:45::i;:::-;1874:3;;;;;:::i;:::-;;;;1831:120;;;;1633:325:::0;;;;:::o;3404:125:1:-;3478:7;3504:9;:18;3514:7;3504:18;;;;;;;;;;;;;;;;3497:25;;3404:125;;;:::o;365:31:0:-;;;;:::o;1819:101:2:-;1089:13;:11;:13::i;:::-;1883:30:::1;1910:1;1883:18;:30::i;:::-;1819:101::o:0;1196:85::-;1242:7;1268:6;;;;;;;;;;;1261:13;;1196:85;:::o;2354:102:1:-;2410:13;2442:7;2435:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2354:102;:::o;6560:427::-;6653:4;6669:13;6685:12;:10;:12::i;:::-;6669:28;;6707:24;6734:25;6744:5;6751:7;6734:9;:25::i;:::-;6707:52;;6797:15;6777:16;:35;;6769:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6888:60;6897:5;6904:7;6932:15;6913:16;:34;6888:8;:60::i;:::-;6976:4;6969:11;;;;6560:427;;;;:::o;3725:189::-;3804:4;3820:13;3836:12;:10;:12::i;:::-;3820:28;;3858;3868:5;3875:2;3879:6;3858:9;:28::i;:::-;3903:4;3896:11;;;3725:189;;;;:::o;5314:269:0:-;1089:13:2;:11;:13::i;:::-;5442:1:0::1;5422:16;;:21;5414:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;5507:23;5482:22;;:48;;;;;;;;;;;;;;;;;;5560:15;5541:16;:34;;;;5314:269:::0;:::o;2227:390::-;1089:13:2;:11;:13::i;:::-;2331:9:0::1;2326:284;2350:8;;:15;;2346:1;:19;2326:284;;;2414:14;2387:11;:24;2399:8;;2408:1;2399:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2387:24;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;2447:14;2443:156;;;2499:8;;2508:1;2499:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2487:24;;;;;;;;;;;;2443:156;;;2571:8;;2580:1;2571:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2557:26;;;;;;;;;;;;2443:156;2367:3;;;;;:::i;:::-;;;;2326:284;;;;2227:390:::0;;;:::o;1012:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;958:::-;;;;;;;;;;;;;;;;;;;;;;:::o;3972:149:1:-;4061:7;4087:11;:18;4099:5;4087:18;;;;;;;;;;;;;;;:27;4106:7;4087:27;;;;;;;;;;;;;;;;4080:34;;3972:149;;;;:::o;2069:198:2:-;1089:13;:11;:13::i;:::-;2177:1:::1;2157:22;;:8;:22;;::::0;2149:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2232:28;2251:8;2232:18;:28::i;:::-;2069:198:::0;:::o;3083:231:0:-;1089:13:2;:11;:13::i;:::-;3220:12:0::1;3206:11;:26;;;;3255:10;3243:9;:22;;;;3292:14;3276:13;:30;;;;3083:231:::0;;;:::o;838:40::-;;;;:::o;1354:130:2:-;1428:12;:10;:12::i;:::-;1417:23;;:7;:5;:7::i;:::-;:23;;;1409:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1354:130::o;640:96:5:-;693:7;719:10;712:17;;640:96;:::o;10442:340:1:-;10560:1;10543:19;;:5;:19;;;10535:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10640:1;10621:21;;:7;:21;;;10613:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10722:6;10692:11;:18;10704:5;10692:18;;;;;;;;;;;;;;;:27;10711:7;10692:27;;;;;;;;;;;;;;;:36;;;;10759:7;10743:32;;10752:5;10743:32;;;10768:6;10743:32;;;;;;:::i;:::-;;;;;;;;10442:340;;;:::o;11063:411::-;11163:24;11190:25;11200:5;11207:7;11190:9;:25::i;:::-;11163:52;;11249:17;11229:16;:37;11225:243;;11310:6;11290:16;:26;;11282:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11392:51;11401:5;11408:7;11436:6;11417:16;:25;11392:8;:51::i;:::-;11225:243;11153:321;11063:411;;;:::o;5632:544:0:-;5802:22;5826:17;5847:41;5871:4;5877:2;5881:6;5847:23;:41::i;:::-;5801:87;;;;5958:1;5945:9;:14;5941:228;;5975:41;5991:4;5997:2;6001:14;5975:15;:41::i;:::-;5941:228;;;6058:41;6074:4;6080:2;6084:14;6058:15;:41::i;:::-;6114:43;6130:4;6136:9;;;;;;;;;;;6147;6114:15;:43::i;:::-;5941:228;5743:433;;5632:544;;;:::o;2421:187:2:-;2494:16;2513:6;;;;;;;;;;;2494:25;;2538:8;2529:6;;:17;;;;;;;;;;;;;;;;;;2592:8;2561:40;;2582:8;2561:40;;;;;;;;;;;;2484:124;2421:187;:::o;3386:1874:0:-;3479:22;3503:17;3533:18;3554:11;:15;3566:2;3554:15;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;3573:11;:17;3585:4;3573:17;;;;;;;;;;;;;;;;;;;;;;;;;3554:36;3533:57;;3632:13;:68;;;;;3656:22;;;;;;;;;;;3650:28;;:2;:28;;;:49;;;;3682:11;:17;3694:4;3682:17;;;;;;;;;;;;;;;;;;;;;;;;;3650:49;3632:68;3628:1580;;;3770:18;3809:16;;3791:15;:34;;;;:::i;:::-;3770:55;;3903:23;3942:13;;3929:10;:26;;;;:::i;:::-;3903:52;;4024:20;4093:11;;4081:9;;4065:13;;4047:15;:31;;;;:::i;:::-;:43;;;;:::i;:::-;:57;;;;:::i;:::-;4024:80;;4178:11;;4165:10;:24;4161:345;;;4270:6;4253:23;;4307:1;4295:13;;4342:1;4327:12;:16;;;;4161:345;;;4411:12;4399:9;;:24;;;;:::i;:::-;4384:12;:39;;;;4161:345;4537:7;4528:6;:16;4520:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;4730:1;4715:12;;:16;4711:358;;;4788:5;4773:12;;4764:6;:21;;;;:::i;:::-;:29;;;;:::i;:::-;4752:41;;4881:9;4872:6;:18;;;;:::i;:::-;4855:35;;4711:358;;;5015:6;4998:23;;5052:1;5040:13;;4711:358;3702:1378;;;3628:1580;;;5118:6;5101:23;;5186:1;5174:13;;3628:1580;5218:34;3386:1874;;;;;;:::o;7441:788:1:-;7553:1;7537:18;;:4;:18;;;7529:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7629:1;7615:16;;:2;:16;;;7607:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7682:38;7703:4;7709:2;7713:6;7682:20;:38::i;:::-;7731:19;7753:9;:15;7763:4;7753:15;;;;;;;;;;;;;;;;7731:37;;7801:6;7786:11;:21;;7778:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7916:6;7902:11;:20;7884:9;:15;7894:4;7884:15;;;;;;;;;;;;;;;:38;;;;8116:6;8099:9;:13;8109:2;8099:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8163:2;8148:26;;8157:4;8148:26;;;8167:6;8148:26;;;;;;:::i;:::-;;;;;;;;8185:37;8205:4;8211:2;8215:6;8185:19;:37::i;:::-;7519:710;7441:788;;;:::o;6241:783:0:-;6453:11;:15;6465:2;6453:15;;;;;;;;;;;;;;;;;;;;;;;;;6452:16;:38;;;;;6473:11;:17;6485:4;6473:17;;;;;;;;;;;;;;;;;;;;;;;;;6472:18;6452:38;6444:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;6614:1;6580:36;;:22;;;;;;;;;;;:36;;;:58;;;;;6636:1;6620:18;;:4;:18;;;;6580:58;6576:160;;;6671:7;:5;:7::i;:::-;6663:15;;:4;:15;;;6655:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;6718:7;;6576:160;6836:14;;;;;;;;;;;:48;;;;;6862:22;;;;;;;;;;;6854:30;;:4;:30;;;6836:48;6832:183;;;6941:15;;6931:6;6909:19;6925:2;6909:15;:19::i;:::-;:28;;;;:::i;:::-;:47;;6901:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;6832:183;6241:783;;;;:::o;12737:90:1:-;;;;:::o;7:77:6:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;523:117::-;632:1;629;622:12;646:117;755:1;752;745:12;769:117;878:1;875;868:12;892:117;1001:1;998;991:12;1015:117;1124:1;1121;1114:12;1155:568;1228:8;1238:6;1288:3;1281:4;1273:6;1269:17;1265:27;1255:122;;1296:79;;:::i;:::-;1255:122;1409:6;1396:20;1386:30;;1439:18;1431:6;1428:30;1425:117;;;1461:79;;:::i;:::-;1425:117;1575:4;1567:6;1563:17;1551:29;;1629:3;1621:4;1613:6;1609:17;1599:8;1595:32;1592:41;1589:128;;;1636:79;;:::i;:::-;1589:128;1155:568;;;;;:::o;1729:90::-;1763:7;1806:5;1799:13;1792:21;1781:32;;1729:90;;;:::o;1825:116::-;1895:21;1910:5;1895:21;:::i;:::-;1888:5;1885:32;1875:60;;1931:1;1928;1921:12;1875:60;1825:116;:::o;1947:133::-;1990:5;2028:6;2015:20;2006:29;;2044:30;2068:5;2044:30;:::i;:::-;1947:133;;;;:::o;2086:698::-;2178:6;2186;2194;2243:2;2231:9;2222:7;2218:23;2214:32;2211:119;;;2249:79;;:::i;:::-;2211:119;2397:1;2386:9;2382:17;2369:31;2427:18;2419:6;2416:30;2413:117;;;2449:79;;:::i;:::-;2413:117;2562:80;2634:7;2625:6;2614:9;2610:22;2562:80;:::i;:::-;2544:98;;;;2340:312;2691:2;2717:50;2759:7;2750:6;2739:9;2735:22;2717:50;:::i;:::-;2707:60;;2662:115;2086:698;;;;;:::o;2790:99::-;2842:6;2876:5;2870:12;2860:22;;2790:99;;;:::o;2895:169::-;2979:11;3013:6;3008:3;3001:19;3053:4;3048:3;3044:14;3029:29;;2895:169;;;;:::o;3070:246::-;3151:1;3161:113;3175:6;3172:1;3169:13;3161:113;;;3260:1;3255:3;3251:11;3245:18;3241:1;3236:3;3232:11;3225:39;3197:2;3194:1;3190:10;3185:15;;3161:113;;;3308:1;3299:6;3294:3;3290:16;3283:27;3132:184;3070:246;;;:::o;3322:102::-;3363:6;3414:2;3410:7;3405:2;3398:5;3394:14;3390:28;3380:38;;3322:102;;;:::o;3430:377::-;3518:3;3546:39;3579:5;3546:39;:::i;:::-;3601:71;3665:6;3660:3;3601:71;:::i;:::-;3594:78;;3681:65;3739:6;3734:3;3727:4;3720:5;3716:16;3681:65;:::i;:::-;3771:29;3793:6;3771:29;:::i;:::-;3766:3;3762:39;3755:46;;3522:285;3430:377;;;;:::o;3813:313::-;3926:4;3964:2;3953:9;3949:18;3941:26;;4013:9;4007:4;4003:20;3999:1;3988:9;3984:17;3977:47;4041:78;4114:4;4105:6;4041:78;:::i;:::-;4033:86;;3813:313;;;;:::o;4132:126::-;4169:7;4209:42;4202:5;4198:54;4187:65;;4132:126;;;:::o;4264:96::-;4301:7;4330:24;4348:5;4330:24;:::i;:::-;4319:35;;4264:96;;;:::o;4366:118::-;4453:24;4471:5;4453:24;:::i;:::-;4448:3;4441:37;4366:118;;:::o;4490:222::-;4583:4;4621:2;4610:9;4606:18;4598:26;;4634:71;4702:1;4691:9;4687:17;4678:6;4634:71;:::i;:::-;4490:222;;;;:::o;4718:122::-;4791:24;4809:5;4791:24;:::i;:::-;4784:5;4781:35;4771:63;;4830:1;4827;4820:12;4771:63;4718:122;:::o;4846:139::-;4892:5;4930:6;4917:20;4908:29;;4946:33;4973:5;4946:33;:::i;:::-;4846:139;;;;:::o;4991:122::-;5064:24;5082:5;5064:24;:::i;:::-;5057:5;5054:35;5044:63;;5103:1;5100;5093:12;5044:63;4991:122;:::o;5119:139::-;5165:5;5203:6;5190:20;5181:29;;5219:33;5246:5;5219:33;:::i;:::-;5119:139;;;;:::o;5264:474::-;5332:6;5340;5389:2;5377:9;5368:7;5364:23;5360:32;5357:119;;;5395:79;;:::i;:::-;5357:119;5515:1;5540:53;5585:7;5576:6;5565:9;5561:22;5540:53;:::i;:::-;5530:63;;5486:117;5642:2;5668:53;5713:7;5704:6;5693:9;5689:22;5668:53;:::i;:::-;5658:63;;5613:118;5264:474;;;;;:::o;5744:109::-;5825:21;5840:5;5825:21;:::i;:::-;5820:3;5813:34;5744:109;;:::o;5859:210::-;5946:4;5984:2;5973:9;5969:18;5961:26;;5997:65;6059:1;6048:9;6044:17;6035:6;5997:65;:::i;:::-;5859:210;;;;:::o;6075:468::-;6140:6;6148;6197:2;6185:9;6176:7;6172:23;6168:32;6165:119;;;6203:79;;:::i;:::-;6165:119;6323:1;6348:50;6390:7;6381:6;6370:9;6366:22;6348:50;:::i;:::-;6338:60;;6294:114;6447:2;6473:53;6518:7;6509:6;6498:9;6494:22;6473:53;:::i;:::-;6463:63;;6418:118;6075:468;;;;;:::o;6549:619::-;6626:6;6634;6642;6691:2;6679:9;6670:7;6666:23;6662:32;6659:119;;;6697:79;;:::i;:::-;6659:119;6817:1;6842:53;6887:7;6878:6;6867:9;6863:22;6842:53;:::i;:::-;6832:63;;6788:117;6944:2;6970:53;7015:7;7006:6;6995:9;6991:22;6970:53;:::i;:::-;6960:63;;6915:118;7072:2;7098:53;7143:7;7134:6;7123:9;7119:22;7098:53;:::i;:::-;7088:63;;7043:118;6549:619;;;;;:::o;7174:86::-;7209:7;7249:4;7242:5;7238:16;7227:27;;7174:86;;;:::o;7266:112::-;7349:22;7365:5;7349:22;:::i;:::-;7344:3;7337:35;7266:112;;:::o;7384:214::-;7473:4;7511:2;7500:9;7496:18;7488:26;;7524:67;7588:1;7577:9;7573:17;7564:6;7524:67;:::i;:::-;7384:214;;;;:::o;7621:568::-;7694:8;7704:6;7754:3;7747:4;7739:6;7735:17;7731:27;7721:122;;7762:79;;:::i;:::-;7721:122;7875:6;7862:20;7852:30;;7905:18;7897:6;7894:30;7891:117;;;7927:79;;:::i;:::-;7891:117;8041:4;8033:6;8029:17;8017:29;;8095:3;8087:4;8079:6;8075:17;8065:8;8061:32;8058:41;8055:128;;;8102:79;;:::i;:::-;8055:128;7621:568;;;;;:::o;8195:934::-;8317:6;8325;8333;8341;8390:2;8378:9;8369:7;8365:23;8361:32;8358:119;;;8396:79;;:::i;:::-;8358:119;8544:1;8533:9;8529:17;8516:31;8574:18;8566:6;8563:30;8560:117;;;8596:79;;:::i;:::-;8560:117;8709:80;8781:7;8772:6;8761:9;8757:22;8709:80;:::i;:::-;8691:98;;;;8487:312;8866:2;8855:9;8851:18;8838:32;8897:18;8889:6;8886:30;8883:117;;;8919:79;;:::i;:::-;8883:117;9032:80;9104:7;9095:6;9084:9;9080:22;9032:80;:::i;:::-;9014:98;;;;8809:313;8195:934;;;;;;;:::o;9135:329::-;9194:6;9243:2;9231:9;9222:7;9218:23;9214:32;9211:119;;;9249:79;;:::i;:::-;9211:119;9369:1;9394:53;9439:7;9430:6;9419:9;9415:22;9394:53;:::i;:::-;9384:63;;9340:117;9135:329;;;;:::o;9470:474::-;9538:6;9546;9595:2;9583:9;9574:7;9570:23;9566:32;9563:119;;;9601:79;;:::i;:::-;9563:119;9721:1;9746:53;9791:7;9782:6;9771:9;9767:22;9746:53;:::i;:::-;9736:63;;9692:117;9848:2;9874:53;9919:7;9910:6;9899:9;9895:22;9874:53;:::i;:::-;9864:63;;9819:118;9470:474;;;;;:::o;9950:619::-;10027:6;10035;10043;10092:2;10080:9;10071:7;10067:23;10063:32;10060:119;;;10098:79;;:::i;:::-;10060:119;10218:1;10243:53;10288:7;10279:6;10268:9;10264:22;10243:53;:::i;:::-;10233:63;;10189:117;10345:2;10371:53;10416:7;10407:6;10396:9;10392:22;10371:53;:::i;:::-;10361:63;;10316:118;10473:2;10499:53;10544:7;10535:6;10524:9;10520:22;10499:53;:::i;:::-;10489:63;;10444:118;9950:619;;;;;:::o;10575:180::-;10623:77;10620:1;10613:88;10720:4;10717:1;10710:15;10744:4;10741:1;10734:15;10761:180;10809:77;10806:1;10799:88;10906:4;10903:1;10896:15;10930:4;10927:1;10920:15;10947:233;10986:3;11009:24;11027:5;11009:24;:::i;:::-;11000:33;;11055:66;11048:5;11045:77;11042:103;;11125:18;;:::i;:::-;11042:103;11172:1;11165:5;11161:13;11154:20;;10947:233;;;:::o;11186:180::-;11234:77;11231:1;11224:88;11331:4;11328:1;11321:15;11355:4;11352:1;11345:15;11372:320;11416:6;11453:1;11447:4;11443:12;11433:22;;11500:1;11494:4;11490:12;11521:18;11511:81;;11577:4;11569:6;11565:17;11555:27;;11511:81;11639:2;11631:6;11628:14;11608:18;11605:38;11602:84;;11658:18;;:::i;:::-;11602:84;11423:269;11372:320;;;:::o;11698:191::-;11738:3;11757:20;11775:1;11757:20;:::i;:::-;11752:25;;11791:20;11809:1;11791:20;:::i;:::-;11786:25;;11834:1;11831;11827:9;11820:16;;11855:3;11852:1;11849:10;11846:36;;;11862:18;;:::i;:::-;11846:36;11698:191;;;;:::o;11895:173::-;12035:25;12031:1;12023:6;12019:14;12012:49;11895:173;:::o;12074:366::-;12216:3;12237:67;12301:2;12296:3;12237:67;:::i;:::-;12230:74;;12313:93;12402:3;12313:93;:::i;:::-;12431:2;12426:3;12422:12;12415:19;;12074:366;;;:::o;12446:419::-;12612:4;12650:2;12639:9;12635:18;12627:26;;12699:9;12693:4;12689:20;12685:1;12674:9;12670:17;12663:47;12727:131;12853:4;12727:131;:::i;:::-;12719:139;;12446:419;;;:::o;12871:224::-;13011:34;13007:1;12999:6;12995:14;12988:58;13080:7;13075:2;13067:6;13063:15;13056:32;12871:224;:::o;13101:366::-;13243:3;13264:67;13328:2;13323:3;13264:67;:::i;:::-;13257:74;;13340:93;13429:3;13340:93;:::i;:::-;13458:2;13453:3;13449:12;13442:19;;13101:366;;;:::o;13473:419::-;13639:4;13677:2;13666:9;13662:18;13654:26;;13726:9;13720:4;13716:20;13712:1;13701:9;13697:17;13690:47;13754:131;13880:4;13754:131;:::i;:::-;13746:139;;13473:419;;;:::o;13898:173::-;14038:25;14034:1;14026:6;14022:14;14015:49;13898:173;:::o;14077:366::-;14219:3;14240:67;14304:2;14299:3;14240:67;:::i;:::-;14233:74;;14316:93;14405:3;14316:93;:::i;:::-;14434:2;14429:3;14425:12;14418:19;;14077:366;;;:::o;14449:419::-;14615:4;14653:2;14642:9;14638:18;14630:26;;14702:9;14696:4;14692:20;14688:1;14677:9;14673:17;14666:47;14730:131;14856:4;14730:131;:::i;:::-;14722:139;;14449:419;;;:::o;14874:225::-;15014:34;15010:1;15002:6;14998:14;14991:58;15083:8;15078:2;15070:6;15066:15;15059:33;14874:225;:::o;15105:366::-;15247:3;15268:67;15332:2;15327:3;15268:67;:::i;:::-;15261:74;;15344:93;15433:3;15344:93;:::i;:::-;15462:2;15457:3;15453:12;15446:19;;15105:366;;;:::o;15477:419::-;15643:4;15681:2;15670:9;15666:18;15658:26;;15730:9;15724:4;15720:20;15716:1;15705:9;15701:17;15694:47;15758:131;15884:4;15758:131;:::i;:::-;15750:139;;15477:419;;;:::o;15902:182::-;16042:34;16038:1;16030:6;16026:14;16019:58;15902:182;:::o;16090:366::-;16232:3;16253:67;16317:2;16312:3;16253:67;:::i;:::-;16246:74;;16329:93;16418:3;16329:93;:::i;:::-;16447:2;16442:3;16438:12;16431:19;;16090:366;;;:::o;16462:419::-;16628:4;16666:2;16655:9;16651:18;16643:26;;16715:9;16709:4;16705:20;16701:1;16690:9;16686:17;16679:47;16743:131;16869:4;16743:131;:::i;:::-;16735:139;;16462:419;;;:::o;16887:223::-;17027:34;17023:1;17015:6;17011:14;17004:58;17096:6;17091:2;17083:6;17079:15;17072:31;16887:223;:::o;17116:366::-;17258:3;17279:67;17343:2;17338:3;17279:67;:::i;:::-;17272:74;;17355:93;17444:3;17355:93;:::i;:::-;17473:2;17468:3;17464:12;17457:19;;17116:366;;;:::o;17488:419::-;17654:4;17692:2;17681:9;17677:18;17669:26;;17741:9;17735:4;17731:20;17727:1;17716:9;17712:17;17705:47;17769:131;17895:4;17769:131;:::i;:::-;17761:139;;17488:419;;;:::o;17913:221::-;18053:34;18049:1;18041:6;18037:14;18030:58;18122:4;18117:2;18109:6;18105:15;18098:29;17913:221;:::o;18140:366::-;18282:3;18303:67;18367:2;18362:3;18303:67;:::i;:::-;18296:74;;18379:93;18468:3;18379:93;:::i;:::-;18497:2;18492:3;18488:12;18481:19;;18140:366;;;:::o;18512:419::-;18678:4;18716:2;18705:9;18701:18;18693:26;;18765:9;18759:4;18755:20;18751:1;18740:9;18736:17;18729:47;18793:131;18919:4;18793:131;:::i;:::-;18785:139;;18512:419;;;:::o;18937:179::-;19077:31;19073:1;19065:6;19061:14;19054:55;18937:179;:::o;19122:366::-;19264:3;19285:67;19349:2;19344:3;19285:67;:::i;:::-;19278:74;;19361:93;19450:3;19361:93;:::i;:::-;19479:2;19474:3;19470:12;19463:19;;19122:366;;;:::o;19494:419::-;19660:4;19698:2;19687:9;19683:18;19675:26;;19747:9;19741:4;19737:20;19733:1;19722:9;19718:17;19711:47;19775:131;19901:4;19775:131;:::i;:::-;19767:139;;19494:419;;;:::o;19919:194::-;19959:4;19979:20;19997:1;19979:20;:::i;:::-;19974:25;;20013:20;20031:1;20013:20;:::i;:::-;20008:25;;20057:1;20054;20050:9;20042:17;;20081:1;20075:4;20072:11;20069:37;;;20086:18;;:::i;:::-;20069:37;19919:194;;;;:::o;20119:180::-;20167:77;20164:1;20157:88;20264:4;20261:1;20254:15;20288:4;20285:1;20278:15;20305:185;20345:1;20362:20;20380:1;20362:20;:::i;:::-;20357:25;;20396:20;20414:1;20396:20;:::i;:::-;20391:25;;20435:1;20425:35;;20440:18;;:::i;:::-;20425:35;20482:1;20479;20475:9;20470:14;;20305:185;;;;:::o;20496:410::-;20536:7;20559:20;20577:1;20559:20;:::i;:::-;20554:25;;20593:20;20611:1;20593:20;:::i;:::-;20588:25;;20648:1;20645;20641:9;20670:30;20688:11;20670:30;:::i;:::-;20659:41;;20849:1;20840:7;20836:15;20833:1;20830:22;20810:1;20803:9;20783:83;20760:139;;20879:18;;:::i;:::-;20760:139;20544:362;20496:410;;;;:::o;20912:292::-;21052:34;21048:1;21040:6;21036:14;21029:58;21121:34;21116:2;21108:6;21104:15;21097:59;21190:6;21185:2;21177:6;21173:15;21166:31;20912:292;:::o;21210:366::-;21352:3;21373:67;21437:2;21432:3;21373:67;:::i;:::-;21366:74;;21449:93;21538:3;21449:93;:::i;:::-;21567:2;21562:3;21558:12;21551:19;;21210:366;;;:::o;21582:419::-;21748:4;21786:2;21775:9;21771:18;21763:26;;21835:9;21829:4;21825:20;21821:1;21810:9;21806:17;21799:47;21863:131;21989:4;21863:131;:::i;:::-;21855:139;;21582:419;;;:::o;22007:224::-;22147:34;22143:1;22135:6;22131:14;22124:58;22216:7;22211:2;22203:6;22199:15;22192:32;22007:224;:::o;22237:366::-;22379:3;22400:67;22464:2;22459:3;22400:67;:::i;:::-;22393:74;;22476:93;22565:3;22476:93;:::i;:::-;22594:2;22589:3;22585:12;22578:19;;22237:366;;;:::o;22609:419::-;22775:4;22813:2;22802:9;22798:18;22790:26;;22862:9;22856:4;22852:20;22848:1;22837:9;22833:17;22826:47;22890:131;23016:4;22890:131;:::i;:::-;22882:139;;22609:419;;;:::o;23034:222::-;23174:34;23170:1;23162:6;23158:14;23151:58;23243:5;23238:2;23230:6;23226:15;23219:30;23034:222;:::o;23262:366::-;23404:3;23425:67;23489:2;23484:3;23425:67;:::i;:::-;23418:74;;23501:93;23590:3;23501:93;:::i;:::-;23619:2;23614:3;23610:12;23603:19;;23262:366;;;:::o;23634:419::-;23800:4;23838:2;23827:9;23823:18;23815:26;;23887:9;23881:4;23877:20;23873:1;23862:9;23858:17;23851:47;23915:131;24041:4;23915:131;:::i;:::-;23907:139;;23634:419;;;:::o;24059:225::-;24199:34;24195:1;24187:6;24183:14;24176:58;24268:8;24263:2;24255:6;24251:15;24244:33;24059:225;:::o;24290:366::-;24432:3;24453:67;24517:2;24512:3;24453:67;:::i;:::-;24446:74;;24529:93;24618:3;24529:93;:::i;:::-;24647:2;24642:3;24638:12;24631:19;;24290:366;;;:::o;24662:419::-;24828:4;24866:2;24855:9;24851:18;24843:26;;24915:9;24909:4;24905:20;24901:1;24890:9;24886:17;24879:47;24943:131;25069:4;24943:131;:::i;:::-;24935:139;;24662:419;;;:::o;25087:171::-;25227:23;25223:1;25215:6;25211:14;25204:47;25087:171;:::o;25264:366::-;25406:3;25427:67;25491:2;25486:3;25427:67;:::i;:::-;25420:74;;25503:93;25592:3;25503:93;:::i;:::-;25621:2;25616:3;25612:12;25605:19;;25264:366;;;:::o;25636:419::-;25802:4;25840:2;25829:9;25825:18;25817:26;;25889:9;25883:4;25879:20;25875:1;25864:9;25860:17;25853:47;25917:131;26043:4;25917:131;:::i;:::-;25909:139;;25636:419;;;:::o;26061:170::-;26201:22;26197:1;26189:6;26185:14;26178:46;26061:170;:::o;26237:366::-;26379:3;26400:67;26464:2;26459:3;26400:67;:::i;:::-;26393:74;;26476:93;26565:3;26476:93;:::i;:::-;26594:2;26589:3;26585:12;26578:19;;26237:366;;;:::o;26609:419::-;26775:4;26813:2;26802:9;26798:18;26790:26;;26862:9;26856:4;26852:20;26848:1;26837:9;26833:17;26826:47;26890:131;27016:4;26890:131;:::i;:::-;26882:139;;26609:419;;;:::o;27034:229::-;27174:34;27170:1;27162:6;27158:14;27151:58;27243:12;27238:2;27230:6;27226:15;27219:37;27034:229;:::o;27269:366::-;27411:3;27432:67;27496:2;27491:3;27432:67;:::i;:::-;27425:74;;27508:93;27597:3;27508:93;:::i;:::-;27626:2;27621:3;27617:12;27610:19;;27269:366;;;:::o;27641:419::-;27807:4;27845:2;27834:9;27830:18;27822:26;;27894:9;27888:4;27884:20;27880:1;27869:9;27865:17;27858:47;27922:131;28048:4;27922:131;:::i;:::-;27914:139;;27641:419;;;:::o

Swarm Source

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