POL Price: $0.125395 (-3.52%)
 

Overview

POL Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 POL

POL Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

Multichain Info

1 address found via
Transaction Hash
Block
From
To
Approve820755722026-01-24 16:11:5613 mins ago1769271116IN
0xF125D03a...22d27300E
0 POL0.02897002620.03780776
Transfer820748822026-01-24 15:48:5636 mins ago1769269736IN
0xF125D03a...22d27300E
0 POL0.02437054488.08449889
Transfer820748322026-01-24 15:47:1638 mins ago1769269636IN
0xF125D03a...22d27300E
0 POL0.02424581485.58642235
Approve820748172026-01-24 15:46:4638 mins ago1769269606IN
0xF125D03a...22d27300E
0 POL0.02252182482.02870914
Transfer820747122026-01-24 15:43:1642 mins ago1769269396IN
0xF125D03a...22d27300E
0 POL0.02497128553.74847325
Transfer820746232026-01-24 15:40:1845 mins ago1769269218IN
0xF125D03a...22d27300E
0 POL0.02111554468.24572088
Transfer820745342026-01-24 15:37:2048 mins ago1769269040IN
0xF125D03a...22d27300E
0 POL0.03182497705.73179779
Transfer820741912026-01-24 15:25:541 hr ago1769268354IN
0xF125D03a...22d27300E
0 POL0.02337077468.2865847
Approve820736872026-01-24 15:09:061 hr ago1769267346IN
0xF125D03a...22d27300E
0 POL0.02960996634.54914889
Transfer820732152026-01-24 14:53:221 hr ago1769266402IN
0xF125D03a...22d27300E
0 POL0.02178646436.54118898
Approve820731932026-01-24 14:52:381 hr ago1769266358IN
0xF125D03a...22d27300E
0 POL0.01984157750.46608242
Approve820731832026-01-24 14:52:181 hr ago1769266338IN
0xF125D03a...22d27300E
0 POL0.01872925766.36752237
Approve820731782026-01-24 14:52:081 hr ago1769266328IN
0xF125D03a...22d27300E
0 POL0.01992132426.37080531
Approve820731652026-01-24 14:51:421 hr ago1769266302IN
0xF125D03a...22d27300E
0 POL0.02100951794.64098207
Approve820731502026-01-24 14:51:121 hr ago1769266272IN
0xF125D03a...22d27300E
0 POL0.01120333459.54841417
Transfer820731452026-01-24 14:51:021 hr ago1769266262IN
0xF125D03a...22d27300E
0 POL0.02070084458.68358
Approve820731432026-01-24 14:50:581 hr ago1769266258IN
0xF125D03a...22d27300E
0 POL0.01127771461.46389277
Approve820731402026-01-24 14:50:521 hr ago1769266252IN
0xF125D03a...22d27300E
0 POL0.01238048468.26586283
Approve820731352026-01-24 14:50:421 hr ago1769266242IN
0xF125D03a...22d27300E
0 POL0.01149732471.14373415
Approve820731322026-01-24 14:50:361 hr ago1769266236IN
0xF125D03a...22d27300E
0 POL0.01251285473.272695
Approve820731212026-01-24 14:50:141 hr ago1769266214IN
0xF125D03a...22d27300E
0 POL0.02219015475.54059475
Approve820731072026-01-24 14:49:461 hr ago1769266186IN
0xF125D03a...22d27300E
0 POL0.01197381489.94686936
Approve820731002026-01-24 14:49:321 hr ago1769266172IN
0xF125D03a...22d27300E
0 POL0.01199895490.97575787
Approve820730922026-01-24 14:49:161 hr ago1769266156IN
0xF125D03a...22d27300E
0 POL0.01201267492.74675342
Approve820730602026-01-24 14:48:121 hr ago1769266092IN
0xF125D03a...22d27300E
0 POL0.01323635500.63739201
View all transactions

Parent Transaction Hash Block From To
View All Internal Transactions
Cross-Chain Transactions
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xAf25d115...7f3dB799d
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
T3Token

Compiler Version
v0.8.30+commit.73712a01

Optimization Enabled:
Yes with 200 runs

Other Settings:
cancun EvmVersion, MIT license

Contract Source Code (Solidity Standard Json-Input format)

// SPDX-License-Identifier: MIT
pragma solidity 0.8.30;
import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol";
import "@openzeppelin/[email protected]/access/Ownable.sol";

contract T3Token is ERC20, Ownable {
    mapping(address => bool) public isExcludeFee;
    mapping(address => bool) public isBlackList;
    mapping(address => bool) public isPair;
    ITokenDistributor immutable public tokenDistributor;
    
    uint256 public sellFee;
    uint256 public buyFee;

    modifier swapping {
        inSwap=true;
        _;
        inSwap=false;
    }
    bool inSwap;

    event SetExcludeFee(address user,bool flag);
    event SetBL(address user,bool flag);
    event SetFees(uint256 buyFee,uint256 sellFee);
    event SetPair(address pair,bool flag);
    constructor(address _tokenDistributor,address foundation) ERC20("T3", "T3") Ownable(msg.sender) {

        require(_tokenDistributor!=address(0),"T3Token: err tokenDistributor");
        tokenDistributor = ITokenDistributor(_tokenDistributor);
        buyFee=10001;
        sellFee = 0;
        emit SetFees(10001,0);
       
        isExcludeFee[msg.sender] = true;
        isExcludeFee[_tokenDistributor] = true;
        isExcludeFee[foundation] = true;
        isExcludeFee[address(0xDead)] = true;
        emit SetExcludeFee(msg.sender, true);
        emit SetExcludeFee(_tokenDistributor, true);
        emit SetExcludeFee(foundation, true);
        emit SetExcludeFee(address(0xDead), true);

        _mint(foundation, 33000000e18);
        
        _approve(address(this), address(tokenDistributor), type(uint256).max);
    }
    
    function _update(
        address from,
        address to,
        uint256 amount
    ) internal override {

        if (inSwap||isExcludeFee[from] || isExcludeFee[to]) {
            return super._update(from, to, amount);
        }
        
        require(!isBlackList[from] && !isBlackList[to], "T3Token:is blacklist");

        if (isPair[from]){
            uint256 fees = amount*buyFee/10000;
            if(fees>0){
                super._update(from, address(this), fees);
            }
            super._update(from, to, amount-fees);
            return;
        }

        if (isPair[to]) {
            uint256 fees = amount*sellFee/10000;
            super._update(from, address(this), fees);
            process();
            super._update(from, to, amount-fees);
            return;
        }
        
       
        super._update(from, to, amount);
    }

    function process() internal swapping {
        uint256 amount=super.balanceOf(address(this));
        if(amount>0){
            try tokenDistributor.fund(amount) {} catch {
                _approve(
                    address(this),
                    address(tokenDistributor),
                    type(uint256).max
                );
            }
        }
    }

    function multisetBlackList(address[] memory users, bool flag) external onlyOwner {
        for (uint256 i; i < users.length; i++) {
            isBlackList[users[i]] = flag;
            emit SetBL(users[i],flag);
        }
    }


    function multiSetExcludeFee(address[] memory users, bool isExclude)
        external
        onlyOwner
    {
        for (uint256 i; i < users.length; i++) {
            isExcludeFee[users[i]] = isExclude;
            emit SetExcludeFee(users[i],isExclude);
        }
    }

    function setFees(uint256 _buyFee,uint256 _sellFee) external onlyOwner{
        sellFee=_sellFee;
        buyFee=_buyFee;
        emit SetFees(_buyFee,_sellFee);
    }

    function setPair(address _pair,bool flag) external onlyOwner{
        isPair[_pair]=flag;
        emit SetPair(_pair,flag); 
    }

}


interface ITokenDistributor {
    function fund(uint256 amount) external;
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. This can
 * later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.3.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC-20
 * applications.
 */
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}.
     *
     * Both 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}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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:
     *
     * ```solidity
     * 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);
            }
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

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

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "remappings": [],
  "evmVersion": "cancun"
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_tokenDistributor","type":"address"},{"internalType":"address","name":"foundation","type":"address"}],"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":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"bool","name":"flag","type":"bool"}],"name":"SetBL","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"bool","name":"flag","type":"bool"}],"name":"SetExcludeFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellFee","type":"uint256"}],"name":"SetFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"bool","name":"flag","type":"bool"}],"name":"SetPair","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":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlackList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludeFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"bool","name":"isExclude","type":"bool"}],"name":"multiSetExcludeFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"multisetBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"},{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenDistributor","outputs":[{"internalType":"contract ITokenDistributor","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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"}]

0x60a060405234801561000f575f5ffd5b506040516119e13803806119e183398101604081905261002e916107a7565b604080518082018252600280825261543360f01b602080840182905284518086019095529184529083015233916003610067838261086f565b506004610074828261086f565b5050506001600160a01b0381166100a557604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b6100ae816102b1565b506001600160a01b0382166101055760405162461bcd60e51b815260206004820152601d60248201527f5433546f6b656e3a2065727220746f6b656e4469737472696275746f72000000604482015260640161009c565b6001600160a01b038216608052612711600a8190555f60098190556040517f3be6e637f54f081a2dd12982cfd58481304fc98b604b18fa8ed4aa4e4a9d15329261015792908252602082015260400190565b60405180910390a1335f8181526006602090815260408083208054600160ff1991821681179092556001600160a01b038881168652838620805483168417905587168552828520805482168317905561dead9094527f1aecba4ebe7a4e0673e4891b2b092b2228e4322380b579fb494fad3da8586e22805490941681179093558051938452908301919091525f5160206119c15f395f51905f52910160405180910390a1604080516001600160a01b0384168152600160208201525f5160206119c15f395f51905f52910160405180910390a1604080516001600160a01b0383168152600160208201525f5160206119c15f395f51905f52910160405180910390a16040805161dead8152600160208201525f5160206119c15f395f51905f52910160405180910390a1610296816a1b4c0595a86aa1c1000000610302565b6102aa306080515f1961033a60201b60201c565b505061099f565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03821661032b5760405163ec442f0560e01b81525f600482015260240161009c565b6103365f838361034c565b5050565b61034783838360016104f7565b505050565b600b5460ff168061037457506001600160a01b0383165f9081526006602052604090205460ff165b8061039657506001600160a01b0382165f9081526006602052604090205460ff165b156103a6576103478383836105c9565b6001600160a01b0383165f9081526007602052604090205460ff161580156103e657506001600160a01b0382165f9081526007602052604090205460ff16155b6104325760405162461bcd60e51b815260206004820152601460248201527f5433546f6b656e3a697320626c61636b6c697374000000000000000000000000604482015260640161009c565b6001600160a01b0383165f9081526008602052604090205460ff161561049b575f612710600a5483610464919061093d565b61046e919061095a565b90508015610481576104818430836105c9565b61049584846104908486610979565b6105c9565b50505050565b6001600160a01b0382165f9081526008602052604090205460ff16156104ec575f612710600954836104cd919061093d565b6104d7919061095a565b90506104e48430836105c9565b6104816106ef565b6103478383836105c9565b6001600160a01b0384166105205760405163e602df0560e01b81525f600482015260240161009c565b6001600160a01b03831661054957604051634a1406b160e11b81525f600482015260240161009c565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561049557826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516105bb91815260200190565b60405180910390a350505050565b6001600160a01b0383166105f3578060025f8282546105e8919061098c565b909155506106639050565b6001600160a01b0383165f90815260208190526040902054818110156106455760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161009c565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661067f5760028054829003905561069d565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516106e291815260200190565b60405180910390a3505050565b600b805460ff19166001179055305f908152602081905260408120549050801561077f5760805160405163ca1d209d60e01b8152600481018390526001600160a01b039091169063ca1d209d906024015f604051808303815f87803b158015610756575f5ffd5b505af1925050508015610767575060015b61077f5761077f306080515f1961033a60201b60201c565b50600b805460ff19169055565b80516001600160a01b03811681146107a2575f5ffd5b919050565b5f5f604083850312156107b8575f5ffd5b6107c18361078c565b91506107cf6020840161078c565b90509250929050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061080057607f821691505b60208210810361081e57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561034757805f5260205f20601f840160051c810160208510156108495750805b601f840160051c820191505b81811015610868575f8155600101610855565b5050505050565b81516001600160401b03811115610888576108886107d8565b61089c8161089684546107ec565b84610824565b6020601f8211600181146108ce575f83156108b75750848201515b5f19600385901b1c1916600184901b178455610868565b5f84815260208120601f198516915b828110156108fd57878501518255602094850194600190920191016108dd565b508482101561091a57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761095457610954610929565b92915050565b5f8261097457634e487b7160e01b5f52601260045260245ffd5b500490565b8181038181111561095457610954610929565b8082018082111561095457610954610929565b608051610ffc6109c55f395f81816101c101528181610c310152610c950152610ffc5ff3fe608060405234801561000f575f5ffd5b506004361061013d575f3560e01c806370a08231116100b4578063a9059cbb11610079578063a9059cbb1461029e578063b36d6919146102b1578063dcace9ab146102d3578063dd62ed3e146102f5578063e5e31b131461032d578063f2fde38b1461034f575f5ffd5b806370a0823114610242578063715018a61461026a57806386a22eff146102725780638da5cb5b1461028557806395d89b4114610296575f5ffd5b806318a6bc321161010557806318a6bc32146101bc5780631953d524146101fb57806323b872dd1461020e5780632b14ca5614610221578063313ce5671461022a5780634706240214610239575f5ffd5b806306fdde0314610141578063070ba1901461015f578063095ea7b3146101745780630b78f9c01461019757806318160ddd146101aa575b5f5ffd5b610149610362565b6040516101569190610cc8565b60405180910390f35b61017261016d366004610d3b565b6103f2565b005b610187610182366004610e18565b6104cd565b6040519015158152602001610156565b6101726101a5366004610e40565b6104e6565b6002545b604051908152602001610156565b6101e37f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610156565b610172610209366004610d3b565b610536565b61018761021c366004610e60565b61060c565b6101ae60095481565b60405160128152602001610156565b6101ae600a5481565b6101ae610250366004610e9a565b6001600160a01b03165f9081526020819052604090205490565b61017261062f565b610172610280366004610eba565b610642565b6005546001600160a01b03166101e3565b6101496106a5565b6101876102ac366004610e18565b6106b4565b6101876102bf366004610e9a565b60076020525f908152604090205460ff1681565b6101876102e1366004610e9a565b60066020525f908152604090205460ff1681565b6101ae610303366004610ee2565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61018761033b366004610e9a565b60086020525f908152604090205460ff1681565b61017261035d366004610e9a565b6106c1565b60606003805461037190610f0a565b80601f016020809104026020016040519081016040528092919081815260200182805461039d90610f0a565b80156103e85780601f106103bf576101008083540402835291602001916103e8565b820191905f5260205f20905b8154815290600101906020018083116103cb57829003601f168201915b5050505050905090565b6103fa610703565b5f5b82518110156104c8578160065f85848151811061041b5761041b610f42565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f136240256bb96331f17f27359433fb7871e255faa972bf4343aa97902a091f2883828151811061048b5761048b610f42565b6020026020010151836040516104b89291906001600160a01b039290921682521515602082015260400190565b60405180910390a16001016103fc565b505050565b5f336104da818585610730565b60019150505b92915050565b6104ee610703565b6009819055600a82905560408051838152602081018390527f3be6e637f54f081a2dd12982cfd58481304fc98b604b18fa8ed4aa4e4a9d153291015b60405180910390a15050565b61053e610703565b5f5b82518110156104c8578160075f85848151811061055f5761055f610f42565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020015f205f6101000a81548160ff0219169083151502179055507fb162442f24fca622e06f9e4bb36c005d06f23cd1af40024e80e50df0e73404f58382815181106105cf576105cf610f42565b6020026020010151836040516105fc9291906001600160a01b039290921682521515602082015260400190565b60405180910390a1600101610540565b5f3361061985828561073d565b6106248585856107b9565b506001949350505050565b610637610703565b6106405f610816565b565b61064a610703565b6001600160a01b0382165f81815260086020908152604091829020805460ff19168515159081179091558251938452908301527ff40a563af144a84735f7f6c7c3029794b0ac17713e5f048d3fd00ed85aa4ca7a910161052a565b60606004805461037190610f0a565b5f336104da8185856107b9565b6106c9610703565b6001600160a01b0381166106f757604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61070081610816565b50565b6005546001600160a01b031633146106405760405163118cdaa760e01b81523360048201526024016106ee565b6104c88383836001610867565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198110156107b357818110156107a557604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016106ee565b6107b384848484035f610867565b50505050565b6001600160a01b0383166107e257604051634b637e8f60e11b81525f60048201526024016106ee565b6001600160a01b03821661080b5760405163ec442f0560e01b81525f60048201526024016106ee565b6104c8838383610939565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166108905760405163e602df0560e01b81525f60048201526024016106ee565b6001600160a01b0383166108b957604051634a1406b160e11b81525f60048201526024016106ee565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156107b357826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161092b91815260200190565b60405180910390a350505050565b600b5460ff168061096157506001600160a01b0383165f9081526006602052604090205460ff165b8061098357506001600160a01b0382165f9081526006602052604090205460ff165b15610993576104c8838383610ad1565b6001600160a01b0383165f9081526007602052604090205460ff161580156109d357506001600160a01b0382165f9081526007602052604090205460ff16155b610a165760405162461bcd60e51b8152602060048201526014602482015273150cd51bdad95b8e9a5cc8189b1858dadb1a5cdd60621b60448201526064016106ee565b6001600160a01b0383165f9081526008602052604090205460ff1615610a79575f612710600a5483610a489190610f6a565b610a529190610f81565b90508015610a6557610a65843083610ad1565b6107b38484610a748486610fa0565b610ad1565b6001600160a01b0382165f9081526008602052604090205460ff1615610aca575f61271060095483610aab9190610f6a565b610ab59190610f81565b9050610ac2843083610ad1565b610a65610bf7565b6104c88383835b6001600160a01b038316610afb578060025f828254610af09190610fb3565b90915550610b6b9050565b6001600160a01b0383165f9081526020819052604090205481811015610b4d5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016106ee565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610b8757600280548290039055610ba5565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bea91815260200190565b60405180910390a3505050565b600b805460ff19166001179055305f9081526020819052604081205490508015610cbb5760405163ca1d209d60e01b8152600481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063ca1d209d906024015f604051808303815f87803b158015610c7a575f5ffd5b505af1925050508015610c8b575060015b610cbb57610cbb307f00000000000000000000000000000000000000000000000000000000000000005f19610730565b50600b805460ff19169055565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b634e487b7160e01b5f52604160045260245ffd5b80356001600160a01b0381168114610d27575f5ffd5b919050565b80358015158114610d27575f5ffd5b5f5f60408385031215610d4c575f5ffd5b823567ffffffffffffffff811115610d62575f5ffd5b8301601f81018513610d72575f5ffd5b803567ffffffffffffffff811115610d8c57610d8c610cfd565b8060051b604051601f19603f830116810181811067ffffffffffffffff82111715610db957610db9610cfd565b604052918252602081840181019290810188841115610dd6575f5ffd5b6020850194505b83851015610dfc57610dee85610d11565b815260209485019401610ddd565b509450610e0f9250505060208401610d2c565b90509250929050565b5f5f60408385031215610e29575f5ffd5b610e3283610d11565b946020939093013593505050565b5f5f60408385031215610e51575f5ffd5b50508035926020909101359150565b5f5f5f60608486031215610e72575f5ffd5b610e7b84610d11565b9250610e8960208501610d11565b929592945050506040919091013590565b5f60208284031215610eaa575f5ffd5b610eb382610d11565b9392505050565b5f5f60408385031215610ecb575f5ffd5b610ed483610d11565b9150610e0f60208401610d2c565b5f5f60408385031215610ef3575f5ffd5b610efc83610d11565b9150610e0f60208401610d11565b600181811c90821680610f1e57607f821691505b602082108103610f3c57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176104e0576104e0610f56565b5f82610f9b57634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156104e0576104e0610f56565b808201808211156104e0576104e0610f5656fea26469706673582212209170d220f2d83c4613c5d9c989e5897c1e086472b67bfc4415cf22c85809c5ed64736f6c634300081e0033136240256bb96331f17f27359433fb7871e255faa972bf4343aa97902a091f2800000000000000000000000034825d66412dc0b581a2a46f0ac116accd0dfaa0000000000000000000000000fd2c16e1287405fc1dc8c36532358d5babfa48a8

Deployed Bytecode

0x608060405234801561000f575f5ffd5b506004361061013d575f3560e01c806370a08231116100b4578063a9059cbb11610079578063a9059cbb1461029e578063b36d6919146102b1578063dcace9ab146102d3578063dd62ed3e146102f5578063e5e31b131461032d578063f2fde38b1461034f575f5ffd5b806370a0823114610242578063715018a61461026a57806386a22eff146102725780638da5cb5b1461028557806395d89b4114610296575f5ffd5b806318a6bc321161010557806318a6bc32146101bc5780631953d524146101fb57806323b872dd1461020e5780632b14ca5614610221578063313ce5671461022a5780634706240214610239575f5ffd5b806306fdde0314610141578063070ba1901461015f578063095ea7b3146101745780630b78f9c01461019757806318160ddd146101aa575b5f5ffd5b610149610362565b6040516101569190610cc8565b60405180910390f35b61017261016d366004610d3b565b6103f2565b005b610187610182366004610e18565b6104cd565b6040519015158152602001610156565b6101726101a5366004610e40565b6104e6565b6002545b604051908152602001610156565b6101e37f00000000000000000000000034825d66412dc0b581a2a46f0ac116accd0dfaa081565b6040516001600160a01b039091168152602001610156565b610172610209366004610d3b565b610536565b61018761021c366004610e60565b61060c565b6101ae60095481565b60405160128152602001610156565b6101ae600a5481565b6101ae610250366004610e9a565b6001600160a01b03165f9081526020819052604090205490565b61017261062f565b610172610280366004610eba565b610642565b6005546001600160a01b03166101e3565b6101496106a5565b6101876102ac366004610e18565b6106b4565b6101876102bf366004610e9a565b60076020525f908152604090205460ff1681565b6101876102e1366004610e9a565b60066020525f908152604090205460ff1681565b6101ae610303366004610ee2565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61018761033b366004610e9a565b60086020525f908152604090205460ff1681565b61017261035d366004610e9a565b6106c1565b60606003805461037190610f0a565b80601f016020809104026020016040519081016040528092919081815260200182805461039d90610f0a565b80156103e85780601f106103bf576101008083540402835291602001916103e8565b820191905f5260205f20905b8154815290600101906020018083116103cb57829003601f168201915b5050505050905090565b6103fa610703565b5f5b82518110156104c8578160065f85848151811061041b5761041b610f42565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f136240256bb96331f17f27359433fb7871e255faa972bf4343aa97902a091f2883828151811061048b5761048b610f42565b6020026020010151836040516104b89291906001600160a01b039290921682521515602082015260400190565b60405180910390a16001016103fc565b505050565b5f336104da818585610730565b60019150505b92915050565b6104ee610703565b6009819055600a82905560408051838152602081018390527f3be6e637f54f081a2dd12982cfd58481304fc98b604b18fa8ed4aa4e4a9d153291015b60405180910390a15050565b61053e610703565b5f5b82518110156104c8578160075f85848151811061055f5761055f610f42565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020015f205f6101000a81548160ff0219169083151502179055507fb162442f24fca622e06f9e4bb36c005d06f23cd1af40024e80e50df0e73404f58382815181106105cf576105cf610f42565b6020026020010151836040516105fc9291906001600160a01b039290921682521515602082015260400190565b60405180910390a1600101610540565b5f3361061985828561073d565b6106248585856107b9565b506001949350505050565b610637610703565b6106405f610816565b565b61064a610703565b6001600160a01b0382165f81815260086020908152604091829020805460ff19168515159081179091558251938452908301527ff40a563af144a84735f7f6c7c3029794b0ac17713e5f048d3fd00ed85aa4ca7a910161052a565b60606004805461037190610f0a565b5f336104da8185856107b9565b6106c9610703565b6001600160a01b0381166106f757604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61070081610816565b50565b6005546001600160a01b031633146106405760405163118cdaa760e01b81523360048201526024016106ee565b6104c88383836001610867565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198110156107b357818110156107a557604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016106ee565b6107b384848484035f610867565b50505050565b6001600160a01b0383166107e257604051634b637e8f60e11b81525f60048201526024016106ee565b6001600160a01b03821661080b5760405163ec442f0560e01b81525f60048201526024016106ee565b6104c8838383610939565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166108905760405163e602df0560e01b81525f60048201526024016106ee565b6001600160a01b0383166108b957604051634a1406b160e11b81525f60048201526024016106ee565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156107b357826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161092b91815260200190565b60405180910390a350505050565b600b5460ff168061096157506001600160a01b0383165f9081526006602052604090205460ff165b8061098357506001600160a01b0382165f9081526006602052604090205460ff165b15610993576104c8838383610ad1565b6001600160a01b0383165f9081526007602052604090205460ff161580156109d357506001600160a01b0382165f9081526007602052604090205460ff16155b610a165760405162461bcd60e51b8152602060048201526014602482015273150cd51bdad95b8e9a5cc8189b1858dadb1a5cdd60621b60448201526064016106ee565b6001600160a01b0383165f9081526008602052604090205460ff1615610a79575f612710600a5483610a489190610f6a565b610a529190610f81565b90508015610a6557610a65843083610ad1565b6107b38484610a748486610fa0565b610ad1565b6001600160a01b0382165f9081526008602052604090205460ff1615610aca575f61271060095483610aab9190610f6a565b610ab59190610f81565b9050610ac2843083610ad1565b610a65610bf7565b6104c88383835b6001600160a01b038316610afb578060025f828254610af09190610fb3565b90915550610b6b9050565b6001600160a01b0383165f9081526020819052604090205481811015610b4d5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016106ee565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610b8757600280548290039055610ba5565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bea91815260200190565b60405180910390a3505050565b600b805460ff19166001179055305f9081526020819052604081205490508015610cbb5760405163ca1d209d60e01b8152600481018290527f00000000000000000000000034825d66412dc0b581a2a46f0ac116accd0dfaa06001600160a01b03169063ca1d209d906024015f604051808303815f87803b158015610c7a575f5ffd5b505af1925050508015610c8b575060015b610cbb57610cbb307f00000000000000000000000034825d66412dc0b581a2a46f0ac116accd0dfaa05f19610730565b50600b805460ff19169055565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b634e487b7160e01b5f52604160045260245ffd5b80356001600160a01b0381168114610d27575f5ffd5b919050565b80358015158114610d27575f5ffd5b5f5f60408385031215610d4c575f5ffd5b823567ffffffffffffffff811115610d62575f5ffd5b8301601f81018513610d72575f5ffd5b803567ffffffffffffffff811115610d8c57610d8c610cfd565b8060051b604051601f19603f830116810181811067ffffffffffffffff82111715610db957610db9610cfd565b604052918252602081840181019290810188841115610dd6575f5ffd5b6020850194505b83851015610dfc57610dee85610d11565b815260209485019401610ddd565b509450610e0f9250505060208401610d2c565b90509250929050565b5f5f60408385031215610e29575f5ffd5b610e3283610d11565b946020939093013593505050565b5f5f60408385031215610e51575f5ffd5b50508035926020909101359150565b5f5f5f60608486031215610e72575f5ffd5b610e7b84610d11565b9250610e8960208501610d11565b929592945050506040919091013590565b5f60208284031215610eaa575f5ffd5b610eb382610d11565b9392505050565b5f5f60408385031215610ecb575f5ffd5b610ed483610d11565b9150610e0f60208401610d2c565b5f5f60408385031215610ef3575f5ffd5b610efc83610d11565b9150610e0f60208401610d11565b600181811c90821680610f1e57607f821691505b602082108103610f3c57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176104e0576104e0610f56565b5f82610f9b57634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156104e0576104e0610f56565b808201808211156104e0576104e0610f5656fea26469706673582212209170d220f2d83c4613c5d9c989e5897c1e086472b67bfc4415cf22c85809c5ed64736f6c634300081e0033

Deployed Bytecode Sourcemap

183:3617:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1760:89:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3195:281:6;;;;;;:::i;:::-;;:::i;:::-;;3979:186:2;;;;;;:::i;:::-;;:::i;:::-;;;2594:14:7;;2587:22;2569:41;;2557:2;2542:18;3979:186:2;2429:187:7;3484:170:6;;;;;;:::i;:::-;;:::i;2830:97:2:-;2908:12;;2830:97;;;3118:25:7;;;3106:2;3091:18;2830:97:2;2972:177:7;371:51:6;;;;;;;;-1:-1:-1;;;;;3344:32:7;;;3326:51;;3314:2;3299:18;371:51:6;3154:229:7;2952:233:6;;;;;;:::i;:::-;;:::i;4757:244:2:-;;;;;;:::i;:::-;;:::i;435:22:6:-;;;;;;2688:82:2;;;2761:2;3909:36:7;;3897:2;3882:18;2688:82:2;3767:184:7;464:21:6;;;;;;2985:116:2;;;;;;:::i;:::-;-1:-1:-1;;;;;3076:18:2;3050:7;3076:18;;;;;;;;;;;;2985:116;2293:101:0;;;:::i;3662:133:6:-;;;;;;:::i;:::-;;:::i;1638:85:0:-;1710:6;;-1:-1:-1;;;;;1710:6:0;1638:85;;1962:93:2;;;:::i;3296:178::-;;;;;;:::i;:::-;;:::i;276:43:6:-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;225:44;;;;;;:::i;:::-;;;;;;;;;;;;;;;;3532:140:2;;;;;;:::i;:::-;-1:-1:-1;;;;;3638:18:2;;;3612:7;3638:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3532:140;326:38:6;;;;;;:::i;:::-;;;;;;;;;;;;;;;;2543:215:0;;;;;;:::i;:::-;;:::i;1760:89:2:-;1805:13;1837:5;1830:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1760:89;:::o;3195:281:6:-;1531:13:0;:11;:13::i;:::-;3321:9:6::1;3316:153;3336:5;:12;3332:1;:16;3316:153;;;3395:9;3370:12;:22;3383:5;3389:1;3383:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;3370:22:6::1;-1:-1:-1::0;;;;;3370:22:6::1;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;3424:33;3438:5;3444:1;3438:8;;;;;;;;:::i;:::-;;;;;;;3447:9;3424:33;;;;;;-1:-1:-1::0;;;;;5582:32:7;;;;5564:51;;5658:14;5651:22;5646:2;5631:18;;5624:50;5552:2;5537:18;;5396:284;3424:33:6::1;;;;;;;;3350:3;;3316:153;;;;3195:281:::0;;:::o;3979:186:2:-;4052:4;735:10:5;4106:31:2;735:10:5;4122:7:2;4131:5;4106:8;:31::i;:::-;4154:4;4147:11;;;3979:186;;;;;:::o;3484:170:6:-;1531:13:0;:11;:13::i;:::-;3564:7:6::1;:16:::0;;;3591:6:::1;:14:::0;;;3621:25:::1;::::0;;5859::7;;;5915:2;5900:18;;5893:34;;;3621:25:6::1;::::0;5832:18:7;3621:25:6::1;;;;;;;;3484:170:::0;;:::o;2952:233::-;1531:13:0;:11;:13::i;:::-;3049:9:6::1;3044:134;3064:5;:12;3060:1;:16;3044:134;;;3122:4;3098:11;:21;3110:5;3116:1;3110:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;3098:21:6::1;-1:-1:-1::0;;;;;3098:21:6::1;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;3146:20;3152:5;3158:1;3152:8;;;;;;;;:::i;:::-;;;;;;;3161:4;3146:20;;;;;;-1:-1:-1::0;;;;;5582:32:7;;;;5564:51;;5658:14;5651:22;5646:2;5631:18;;5624:50;5552:2;5537:18;;5396:284;3146:20:6::1;;;;;;;;3078:3;;3044:134;;4757:244:2::0;4844:4;735:10:5;4900:37:2;4916:4;735:10:5;4931:5:2;4900:15;:37::i;:::-;4947:26;4957:4;4963:2;4967:5;4947:9;:26::i;:::-;-1:-1:-1;4990:4:2;;4757:244;-1:-1:-1;;;;4757:244:2:o;2293:101:0:-;1531:13;:11;:13::i;:::-;2357:30:::1;2384:1;2357:18;:30::i;:::-;2293:101::o:0;3662:133:6:-;1531:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;3733:13:6;::::1;;::::0;;;:6:::1;:13;::::0;;;;;;;;:18;;-1:-1:-1;;3733:18:6::1;::::0;::::1;;::::0;;::::1;::::0;;;3767:19;;5564:51:7;;;5631:18;;;5624:50;3767:19:6::1;::::0;5537:18:7;3767:19:6::1;5396:284:7::0;1962:93:2;2009:13;2041:7;2034:14;;;;;:::i;3296:178::-;3365:4;735:10:5;3419:27:2;735:10:5;3436:2:2;3440:5;3419:9;:27::i;2543:215:0:-;1531:13;:11;:13::i;:::-;-1:-1:-1;;;;;2627:22:0;::::1;2623:91;;2672:31;::::0;-1:-1:-1;;;2672:31:0;;2700:1:::1;2672:31;::::0;::::1;3326:51:7::0;3299:18;;2672:31:0::1;;;;;;;;2623:91;2723:28;2742:8;2723:18;:28::i;:::-;2543:215:::0;:::o;1796:162::-;1710:6;;-1:-1:-1;;;;;1710:6:0;735:10:5;1855:23:0;1851:101;;1901:40;;-1:-1:-1;;;1901:40:0;;735:10:5;1901:40:0;;;3326:51:7;3299:18;;1901:40:0;3154:229:7;8707:128:2;8791:37;8800:5;8807:7;8816:5;8823:4;8791:8;:37::i;10396:476::-;-1:-1:-1;;;;;3638:18:2;;;10495:24;3638:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10561:36:2;;10557:309;;;10636:5;10617:16;:24;10613:130;;;10668:60;;-1:-1:-1;;;10668:60:2;;-1:-1:-1;;;;;6158:32:7;;10668:60:2;;;6140:51:7;6207:18;;;6200:34;;;6250:18;;;6243:34;;;6113:18;;10668:60:2;5938:345:7;10613:130:2;10784:57;10793:5;10800:7;10828:5;10809:16;:24;10835:5;10784:8;:57::i;:::-;10485:387;10396:476;;;:::o;5374:300::-;-1:-1:-1;;;;;5457:18:2;;5453:86;;5498:30;;-1:-1:-1;;;5498:30:2;;5525:1;5498:30;;;3326:51:7;3299:18;;5498:30:2;3154:229:7;5453:86:2;-1:-1:-1;;;;;5552:16:2;;5548:86;;5591:32;;-1:-1:-1;;;5591:32:2;;5620:1;5591:32;;;3326:51:7;3299:18;;5591:32:2;3154:229:7;5548:86:2;5643:24;5651:4;5657:2;5661:5;5643:7;:24::i;2912:187:0:-;3004:6;;;-1:-1:-1;;;;;3020:17:0;;;-1:-1:-1;;;;;;3020:17:0;;;;;;;3052:40;;3004:6;;;3020:17;3004:6;;3052:40;;2985:16;;3052:40;2975:124;2912:187;:::o;9682:432:2:-;-1:-1:-1;;;;;9794:19:2;;9790:89;;9836:32;;-1:-1:-1;;;9836:32:2;;9865:1;9836:32;;;3326:51:7;3299:18;;9836:32:2;3154:229:7;9790:89:2;-1:-1:-1;;;;;9892:21:2;;9888:90;;9936:31;;-1:-1:-1;;;9936:31:2;;9964:1;9936:31;;;3326:51:7;3299:18;;9936:31:2;3154:229:7;9888:90:2;-1:-1:-1;;;;;9987:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;10032:76;;;;10082:7;-1:-1:-1;;;;;10066:31:2;10075:5;-1:-1:-1;;;;;10066:31:2;;10091:5;10066:31;;;;3118:25:7;;3106:2;3091:18;;2972:177;10066:31:2;;;;;;;;9682:432;;;;:::o;1655:903:6:-;1783:6;;;;;:26;;-1:-1:-1;;;;;;1791:18:6;;;;;;:12;:18;;;;;;;;1783:26;:46;;;-1:-1:-1;;;;;;1813:16:6;;;;;;:12;:16;;;;;;;;1783:46;1779:117;;;1853:31;1867:4;1873:2;1877:6;1853:13;:31::i;1779:117::-;-1:-1:-1;;;;;1925:17:6;;;;;;:11;:17;;;;;;;;1924:18;:38;;;;-1:-1:-1;;;;;;1947:15:6;;;;;;:11;:15;;;;;;;;1946:16;1924:38;1916:71;;;;-1:-1:-1;;;1916:71:6;;6490:2:7;1916:71:6;;;6472:21:7;6529:2;6509:18;;;6502:30;-1:-1:-1;;;6548:18:7;;;6541:50;6608:18;;1916:71:6;6288:344:7;1916:71:6;-1:-1:-1;;;;;2004:12:6;;;;;;:6;:12;;;;;;;;2000:249;;;2032:12;2061:5;2054:6;;2047;:13;;;;:::i;:::-;:19;;;;:::i;:::-;2032:34;-1:-1:-1;2084:6:6;;2081:85;;2110:40;2124:4;2138;2145;2110:13;:40::i;:::-;2180:36;2194:4;2200:2;2204:11;2211:4;2204:6;:11;:::i;:::-;2180:13;:36::i;2000:249::-;-1:-1:-1;;;;;2265:10:6;;;;;;:6;:10;;;;;;;;2261:229;;;2292:12;2322:5;2314:7;;2307:6;:14;;;;:::i;:::-;:20;;;;:::i;:::-;2292:35;;2342:40;2356:4;2370;2377;2342:13;:40::i;:::-;2397:9;:7;:9::i;2261:229::-;2519:31;2533:4;2539:2;2543:6;5989:1107:2;-1:-1:-1;;;;;6078:18:2;;6074:540;;6230:5;6214:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;6074:540:2;;-1:-1:-1;6074:540:2;;-1:-1:-1;;;;;6288:15:2;;6266:19;6288:15;;;;;;;;;;;6321:19;;;6317:115;;;6367:50;;-1:-1:-1;;;6367:50:2;;-1:-1:-1;;;;;6158:32:7;;6367:50:2;;;6140:51:7;6207:18;;;6200:34;;;6250:18;;;6243:34;;;6113:18;;6367:50:2;5938:345:7;6317:115:2;-1:-1:-1;;;;;6552:15:2;;:9;:15;;;;;;;;;;6570:19;;;;6552:37;;6074:540;-1:-1:-1;;;;;6628:16:2;;6624:425;;6791:12;:21;;;;;;;6624:425;;;-1:-1:-1;;;;;7002:13:2;;:9;:13;;;;;;;;;;:22;;;;;;6624:425;7079:2;-1:-1:-1;;;;;7064:25:2;7073:4;-1:-1:-1;;;;;7064:25:2;;7083:5;7064:25;;;;3118::7;;3106:2;3091:18;;2972:177;7064:25:2;;;;;;;;5989:1107;;;:::o;2566:378:6:-;523:6;:11;;-1:-1:-1;;523:11:6;530:4;523:11;;;2653:4:::1;-1:-1:-1::0;3076:18:2;;;;;;;;;;;2614:45:6;-1:-1:-1;2673:8:6;;2670:267:::1;;2701:29;::::0;-1:-1:-1;;;2701:29:6;;::::1;::::0;::::1;3118:25:7::0;;;2701:16:6::1;-1:-1:-1::0;;;;;2701:21:6::1;::::0;::::1;::::0;3091:18:7;;2701:29:6::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2697:229;;2759:151;2798:4;2834:16;-1:-1:-1::0;;2759:8:6::1;:151::i;:::-;-1:-1:-1::0;557:6:6;:12;;-1:-1:-1;;557:12:6;;;2566:378::o;14:418:7:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:127::-;498:10;493:3;489:20;486:1;479:31;529:4;526:1;519:15;553:4;550:1;543:15;569:173;637:20;;-1:-1:-1;;;;;686:31:7;;676:42;;666:70;;732:1;729;722:12;666:70;569:173;;;:::o;747:160::-;812:20;;868:13;;861:21;851:32;;841:60;;897:1;894;887:12;912:1207;1002:6;1010;1063:2;1051:9;1042:7;1038:23;1034:32;1031:52;;;1079:1;1076;1069:12;1031:52;1119:9;1106:23;1152:18;1144:6;1141:30;1138:50;;;1184:1;1181;1174:12;1138:50;1207:22;;1260:4;1252:13;;1248:27;-1:-1:-1;1238:55:7;;1289:1;1286;1279:12;1238:55;1329:2;1316:16;1355:18;1347:6;1344:30;1341:56;;;1377:18;;:::i;:::-;1423:6;1420:1;1416:14;1459:2;1453:9;1522:2;1518:7;1513:2;1509;1505:11;1501:25;1493:6;1489:38;1593:6;1581:10;1578:22;1557:18;1545:10;1542:34;1539:62;1536:88;;;1604:18;;:::i;:::-;1640:2;1633:22;1690;;;1740:4;1772:11;;;1768:22;;;1690;1728:17;;1802:19;;;1799:39;;;1834:1;1831;1824:12;1799:39;1866:4;1862:2;1858:13;1847:24;;1880:152;1896:6;1891:3;1888:15;1880:152;;;1964:23;1983:3;1964:23;:::i;:::-;1952:36;;2017:4;1913:14;;;;2008;1880:152;;;-1:-1:-1;2051:6:7;-1:-1:-1;2076:37:7;;-1:-1:-1;;;2107:4:7;2092:20;;2076:37;:::i;:::-;2066:47;;912:1207;;;;;:::o;2124:300::-;2192:6;2200;2253:2;2241:9;2232:7;2228:23;2224:32;2221:52;;;2269:1;2266;2259:12;2221:52;2292:29;2311:9;2292:29;:::i;:::-;2282:39;2390:2;2375:18;;;;2362:32;;-1:-1:-1;;;2124:300:7:o;2621:346::-;2689:6;2697;2750:2;2738:9;2729:7;2725:23;2721:32;2718:52;;;2766:1;2763;2756:12;2718:52;-1:-1:-1;;2811:23:7;;;2931:2;2916:18;;;2903:32;;-1:-1:-1;2621:346:7:o;3388:374::-;3465:6;3473;3481;3534:2;3522:9;3513:7;3509:23;3505:32;3502:52;;;3550:1;3547;3540:12;3502:52;3573:29;3592:9;3573:29;:::i;:::-;3563:39;;3621:38;3655:2;3644:9;3640:18;3621:38;:::i;:::-;3388:374;;3611:48;;-1:-1:-1;;;3728:2:7;3713:18;;;;3700:32;;3388:374::o;3956:186::-;4015:6;4068:2;4056:9;4047:7;4043:23;4039:32;4036:52;;;4084:1;4081;4074:12;4036:52;4107:29;4126:9;4107:29;:::i;:::-;4097:39;3956:186;-1:-1:-1;;;3956:186:7:o;4147:254::-;4212:6;4220;4273:2;4261:9;4252:7;4248:23;4244:32;4241:52;;;4289:1;4286;4279:12;4241:52;4312:29;4331:9;4312:29;:::i;:::-;4302:39;;4360:35;4391:2;4380:9;4376:18;4360:35;:::i;4614:260::-;4682:6;4690;4743:2;4731:9;4722:7;4718:23;4714:32;4711:52;;;4759:1;4756;4749:12;4711:52;4782:29;4801:9;4782:29;:::i;:::-;4772:39;;4830:38;4864:2;4853:9;4849:18;4830:38;:::i;4879:380::-;4958:1;4954:12;;;;5001;;;5022:61;;5076:4;5068:6;5064:17;5054:27;;5022:61;5129:2;5121:6;5118:14;5098:18;5095:38;5092:161;;5175:10;5170:3;5166:20;5163:1;5156:31;5210:4;5207:1;5200:15;5238:4;5235:1;5228:15;5092:161;;4879:380;;;:::o;5264:127::-;5325:10;5320:3;5316:20;5313:1;5306:31;5356:4;5353:1;5346:15;5380:4;5377:1;5370:15;6637:127;6698:10;6693:3;6689:20;6686:1;6679:31;6729:4;6726:1;6719:15;6753:4;6750:1;6743:15;6769:168;6842:9;;;6873;;6890:15;;;6884:22;;6870:37;6860:71;;6911:18;;:::i;6942:217::-;6982:1;7008;6998:132;;7052:10;7047:3;7043:20;7040:1;7033:31;7087:4;7084:1;7077:15;7115:4;7112:1;7105:15;6998:132;-1:-1:-1;7144:9:7;;6942:217::o;7164:128::-;7231:9;;;7252:11;;;7249:37;;;7266:18;;:::i;7297:125::-;7362:9;;;7383:10;;;7380:36;;;7396:18;;:::i

Swarm Source

ipfs://9170d220f2d83c4613c5d9c989e5897c1e086472b67bfc4415cf22c85809c5ed

Block Transaction Gas Used Reward
view all blocks produced

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

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.