ETH Price: $3,337.26 (-1.11%)
Gas: 8 Gwei

Token

Lonely Dino (LDINO)
 

Overview

Max Total Supply

6,209,122,500 LDINO

Holders

113

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
LonelyDino

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-28
*/

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

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


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


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

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

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;





/**
 * @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}.
 *
 * 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.20;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys a `value` amount of tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 value) public virtual {
        _burn(_msgSender(), value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, deducting from
     * the caller's allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `value`.
     */
    function burnFrom(address account, uint256 value) public virtual {
        _spendAllowance(account, _msgSender(), value);
        _burn(account, value);
    }
}

// File: contracts/LonelyDino.sol

//SPDX-License-Identifier: MIT
//------------------------------------------------------------------
pragma solidity ^0.8.20;




//------------------------------------------------------------------
//CONTRACT
contract LonelyDino is ERC20, ERC20Burnable, Ownable {
    uint256 public immutable tokenSupply;
    uint256 public immutable dexSupply;
    uint256 public immutable cexSupply;
    uint256 public immutable devSupply;
    uint256 public immutable teamSupply;
    
    address public immutable dexWallet;
    address public immutable cexWallet;
    address public immutable devWallet;
    address public immutable teamWallet;
    address public immutable promoWallet;
   
    bool public limitTrading;
    address public uniswapPool;
    uint256 public maxHoldingAmount;

    uint256 public immutable minTransactions;
    uint256 public immutable taxRate;
    uint256 public tax;
    uint256 public transactionCounter;

    //--------------------------------------------------------------
    //CONSTRUCTOR
    constructor()
        ERC20("Lonely Dino", "LDINO")
        Ownable (msg.sender)
    {
        tokenSupply = 6209122500 * 10 ** decimals();
        dexSupply = tokenSupply * 80 / 100;
        cexSupply = tokenSupply * 10 / 100;
        devSupply = tokenSupply * 5 / 100;
        teamSupply = tokenSupply - dexSupply - cexSupply - devSupply;
                
        dexWallet = msg.sender;
        cexWallet = 0x2fFC462Bc3CdcfF38BD3976012062abCC14892e3;
        devWallet = 0x7E3db6621FBd053e6d5d93Ca1eEf6d8c0AB52c03;
        teamWallet = 0x1C58f1a2874e10Bf0204B25fD9BEF57457470686;
        promoWallet = 0xf943f212484a9A0e62645363d556e5062aCa8048;
        
        limitTrading = false;
        minTransactions = 5000;
        taxRate = 10;
           
        _mint(dexWallet, dexSupply);
        _mint(cexWallet, cexSupply);
        _mint(devWallet, devSupply);
        _mint(teamWallet, teamSupply);
    }
    
    //--------------------------------------------------------------
    //SETUP FUNCTION
    function setRule(bool _limitTrading, address _uniswapPool, uint256 _maxHoldingAmount) external onlyOwner {
        limitTrading = _limitTrading;
        uniswapPool = _uniswapPool;
        maxHoldingAmount = _maxHoldingAmount;
    }

    //--------------------------------------------------------------
    //INITIAL STABILIZATION TAX AND ANTI-WHALE FUNCTION
    function _update(address from, address to, uint256 value) internal override {
        if (limitTrading) {
            if(from != dexWallet && from != cexWallet && from != devWallet && from != teamWallet && from != promoWallet) {
                require(super.balanceOf(to) + value <= maxHoldingAmount, "Rawr! Holding limit exceeded!");
                if (transactionCounter < minTransactions) {
                    if(from != uniswapPool) {
                        tax = (value * taxRate) / 100;
                        super._update(from, promoWallet, tax);
                        value -= tax;
                    }
                }
            }
        }
        super._update(from, to, value);
        transactionCounter += 1;
    }

    //--------------------------------------------------------------
    // GET TRANSACTIONS    
    function getTransactions() external view returns (uint256) {
        return transactionCounter;
    } 

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cexSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cexWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dexSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dexWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTransactions","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitTrading","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minTransactions","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"promoWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limitTrading","type":"bool"},{"internalType":"address","name":"_uniswapPool","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transactionCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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":"uniswapPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

61020060405234801562000011575f80fd5b50336040518060400160405280600b81526020017f4c6f6e656c792044696e6f0000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4c44494e4f000000000000000000000000000000000000000000000000000000815250816003908162000090919062000ca5565b508060049081620000a2919062000ca5565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000118575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200010f919062000dcc565b60405180910390fd5b6200012981620003f660201b60201c565b506200013a620004b960201b60201c565b600a62000148919062000f70565b64017217b0c46200015a919062000fc0565b608081815250506064605060805162000174919062000fc0565b62000180919062001037565b60a081815250506064600a6080516200019a919062000fc0565b620001a6919062001037565b60c0818152505060646005608051620001c0919062000fc0565b620001cc919062001037565b60e0818152505060e05160c05160a051608051620001eb91906200106e565b620001f791906200106e565b6200020391906200106e565b61010081815250503373ffffffffffffffffffffffffffffffffffffffff166101208173ffffffffffffffffffffffffffffffffffffffff1681525050732ffc462bc3cdcff38bd3976012062abcc14892e373ffffffffffffffffffffffffffffffffffffffff166101408173ffffffffffffffffffffffffffffffffffffffff1681525050737e3db6621fbd053e6d5d93ca1eef6d8c0ab52c0373ffffffffffffffffffffffffffffffffffffffff166101608173ffffffffffffffffffffffffffffffffffffffff1681525050731c58f1a2874e10bf0204b25fd9bef5745747068673ffffffffffffffffffffffffffffffffffffffff166101808173ffffffffffffffffffffffffffffffffffffffff168152505073f943f212484a9a0e62645363d556e5062aca804873ffffffffffffffffffffffffffffffffffffffff166101a08173ffffffffffffffffffffffffffffffffffffffff16815250505f600560146101000a81548160ff0219169083151502179055506113886101c08181525050600a6101e08181525050620003aa6101205160a051620004c160201b60201c565b620003c16101405160c051620004c160201b60201c565b620003d86101605160e051620004c160201b60201c565b620003f06101805161010051620004c160201b60201c565b620011c7565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000534575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200052b919062000dcc565b60405180910390fd5b620005475f83836200054b60201b60201c565b5050565b600560149054906101000a900460ff1615620007a5576101205173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015620005d057506101405173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156200060c57506101605173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156200064857506101805173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156200068457506101a05173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15620007a457600754816200069f84620007d860201b60201c565b620006ab9190620010a8565b1115620006ef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006e69062001140565b60405180910390fd5b6101c0516009541015620007a35760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620007a25760646101e0518262000765919062000fc0565b62000771919062001037565b6008819055506200078f836101a0516008546200081d60201b60201c565b600854816200079f91906200106e565b90505b5b5b5b620007b88383836200081d60201b60201c565b600160095f828254620007cc9190620010a8565b92505081905550505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000871578060025f828254620008649190620010a8565b9250508190555062000942565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015620008fd578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620008f49392919062001171565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200098b578060025f8282540392505081905550620009d5565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a349190620011ac565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000abd57607f821691505b60208210810362000ad35762000ad262000a78565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000b377fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000afa565b62000b43868362000afa565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000b8d62000b8762000b818462000b5b565b62000b64565b62000b5b565b9050919050565b5f819050919050565b62000ba88362000b6d565b62000bc062000bb78262000b94565b84845462000b06565b825550505050565b5f90565b62000bd662000bc8565b62000be381848462000b9d565b505050565b5b8181101562000c0a5762000bfe5f8262000bcc565b60018101905062000be9565b5050565b601f82111562000c595762000c238162000ad9565b62000c2e8462000aeb565b8101602085101562000c3e578190505b62000c5662000c4d8562000aeb565b83018262000be8565b50505b505050565b5f82821c905092915050565b5f62000c7b5f198460080262000c5e565b1980831691505092915050565b5f62000c95838362000c6a565b9150826002028217905092915050565b62000cb08262000a41565b67ffffffffffffffff81111562000ccc5762000ccb62000a4b565b5b62000cd8825462000aa5565b62000ce582828562000c0e565b5f60209050601f83116001811462000d1b575f841562000d06578287015190505b62000d12858262000c88565b86555062000d81565b601f19841662000d2b8662000ad9565b5f5b8281101562000d545784890151825560018201915060208501945060208101905062000d2d565b8683101562000d74578489015162000d70601f89168262000c6a565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000db48262000d89565b9050919050565b62000dc68162000da8565b82525050565b5f60208201905062000de15f83018462000dbb565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000e715780860481111562000e495762000e4862000de7565b5b600185161562000e595780820291505b808102905062000e698562000e14565b945062000e29565b94509492505050565b5f8262000e8b576001905062000f5d565b8162000e9a575f905062000f5d565b816001811462000eb3576002811462000ebe5762000ef4565b600191505062000f5d565b60ff84111562000ed35762000ed262000de7565b5b8360020a91508482111562000eed5762000eec62000de7565b5b5062000f5d565b5060208310610133831016604e8410600b841016171562000f2e5782820a90508381111562000f285762000f2762000de7565b5b62000f5d565b62000f3d848484600162000e20565b9250905081840481111562000f575762000f5662000de7565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000f7c8262000b5b565b915062000f898362000f64565b925062000fb87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000e7a565b905092915050565b5f62000fcc8262000b5b565b915062000fd98362000b5b565b925082820262000fe98162000b5b565b9150828204841483151762001003576200100262000de7565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f620010438262000b5b565b9150620010508362000b5b565b9250826200106357620010626200100a565b5b828204905092915050565b5f6200107a8262000b5b565b9150620010878362000b5b565b9250828203905081811115620010a257620010a162000de7565b5b92915050565b5f620010b48262000b5b565b9150620010c18362000b5b565b9250828201905080821115620010dc57620010db62000de7565b5b92915050565b5f82825260208201905092915050565b7f526177722120486f6c64696e67206c696d6974206578636565646564210000005f82015250565b5f62001128601d83620010e2565b91506200113582620010f2565b602082019050919050565b5f6020820190508181035f83015262001159816200111a565b9050919050565b6200116b8162000b5b565b82525050565b5f606082019050620011865f83018662000dbb565b62001195602083018562001160565b620011a4604083018462001160565b949350505050565b5f602082019050620011c15f83018462001160565b92915050565b60805160a05160c05160e05161010051610120516101405161016051610180516101a0516101c0516101e051611c6a620012835f395f818161084501526113be01525f818161091b015261133e01525f8181610b410152818161129001526113fe01525f8181610792015261123801525f818161097601526111e001525f8181610a52015261118801525f81816106dc015261113101525f61072e01525f61075a01525f6107b601525f610a9b01525f6108690152611c6a5ff3fe608060405234801561000f575f80fd5b50600436106101f9575f3560e01c80637824407f1161011857806395d89b41116100ab578063bdd3d8251161007a578063bdd3d82514610573578063ced1e80b14610591578063dd62ed3e146105af578063dec01092146105df578063f2fde38b146105fd576101f9565b806395d89b41146104e957806399c8d55614610507578063a9059cbb14610525578063b107594314610555576101f9565b806383920e90116100e757806383920e901461047157806389f9a1d31461048f5780638da5cb5b146104ad5780638ea5220f146104cb576101f9565b80637824407f146103fd57806379cc67901461041b5780637abf9d2614610437578063819d2ed814610453576101f9565b806341c66d0a11610190578063641344791161015f578063641344791461038757806370a08231146103a5578063715018a6146103d5578063771a3a1d146103df576101f9565b806341c66d0a1461031157806342966c681461032f578063599270441461034b578063611c531814610369576101f9565b806320a17b24116101cc57806320a17b241461028757806323b872dd146102a55780632cfac6ec146102d5578063313ce567146102f3576101f9565b806306fdde03146101fd578063095ea7b31461021b57806314e887e81461024b57806318160ddd14610269575b5f80fd5b610205610619565b6040516102129190611705565b60405180910390f35b610235600480360381019061023091906117b6565b6106a9565b604051610242919061180e565b60405180910390f35b6102536106cb565b6040516102609190611836565b60405180910390f35b6102716106d1565b60405161027e9190611836565b60405180910390f35b61028f6106da565b60405161029c919061185e565b60405180910390f35b6102bf60048036038101906102ba9190611877565b6106fe565b6040516102cc919061180e565b60405180910390f35b6102dd61072c565b6040516102ea9190611836565b60405180910390f35b6102fb610750565b60405161030891906118e2565b60405180910390f35b610319610758565b6040516103269190611836565b60405180910390f35b610349600480360381019061034491906118fb565b61077c565b005b610353610790565b604051610360919061185e565b60405180910390f35b6103716107b4565b60405161037e9190611836565b60405180910390f35b61038f6107d8565b60405161039c919061180e565b60405180910390f35b6103bf60048036038101906103ba9190611926565b6107eb565b6040516103cc9190611836565b60405180910390f35b6103dd610830565b005b6103e7610843565b6040516103f49190611836565b60405180910390f35b610405610867565b6040516104129190611836565b60405180910390f35b610435600480360381019061043091906117b6565b61088b565b005b610451600480360381019061044c919061197b565b6108ab565b005b61045b610919565b6040516104689190611836565b60405180910390f35b61047961093d565b6040516104869190611836565b60405180910390f35b610497610946565b6040516104a49190611836565b60405180910390f35b6104b561094c565b6040516104c2919061185e565b60405180910390f35b6104d3610974565b6040516104e0919061185e565b60405180910390f35b6104f1610998565b6040516104fe9190611705565b60405180910390f35b61050f610a28565b60405161051c9190611836565b60405180910390f35b61053f600480360381019061053a91906117b6565b610a2e565b60405161054c919061180e565b60405180910390f35b61055d610a50565b60405161056a919061185e565b60405180910390f35b61057b610a74565b604051610588919061185e565b60405180910390f35b610599610a99565b6040516105a69190611836565b60405180910390f35b6105c960048036038101906105c491906119cb565b610abd565b6040516105d69190611836565b60405180910390f35b6105e7610b3f565b6040516105f4919061185e565b60405180910390f35b61061760048036038101906106129190611926565b610b63565b005b60606003805461062890611a36565b80601f016020809104026020016040519081016040528092919081815260200182805461065490611a36565b801561069f5780601f106106765761010080835404028352916020019161069f565b820191905f5260205f20905b81548152906001019060200180831161068257829003601f168201915b5050505050905090565b5f806106b3610be7565b90506106c0818585610bee565b600191505092915050565b60095481565b5f600254905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f80610708610be7565b9050610715858285610c00565b610720858585610c92565b60019150509392505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f6012905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b61078d610787610be7565b82610d82565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b600560149054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610838610e01565b6108415f610e88565b565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b61089d82610897610be7565b83610c00565b6108a78282610d82565b5050565b6108b3610e01565b82600560146101000a81548160ff0219169083151502179055508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600781905550505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600954905090565b60075481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6060600480546109a790611a36565b80601f01602080910402602001604051908101604052809291908181526020018280546109d390611a36565b8015610a1e5780601f106109f557610100808354040283529160200191610a1e565b820191905f5260205f20905b815481529060010190602001808311610a0157829003601f168201915b5050505050905090565b60085481565b5f80610a38610be7565b9050610a45818585610c92565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610b6b610e01565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bdb575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610bd2919061185e565b60405180910390fd5b610be481610e88565b50565b5f33905090565b610bfb8383836001610f4b565b505050565b5f610c0b8484610abd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c8c5781811015610c7d578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c7493929190611a66565b60405180910390fd5b610c8b84848484035f610f4b565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d02575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610cf9919061185e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d72575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d69919061185e565b60405180910390fd5b610d7d83838361111a565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610df2575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610de9919061185e565b60405180910390fd5b610dfd825f8361111a565b5050565b610e09610be7565b73ffffffffffffffffffffffffffffffffffffffff16610e2761094c565b73ffffffffffffffffffffffffffffffffffffffff1614610e8657610e4a610be7565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610e7d919061185e565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610fbb575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610fb2919061185e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361102b575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611022919061185e565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611114578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161110b9190611836565b60405180910390a35b50505050565b600560149054906101000a900460ff1615611439577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156111d757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561122f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561128757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156112df57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561143857600754816112f1846107eb565b6112fb9190611ac8565b111561133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390611b45565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000060095410156114375760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146114365760647f0000000000000000000000000000000000000000000000000000000000000000826113e89190611b63565b6113f29190611bd1565b600881905550611425837f0000000000000000000000000000000000000000000000000000000000000000600854611462565b600854816114339190611c01565b90505b5b5b5b611444838383611462565b600160095f8282546114569190611ac8565b92505081905550505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114b2578060025f8282546114a69190611ac8565b92505081905550611580565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561153b578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161153293929190611a66565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115c7578060025f8282540392505081905550611611565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161166e9190611836565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156116b2578082015181840152602081019050611697565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6116d78261167b565b6116e18185611685565b93506116f1818560208601611695565b6116fa816116bd565b840191505092915050565b5f6020820190508181035f83015261171d81846116cd565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61175282611729565b9050919050565b61176281611748565b811461176c575f80fd5b50565b5f8135905061177d81611759565b92915050565b5f819050919050565b61179581611783565b811461179f575f80fd5b50565b5f813590506117b08161178c565b92915050565b5f80604083850312156117cc576117cb611725565b5b5f6117d98582860161176f565b92505060206117ea858286016117a2565b9150509250929050565b5f8115159050919050565b611808816117f4565b82525050565b5f6020820190506118215f8301846117ff565b92915050565b61183081611783565b82525050565b5f6020820190506118495f830184611827565b92915050565b61185881611748565b82525050565b5f6020820190506118715f83018461184f565b92915050565b5f805f6060848603121561188e5761188d611725565b5b5f61189b8682870161176f565b93505060206118ac8682870161176f565b92505060406118bd868287016117a2565b9150509250925092565b5f60ff82169050919050565b6118dc816118c7565b82525050565b5f6020820190506118f55f8301846118d3565b92915050565b5f602082840312156119105761190f611725565b5b5f61191d848285016117a2565b91505092915050565b5f6020828403121561193b5761193a611725565b5b5f6119488482850161176f565b91505092915050565b61195a816117f4565b8114611964575f80fd5b50565b5f8135905061197581611951565b92915050565b5f805f6060848603121561199257611991611725565b5b5f61199f86828701611967565b93505060206119b08682870161176f565b92505060406119c1868287016117a2565b9150509250925092565b5f80604083850312156119e1576119e0611725565b5b5f6119ee8582860161176f565b92505060206119ff8582860161176f565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611a4d57607f821691505b602082108103611a6057611a5f611a09565b5b50919050565b5f606082019050611a795f83018661184f565b611a866020830185611827565b611a936040830184611827565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611ad282611783565b9150611add83611783565b9250828201905080821115611af557611af4611a9b565b5b92915050565b7f526177722120486f6c64696e67206c696d6974206578636565646564210000005f82015250565b5f611b2f601d83611685565b9150611b3a82611afb565b602082019050919050565b5f6020820190508181035f830152611b5c81611b23565b9050919050565b5f611b6d82611783565b9150611b7883611783565b9250828202611b8681611783565b91508282048414831517611b9d57611b9c611a9b565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611bdb82611783565b9150611be683611783565b925082611bf657611bf5611ba4565b5b828204905092915050565b5f611c0b82611783565b9150611c1683611783565b9250828203905081811115611c2e57611c2d611a9b565b5b9291505056fea2646970667358221220d8036e0d23f4d1fd1bb3a5b6ce63a307a485b853e460f6ee0baabf39d7a56a9b64736f6c63430008180033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106101f9575f3560e01c80637824407f1161011857806395d89b41116100ab578063bdd3d8251161007a578063bdd3d82514610573578063ced1e80b14610591578063dd62ed3e146105af578063dec01092146105df578063f2fde38b146105fd576101f9565b806395d89b41146104e957806399c8d55614610507578063a9059cbb14610525578063b107594314610555576101f9565b806383920e90116100e757806383920e901461047157806389f9a1d31461048f5780638da5cb5b146104ad5780638ea5220f146104cb576101f9565b80637824407f146103fd57806379cc67901461041b5780637abf9d2614610437578063819d2ed814610453576101f9565b806341c66d0a11610190578063641344791161015f578063641344791461038757806370a08231146103a5578063715018a6146103d5578063771a3a1d146103df576101f9565b806341c66d0a1461031157806342966c681461032f578063599270441461034b578063611c531814610369576101f9565b806320a17b24116101cc57806320a17b241461028757806323b872dd146102a55780632cfac6ec146102d5578063313ce567146102f3576101f9565b806306fdde03146101fd578063095ea7b31461021b57806314e887e81461024b57806318160ddd14610269575b5f80fd5b610205610619565b6040516102129190611705565b60405180910390f35b610235600480360381019061023091906117b6565b6106a9565b604051610242919061180e565b60405180910390f35b6102536106cb565b6040516102609190611836565b60405180910390f35b6102716106d1565b60405161027e9190611836565b60405180910390f35b61028f6106da565b60405161029c919061185e565b60405180910390f35b6102bf60048036038101906102ba9190611877565b6106fe565b6040516102cc919061180e565b60405180910390f35b6102dd61072c565b6040516102ea9190611836565b60405180910390f35b6102fb610750565b60405161030891906118e2565b60405180910390f35b610319610758565b6040516103269190611836565b60405180910390f35b610349600480360381019061034491906118fb565b61077c565b005b610353610790565b604051610360919061185e565b60405180910390f35b6103716107b4565b60405161037e9190611836565b60405180910390f35b61038f6107d8565b60405161039c919061180e565b60405180910390f35b6103bf60048036038101906103ba9190611926565b6107eb565b6040516103cc9190611836565b60405180910390f35b6103dd610830565b005b6103e7610843565b6040516103f49190611836565b60405180910390f35b610405610867565b6040516104129190611836565b60405180910390f35b610435600480360381019061043091906117b6565b61088b565b005b610451600480360381019061044c919061197b565b6108ab565b005b61045b610919565b6040516104689190611836565b60405180910390f35b61047961093d565b6040516104869190611836565b60405180910390f35b610497610946565b6040516104a49190611836565b60405180910390f35b6104b561094c565b6040516104c2919061185e565b60405180910390f35b6104d3610974565b6040516104e0919061185e565b60405180910390f35b6104f1610998565b6040516104fe9190611705565b60405180910390f35b61050f610a28565b60405161051c9190611836565b60405180910390f35b61053f600480360381019061053a91906117b6565b610a2e565b60405161054c919061180e565b60405180910390f35b61055d610a50565b60405161056a919061185e565b60405180910390f35b61057b610a74565b604051610588919061185e565b60405180910390f35b610599610a99565b6040516105a69190611836565b60405180910390f35b6105c960048036038101906105c491906119cb565b610abd565b6040516105d69190611836565b60405180910390f35b6105e7610b3f565b6040516105f4919061185e565b60405180910390f35b61061760048036038101906106129190611926565b610b63565b005b60606003805461062890611a36565b80601f016020809104026020016040519081016040528092919081815260200182805461065490611a36565b801561069f5780601f106106765761010080835404028352916020019161069f565b820191905f5260205f20905b81548152906001019060200180831161068257829003601f168201915b5050505050905090565b5f806106b3610be7565b90506106c0818585610bee565b600191505092915050565b60095481565b5f600254905090565b7f0000000000000000000000002243128bfe2ef30a0dce2b09d898d701ce16024181565b5f80610708610be7565b9050610715858285610c00565b610720858585610c92565b60019150509392505050565b7f00000000000000000000000000000000000000000100cda44262e5ee3ed4000081565b5f6012905090565b7f00000000000000000000000000000000000000000100cda44262e5ee3ed4000081565b61078d610787610be7565b82610d82565b50565b7f0000000000000000000000001c58f1a2874e10bf0204b25fd9bef5745747068681565b7f000000000000000000000000000000000000000002019b4884c5cbdc7da8000081565b600560149054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610838610e01565b6108415f610e88565b565b7f000000000000000000000000000000000000000000000000000000000000000a81565b7f0000000000000000000000000000000000000000141010d52fb9f69ce890000081565b61089d82610897610be7565b83610c00565b6108a78282610d82565b5050565b6108b3610e01565b82600560146101000a81548160ff0219169083151502179055508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600781905550505050565b7f000000000000000000000000000000000000000000000000000000000000138881565b5f600954905090565b60075481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f0000000000000000000000007e3db6621fbd053e6d5d93ca1eef6d8c0ab52c0381565b6060600480546109a790611a36565b80601f01602080910402602001604051908101604052809291908181526020018280546109d390611a36565b8015610a1e5780601f106109f557610100808354040283529160200191610a1e565b820191905f5260205f20905b815481529060010190602001808311610a0157829003601f168201915b5050505050905090565b60085481565b5f80610a38610be7565b9050610a45818585610c92565b600191505092915050565b7f0000000000000000000000002ffc462bc3cdcff38bd3976012062abcc14892e381565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f0000000000000000000000000000000000000000100cda44262e5ee3ed40000081565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b7f000000000000000000000000f943f212484a9a0e62645363d556e5062aca804881565b610b6b610e01565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bdb575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610bd2919061185e565b60405180910390fd5b610be481610e88565b50565b5f33905090565b610bfb8383836001610f4b565b505050565b5f610c0b8484610abd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c8c5781811015610c7d578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c7493929190611a66565b60405180910390fd5b610c8b84848484035f610f4b565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d02575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610cf9919061185e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d72575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d69919061185e565b60405180910390fd5b610d7d83838361111a565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610df2575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610de9919061185e565b60405180910390fd5b610dfd825f8361111a565b5050565b610e09610be7565b73ffffffffffffffffffffffffffffffffffffffff16610e2761094c565b73ffffffffffffffffffffffffffffffffffffffff1614610e8657610e4a610be7565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610e7d919061185e565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610fbb575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610fb2919061185e565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361102b575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611022919061185e565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611114578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161110b9190611836565b60405180910390a35b50505050565b600560149054906101000a900460ff1615611439577f0000000000000000000000002243128bfe2ef30a0dce2b09d898d701ce16024173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156111d757507f0000000000000000000000002ffc462bc3cdcff38bd3976012062abcc14892e373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561122f57507f0000000000000000000000007e3db6621fbd053e6d5d93ca1eef6d8c0ab52c0373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561128757507f0000000000000000000000001c58f1a2874e10bf0204b25fd9bef5745747068673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156112df57507f000000000000000000000000f943f212484a9a0e62645363d556e5062aca804873ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561143857600754816112f1846107eb565b6112fb9190611ac8565b111561133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390611b45565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000138860095410156114375760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146114365760647f000000000000000000000000000000000000000000000000000000000000000a826113e89190611b63565b6113f29190611bd1565b600881905550611425837f000000000000000000000000f943f212484a9a0e62645363d556e5062aca8048600854611462565b600854816114339190611c01565b90505b5b5b5b611444838383611462565b600160095f8282546114569190611ac8565b92505081905550505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114b2578060025f8282546114a69190611ac8565b92505081905550611580565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561153b578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161153293929190611a66565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115c7578060025f8282540392505081905550611611565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161166e9190611836565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156116b2578082015181840152602081019050611697565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6116d78261167b565b6116e18185611685565b93506116f1818560208601611695565b6116fa816116bd565b840191505092915050565b5f6020820190508181035f83015261171d81846116cd565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61175282611729565b9050919050565b61176281611748565b811461176c575f80fd5b50565b5f8135905061177d81611759565b92915050565b5f819050919050565b61179581611783565b811461179f575f80fd5b50565b5f813590506117b08161178c565b92915050565b5f80604083850312156117cc576117cb611725565b5b5f6117d98582860161176f565b92505060206117ea858286016117a2565b9150509250929050565b5f8115159050919050565b611808816117f4565b82525050565b5f6020820190506118215f8301846117ff565b92915050565b61183081611783565b82525050565b5f6020820190506118495f830184611827565b92915050565b61185881611748565b82525050565b5f6020820190506118715f83018461184f565b92915050565b5f805f6060848603121561188e5761188d611725565b5b5f61189b8682870161176f565b93505060206118ac8682870161176f565b92505060406118bd868287016117a2565b9150509250925092565b5f60ff82169050919050565b6118dc816118c7565b82525050565b5f6020820190506118f55f8301846118d3565b92915050565b5f602082840312156119105761190f611725565b5b5f61191d848285016117a2565b91505092915050565b5f6020828403121561193b5761193a611725565b5b5f6119488482850161176f565b91505092915050565b61195a816117f4565b8114611964575f80fd5b50565b5f8135905061197581611951565b92915050565b5f805f6060848603121561199257611991611725565b5b5f61199f86828701611967565b93505060206119b08682870161176f565b92505060406119c1868287016117a2565b9150509250925092565b5f80604083850312156119e1576119e0611725565b5b5f6119ee8582860161176f565b92505060206119ff8582860161176f565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611a4d57607f821691505b602082108103611a6057611a5f611a09565b5b50919050565b5f606082019050611a795f83018661184f565b611a866020830185611827565b611a936040830184611827565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611ad282611783565b9150611add83611783565b9250828201905080821115611af557611af4611a9b565b5b92915050565b7f526177722120486f6c64696e67206c696d6974206578636565646564210000005f82015250565b5f611b2f601d83611685565b9150611b3a82611afb565b602082019050919050565b5f6020820190508181035f830152611b5c81611b23565b9050919050565b5f611b6d82611783565b9150611b7883611783565b9250828202611b8681611783565b91508282048414831517611b9d57611b9c611a9b565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611bdb82611783565b9150611be683611783565b925082611bf657611bf5611ba4565b5b828204905092915050565b5f611c0b82611783565b9150611c1683611783565b9250828203905081811115611c2e57611c2d611a9b565b5b9291505056fea2646970667358221220d8036e0d23f4d1fd1bb3a5b6ce63a307a485b853e460f6ee0baabf39d7a56a9b64736f6c63430008180033

Deployed Bytecode Sourcemap

27244:3212:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16478:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18771:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27946:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17580:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27518:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19539:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27470:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17431:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27429:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26403:89;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27641:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27388:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27731:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17742:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10091:103;;;:::i;:::-;;27882:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27304:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26821:161;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29114:236;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27835:40;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30347:103;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27795:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9416:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27600:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16688:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27921:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18065:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27559:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27762:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27347:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18310:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27683:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10349:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16478:91;16523:13;16556:5;16549:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16478:91;:::o;18771:190::-;18844:4;18861:13;18877:12;:10;:12::i;:::-;18861:28;;18900:31;18909:5;18916:7;18925:5;18900:8;:31::i;:::-;18949:4;18942:11;;;18771:190;;;;:::o;27946:33::-;;;;:::o;17580:99::-;17632:7;17659:12;;17652:19;;17580:99;:::o;27518:34::-;;;:::o;19539:249::-;19626:4;19643:15;19661:12;:10;:12::i;:::-;19643:30;;19684:37;19700:4;19706:7;19715:5;19684:15;:37::i;:::-;19732:26;19742:4;19748:2;19752:5;19732:9;:26::i;:::-;19776:4;19769:11;;;19539:249;;;;;:::o;27470:35::-;;;:::o;17431:84::-;17480:5;17505:2;17498:9;;17431:84;:::o;27429:34::-;;;:::o;26403:89::-;26458:26;26464:12;:10;:12::i;:::-;26478:5;26458;:26::i;:::-;26403:89;:::o;27641:35::-;;;:::o;27388:34::-;;;:::o;27731:24::-;;;;;;;;;;;;;:::o;17742:118::-;17807:7;17834:9;:18;17844:7;17834:18;;;;;;;;;;;;;;;;17827:25;;17742:118;;;:::o;10091:103::-;9302:13;:11;:13::i;:::-;10156:30:::1;10183:1;10156:18;:30::i;:::-;10091:103::o:0;27882:32::-;;;:::o;27304:36::-;;;:::o;26821:161::-;26897:45;26913:7;26922:12;:10;:12::i;:::-;26936:5;26897:15;:45::i;:::-;26953:21;26959:7;26968:5;26953;:21::i;:::-;26821:161;;:::o;29114:236::-;9302:13;:11;:13::i;:::-;29245::::1;29230:12;;:28;;;;;;;;;;;;;;;;;;29283:12;29269:11;;:26;;;;;;;;;;;;;;;;;;29325:17;29306:16;:36;;;;29114:236:::0;;;:::o;27835:40::-;;;:::o;30347:103::-;30397:7;30424:18;;30417:25;;30347:103;:::o;27795:31::-;;;;:::o;9416:87::-;9462:7;9489:6;;;;;;;;;;;9482:13;;9416:87;:::o;27600:34::-;;;:::o;16688:95::-;16735:13;16768:7;16761:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16688:95;:::o;27921:18::-;;;;:::o;18065:182::-;18134:4;18151:13;18167:12;:10;:12::i;:::-;18151:28;;18190:27;18200:5;18207:2;18211:5;18190:9;:27::i;:::-;18235:4;18228:11;;;18065:182;;;;:::o;27559:34::-;;;:::o;27762:26::-;;;;;;;;;;;;;:::o;27347:34::-;;;:::o;18310:142::-;18390:7;18417:11;:18;18429:5;18417:18;;;;;;;;;;;;;;;:27;18436:7;18417:27;;;;;;;;;;;;;;;;18410:34;;18310:142;;;;:::o;27683:36::-;;;:::o;10349:220::-;9302:13;:11;:13::i;:::-;10454:1:::1;10434:22;;:8;:22;;::::0;10430:93:::1;;10508:1;10480:31;;;;;;;;;;;:::i;:::-;;;;;;;;10430:93;10533:28;10552:8;10533:18;:28::i;:::-;10349:220:::0;:::o;7425:98::-;7478:7;7505:10;7498:17;;7425:98;:::o;23598:130::-;23683:37;23692:5;23699:7;23708:5;23715:4;23683:8;:37::i;:::-;23598:130;;;:::o;25314:487::-;25414:24;25441:25;25451:5;25458:7;25441:9;:25::i;:::-;25414:52;;25501:17;25481:16;:37;25477:317;;25558:5;25539:16;:24;25535:132;;;25618:7;25627:16;25645:5;25591:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;25535:132;25710:57;25719:5;25726:7;25754:5;25735:16;:24;25761:5;25710:8;:57::i;:::-;25477:317;25403:398;25314:487;;;:::o;20173:308::-;20273:1;20257:18;;:4;:18;;;20253:88;;20326:1;20299:30;;;;;;;;;;;:::i;:::-;;;;;;;;20253:88;20369:1;20355:16;;:2;:16;;;20351:88;;20424:1;20395:32;;;;;;;;;;;:::i;:::-;;;;;;;;20351:88;20449:24;20457:4;20463:2;20467:5;20449:7;:24::i;:::-;20173:308;;;:::o;22834:211::-;22924:1;22905:21;;:7;:21;;;22901:91;;22977:1;22950:30;;;;;;;;;;;:::i;:::-;;;;;;;;22901:91;23002:35;23010:7;23027:1;23031:5;23002:7;:35::i;:::-;22834:211;;:::o;9581:166::-;9652:12;:10;:12::i;:::-;9641:23;;:7;:5;:7::i;:::-;:23;;;9637:103;;9715:12;:10;:12::i;:::-;9688:40;;;;;;;;;;;:::i;:::-;;;;;;;;9637:103;9581:166::o;10729:191::-;10803:16;10822:6;;;;;;;;;;;10803:25;;10848:8;10839:6;;:17;;;;;;;;;;;;;;;;;;10903:8;10872:40;;10893:8;10872:40;;;;;;;;;;;;10792:128;10729:191;:::o;24579:443::-;24709:1;24692:19;;:5;:19;;;24688:91;;24764:1;24735:32;;;;;;;;;;;:::i;:::-;;;;;;;;24688:91;24812:1;24793:21;;:7;:21;;;24789:92;;24866:1;24838:31;;;;;;;;;;;:::i;:::-;;;;;;;;24789:92;24921:5;24891:11;:18;24903:5;24891:18;;;;;;;;;;;;;;;:27;24910:7;24891:27;;;;;;;;;;;;;;;:35;;;;24941:9;24937:78;;;24988:7;24972:31;;24981:5;24972:31;;;24997:5;24972:31;;;;;;:::i;:::-;;;;;;;;24937:78;24579:443;;;;:::o;29485:755::-;29576:12;;;;;;;;;;;29572:586;;;29616:9;29608:17;;:4;:17;;;;:38;;;;;29637:9;29629:17;;:4;:17;;;;29608:38;:59;;;;;29658:9;29650:17;;:4;:17;;;;29608:59;:81;;;;;29679:10;29671:18;;:4;:18;;;;29608:81;:104;;;;;29701:11;29693:19;;:4;:19;;;;29608:104;29605:542;;;29772:16;;29763:5;29741:19;29757:2;29741:15;:19::i;:::-;:27;;;;:::i;:::-;:47;;29733:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;29866:15;29845:18;;:36;29841:291;;;29917:11;;;;;;;;;;;29909:19;;:4;:19;;;29906:207;;29983:3;29972:7;29964:5;:15;;;;:::i;:::-;29963:23;;;;:::i;:::-;29957:3;:29;;;;30013:37;30027:4;30033:11;30046:3;;30013:13;:37::i;:::-;30086:3;;30077:12;;;;;:::i;:::-;;;29906:207;29841:291;29605:542;29572:586;30168:30;30182:4;30188:2;30192:5;30168:13;:30::i;:::-;30231:1;30209:18;;:23;;;;;;;:::i;:::-;;;;;;;;29485:755;;;:::o;20805:1135::-;20911:1;20895:18;;:4;:18;;;20891:552;;21049:5;21033:12;;:21;;;;;;;:::i;:::-;;;;;;;;20891:552;;;21087:19;21109:9;:15;21119:4;21109:15;;;;;;;;;;;;;;;;21087:37;;21157:5;21143:11;:19;21139:117;;;21215:4;21221:11;21234:5;21190:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;21139:117;21411:5;21397:11;:19;21379:9;:15;21389:4;21379:15;;;;;;;;;;;;;;;:37;;;;21072:371;20891:552;21473:1;21459:16;;:2;:16;;;21455:435;;21641:5;21625:12;;:21;;;;;;;;;;;21455:435;;;21858:5;21841:9;:13;21851:2;21841:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;21455:435;21922:2;21907:25;;21916:4;21907:25;;;21926:5;21907:25;;;;;;:::i;:::-;;;;;;;;20805:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:118::-;3885:24;3903:5;3885:24;:::i;:::-;3880:3;3873:37;3798:118;;:::o;3922:222::-;4015:4;4053:2;4042:9;4038:18;4030:26;;4066:71;4134:1;4123:9;4119:17;4110:6;4066:71;:::i;:::-;3922:222;;;;:::o;4150:619::-;4227:6;4235;4243;4292:2;4280:9;4271:7;4267:23;4263:32;4260:119;;;4298:79;;:::i;:::-;4260:119;4418:1;4443:53;4488:7;4479:6;4468:9;4464:22;4443:53;:::i;:::-;4433:63;;4389:117;4545:2;4571:53;4616:7;4607:6;4596:9;4592:22;4571:53;:::i;:::-;4561:63;;4516:118;4673:2;4699:53;4744:7;4735:6;4724:9;4720:22;4699:53;:::i;:::-;4689:63;;4644:118;4150:619;;;;;:::o;4775:86::-;4810:7;4850:4;4843:5;4839:16;4828:27;;4775:86;;;:::o;4867:112::-;4950:22;4966:5;4950:22;:::i;:::-;4945:3;4938:35;4867:112;;:::o;4985:214::-;5074:4;5112:2;5101:9;5097:18;5089:26;;5125:67;5189:1;5178:9;5174:17;5165:6;5125:67;:::i;:::-;4985:214;;;;:::o;5205:329::-;5264:6;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5205:329;;;;:::o;5540:::-;5599:6;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5540:329;;;;:::o;5875:116::-;5945:21;5960:5;5945:21;:::i;:::-;5938:5;5935:32;5925:60;;5981:1;5978;5971:12;5925:60;5875:116;:::o;5997:133::-;6040:5;6078:6;6065:20;6056:29;;6094:30;6118:5;6094:30;:::i;:::-;5997:133;;;;:::o;6136:613::-;6210:6;6218;6226;6275:2;6263:9;6254:7;6250:23;6246:32;6243:119;;;6281:79;;:::i;:::-;6243:119;6401:1;6426:50;6468:7;6459:6;6448:9;6444:22;6426:50;:::i;:::-;6416:60;;6372:114;6525:2;6551:53;6596:7;6587:6;6576:9;6572:22;6551:53;:::i;:::-;6541:63;;6496:118;6653:2;6679:53;6724:7;6715:6;6704:9;6700:22;6679:53;:::i;:::-;6669:63;;6624:118;6136:613;;;;;:::o;6755:474::-;6823:6;6831;6880:2;6868:9;6859:7;6855:23;6851:32;6848:119;;;6886:79;;:::i;:::-;6848:119;7006:1;7031:53;7076:7;7067:6;7056:9;7052:22;7031:53;:::i;:::-;7021:63;;6977:117;7133:2;7159:53;7204:7;7195:6;7184:9;7180:22;7159:53;:::i;:::-;7149:63;;7104:118;6755:474;;;;;:::o;7235:180::-;7283:77;7280:1;7273:88;7380:4;7377:1;7370:15;7404:4;7401:1;7394:15;7421:320;7465:6;7502:1;7496:4;7492:12;7482:22;;7549:1;7543:4;7539:12;7570:18;7560:81;;7626:4;7618:6;7614:17;7604:27;;7560:81;7688:2;7680:6;7677:14;7657:18;7654:38;7651:84;;7707:18;;:::i;:::-;7651:84;7472:269;7421:320;;;:::o;7747:442::-;7896:4;7934:2;7923:9;7919:18;7911:26;;7947:71;8015:1;8004:9;8000:17;7991:6;7947:71;:::i;:::-;8028:72;8096:2;8085:9;8081:18;8072:6;8028:72;:::i;:::-;8110;8178:2;8167:9;8163:18;8154:6;8110:72;:::i;:::-;7747:442;;;;;;:::o;8195:180::-;8243:77;8240:1;8233:88;8340:4;8337:1;8330:15;8364:4;8361:1;8354:15;8381:191;8421:3;8440:20;8458:1;8440:20;:::i;:::-;8435:25;;8474:20;8492:1;8474:20;:::i;:::-;8469:25;;8517:1;8514;8510:9;8503:16;;8538:3;8535:1;8532:10;8529:36;;;8545:18;;:::i;:::-;8529:36;8381:191;;;;:::o;8578:179::-;8718:31;8714:1;8706:6;8702:14;8695:55;8578:179;:::o;8763:366::-;8905:3;8926:67;8990:2;8985:3;8926:67;:::i;:::-;8919:74;;9002:93;9091:3;9002:93;:::i;:::-;9120:2;9115:3;9111:12;9104:19;;8763:366;;;:::o;9135:419::-;9301:4;9339:2;9328:9;9324:18;9316:26;;9388:9;9382:4;9378:20;9374:1;9363:9;9359:17;9352:47;9416:131;9542:4;9416:131;:::i;:::-;9408:139;;9135:419;;;:::o;9560:410::-;9600:7;9623:20;9641:1;9623:20;:::i;:::-;9618:25;;9657:20;9675:1;9657:20;:::i;:::-;9652:25;;9712:1;9709;9705:9;9734:30;9752:11;9734:30;:::i;:::-;9723:41;;9913:1;9904:7;9900:15;9897:1;9894:22;9874:1;9867:9;9847:83;9824:139;;9943:18;;:::i;:::-;9824:139;9608:362;9560:410;;;;:::o;9976:180::-;10024:77;10021:1;10014:88;10121:4;10118:1;10111:15;10145:4;10142:1;10135:15;10162:185;10202:1;10219:20;10237:1;10219:20;:::i;:::-;10214:25;;10253:20;10271:1;10253:20;:::i;:::-;10248:25;;10292:1;10282:35;;10297:18;;:::i;:::-;10282:35;10339:1;10336;10332:9;10327:14;;10162:185;;;;:::o;10353:194::-;10393:4;10413:20;10431:1;10413:20;:::i;:::-;10408:25;;10447:20;10465:1;10447:20;:::i;:::-;10442:25;;10491:1;10488;10484:9;10476:17;;10515:1;10509:4;10506:11;10503:37;;;10520:18;;:::i;:::-;10503:37;10353:194;;;;:::o

Swarm Source

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