ETH Price: $3,017.98 (-0.97%)
Gas: 5 Gwei

Token

FCKIT (FCKIT)
 

Overview

Max Total Supply

42,689,313,576 FCKIT

Holders

2,098

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
MEV Builder: 0x467...263
Balance
12,164,459 FCKIT

Value
$0.00
0x4675c7e5baafbffbca748158becba61ef3b0a263
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:
FCKIT

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : fckit.sol
// SPDX-License-Identifier: MIT   
//                                                                                                                                                                                                                                                           
//           ..                                                                                        
//          !57       ^.                                                                                 
//      .:?PB&BPP5J: :75!77?777~^:.        .....     :: .                   .   .....:^~~!!!~:..        
//      ~J###&PYPBY ^5B#GPB##BP5J!.   .~?5G##BPY:    ^?Y5      .::..      ..7. .7PBB#&#&&@&&&G7^.       
//      :J#GG#!  :.  J#BJ7~~^^^^::: ^?P&@##BBP5G?    .5G#!.:^7YG##5^      ?5G^  .!7?Y#&?^^::::.         
//       ^Y&&#^     .JBB:          :P#B&Y7!!~^:.      ?&#GYG#@@#Y~.       J@@!      ^#@!                 
//        .?#@5:    ^P#&P555YYJ~:  ^GP#J              ?@&&#G5?^.          ?@&!      ~#@7             
//         .5&&#7   7GGG5YYYJJ?!.  :GG#J.             J#&BPGJ^.           J&&~      J@#^                
//        7#B!#&7  7PGP:           ?#&Y~.           .?B#GGB&&BJ~.        ~B&^     .G#B^            
//     ^^::Y&#J#&P..JB&P:           .5B&5J~          .?#@P.!5GPBBP?.      J&#.     ~GBB.          
//    :YB#B&@#P57: :G&G~             :?G&#B5YY5JJ?.  :P&#5   :^JG&#P^     P#P      !PG5         
//     .^^^5B!      75Y:              .^7GBB&###G?^  :JP7^      :!^??.   ^JJ^      ^?!.         
//         :~:      .:                   .^!?J?YY~.    !.       
//
//                            $FCKIT ~ https://twitter.com/FCKITCOIN
//                             Contract developed by @shrimpyuk :^)                         


pragma solidity ^0.8.9;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract FCKIT is Ownable, ERC20 {
    bool isDeployed = false;                        //If the contract is deployed
    bool public isLimited;                  //Enabled to deter Token Hoarding + MEV Sniping during our launch. Limits slowly raised then dropped to ensure smooth and fair release.
    uint256 public maxHoldAmount;           //Maximum Balance to be able to trade in Limited Trading Phase. Used to deter Token Hoarding + MEV Sniping during our launch.
    uint256 public minHoldAmount;           //Minimum Balance to be able to trade in Limited Trading Phase. Used to deter Token Hoarding + MEV Sniping during our launch.
    address public liqudityPoolSwapPair;    //Address of our initial Liquidity Pool

    mapping(address => bool) public hasFuckedAround; //Blacklisted Address Map. Fuck Around => Find Out
    
    uint256 public constant SUPPLY_CAP = 42_690_000_000 * 1 ether; //42,690,000,000 supply cap

    //Important Wallets
    address constant cexReserveWallet = 0xCdA13fE7AEa02AD5740E3Fd48913A24b83976C60; 
    address constant managementWallet = 0x5346ffCc2291A9d555E8B860A263B94338E043be;

    // Supply Distribution:
    // 10%      Team Allocation
    uint constant teamAllocation = ((SUPPLY_CAP / 1000)*100); //10%
    // 22.5%    Liquidity Pool
    uint constant liquidityPoolAllocation = ((SUPPLY_CAP / 1000)*225); //22.5%
    // 10%      Developments Reserve
    // Used for CEX Liquidity + Emergency Use
    uint constant cexReserveAllocation = ((SUPPLY_CAP / 1000)*250); //25%
    // 0.2%     Airdrop (Freebies)
    uint constant airdropAllocation = ((SUPPLY_CAP / 1000)*2); //0.2%
    // 42.3%    Presale Allocation
    uint constant presaleAllocation = ((SUPPLY_CAP / 1000)*423); //42.3%

    // Wallets for locking funds
    address[4] public lockedWallets;
    uint256[4] public walletAllocations;

    uint256 public LOCK_DURATION = 14 days;

    // Team Wallets
    address constant teamWallet1 = 0xF3bb77973f7F1de2fC99fCAE3AF66b56e5df5114;
    address constant teamWallet2 = 0xc4AAeE79cC0a7c5d4EC3F4f8279f31Ba15055e6B;
    address constant teamWallet3 = 0x3a1c2AA33BC5522D59cF729e701C31cc4B8F0037;
    address constant teamWallet4 = 0xff955eFf3d270D44B39D228F7ECdfe41aD5760B3;

    constructor() ERC20("FCKIT", "FCKIT") {
        // Mint tokens to gnosis safes
        _mint(cexReserveWallet, cexReserveAllocation);
        _mint(managementWallet, liquidityPoolAllocation+airdropAllocation+presaleAllocation);

        // Assign Team Allocations
        walletAllocations[0] = ((teamAllocation / 100) * 50); // 50% of team allocation for wallet 1
        walletAllocations[1] = ((teamAllocation / 100) * 20); // 20% of team allocation for wallet 2
        walletAllocations[2] = ((teamAllocation / 100) * 20); // 20% of team allocation for wallet 3
        walletAllocations[3] = ((teamAllocation / 100) * 10); // 10% of team allocation for wallet 4

        // Lock Wallets
        lockedWallets[0] = teamWallet1;
        lockedWallets[1] = teamWallet2;
        lockedWallets[2] = teamWallet3;
        lockedWallets[3] = teamWallet4;

        // Mint 10% of Team's Allocation
        for (uint i = 0; i < walletAllocations.length; i++) {
            uint256 allocation = walletAllocations[i];
            uint256 initial = allocation / 10;
            walletAllocations[i] = allocation - initial;
            _mint(lockedWallets[i], initial);
        }
        
        // Apply 14 Day Lock to remainder 90% of Team's Allocation
        setLockDuration(block.timestamp + (14 days));

        isDeployed = true;
        _transferOwnership(managementWallet);
    }

    // Sets the lock duration of funds. Can only be called internally and once, via the initializer.
    function setLockDuration(uint256 duration) internal {
        require(!isDeployed, "Lock duration can only be set before deployment");
        LOCK_DURATION = duration;
    }

    // @notice Withdraw Team's Allocation after 14 Day Lock
    function withdrawLockedFunds() external {
        require(block.timestamp >= LOCK_DURATION, "Funds are still locked");
        for (uint i = 0; i < lockedWallets.length; i++) {
            address wallet = lockedWallets[i];
            uint256 allocation = walletAllocations[i];
            if (allocation > 0) {
                walletAllocations[i] = 0;
                _mint(wallet, allocation);
            }
        }
    }

    /// @notice Blacklist/Unblacklist a Wallet
    /// @param _address The Address of the wallet to modify
    /// @param _hasFuckedAround If they are blacklisted or not
    function foundOut(address _address, bool _hasFuckedAround) external onlyOwner {
        hasFuckedAround[_address] = _hasFuckedAround;
    }

    /// @notice Set temporary trading rules to ensure a smooth launch detering token hoarding + MEV sniping.
    /// @param _isLimited If the temporary trading rules should apply
    /// @param _tokenSwapPair Address of the Token Swap Pair e.g. Uniswap
    /// @param _maxHoldAmount Maximum amount of tokens that can be held to interact with the Liquduity Pool during the limited phase
    /// @param _minHoldAmount Minimum amount of tokens that can be held to interact with the Liquduity Pool during the limited phase
    function setRules(bool _isLimited, address _tokenSwapPair, uint256 _maxHoldAmount, uint256 _minHoldAmount) external onlyOwner {
        isLimited = _isLimited;
        liqudityPoolSwapPair = _tokenSwapPair;
        maxHoldAmount = _maxHoldAmount;
        minHoldAmount = _minHoldAmount;
    }

    /// @notice Set them tokens on fire
    /// @param value How many tokens to burn
    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }

     //Enforce Ruleset
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        // Blacklist Ruleset
        require(!hasFuckedAround[to] && !hasFuckedAround[from], "Fucked Around & Found Out");

        // Exclude Pre-Liqudity Trading (Aside from Owner Wallet)
        if (liqudityPoolSwapPair == address(0) && isDeployed) {
            require(from == owner() || to == owner(), "Trading has not yet started");
            return;
        }

        //Extra rules to keep a fair and smooth release :)
        if (isLimited && from == liqudityPoolSwapPair) {
            require(super.balanceOf(to) + amount <= maxHoldAmount && super.balanceOf(to) + amount >= minHoldAmount, "Forbidden");
        }
    }
}

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

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/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 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/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 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 5 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 6 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"LOCK_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUPPLY_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_hasFuckedAround","type":"bool"}],"name":"foundOut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasFuckedAround","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":"isLimited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liqudityPoolSwapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lockedWallets","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldAmount","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isLimited","type":"bool"},{"internalType":"address","name":"_tokenSwapPair","type":"address"},{"internalType":"uint256","name":"_maxHoldAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldAmount","type":"uint256"}],"name":"setRules","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"walletAllocations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawLockedFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600660006101000a81548160ff021916908315150217905550621275006013553480156200003357600080fd5b506040518060400160405280600581526020017f46434b49540000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f46434b4954000000000000000000000000000000000000000000000000000000815250620000c0620000b46200065a60201b60201c565b6200066260201b60201c565b8160049081620000d1919062000f18565b508060059081620000e3919062000f18565b5050506200013573cda13fe7aea02ad5740e3fd48913a24b83976c6060fa6103e86b89f057212b99627a020000006200011d91906200105d565b62000129919062001095565b6200072660201b60201c565b620001f1735346ffcc2291a9d555e8b860a263b94338e043be6101a76103e86b89f057212b99627a020000006200016d91906200105d565b62000179919062001095565b60026103e86b89f057212b99627a020000006200019791906200105d565b620001a3919062001095565b60e16103e86b89f057212b99627a02000000620001c191906200105d565b620001cd919062001095565b620001d99190620010e0565b620001e59190620010e0565b6200072660201b60201c565b60326064806103e86b89f057212b99627a020000006200021291906200105d565b6200021e919062001095565b6200022a91906200105d565b62000236919062001095565b600f6000600481106200024e576200024d6200111b565b5b018190555060146064806103e86b89f057212b99627a020000006200027491906200105d565b62000280919062001095565b6200028c91906200105d565b62000298919062001095565b600f600160048110620002b057620002af6200111b565b5b018190555060146064806103e86b89f057212b99627a02000000620002d691906200105d565b620002e2919062001095565b620002ee91906200105d565b620002fa919062001095565b600f6002600481106200031257620003116200111b565b5b0181905550600a6064806103e86b89f057212b99627a020000006200033891906200105d565b62000344919062001095565b6200035091906200105d565b6200035c919062001095565b600f6003600481106200037457620003736200111b565b5b018190555073f3bb77973f7f1de2fc99fcae3af66b56e5df5114600b600060048110620003a657620003a56200111b565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c4aaee79cc0a7c5d4ec3f4f8279f31ba15055e6b600b6001600481106200041257620004116200111b565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550733a1c2aa33bc5522d59cf729e701c31cc4b8f0037600b6002600481106200047e576200047d6200111b565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073ff955eff3d270d44b39d228f7ecdfe41ad5760b3600b600360048110620004ea57620004e96200111b565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060005b6004811015620005f2576000600f82600481106200054f576200054e6200111b565b5b015490506000600a826200056491906200105d565b905080826200057491906200114a565b600f84600481106200058b576200058a6200111b565b5b0181905550620005da600b8460048110620005ab57620005aa6200111b565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826200072660201b60201c565b50508080620005e99062001185565b9150506200052c565b50620006146212750042620006089190620010e0565b6200089460201b60201c565b6001600660006101000a81548160ff02191690831515021790555062000654735346ffcc2291a9d555e8b860a263b94338e043be6200066260201b60201c565b62001471565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000798576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200078f9062001233565b60405180910390fd5b620007ac60008383620008f160201b60201c565b8060036000828254620007c09190620010e0565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000874919062001266565b60405180910390a3620008906000838362000c2760201b60201c565b5050565b600660009054906101000a900460ff1615620008e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008de90620012f9565b60405180910390fd5b8060138190555050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620009965750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b620009d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009cf906200136b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614801562000a435750600660009054906101000a900460ff165b1562000b155762000a5962000c2c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148062000acd575062000a9e62000c2c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000b0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b0690620013dd565b60405180910390fd5b62000c22565b600660019054906101000a900460ff16801562000b7f5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1562000c21576007548162000b9f8462000c5560201b6200083d1760201c565b62000bab9190620010e0565b1115801562000bde57506008548162000bcf8462000c5560201b6200083d1760201c565b62000bdb9190620010e0565b10155b62000c20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c17906200144f565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d2057607f821691505b60208210810362000d365762000d3562000cd8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000da07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d61565b62000dac868362000d61565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000df962000df362000ded8462000dc4565b62000dce565b62000dc4565b9050919050565b6000819050919050565b62000e158362000dd8565b62000e2d62000e248262000e00565b84845462000d6e565b825550505050565b600090565b62000e4462000e35565b62000e5181848462000e0a565b505050565b5b8181101562000e795762000e6d60008262000e3a565b60018101905062000e57565b5050565b601f82111562000ec85762000e928162000d3c565b62000e9d8462000d51565b8101602085101562000ead578190505b62000ec562000ebc8562000d51565b83018262000e56565b50505b505050565b600082821c905092915050565b600062000eed6000198460080262000ecd565b1980831691505092915050565b600062000f08838362000eda565b9150826002028217905092915050565b62000f238262000c9e565b67ffffffffffffffff81111562000f3f5762000f3e62000ca9565b5b62000f4b825462000d07565b62000f5882828562000e7d565b600060209050601f83116001811462000f90576000841562000f7b578287015190505b62000f87858262000efa565b86555062000ff7565b601f19841662000fa08662000d3c565b60005b8281101562000fca5784890151825560018201915060208501945060208101905062000fa3565b8683101562000fea578489015162000fe6601f89168262000eda565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200106a8262000dc4565b9150620010778362000dc4565b9250826200108a576200108962000fff565b5b828204905092915050565b6000620010a28262000dc4565b9150620010af8362000dc4565b9250828202620010bf8162000dc4565b91508282048414831517620010d957620010d86200102e565b5b5092915050565b6000620010ed8262000dc4565b9150620010fa8362000dc4565b92508282019050808211156200111557620011146200102e565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000620011578262000dc4565b9150620011648362000dc4565b92508282039050818111156200117f576200117e6200102e565b5b92915050565b6000620011928262000dc4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203620011c757620011c66200102e565b5b600182019050919050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200121b601f83620011d2565b91506200122882620011e3565b602082019050919050565b600060208201905081810360008301526200124e816200120c565b9050919050565b620012608162000dc4565b82525050565b60006020820190506200127d600083018462001255565b92915050565b7f4c6f636b206475726174696f6e2063616e206f6e6c792062652073657420626560008201527f666f7265206465706c6f796d656e740000000000000000000000000000000000602082015250565b6000620012e1602f83620011d2565b9150620012ee8262001283565b604082019050919050565b600060208201905081810360008301526200131481620012d2565b9050919050565b7f4675636b65642041726f756e64202620466f756e64204f757400000000000000600082015250565b600062001353601983620011d2565b915062001360826200131b565b602082019050919050565b60006020820190508181036000830152620013868162001344565b9050919050565b7f54726164696e6720686173206e6f742079657420737461727465640000000000600082015250565b6000620013c5601b83620011d2565b9150620013d2826200138d565b602082019050919050565b60006020820190508181036000830152620013f881620013b6565b9050919050565b7f466f7262696464656e0000000000000000000000000000000000000000000000600082015250565b600062001437600983620011d2565b91506200144482620013ff565b602082019050919050565b600060208201905081810360008301526200146a8162001428565b9050919050565b6125b180620014816000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063c41570bd11610097578063dd62ed3e11610071578063dd62ed3e146104c2578063f21129cc146104f2578063f2fde38b14610522578063fddacd7b1461053e576101a9565b8063c41570bd14610456578063cd03425c14610486578063db5671fb146104a4576101a9565b80638da5cb5b116100d35780638da5cb5b146103ba57806395d89b41146103d8578063a457c2d7146103f6578063a9059cbb14610426576101a9565b806370a0823114610364578063715018a614610394578063720fca881461039e576101a9565b806318160ddd11610166578063395093511161014057806339509351146102ca5780633fd50eb8146102fa57806342966c681461032a578063485d383414610346576101a9565b806318160ddd1461025e57806323b872dd1461027c578063313ce567146102ac576101a9565b806304b3a5c5146101ae57806306fdde03146101ca578063095ea7b3146101e85780630a65b68d146102185780630cfccc83146102365780630f7624ae14610254575b600080fd5b6101c860048036038101906101c391906118ba565b61055c565b005b6101d26105bf565b6040516101df919061198a565b60405180910390f35b61020260048036038101906101fd91906119e2565b610651565b60405161020f9190611a31565b60405180910390f35b610220610674565b60405161022d9190611a5b565b60405180910390f35b61023e61069a565b60405161024b9190611a85565b60405180910390f35b61025c6106aa565b005b610266610796565b6040516102739190611a85565b60405180910390f35b61029660048036038101906102919190611aa0565b6107a0565b6040516102a39190611a31565b60405180910390f35b6102b46107cf565b6040516102c19190611b0f565b60405180910390f35b6102e460048036038101906102df91906119e2565b6107d8565b6040516102f19190611a31565b60405180910390f35b610314600480360381019061030f9190611b2a565b61080f565b6040516103219190611a85565b60405180910390f35b610344600480360381019061033f9190611b2a565b61082a565b005b61034e610837565b60405161035b9190611a85565b60405180910390f35b61037e60048036038101906103799190611b57565b61083d565b60405161038b9190611a85565b60405180910390f35b61039c610886565b005b6103b860048036038101906103b39190611b84565b61089a565b005b6103c2610911565b6040516103cf9190611a5b565b60405180910390f35b6103e061093a565b6040516103ed919061198a565b60405180910390f35b610410600480360381019061040b91906119e2565b6109cc565b60405161041d9190611a31565b60405180910390f35b610440600480360381019061043b91906119e2565b610a43565b60405161044d9190611a31565b60405180910390f35b610470600480360381019061046b9190611b2a565b610a66565b60405161047d9190611a5b565b60405180910390f35b61048e610a9c565b60405161049b9190611a85565b60405180910390f35b6104ac610aa2565b6040516104b99190611a31565b60405180910390f35b6104dc60048036038101906104d79190611beb565b610ab5565b6040516104e99190611a85565b60405180910390f35b61050c60048036038101906105079190611b57565b610b3c565b6040516105199190611a31565b60405180910390f35b61053c60048036038101906105379190611b57565b610b5c565b005b610546610bdf565b6040516105539190611a85565b60405180910390f35b610564610be5565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6060600480546105ce90611c5a565b80601f01602080910402602001604051908101604052809291908181526020018280546105fa90611c5a565b80156106475780601f1061061c57610100808354040283529160200191610647565b820191906000526020600020905b81548152906001019060200180831161062a57829003601f168201915b5050505050905090565b60008061065c610c63565b9050610669818585610c6b565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6b89f057212b99627a0200000081565b6013544210156106ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e690611cd7565b60405180910390fd5b60005b6004811015610793576000600b826004811061071157610710611cf7565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600f836004811061074b5761074a611cf7565b5b01549050600081111561077e576000600f846004811061076e5761076d611cf7565b5b018190555061077d8282610e34565b5b5050808061078b90611d55565b9150506106f2565b50565b6000600354905090565b6000806107ab610c63565b90506107b8858285610f8b565b6107c3858585611017565b60019150509392505050565b60006012905090565b6000806107e3610c63565b90506108048185856107f58589610ab5565b6107ff9190611d9d565b610c6b565b600191505092915050565b600f816004811061081f57600080fd5b016000915090505481565b6108343382611290565b50565b60135481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61088e610be5565b610898600061145f565b565b6108a2610be5565b83600660016101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461094990611c5a565b80601f016020809104026020016040519081016040528092919081815260200182805461097590611c5a565b80156109c25780601f10610997576101008083540402835291602001916109c2565b820191906000526020600020905b8154815290600101906020018083116109a557829003601f168201915b5050505050905090565b6000806109d7610c63565b905060006109e58286610ab5565b905083811015610a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2190611e43565b60405180910390fd5b610a378286868403610c6b565b60019250505092915050565b600080610a4e610c63565b9050610a5b818585611017565b600191505092915050565b600b8160048110610a7657600080fd5b016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075481565b600660019054906101000a900460ff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b610b64610be5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bca90611ed5565b60405180910390fd5b610bdc8161145f565b50565b60085481565b610bed610c63565b73ffffffffffffffffffffffffffffffffffffffff16610c0b610911565b73ffffffffffffffffffffffffffffffffffffffff1614610c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5890611f41565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd190611fd3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090612065565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e279190611a85565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a906120d1565b60405180910390fd5b610eaf60008383611523565b8060036000828254610ec19190611d9d565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f739190611a85565b60405180910390a3610f876000838361181a565b5050565b6000610f978484610ab5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110115781811015611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa9061213d565b60405180910390fd5b6110108484848403610c6b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107d906121cf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ec90612261565b60405180910390fd5b611100838383611523565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e906122f3565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112779190611a85565b60405180910390a361128a84848461181a565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f690612385565b60405180910390fd5b61130b82600083611523565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611392576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138990612417565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114469190611a85565b60405180910390a361145a8360008461181a565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156115c75750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd90612483565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480156116705750600660009054906101000a900460ff165b1561172c5761167d610911565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806116e857506116b9610911565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e906124ef565b60405180910390fd5b611815565b600660019054906101000a900460ff1680156117955750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561181457600754816117a78461083d565b6117b19190611d9d565b111580156117d45750600854816117c78461083d565b6117d19190611d9d565b10155b611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a9061255b565b60405180910390fd5b5b5b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061184f82611824565b9050919050565b61185f81611844565b811461186a57600080fd5b50565b60008135905061187c81611856565b92915050565b60008115159050919050565b61189781611882565b81146118a257600080fd5b50565b6000813590506118b48161188e565b92915050565b600080604083850312156118d1576118d061181f565b5b60006118df8582860161186d565b92505060206118f0858286016118a5565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611934578082015181840152602081019050611919565b60008484015250505050565b6000601f19601f8301169050919050565b600061195c826118fa565b6119668185611905565b9350611976818560208601611916565b61197f81611940565b840191505092915050565b600060208201905081810360008301526119a48184611951565b905092915050565b6000819050919050565b6119bf816119ac565b81146119ca57600080fd5b50565b6000813590506119dc816119b6565b92915050565b600080604083850312156119f9576119f861181f565b5b6000611a078582860161186d565b9250506020611a18858286016119cd565b9150509250929050565b611a2b81611882565b82525050565b6000602082019050611a466000830184611a22565b92915050565b611a5581611844565b82525050565b6000602082019050611a706000830184611a4c565b92915050565b611a7f816119ac565b82525050565b6000602082019050611a9a6000830184611a76565b92915050565b600080600060608486031215611ab957611ab861181f565b5b6000611ac78682870161186d565b9350506020611ad88682870161186d565b9250506040611ae9868287016119cd565b9150509250925092565b600060ff82169050919050565b611b0981611af3565b82525050565b6000602082019050611b246000830184611b00565b92915050565b600060208284031215611b4057611b3f61181f565b5b6000611b4e848285016119cd565b91505092915050565b600060208284031215611b6d57611b6c61181f565b5b6000611b7b8482850161186d565b91505092915050565b60008060008060808587031215611b9e57611b9d61181f565b5b6000611bac878288016118a5565b9450506020611bbd8782880161186d565b9350506040611bce878288016119cd565b9250506060611bdf878288016119cd565b91505092959194509250565b60008060408385031215611c0257611c0161181f565b5b6000611c108582860161186d565b9250506020611c218582860161186d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611c7257607f821691505b602082108103611c8557611c84611c2b565b5b50919050565b7f46756e647320617265207374696c6c206c6f636b656400000000000000000000600082015250565b6000611cc1601683611905565b9150611ccc82611c8b565b602082019050919050565b60006020820190508181036000830152611cf081611cb4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611d60826119ac565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611d9257611d91611d26565b5b600182019050919050565b6000611da8826119ac565b9150611db3836119ac565b9250828201905080821115611dcb57611dca611d26565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e2d602583611905565b9150611e3882611dd1565b604082019050919050565b60006020820190508181036000830152611e5c81611e20565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ebf602683611905565b9150611eca82611e63565b604082019050919050565b60006020820190508181036000830152611eee81611eb2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611f2b602083611905565b9150611f3682611ef5565b602082019050919050565b60006020820190508181036000830152611f5a81611f1e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611fbd602483611905565b9150611fc882611f61565b604082019050919050565b60006020820190508181036000830152611fec81611fb0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061204f602283611905565b915061205a82611ff3565b604082019050919050565b6000602082019050818103600083015261207e81612042565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006120bb601f83611905565b91506120c682612085565b602082019050919050565b600060208201905081810360008301526120ea816120ae565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612127601d83611905565b9150612132826120f1565b602082019050919050565b600060208201905081810360008301526121568161211a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006121b9602583611905565b91506121c48261215d565b604082019050919050565b600060208201905081810360008301526121e8816121ac565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061224b602383611905565b9150612256826121ef565b604082019050919050565b6000602082019050818103600083015261227a8161223e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006122dd602683611905565b91506122e882612281565b604082019050919050565b6000602082019050818103600083015261230c816122d0565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061236f602183611905565b915061237a82612313565b604082019050919050565b6000602082019050818103600083015261239e81612362565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612401602283611905565b915061240c826123a5565b604082019050919050565b60006020820190508181036000830152612430816123f4565b9050919050565b7f4675636b65642041726f756e64202620466f756e64204f757400000000000000600082015250565b600061246d601983611905565b915061247882612437565b602082019050919050565b6000602082019050818103600083015261249c81612460565b9050919050565b7f54726164696e6720686173206e6f742079657420737461727465640000000000600082015250565b60006124d9601b83611905565b91506124e4826124a3565b602082019050919050565b60006020820190508181036000830152612508816124cc565b9050919050565b7f466f7262696464656e0000000000000000000000000000000000000000000000600082015250565b6000612545600983611905565b91506125508261250f565b602082019050919050565b6000602082019050818103600083015261257481612538565b905091905056fea26469706673582212209fe3471ff559fb2a4f77aa278652eb85806b94604c246fc0ddffc326e191ae8d64736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063c41570bd11610097578063dd62ed3e11610071578063dd62ed3e146104c2578063f21129cc146104f2578063f2fde38b14610522578063fddacd7b1461053e576101a9565b8063c41570bd14610456578063cd03425c14610486578063db5671fb146104a4576101a9565b80638da5cb5b116100d35780638da5cb5b146103ba57806395d89b41146103d8578063a457c2d7146103f6578063a9059cbb14610426576101a9565b806370a0823114610364578063715018a614610394578063720fca881461039e576101a9565b806318160ddd11610166578063395093511161014057806339509351146102ca5780633fd50eb8146102fa57806342966c681461032a578063485d383414610346576101a9565b806318160ddd1461025e57806323b872dd1461027c578063313ce567146102ac576101a9565b806304b3a5c5146101ae57806306fdde03146101ca578063095ea7b3146101e85780630a65b68d146102185780630cfccc83146102365780630f7624ae14610254575b600080fd5b6101c860048036038101906101c391906118ba565b61055c565b005b6101d26105bf565b6040516101df919061198a565b60405180910390f35b61020260048036038101906101fd91906119e2565b610651565b60405161020f9190611a31565b60405180910390f35b610220610674565b60405161022d9190611a5b565b60405180910390f35b61023e61069a565b60405161024b9190611a85565b60405180910390f35b61025c6106aa565b005b610266610796565b6040516102739190611a85565b60405180910390f35b61029660048036038101906102919190611aa0565b6107a0565b6040516102a39190611a31565b60405180910390f35b6102b46107cf565b6040516102c19190611b0f565b60405180910390f35b6102e460048036038101906102df91906119e2565b6107d8565b6040516102f19190611a31565b60405180910390f35b610314600480360381019061030f9190611b2a565b61080f565b6040516103219190611a85565b60405180910390f35b610344600480360381019061033f9190611b2a565b61082a565b005b61034e610837565b60405161035b9190611a85565b60405180910390f35b61037e60048036038101906103799190611b57565b61083d565b60405161038b9190611a85565b60405180910390f35b61039c610886565b005b6103b860048036038101906103b39190611b84565b61089a565b005b6103c2610911565b6040516103cf9190611a5b565b60405180910390f35b6103e061093a565b6040516103ed919061198a565b60405180910390f35b610410600480360381019061040b91906119e2565b6109cc565b60405161041d9190611a31565b60405180910390f35b610440600480360381019061043b91906119e2565b610a43565b60405161044d9190611a31565b60405180910390f35b610470600480360381019061046b9190611b2a565b610a66565b60405161047d9190611a5b565b60405180910390f35b61048e610a9c565b60405161049b9190611a85565b60405180910390f35b6104ac610aa2565b6040516104b99190611a31565b60405180910390f35b6104dc60048036038101906104d79190611beb565b610ab5565b6040516104e99190611a85565b60405180910390f35b61050c60048036038101906105079190611b57565b610b3c565b6040516105199190611a31565b60405180910390f35b61053c60048036038101906105379190611b57565b610b5c565b005b610546610bdf565b6040516105539190611a85565b60405180910390f35b610564610be5565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6060600480546105ce90611c5a565b80601f01602080910402602001604051908101604052809291908181526020018280546105fa90611c5a565b80156106475780601f1061061c57610100808354040283529160200191610647565b820191906000526020600020905b81548152906001019060200180831161062a57829003601f168201915b5050505050905090565b60008061065c610c63565b9050610669818585610c6b565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6b89f057212b99627a0200000081565b6013544210156106ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e690611cd7565b60405180910390fd5b60005b6004811015610793576000600b826004811061071157610710611cf7565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600f836004811061074b5761074a611cf7565b5b01549050600081111561077e576000600f846004811061076e5761076d611cf7565b5b018190555061077d8282610e34565b5b5050808061078b90611d55565b9150506106f2565b50565b6000600354905090565b6000806107ab610c63565b90506107b8858285610f8b565b6107c3858585611017565b60019150509392505050565b60006012905090565b6000806107e3610c63565b90506108048185856107f58589610ab5565b6107ff9190611d9d565b610c6b565b600191505092915050565b600f816004811061081f57600080fd5b016000915090505481565b6108343382611290565b50565b60135481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61088e610be5565b610898600061145f565b565b6108a2610be5565b83600660016101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461094990611c5a565b80601f016020809104026020016040519081016040528092919081815260200182805461097590611c5a565b80156109c25780601f10610997576101008083540402835291602001916109c2565b820191906000526020600020905b8154815290600101906020018083116109a557829003601f168201915b5050505050905090565b6000806109d7610c63565b905060006109e58286610ab5565b905083811015610a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2190611e43565b60405180910390fd5b610a378286868403610c6b565b60019250505092915050565b600080610a4e610c63565b9050610a5b818585611017565b600191505092915050565b600b8160048110610a7657600080fd5b016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075481565b600660019054906101000a900460ff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b610b64610be5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bca90611ed5565b60405180910390fd5b610bdc8161145f565b50565b60085481565b610bed610c63565b73ffffffffffffffffffffffffffffffffffffffff16610c0b610911565b73ffffffffffffffffffffffffffffffffffffffff1614610c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5890611f41565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd190611fd3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090612065565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e279190611a85565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a906120d1565b60405180910390fd5b610eaf60008383611523565b8060036000828254610ec19190611d9d565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f739190611a85565b60405180910390a3610f876000838361181a565b5050565b6000610f978484610ab5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110115781811015611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa9061213d565b60405180910390fd5b6110108484848403610c6b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107d906121cf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ec90612261565b60405180910390fd5b611100838383611523565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e906122f3565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112779190611a85565b60405180910390a361128a84848461181a565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f690612385565b60405180910390fd5b61130b82600083611523565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611392576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138990612417565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114469190611a85565b60405180910390a361145a8360008461181a565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156115c75750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd90612483565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480156116705750600660009054906101000a900460ff165b1561172c5761167d610911565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806116e857506116b9610911565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e906124ef565b60405180910390fd5b611815565b600660019054906101000a900460ff1680156117955750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561181457600754816117a78461083d565b6117b19190611d9d565b111580156117d45750600854816117c78461083d565b6117d19190611d9d565b10155b611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a9061255b565b60405180910390fd5b5b5b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061184f82611824565b9050919050565b61185f81611844565b811461186a57600080fd5b50565b60008135905061187c81611856565b92915050565b60008115159050919050565b61189781611882565b81146118a257600080fd5b50565b6000813590506118b48161188e565b92915050565b600080604083850312156118d1576118d061181f565b5b60006118df8582860161186d565b92505060206118f0858286016118a5565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611934578082015181840152602081019050611919565b60008484015250505050565b6000601f19601f8301169050919050565b600061195c826118fa565b6119668185611905565b9350611976818560208601611916565b61197f81611940565b840191505092915050565b600060208201905081810360008301526119a48184611951565b905092915050565b6000819050919050565b6119bf816119ac565b81146119ca57600080fd5b50565b6000813590506119dc816119b6565b92915050565b600080604083850312156119f9576119f861181f565b5b6000611a078582860161186d565b9250506020611a18858286016119cd565b9150509250929050565b611a2b81611882565b82525050565b6000602082019050611a466000830184611a22565b92915050565b611a5581611844565b82525050565b6000602082019050611a706000830184611a4c565b92915050565b611a7f816119ac565b82525050565b6000602082019050611a9a6000830184611a76565b92915050565b600080600060608486031215611ab957611ab861181f565b5b6000611ac78682870161186d565b9350506020611ad88682870161186d565b9250506040611ae9868287016119cd565b9150509250925092565b600060ff82169050919050565b611b0981611af3565b82525050565b6000602082019050611b246000830184611b00565b92915050565b600060208284031215611b4057611b3f61181f565b5b6000611b4e848285016119cd565b91505092915050565b600060208284031215611b6d57611b6c61181f565b5b6000611b7b8482850161186d565b91505092915050565b60008060008060808587031215611b9e57611b9d61181f565b5b6000611bac878288016118a5565b9450506020611bbd8782880161186d565b9350506040611bce878288016119cd565b9250506060611bdf878288016119cd565b91505092959194509250565b60008060408385031215611c0257611c0161181f565b5b6000611c108582860161186d565b9250506020611c218582860161186d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611c7257607f821691505b602082108103611c8557611c84611c2b565b5b50919050565b7f46756e647320617265207374696c6c206c6f636b656400000000000000000000600082015250565b6000611cc1601683611905565b9150611ccc82611c8b565b602082019050919050565b60006020820190508181036000830152611cf081611cb4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611d60826119ac565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611d9257611d91611d26565b5b600182019050919050565b6000611da8826119ac565b9150611db3836119ac565b9250828201905080821115611dcb57611dca611d26565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e2d602583611905565b9150611e3882611dd1565b604082019050919050565b60006020820190508181036000830152611e5c81611e20565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ebf602683611905565b9150611eca82611e63565b604082019050919050565b60006020820190508181036000830152611eee81611eb2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611f2b602083611905565b9150611f3682611ef5565b602082019050919050565b60006020820190508181036000830152611f5a81611f1e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611fbd602483611905565b9150611fc882611f61565b604082019050919050565b60006020820190508181036000830152611fec81611fb0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061204f602283611905565b915061205a82611ff3565b604082019050919050565b6000602082019050818103600083015261207e81612042565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006120bb601f83611905565b91506120c682612085565b602082019050919050565b600060208201905081810360008301526120ea816120ae565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612127601d83611905565b9150612132826120f1565b602082019050919050565b600060208201905081810360008301526121568161211a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006121b9602583611905565b91506121c48261215d565b604082019050919050565b600060208201905081810360008301526121e8816121ac565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061224b602383611905565b9150612256826121ef565b604082019050919050565b6000602082019050818103600083015261227a8161223e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006122dd602683611905565b91506122e882612281565b604082019050919050565b6000602082019050818103600083015261230c816122d0565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061236f602183611905565b915061237a82612313565b604082019050919050565b6000602082019050818103600083015261239e81612362565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612401602283611905565b915061240c826123a5565b604082019050919050565b60006020820190508181036000830152612430816123f4565b9050919050565b7f4675636b65642041726f756e64202620466f756e64204f757400000000000000600082015250565b600061246d601983611905565b915061247882612437565b602082019050919050565b6000602082019050818103600083015261249c81612460565b9050919050565b7f54726164696e6720686173206e6f742079657420737461727465640000000000600082015250565b60006124d9601b83611905565b91506124e4826124a3565b602082019050919050565b60006020820190508181036000830152612508816124cc565b9050919050565b7f466f7262696464656e0000000000000000000000000000000000000000000000600082015250565b6000612545600983611905565b91506125508261250f565b602082019050919050565b6000602082019050818103600083015261257481612538565b905091905056fea26469706673582212209fe3471ff559fb2a4f77aa278652eb85806b94604c246fc0ddffc326e191ae8d64736f6c63430008120033

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.