ETH Price: $3,426.63 (+1.58%)

Contract

0x202Bab532E9e44F06688ABf3406437dBe49b3018
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve211918362024-11-15 8:15:1112 days ago1731658511IN
Crypto 2 Debit: $C2D Token
0 ETH0.0003762615.0983789
Approve211918082024-11-15 8:09:3512 days ago1731658175IN
Crypto 2 Debit: $C2D Token
0 ETH0.0003748415.00505738
Approve211480982024-11-09 5:46:3518 days ago1731131195IN
Crypto 2 Debit: $C2D Token
0 ETH0.0004723910.00728611
Approve211234992024-11-05 19:20:5921 days ago1730834459IN
Crypto 2 Debit: $C2D Token
0 ETH0.0005415911.53491855
Approve210747132024-10-29 23:54:5928 days ago1730246099IN
Crypto 2 Debit: $C2D Token
0 ETH0.00039788.42708332
Approve210594552024-10-27 20:48:1130 days ago1730062091IN
Crypto 2 Debit: $C2D Token
0 ETH0.00030666.49509101
Approve210564052024-10-27 10:35:5930 days ago1730025359IN
Crypto 2 Debit: $C2D Token
0 ETH0.000410798.75137822
Approve210564002024-10-27 10:34:5930 days ago1730025299IN
Crypto 2 Debit: $C2D Token
0 ETH0.000396168.44612085
Approve210563952024-10-27 10:33:5930 days ago1730025239IN
Crypto 2 Debit: $C2D Token
0 ETH0.000399348.5139537
Approve210561242024-10-27 9:39:1130 days ago1730021951IN
Crypto 2 Debit: $C2D Token
0 ETH0.000325576.92529693
Approve210518202024-10-26 19:15:1131 days ago1729970111IN
Crypto 2 Debit: $C2D Token
0 ETH0.000310126.5698532
Approve210516652024-10-26 18:44:1131 days ago1729968251IN
Crypto 2 Debit: $C2D Token
0 ETH0.000257895.46319668
Approve210516302024-10-26 18:36:5931 days ago1729967819IN
Crypto 2 Debit: $C2D Token
0 ETH0.000226724.79694088
Approve210449082024-10-25 20:05:4732 days ago1729886747IN
Crypto 2 Debit: $C2D Token
0 ETH0.000314046.65276546
Approve210237692024-10-22 21:21:2335 days ago1729632083IN
Crypto 2 Debit: $C2D Token
0 ETH0.000340347.21
Approve210236932024-10-22 21:05:5935 days ago1729631159IN
Crypto 2 Debit: $C2D Token
0 ETH0.000447559.46910067
Approve208901302024-10-04 5:41:2354 days ago1728020483IN
Crypto 2 Debit: $C2D Token
0 ETH0.000157473.33164681
Approve208763912024-10-02 7:42:4756 days ago1727854967IN
Crypto 2 Debit: $C2D Token
0 ETH0.000341637.23729438
Approve208678732024-10-01 3:11:3557 days ago1727752295IN
Crypto 2 Debit: $C2D Token
0 ETH0.000192637.71116464
Approve208466072024-09-28 4:00:5960 days ago1727496059IN
Crypto 2 Debit: $C2D Token
0 ETH0.000185187.43091047
Approve207832102024-09-19 7:40:5969 days ago1726731659IN
Crypto 2 Debit: $C2D Token
0 ETH0.0006358613.47032945
Transfer207391242024-09-13 3:51:5975 days ago1726199519IN
Crypto 2 Debit: $C2D Token
0 ETH0.000070421.77523729
Approve207310062024-09-12 0:39:1176 days ago1726101551IN
Crypto 2 Debit: $C2D Token
0 ETH0.000130722.76938613
Approve207304262024-09-11 22:42:5976 days ago1726094579IN
Crypto 2 Debit: $C2D Token
0 ETH0.00004631.85379801
Approve207304252024-09-11 22:42:4776 days ago1726094567IN
Crypto 2 Debit: $C2D Token
0 ETH0.000043631.75102165
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
$C2D

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-06-17
*/

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

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);
}

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);
}

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);
}

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;
    }
}

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);
    }
}

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);
}

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);
}

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);
            }
        }
    }
}


interface IFactory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}


contract $C2D is Ownable, ERC20 {

    IFactory uniswapFactory = IFactory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f); // uniswapFactory
    address uniswapV2Router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; // uniswapRouter
    address weth = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; // wrapped ETH
    address public feeCollector = 0x986a394612c2a00905033dC152957Dc0e7078f37; // address that collects buy/sell tax
    address public uniswapV2Pair; // liquidity pool address

    bool enableTrading; // check if trading is enabled

    uint256 buyFee = 200; // 2% tax fee on buy
    uint256 sellFee = 400; // 4% tax fee on sell
    uint256 maxHoldingAmount = 5000000 * 1e18; // max amount an address can hold
    uint256 maxSellTxAmount = 1000000 * 1e18; // max amount per transaction sellable
    uint maxBuyTxAmount = 5000000 * 1e18; // max amount per transaction buyable
    uint256 _totalSupply = 210000000 * 1e18; // total token supply
    
    mapping(address => bool) public blackListed; // these wallets cannot transfer anything
    mapping(address => bool) public notLimited; // these wallets can hold more than maxHoldingAmount


    /*\
    mint tokens
    create liquidity pair
    set addresses that are not limited
    \*/
    constructor() ERC20("Crypto 2 Debit", "$C2D") Ownable(msg.sender) {
        notLimited[msg.sender] = true;
        notLimited[feeCollector] = true;
        notLimited[uniswapV2Router] = true;
        
        _mint(msg.sender, _totalSupply);
        uniswapV2Pair = uniswapFactory.createPair(address(this), weth);
        notLimited[uniswapV2Pair] = true;
    }

/*//////////////////////////////////////////////‾‾‾‾‾‾‾‾‾‾\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*\
///////////////////////////////////////////////executeables\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
\*\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\____________/////////////////////////////////////////////*/

    /*\
    enable Trading
    \*/
    function enableTradingFeature() external onlyOwner {
        enableTrading = true;
    }

    /*\
    toggle the blacklist for _account
    \*/
    function toggleBlacklist(address _account) external onlyOwner {
        blackListed[_account] = true;
    }

    /*\
    toggle limits for _account
    \*/
    function toggleLimited(address _account) external onlyOwner {
        notLimited[_account] = !notLimited[_account];
    }

    /*\
    transfer tokens and deduct the taxes accordingly
    \*/
    function _update(
        address from,
        address to,
        uint256 value
    ) internal virtual override {
        require(!blackListed[from], "blacklisted!");

        super._update(from, to, value);
        if(from == owner() ||to == owner())
            return;

        uint256 taxFee = 0;

        if (from == uniswapV2Pair && to != uniswapV2Router) {
            require(enableTrading, "trading has not started!");
            taxFee = value * buyFee / 10000;
            require(value-taxFee < maxBuyTxAmount, "exceeds max buy amount!");
        }
        
        if (to == uniswapV2Pair && from != uniswapV2Router) {
            require(enableTrading, "trading has not started!");
            taxFee = value * sellFee / 10000;
            require(value-taxFee <= maxSellTxAmount, "exceeds max sell amount!");
        }

        if (taxFee > 0)
            super._update(to, feeCollector, taxFee);
        
        if(!notLimited[to])
            require(balanceOf(to) <= maxHoldingAmount, "cannot own more than maxHoldingAmount!");

            
    }


/*//////////////////////////////////////////////‾‾‾‾‾‾‾‾‾‾‾\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\*\
///////////////////////////////////////////////viewable/misc\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
\*\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\_____________/////////////////////////////////////////////*/

    function buyTax() external view returns(uint) {
        return buyFee;
    }

    function sellTax() external view returns(uint) {
        return sellFee;
    }

    function maxHolding() external view returns(uint) {
        return maxHoldingAmount;
    }

    function maxSellAmount() external view returns(uint) {
        return maxSellTxAmount;
    }

    function tradingEnabled() external view returns(bool) {
        return enableTrading;
    }

    function isBlackListed(address _account) external view returns(bool) {
        return blackListed[_account];
    }

    function isLimited(address _account) external view returns(bool) {
        return !notLimited[_account];
    }

}

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":"address","name":"","type":"address"}],"name":"blackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTradingFeature","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeCollector","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"isLimited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHolding","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"notLimited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"toggleBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"toggleLimited","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc260085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073986a394612c2a00905033dc152957dc0e7078f3760095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060c8600b55610190600c556a0422ca8b0a00a425000000600d5569d3c21bcecceda1000000600e556a0422ca8b0a00a425000000600f556aadb53acfa41aee12000000601055348015620001a6575f80fd5b506040518060400160405280600e81526020017f43727970746f20322044656269740000000000000000000000000000000000008152506040518060400160405280600481526020017f2443324400000000000000000000000000000000000000000000000000000000815250335f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000287575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200027e919062000ebb565b60405180910390fd5b62000298816200059160201b60201c565b508160049081620002aa91906200113a565b508060059081620002bc91906200113a565b505050600160125f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160125f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160125f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555062000414336010546200065260201b60201c565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c9c653963060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b8152600401620004939291906200121e565b6020604051808303815f875af1158015620004b0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620004d691906200127c565b600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160125f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550620016be565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006c5575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620006bc919062000ebb565b60405180910390fd5b620006d85f8383620006dc60201b60201c565b5050565b60115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161562000769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000760906200130a565b60405180910390fd5b6200077c83838362000be460201b60201c565b6200078c62000e0b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620008005750620007d162000e0b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000bdf575f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015620008b0575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156200097e57600a60149054906101000a900460ff1662000908576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008ff9062001378565b60405180910390fd5b612710600b54836200091b9190620013c5565b6200092791906200143c565b9050600f5481836200093a919062001473565b106200097d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200097490620014fb565b60405180910390fd5b5b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801562000a28575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1562000af757600a60149054906101000a900460ff1662000a80576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a779062001378565b60405180910390fd5b612710600c548362000a939190620013c5565b62000a9f91906200143c565b9050600e54818362000ab2919062001473565b111562000af6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000aed9062001569565b60405180910390fd5b5b5f81111562000b355762000b348360095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168362000be460201b60201c565b5b60125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1662000bdd57600d5462000b988462000e3260201b60201c565b111562000bdc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bd390620015fd565b60405180910390fd5b5b505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000c38578060035f82825462000c2b91906200161d565b9250508190555062000d0b565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562000cc5578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040162000cbc9392919062001668565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000d54578060035f828254039250508190555062000d9f565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000dfe9190620016a3565b60405180910390a3505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000ea38262000e78565b9050919050565b62000eb58162000e97565b82525050565b5f60208201905062000ed05f83018462000eaa565b92915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000f5257607f821691505b60208210810362000f685762000f6762000f0d565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000fcc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000f8f565b62000fd8868362000f8f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620010226200101c620010168462000ff0565b62000ff9565b62000ff0565b9050919050565b5f819050919050565b6200103d8362001002565b620010556200104c8262001029565b84845462000f9b565b825550505050565b5f90565b6200106b6200105d565b6200107881848462001032565b505050565b5b818110156200109f57620010935f8262001061565b6001810190506200107e565b5050565b601f821115620010ee57620010b88162000f6e565b620010c38462000f80565b81016020851015620010d3578190505b620010eb620010e28562000f80565b8301826200107d565b50505b505050565b5f82821c905092915050565b5f620011105f1984600802620010f3565b1980831691505092915050565b5f6200112a8383620010ff565b9150826002028217905092915050565b620011458262000ed6565b67ffffffffffffffff81111562001161576200116062000ee0565b5b6200116d825462000f3a565b6200117a828285620010a3565b5f60209050601f831160018114620011b0575f84156200119b578287015190505b620011a785826200111d565b86555062001216565b601f198416620011c08662000f6e565b5f5b82811015620011e957848901518255600182019150602085019450602081019050620011c2565b8683101562001209578489015162001205601f891682620010ff565b8355505b6001600288020188555050505b505050505050565b5f604082019050620012335f83018562000eaa565b62001242602083018462000eaa565b9392505050565b5f80fd5b620012588162000e97565b811462001263575f80fd5b50565b5f8151905062001276816200124d565b92915050565b5f6020828403121562001294576200129362001249565b5b5f620012a38482850162001266565b91505092915050565b5f82825260208201905092915050565b7f626c61636b6c69737465642100000000000000000000000000000000000000005f82015250565b5f620012f2600c83620012ac565b9150620012ff82620012bc565b602082019050919050565b5f6020820190508181035f8301526200132381620012e4565b9050919050565b7f74726164696e6720686173206e6f7420737461727465642100000000000000005f82015250565b5f62001360601883620012ac565b91506200136d826200132a565b602082019050919050565b5f6020820190508181035f830152620013918162001352565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620013d18262000ff0565b9150620013de8362000ff0565b9250828202620013ee8162000ff0565b9150828204841483151762001408576200140762001398565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f620014488262000ff0565b9150620014558362000ff0565b9250826200146857620014676200140f565b5b828204905092915050565b5f6200147f8262000ff0565b91506200148c8362000ff0565b9250828203905081811115620014a757620014a662001398565b5b92915050565b7f65786365656473206d61782062757920616d6f756e74210000000000000000005f82015250565b5f620014e3601783620012ac565b9150620014f082620014ad565b602082019050919050565b5f6020820190508181035f8301526200151481620014d5565b9050919050565b7f65786365656473206d61782073656c6c20616d6f756e742100000000000000005f82015250565b5f62001551601883620012ac565b91506200155e826200151b565b602082019050919050565b5f6020820190508181035f830152620015828162001543565b9050919050565b7f63616e6e6f74206f776e206d6f7265207468616e206d6178486f6c64696e67415f8201527f6d6f756e74210000000000000000000000000000000000000000000000000000602082015250565b5f620015e5602683620012ac565b9150620015f28262001589565b604082019050919050565b5f6020820190508181035f8301526200161681620015d7565b9050919050565b5f620016298262000ff0565b9150620016368362000ff0565b925082820190508082111562001651576200165062001398565b5b92915050565b620016628162000ff0565b82525050565b5f6060820190506200167d5f83018662000eaa565b6200168c602083018562001657565b6200169b604083018462001657565b949350505050565b5f602082019050620016b85f83018462001657565b92915050565b611d6280620016cc5f395ff3fe608060405234801561000f575f80fd5b506004361061018c575f3560e01c806366d602ae116100dc578063a9059cbb11610095578063cc1776d31161006f578063cc1776d314610476578063dd62ed3e14610494578063e47d6060146104c4578063f2fde38b146104f45761018c565b8063a9059cbb146103f8578063bbde5b2514610428578063c415b95c146104585761018c565b806366d602ae1461035a57806370a0823114610378578063715018a6146103a85780638da5cb5b146103b25780638dbdd426146103d057806395d89b41146103da5761018c565b80632f4e09981161014957806349bd5a5e1161012357806349bd5a5e146102d05780634ab4a935146102ee5780634ada218b1461031e5780634f7041a51461033c5761018c565b80632f4e099814610278578063313ce56714610294578063333e6f06146102b25761018c565b806306fdde0314610190578063095ea7b3146101ae57806312ac5de8146101de57806318160ddd1461020e57806323b872dd1461022c5780632e16a69e1461025c575b5f80fd5b610198610510565b6040516101a591906116dc565b60405180910390f35b6101c860048036038101906101c3919061178d565b6105a0565b6040516101d591906117e5565b60405180910390f35b6101f860048036038101906101f391906117fe565b6105c2565b60405161020591906117e5565b60405180910390f35b6102166105df565b6040516102239190611838565b60405180910390f35b61024660048036038101906102419190611851565b6105e8565b60405161025391906117e5565b60405180910390f35b610276600480360381019061027191906117fe565b610616565b005b610292600480360381019061028d91906117fe565b610676565b005b61029c61071f565b6040516102a991906118bc565b60405180910390f35b6102ba610727565b6040516102c79190611838565b60405180910390f35b6102d8610730565b6040516102e591906118e4565b60405180910390f35b610308600480360381019061030391906117fe565b610755565b60405161031591906117e5565b60405180910390f35b6103266107a8565b60405161033391906117e5565b60405180910390f35b6103446107be565b6040516103519190611838565b60405180910390f35b6103626107c7565b60405161036f9190611838565b60405180910390f35b610392600480360381019061038d91906117fe565b6107d0565b60405161039f9190611838565b60405180910390f35b6103b0610816565b005b6103ba610829565b6040516103c791906118e4565b60405180910390f35b6103d8610850565b005b6103e2610875565b6040516103ef91906116dc565b60405180910390f35b610412600480360381019061040d919061178d565b610905565b60405161041f91906117e5565b60405180910390f35b610442600480360381019061043d91906117fe565b610927565b60405161044f91906117e5565b60405180910390f35b610460610944565b60405161046d91906118e4565b60405180910390f35b61047e610969565b60405161048b9190611838565b60405180910390f35b6104ae60048036038101906104a991906118fd565b610972565b6040516104bb9190611838565b60405180910390f35b6104de60048036038101906104d991906117fe565b6109f4565b6040516104eb91906117e5565b60405180910390f35b61050e600480360381019061050991906117fe565b610a46565b005b60606004805461051f90611968565b80601f016020809104026020016040519081016040528092919081815260200182805461054b90611968565b80156105965780601f1061056d57610100808354040283529160200191610596565b820191905f5260205f20905b81548152906001019060200180831161057957829003601f168201915b5050505050905090565b5f806105aa610aca565b90506105b7818585610ad1565b600191505092915050565b6012602052805f5260405f205f915054906101000a900460ff1681565b5f600354905090565b5f806105f2610aca565b90506105ff858285610ae3565b61060a858585610b75565b60019150509392505050565b61061e610c65565b600160115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b61067e610c65565b60125f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161560125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f6012905090565b5f600d54905090565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16159050919050565b5f600a60149054906101000a900460ff16905090565b5f600b54905090565b5f600e54905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61081e610c65565b6108275f610cec565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610858610c65565b6001600a60146101000a81548160ff021916908315150217905550565b60606005805461088490611968565b80601f01602080910402602001604051908101604052809291908181526020018280546108b090611968565b80156108fb5780601f106108d2576101008083540402835291602001916108fb565b820191905f5260205f20905b8154815290600101906020018083116108de57829003601f168201915b5050505050905090565b5f8061090f610aca565b905061091c818585610b75565b600191505092915050565b6011602052805f5260405f205f915054906101000a900460ff1681565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600c54905090565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f60115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b610a4e610c65565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610abe575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610ab591906118e4565b60405180910390fd5b610ac781610cec565b50565b5f33905090565b610ade8383836001610dad565b505050565b5f610aee8484610972565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b6f5781811015610b60578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610b5793929190611998565b60405180910390fd5b610b6e84848484035f610dad565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610be5575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610bdc91906118e4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c55575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610c4c91906118e4565b60405180910390fd5b610c60838383610f7c565b505050565b610c6d610aca565b73ffffffffffffffffffffffffffffffffffffffff16610c8b610829565b73ffffffffffffffffffffffffffffffffffffffff1614610cea57610cae610aca565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610ce191906118e4565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e1d575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610e1491906118e4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e8d575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610e8491906118e4565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610f76578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610f6d9190611838565b60405180910390a35b50505050565b60115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90611a17565b60405180910390fd5b611011838383611436565b611019610829565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806110845750611055610829565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611431575f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015611132575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156111f357600a60149054906101000a900460ff16611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d90611a7f565b60405180910390fd5b612710600b54836111979190611aca565b6111a19190611b38565b9050600f5481836111b29190611b68565b106111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e990611be5565b60405180910390fd5b5b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561129c575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561135e57600a60149054906101000a900460ff166112f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e790611a7f565b60405180910390fd5b612710600c54836113019190611aca565b61130b9190611b38565b9050600e54818361131c9190611b68565b111561135d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135490611c4d565b60405180910390fd5b5b5f811115611393576113928360095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611436565b5b60125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661142f57600d546113ed846107d0565b111561142e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142590611cdb565b60405180910390fd5b5b505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611486578060035f82825461147a9190611cf9565b92505081905550611556565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611510578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161150793929190611998565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361159d578060035f82825403925050819055506115e8565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116459190611838565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561168957808201518184015260208101905061166e565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6116ae82611652565b6116b8818561165c565b93506116c881856020860161166c565b6116d181611694565b840191505092915050565b5f6020820190508181035f8301526116f481846116a4565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61172982611700565b9050919050565b6117398161171f565b8114611743575f80fd5b50565b5f8135905061175481611730565b92915050565b5f819050919050565b61176c8161175a565b8114611776575f80fd5b50565b5f8135905061178781611763565b92915050565b5f80604083850312156117a3576117a26116fc565b5b5f6117b085828601611746565b92505060206117c185828601611779565b9150509250929050565b5f8115159050919050565b6117df816117cb565b82525050565b5f6020820190506117f85f8301846117d6565b92915050565b5f60208284031215611813576118126116fc565b5b5f61182084828501611746565b91505092915050565b6118328161175a565b82525050565b5f60208201905061184b5f830184611829565b92915050565b5f805f60608486031215611868576118676116fc565b5b5f61187586828701611746565b935050602061188686828701611746565b925050604061189786828701611779565b9150509250925092565b5f60ff82169050919050565b6118b6816118a1565b82525050565b5f6020820190506118cf5f8301846118ad565b92915050565b6118de8161171f565b82525050565b5f6020820190506118f75f8301846118d5565b92915050565b5f8060408385031215611913576119126116fc565b5b5f61192085828601611746565b925050602061193185828601611746565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061197f57607f821691505b6020821081036119925761199161193b565b5b50919050565b5f6060820190506119ab5f8301866118d5565b6119b86020830185611829565b6119c56040830184611829565b949350505050565b7f626c61636b6c69737465642100000000000000000000000000000000000000005f82015250565b5f611a01600c8361165c565b9150611a0c826119cd565b602082019050919050565b5f6020820190508181035f830152611a2e816119f5565b9050919050565b7f74726164696e6720686173206e6f7420737461727465642100000000000000005f82015250565b5f611a6960188361165c565b9150611a7482611a35565b602082019050919050565b5f6020820190508181035f830152611a9681611a5d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611ad48261175a565b9150611adf8361175a565b9250828202611aed8161175a565b91508282048414831517611b0457611b03611a9d565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611b428261175a565b9150611b4d8361175a565b925082611b5d57611b5c611b0b565b5b828204905092915050565b5f611b728261175a565b9150611b7d8361175a565b9250828203905081811115611b9557611b94611a9d565b5b92915050565b7f65786365656473206d61782062757920616d6f756e74210000000000000000005f82015250565b5f611bcf60178361165c565b9150611bda82611b9b565b602082019050919050565b5f6020820190508181035f830152611bfc81611bc3565b9050919050565b7f65786365656473206d61782073656c6c20616d6f756e742100000000000000005f82015250565b5f611c3760188361165c565b9150611c4282611c03565b602082019050919050565b5f6020820190508181035f830152611c6481611c2b565b9050919050565b7f63616e6e6f74206f776e206d6f7265207468616e206d6178486f6c64696e67415f8201527f6d6f756e74210000000000000000000000000000000000000000000000000000602082015250565b5f611cc560268361165c565b9150611cd082611c6b565b604082019050919050565b5f6020820190508181035f830152611cf281611cb9565b9050919050565b5f611d038261175a565b9150611d0e8361175a565b9250828201905080821115611d2657611d25611a9d565b5b9291505056fea2646970667358221220de54e6c4457ad76c6ee40f8809e717045608eb4018037f2572c57939d03f005e64736f6c63430008180033

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061018c575f3560e01c806366d602ae116100dc578063a9059cbb11610095578063cc1776d31161006f578063cc1776d314610476578063dd62ed3e14610494578063e47d6060146104c4578063f2fde38b146104f45761018c565b8063a9059cbb146103f8578063bbde5b2514610428578063c415b95c146104585761018c565b806366d602ae1461035a57806370a0823114610378578063715018a6146103a85780638da5cb5b146103b25780638dbdd426146103d057806395d89b41146103da5761018c565b80632f4e09981161014957806349bd5a5e1161012357806349bd5a5e146102d05780634ab4a935146102ee5780634ada218b1461031e5780634f7041a51461033c5761018c565b80632f4e099814610278578063313ce56714610294578063333e6f06146102b25761018c565b806306fdde0314610190578063095ea7b3146101ae57806312ac5de8146101de57806318160ddd1461020e57806323b872dd1461022c5780632e16a69e1461025c575b5f80fd5b610198610510565b6040516101a591906116dc565b60405180910390f35b6101c860048036038101906101c3919061178d565b6105a0565b6040516101d591906117e5565b60405180910390f35b6101f860048036038101906101f391906117fe565b6105c2565b60405161020591906117e5565b60405180910390f35b6102166105df565b6040516102239190611838565b60405180910390f35b61024660048036038101906102419190611851565b6105e8565b60405161025391906117e5565b60405180910390f35b610276600480360381019061027191906117fe565b610616565b005b610292600480360381019061028d91906117fe565b610676565b005b61029c61071f565b6040516102a991906118bc565b60405180910390f35b6102ba610727565b6040516102c79190611838565b60405180910390f35b6102d8610730565b6040516102e591906118e4565b60405180910390f35b610308600480360381019061030391906117fe565b610755565b60405161031591906117e5565b60405180910390f35b6103266107a8565b60405161033391906117e5565b60405180910390f35b6103446107be565b6040516103519190611838565b60405180910390f35b6103626107c7565b60405161036f9190611838565b60405180910390f35b610392600480360381019061038d91906117fe565b6107d0565b60405161039f9190611838565b60405180910390f35b6103b0610816565b005b6103ba610829565b6040516103c791906118e4565b60405180910390f35b6103d8610850565b005b6103e2610875565b6040516103ef91906116dc565b60405180910390f35b610412600480360381019061040d919061178d565b610905565b60405161041f91906117e5565b60405180910390f35b610442600480360381019061043d91906117fe565b610927565b60405161044f91906117e5565b60405180910390f35b610460610944565b60405161046d91906118e4565b60405180910390f35b61047e610969565b60405161048b9190611838565b60405180910390f35b6104ae60048036038101906104a991906118fd565b610972565b6040516104bb9190611838565b60405180910390f35b6104de60048036038101906104d991906117fe565b6109f4565b6040516104eb91906117e5565b60405180910390f35b61050e600480360381019061050991906117fe565b610a46565b005b60606004805461051f90611968565b80601f016020809104026020016040519081016040528092919081815260200182805461054b90611968565b80156105965780601f1061056d57610100808354040283529160200191610596565b820191905f5260205f20905b81548152906001019060200180831161057957829003601f168201915b5050505050905090565b5f806105aa610aca565b90506105b7818585610ad1565b600191505092915050565b6012602052805f5260405f205f915054906101000a900460ff1681565b5f600354905090565b5f806105f2610aca565b90506105ff858285610ae3565b61060a858585610b75565b60019150509392505050565b61061e610c65565b600160115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b61067e610c65565b60125f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161560125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f6012905090565b5f600d54905090565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60125f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16159050919050565b5f600a60149054906101000a900460ff16905090565b5f600b54905090565b5f600e54905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61081e610c65565b6108275f610cec565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610858610c65565b6001600a60146101000a81548160ff021916908315150217905550565b60606005805461088490611968565b80601f01602080910402602001604051908101604052809291908181526020018280546108b090611968565b80156108fb5780601f106108d2576101008083540402835291602001916108fb565b820191905f5260205f20905b8154815290600101906020018083116108de57829003601f168201915b5050505050905090565b5f8061090f610aca565b905061091c818585610b75565b600191505092915050565b6011602052805f5260405f205f915054906101000a900460ff1681565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600c54905090565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f60115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b610a4e610c65565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610abe575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610ab591906118e4565b60405180910390fd5b610ac781610cec565b50565b5f33905090565b610ade8383836001610dad565b505050565b5f610aee8484610972565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b6f5781811015610b60578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610b5793929190611998565b60405180910390fd5b610b6e84848484035f610dad565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610be5575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610bdc91906118e4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c55575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610c4c91906118e4565b60405180910390fd5b610c60838383610f7c565b505050565b610c6d610aca565b73ffffffffffffffffffffffffffffffffffffffff16610c8b610829565b73ffffffffffffffffffffffffffffffffffffffff1614610cea57610cae610aca565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610ce191906118e4565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e1d575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610e1491906118e4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e8d575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610e8491906118e4565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610f76578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610f6d9190611838565b60405180910390a35b50505050565b60115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90611a17565b60405180910390fd5b611011838383611436565b611019610829565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806110845750611055610829565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611431575f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015611132575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156111f357600a60149054906101000a900460ff16611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d90611a7f565b60405180910390fd5b612710600b54836111979190611aca565b6111a19190611b38565b9050600f5481836111b29190611b68565b106111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e990611be5565b60405180910390fd5b5b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561129c575060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561135e57600a60149054906101000a900460ff166112f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e790611a7f565b60405180910390fd5b612710600c54836113019190611aca565b61130b9190611b38565b9050600e54818361131c9190611b68565b111561135d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135490611c4d565b60405180910390fd5b5b5f811115611393576113928360095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611436565b5b60125f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661142f57600d546113ed846107d0565b111561142e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142590611cdb565b60405180910390fd5b5b505b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611486578060035f82825461147a9190611cf9565b92505081905550611556565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611510578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161150793929190611998565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361159d578060035f82825403925050819055506115e8565b8060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116459190611838565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561168957808201518184015260208101905061166e565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6116ae82611652565b6116b8818561165c565b93506116c881856020860161166c565b6116d181611694565b840191505092915050565b5f6020820190508181035f8301526116f481846116a4565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61172982611700565b9050919050565b6117398161171f565b8114611743575f80fd5b50565b5f8135905061175481611730565b92915050565b5f819050919050565b61176c8161175a565b8114611776575f80fd5b50565b5f8135905061178781611763565b92915050565b5f80604083850312156117a3576117a26116fc565b5b5f6117b085828601611746565b92505060206117c185828601611779565b9150509250929050565b5f8115159050919050565b6117df816117cb565b82525050565b5f6020820190506117f85f8301846117d6565b92915050565b5f60208284031215611813576118126116fc565b5b5f61182084828501611746565b91505092915050565b6118328161175a565b82525050565b5f60208201905061184b5f830184611829565b92915050565b5f805f60608486031215611868576118676116fc565b5b5f61187586828701611746565b935050602061188686828701611746565b925050604061189786828701611779565b9150509250925092565b5f60ff82169050919050565b6118b6816118a1565b82525050565b5f6020820190506118cf5f8301846118ad565b92915050565b6118de8161171f565b82525050565b5f6020820190506118f75f8301846118d5565b92915050565b5f8060408385031215611913576119126116fc565b5b5f61192085828601611746565b925050602061193185828601611746565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061197f57607f821691505b6020821081036119925761199161193b565b5b50919050565b5f6060820190506119ab5f8301866118d5565b6119b86020830185611829565b6119c56040830184611829565b949350505050565b7f626c61636b6c69737465642100000000000000000000000000000000000000005f82015250565b5f611a01600c8361165c565b9150611a0c826119cd565b602082019050919050565b5f6020820190508181035f830152611a2e816119f5565b9050919050565b7f74726164696e6720686173206e6f7420737461727465642100000000000000005f82015250565b5f611a6960188361165c565b9150611a7482611a35565b602082019050919050565b5f6020820190508181035f830152611a9681611a5d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611ad48261175a565b9150611adf8361175a565b9250828202611aed8161175a565b91508282048414831517611b0457611b03611a9d565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611b428261175a565b9150611b4d8361175a565b925082611b5d57611b5c611b0b565b5b828204905092915050565b5f611b728261175a565b9150611b7d8361175a565b9250828203905081811115611b9557611b94611a9d565b5b92915050565b7f65786365656473206d61782062757920616d6f756e74210000000000000000005f82015250565b5f611bcf60178361165c565b9150611bda82611b9b565b602082019050919050565b5f6020820190508181035f830152611bfc81611bc3565b9050919050565b7f65786365656473206d61782073656c6c20616d6f756e742100000000000000005f82015250565b5f611c3760188361165c565b9150611c4282611c03565b602082019050919050565b5f6020820190508181035f830152611c6481611c2b565b9050919050565b7f63616e6e6f74206f776e206d6f7265207468616e206d6178486f6c64696e67415f8201527f6d6f756e74210000000000000000000000000000000000000000000000000000602082015250565b5f611cc560268361165c565b9150611cd082611c6b565b604082019050919050565b5f6020820190508181035f830152611cf281611cb9565b9050919050565b5f611d038261175a565b9150611d0e8361175a565b9250828201905080821115611d2657611d25611a9d565b5b9291505056fea2646970667358221220de54e6c4457ad76c6ee40f8809e717045608eb4018037f2572c57939d03f005e64736f6c63430008180033

Deployed Bytecode Sourcemap

22271:4738:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12820:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15113:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23337:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13922:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15881:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24460:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24627:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13773:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26465:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22703:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26892:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26667:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26291:78;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26565:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14084:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8214:103;;;:::i;:::-;;7539:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24305:90;;;:::i;:::-;;13030:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14407:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23245:43;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22586:72;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26377:80;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14652:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26768:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8472:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12820:91;12865:13;12898:5;12891:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12820:91;:::o;15113:190::-;15186:4;15203:13;15219:12;:10;:12::i;:::-;15203:28;;15242:31;15251:5;15258:7;15267:5;15242:8;:31::i;:::-;15291:4;15284:11;;;15113:190;;;;:::o;23337:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;13922:99::-;13974:7;14001:12;;13994:19;;13922:99;:::o;15881:249::-;15968:4;15985:15;16003:12;:10;:12::i;:::-;15985:30;;16026:37;16042:4;16048:7;16057:5;16026:15;:37::i;:::-;16074:26;16084:4;16090:2;16094:5;16074:9;:26::i;:::-;16118:4;16111:11;;;15881:249;;;;;:::o;24460:109::-;7425:13;:11;:13::i;:::-;24557:4:::1;24533:11;:21;24545:8;24533:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;24460:109:::0;:::o;24627:123::-;7425:13;:11;:13::i;:::-;24722:10:::1;:20;24733:8;24722:20;;;;;;;;;;;;;;;;;;;;;;;;;24721:21;24698:10;:20;24709:8;24698:20;;;;;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;;;24627:123:::0;:::o;13773:84::-;13822:5;13847:2;13840:9;;13773:84;:::o;26465:92::-;26509:4;26533:16;;26526:23;;26465:92;:::o;22703:28::-;;;;;;;;;;;;;:::o;26892:112::-;26951:4;26976:10;:20;26987:8;26976:20;;;;;;;;;;;;;;;;;;;;;;;;;26975:21;26968:28;;26892:112;;;:::o;26667:93::-;26715:4;26739:13;;;;;;;;;;;26732:20;;26667:93;:::o;26291:78::-;26331:4;26355:6;;26348:13;;26291:78;:::o;26565:94::-;26612:4;26636:15;;26629:22;;26565:94;:::o;14084:118::-;14149:7;14176:9;:18;14186:7;14176:18;;;;;;;;;;;;;;;;14169:25;;14084:118;;;:::o;8214:103::-;7425:13;:11;:13::i;:::-;8279:30:::1;8306:1;8279:18;:30::i;:::-;8214:103::o:0;7539:87::-;7585:7;7612:6;;;;;;;;;;;7605:13;;7539:87;:::o;24305:90::-;7425:13;:11;:13::i;:::-;24383:4:::1;24367:13;;:20;;;;;;;;;;;;;;;;;;24305:90::o:0;13030:95::-;13077:13;13110:7;13103:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13030:95;:::o;14407:182::-;14476:4;14493:13;14509:12;:10;:12::i;:::-;14493:28;;14532:27;14542:5;14549:2;14553:5;14532:9;:27::i;:::-;14577:4;14570:11;;;14407:182;;;;:::o;23245:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;22586:72::-;;;;;;;;;;;;;:::o;26377:80::-;26418:4;26442:7;;26435:14;;26377:80;:::o;14652:142::-;14732:7;14759:11;:18;14771:5;14759:18;;;;;;;;;;;;;;;:27;14778:7;14759:27;;;;;;;;;;;;;;;;14752:34;;14652:142;;;;:::o;26768:116::-;26831:4;26855:11;:21;26867:8;26855:21;;;;;;;;;;;;;;;;;;;;;;;;;26848:28;;26768:116;;;:::o;8472:220::-;7425:13;:11;:13::i;:::-;8577:1:::1;8557:22;;:8;:22;;::::0;8553:93:::1;;8631:1;8603:31;;;;;;;;;;;:::i;:::-;;;;;;;;8553:93;8656:28;8675:8;8656:18;:28::i;:::-;8472:220:::0;:::o;6207:98::-;6260:7;6287:10;6280:17;;6207:98;:::o;19940:130::-;20025:37;20034:5;20041:7;20050:5;20057:4;20025:8;:37::i;:::-;19940:130;;;:::o;21656:487::-;21756:24;21783:25;21793:5;21800:7;21783:9;:25::i;:::-;21756:52;;21843:17;21823:16;:37;21819:317;;21900:5;21881:16;:24;21877:132;;;21960:7;21969:16;21987:5;21933:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;21877:132;22052:57;22061:5;22068:7;22096:5;22077:16;:24;22103:5;22052:8;:57::i;:::-;21819:317;21745:398;21656:487;;;:::o;16515:308::-;16615:1;16599:18;;:4;:18;;;16595:88;;16668:1;16641:30;;;;;;;;;;;:::i;:::-;;;;;;;;16595:88;16711:1;16697:16;;:2;:16;;;16693:88;;16766:1;16737:32;;;;;;;;;;;:::i;:::-;;;;;;;;16693:88;16791:24;16799:4;16805:2;16809:5;16791:7;:24::i;:::-;16515:308;;;:::o;7704:166::-;7775:12;:10;:12::i;:::-;7764:23;;:7;:5;:7::i;:::-;:23;;;7760:103;;7838:12;:10;:12::i;:::-;7811:40;;;;;;;;;;;:::i;:::-;;;;;;;;7760:103;7704:166::o;8852:191::-;8926:16;8945:6;;;;;;;;;;;8926:25;;8971:8;8962:6;;:17;;;;;;;;;;;;;;;;;;9026:8;8995:40;;9016:8;8995:40;;;;;;;;;;;;8915:128;8852:191;:::o;20921:443::-;21051:1;21034:19;;:5;:19;;;21030:91;;21106:1;21077:32;;;;;;;;;;;:::i;:::-;;;;;;;;21030:91;21154:1;21135:21;;:7;:21;;;21131:92;;21208:1;21180:31;;;;;;;;;;;:::i;:::-;;;;;;;;21131:92;21263:5;21233:11;:18;21245:5;21233:18;;;;;;;;;;;;;;;:27;21252:7;21233:27;;;;;;;;;;;;;;;:35;;;;21283:9;21279:78;;;21330:7;21314:31;;21323:5;21314:31;;;21339:5;21314:31;;;;;;:::i;:::-;;;;;;;;21279:78;20921:443;;;;:::o;24830:1101::-;24968:11;:17;24980:4;24968:17;;;;;;;;;;;;;;;;;;;;;;;;;24967:18;24959:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;25015:30;25029:4;25035:2;25039:5;25015:13;:30::i;:::-;25067:7;:5;:7::i;:::-;25059:15;;:4;:15;;;:31;;;;25083:7;:5;:7::i;:::-;25077:13;;:2;:13;;;25059:31;25105:7;25056:56;25124:14;25167:13;;;;;;;;;;;25159:21;;:4;:21;;;:46;;;;;25190:15;;;;;;;;;;;25184:21;;:2;:21;;;;25159:46;25155:255;;;25230:13;;;;;;;;;;;25222:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;25313:5;25304:6;;25296:5;:14;;;;:::i;:::-;:22;;;;:::i;:::-;25287:31;;25356:14;;25347:6;25341:5;:12;;;;:::i;:::-;:29;25333:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;25155:255;25440:13;;;;;;;;;;;25434:19;;:2;:19;;;:46;;;;;25465:15;;;;;;;;;;;25457:23;;:4;:23;;;;25434:46;25430:259;;;25505:13;;;;;;;;;;;25497:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;25589:5;25579:7;;25571:5;:15;;;;:::i;:::-;:23;;;;:::i;:::-;25562:32;;25633:15;;25623:6;25617:5;:12;;;;:::i;:::-;:31;;25609:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25430:259;25714:1;25705:6;:10;25701:68;;;25730:39;25744:2;25748:12;;;;;;;;;;;25762:6;25730:13;:39::i;:::-;25701:68;25794:10;:14;25805:2;25794:14;;;;;;;;;;;;;;;;;;;;;;;;;25790:117;;25848:16;;25831:13;25841:2;25831:9;:13::i;:::-;:33;;25823:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;25790:117;24948:983;24830:1101;;;;:::o;17147:1135::-;17253:1;17237:18;;:4;:18;;;17233:552;;17391:5;17375:12;;:21;;;;;;;:::i;:::-;;;;;;;;17233:552;;;17429:19;17451:9;:15;17461:4;17451:15;;;;;;;;;;;;;;;;17429:37;;17499:5;17485:11;:19;17481:117;;;17557:4;17563:11;17576:5;17532:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;17481:117;17753:5;17739:11;:19;17721:9;:15;17731:4;17721:15;;;;;;;;;;;;;;;:37;;;;17414:371;17233:552;17815:1;17801:16;;:2;:16;;;17797:435;;17983:5;17967:12;;:21;;;;;;;;;;;17797:435;;;18200:5;18183:9;:13;18193:2;18183:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;17797:435;18264:2;18249:25;;18258:4;18249:25;;;18268:5;18249:25;;;;;;:::i;:::-;;;;;;;;17147: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:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:442::-;6681:4;6719:2;6708:9;6704:18;6696:26;;6732:71;6800:1;6789:9;6785:17;6776:6;6732:71;:::i;:::-;6813:72;6881:2;6870:9;6866:18;6857:6;6813:72;:::i;:::-;6895;6963:2;6952:9;6948:18;6939:6;6895:72;:::i;:::-;6532:442;;;;;;:::o;6980:162::-;7120:14;7116:1;7108:6;7104:14;7097:38;6980:162;:::o;7148:366::-;7290:3;7311:67;7375:2;7370:3;7311:67;:::i;:::-;7304:74;;7387:93;7476:3;7387:93;:::i;:::-;7505:2;7500:3;7496:12;7489:19;;7148:366;;;:::o;7520:419::-;7686:4;7724:2;7713:9;7709:18;7701:26;;7773:9;7767:4;7763:20;7759:1;7748:9;7744:17;7737:47;7801:131;7927:4;7801:131;:::i;:::-;7793:139;;7520:419;;;:::o;7945:174::-;8085:26;8081:1;8073:6;8069:14;8062:50;7945:174;:::o;8125:366::-;8267:3;8288:67;8352:2;8347:3;8288:67;:::i;:::-;8281:74;;8364:93;8453:3;8364:93;:::i;:::-;8482:2;8477:3;8473:12;8466:19;;8125:366;;;:::o;8497:419::-;8663:4;8701:2;8690:9;8686:18;8678:26;;8750:9;8744:4;8740:20;8736:1;8725:9;8721:17;8714:47;8778:131;8904:4;8778:131;:::i;:::-;8770:139;;8497:419;;;:::o;8922:180::-;8970:77;8967:1;8960:88;9067:4;9064:1;9057:15;9091:4;9088:1;9081:15;9108:410;9148:7;9171:20;9189:1;9171:20;:::i;:::-;9166:25;;9205:20;9223:1;9205:20;:::i;:::-;9200:25;;9260:1;9257;9253:9;9282:30;9300:11;9282:30;:::i;:::-;9271:41;;9461:1;9452:7;9448:15;9445:1;9442:22;9422:1;9415:9;9395:83;9372:139;;9491:18;;:::i;:::-;9372:139;9156:362;9108:410;;;;:::o;9524:180::-;9572:77;9569:1;9562:88;9669:4;9666:1;9659:15;9693:4;9690:1;9683:15;9710:185;9750:1;9767:20;9785:1;9767:20;:::i;:::-;9762:25;;9801:20;9819:1;9801:20;:::i;:::-;9796:25;;9840:1;9830:35;;9845:18;;:::i;:::-;9830:35;9887:1;9884;9880:9;9875:14;;9710:185;;;;:::o;9901:194::-;9941:4;9961:20;9979:1;9961:20;:::i;:::-;9956:25;;9995:20;10013:1;9995:20;:::i;:::-;9990:25;;10039:1;10036;10032:9;10024:17;;10063:1;10057:4;10054:11;10051:37;;;10068:18;;:::i;:::-;10051:37;9901:194;;;;:::o;10101:173::-;10241:25;10237:1;10229:6;10225:14;10218:49;10101:173;:::o;10280:366::-;10422:3;10443:67;10507:2;10502:3;10443:67;:::i;:::-;10436:74;;10519:93;10608:3;10519:93;:::i;:::-;10637:2;10632:3;10628:12;10621:19;;10280:366;;;:::o;10652:419::-;10818:4;10856:2;10845:9;10841:18;10833:26;;10905:9;10899:4;10895:20;10891:1;10880:9;10876:17;10869:47;10933:131;11059:4;10933:131;:::i;:::-;10925:139;;10652:419;;;:::o;11077:174::-;11217:26;11213:1;11205:6;11201:14;11194:50;11077:174;:::o;11257:366::-;11399:3;11420:67;11484:2;11479:3;11420:67;:::i;:::-;11413:74;;11496:93;11585:3;11496:93;:::i;:::-;11614:2;11609:3;11605:12;11598:19;;11257:366;;;:::o;11629:419::-;11795:4;11833:2;11822:9;11818:18;11810:26;;11882:9;11876:4;11872:20;11868:1;11857:9;11853:17;11846:47;11910:131;12036:4;11910:131;:::i;:::-;11902:139;;11629:419;;;:::o;12054:225::-;12194:34;12190:1;12182:6;12178:14;12171:58;12263:8;12258:2;12250:6;12246:15;12239:33;12054:225;:::o;12285:366::-;12427:3;12448:67;12512:2;12507:3;12448:67;:::i;:::-;12441:74;;12524:93;12613:3;12524:93;:::i;:::-;12642:2;12637:3;12633:12;12626:19;;12285:366;;;:::o;12657:419::-;12823:4;12861:2;12850:9;12846:18;12838:26;;12910:9;12904:4;12900:20;12896:1;12885:9;12881:17;12874:47;12938:131;13064:4;12938:131;:::i;:::-;12930:139;;12657:419;;;:::o;13082:191::-;13122:3;13141:20;13159:1;13141:20;:::i;:::-;13136:25;;13175:20;13193:1;13175:20;:::i;:::-;13170:25;;13218:1;13215;13211:9;13204:16;;13239:3;13236:1;13233:10;13230:36;;;13246:18;;:::i;:::-;13230:36;13082:191;;;;:::o

Swarm Source

ipfs://de54e6c4457ad76c6ee40f8809e717045608eb4018037f2572c57939d03f005e

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

Crypto 2 Debit is an Ethereum project that allows users to turn their crypto into debit cards with Ethereum, Solana, and Polygon with no KYC and KYC solutions.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.