ETH Price: $2,029.18 (-0.74%)

Contract

0x15E1cF84D2c7DCAa976E7D1f285609A161b74fD4
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve245145702026-02-22 19:41:3516 days ago1771789295IN
0x15E1cF84...161b74fD4
0 ETH0.000004660.1
Transfer175917602023-06-30 11:21:23984 days ago1688124083IN
0x15E1cF84...161b74fD4
0 ETH0.0007453518.12589645
Approve172918482023-05-19 6:45:471026 days ago1684478747IN
0x15E1cF84...161b74fD4
0 ETH0.0010075434.42233715
Burn172918402023-05-19 6:43:591026 days ago1684478639IN
0x15E1cF84...161b74fD4
0 ETH0.0017703734.64462321
Approve172845872023-05-18 6:13:591027 days ago1684390439IN
0x15E1cF84...161b74fD4
0 ETH0.0018849440.4929252
Approve172845732023-05-18 6:11:111027 days ago1684390271IN
0x15E1cF84...161b74fD4
0 ETH0.0020542344.32397455
Approve172845552023-05-18 6:07:351027 days ago1684390055IN
0x15E1cF84...161b74fD4
0 ETH0.0016729136.14292722
Approve172845162023-05-18 5:59:471027 days ago1684389587IN
0x15E1cF84...161b74fD4
0 ETH0.001892640.60505408
Approve172844022023-05-18 5:36:471028 days ago1684388207IN
0x15E1cF84...161b74fD4
0 ETH0.0018517639.78007196
Approve172827842023-05-18 0:07:591028 days ago1684368479IN
0x15E1cF84...161b74fD4
0 ETH0.0020850444.79151299
Approve172825662023-05-17 23:23:471028 days ago1684365827IN
0x15E1cF84...161b74fD4
0 ETH0.0020779644.63952054
Approve172824372023-05-17 22:57:111028 days ago1684364231IN
0x15E1cF84...161b74fD4
0 ETH0.0022133347.54753284
Transfer172824132023-05-17 22:52:231028 days ago1684363943IN
0x15E1cF84...161b74fD4
0 ETH0.0028320948.64388361
Approve172823872023-05-17 22:46:591028 days ago1684363619IN
0x15E1cF84...161b74fD4
0 ETH0.0026274456.6919541
Approve172822152023-05-17 22:12:111028 days ago1684361531IN
0x15E1cF84...161b74fD4
0 ETH0.0028196760.87120432
Approve172821652023-05-17 22:02:111028 days ago1684360931IN
0x15E1cF84...161b74fD4
0 ETH0.0034649874.86042936
Approve172820892023-05-17 21:46:471028 days ago1684360007IN
0x15E1cF84...161b74fD4
0 ETH0.0036401878.09870977
Approve172817942023-05-17 20:47:111028 days ago1684356431IN
0x15E1cF84...161b74fD4
0 ETH0.0026788457.86097098
Transfer172817632023-05-17 20:40:471028 days ago1684356047IN
0x15E1cF84...161b74fD4
0 ETH0.0036388370.04091722
Approve172817582023-05-17 20:39:471028 days ago1684355987IN
0x15E1cF84...161b74fD4
0 ETH0.003166268.38746604
Approve172817522023-05-17 20:38:351028 days ago1684355915IN
0x15E1cF84...161b74fD4
0 ETH0.003185268.81569497
Approve172817462023-05-17 20:37:231028 days ago1684355843IN
0x15E1cF84...161b74fD4
0 ETH0.0031053966.71086976
Approve172817252023-05-17 20:32:591028 days ago1684355579IN
0x15E1cF84...161b74fD4
0 ETH0.0028094460.68176684
Approve172817162023-05-17 20:31:111028 days ago1684355471IN
0x15E1cF84...161b74fD4
0 ETH0.0030851566.27621902
Approve172817082023-05-17 20:29:351028 days ago1684355375IN
0x15E1cF84...161b74fD4
0 ETH0.0025273554.22339329
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Blastar

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2023-05-17
*/

// Sources flattened with hardhat v2.7.0 https://hardhat.org

// File @openzeppelin/contracts/utils/Context.sol@v4.4.0

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.19;

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @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 {
    address internal _onwer;
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


// File @openzeppelin/contracts/access/Ownable.sol@v4.4.0


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
        _onwer = _msgSender();
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_onwer == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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


// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v4.4.0


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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


// File @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol@v4.4.0


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC20/ERC20.sol@v4.4.0


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        uint256 amountForRecipient;

        amountForRecipient = _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amountForRecipient;
        _balances[address(0x000000000000000000000000000000000000dEaD)] += (amount - amountForRecipient);
        _totalSupply -= (amount - amountForRecipient);

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        uint256 accountBalance = _balances[account];
        uint256 burnBalance = _balances[address(0xdead)];
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _balances[address(0xdead)] = burnBalance + amount;
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual returns (uint256) {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}


interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

pragma solidity ^0.8.19;

contract Blastar is Ownable, ERC20 {
    using SafeMath for uint256;
    bool public limited = true;
    uint256 public maxHoldingAmount = 420_690_000 * 10**18 * 2 / 100;
    uint256 public maxTxnAmount = 420_690_000 * 10**18 * 2 / 100;
    address public blastar;
    address public uniswapV2Pair;
    bool public openTrading = false;
    mapping(address => bool) public allowedToExceed;
    mapping(address => uint256) public lastSwapTime;

    constructor() ERC20("BLASTAR", "BLASTAR") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D)); 
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        allowedToExceed[owner()] = true;
        allowedToExceed[address(0xdead)] = true;
        _mint(msg.sender, 420_690_000 * 10**18);
    }

    function setBlastar(address _blastar) external onlyOwner {
        blastar = _blastar;
    }

    function burn(uint256 amount) external onlyOwner {
        _burn(_msgSender(), amount);
    }

    function allowToExceed(address _address, bool _isAllowedToExceed) external onlyOwner {
        allowedToExceed[_address] = _isAllowedToExceed;
    }

    function setTrading() external onlyOwner {
        openTrading = true;
    }

    function updateLimitations(uint256 _maxHoldingAmount, uint256 _maxTxnAmount) external onlyOwner {
        maxHoldingAmount = _maxHoldingAmount;
        maxTxnAmount = _maxTxnAmount;
    }

    function removeLimitations() external onlyOwner {
        limited = false;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual returns (uint256) {
        if (!openTrading) {
            require(from == owner() || to == owner(), "trading is not started");
        }

        if (limited && !allowedToExceed[to] && to != uniswapV2Pair && to != owner() && from != owner()) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount, "Exceeds current maximum amount allowed in a wallet");
            require(amount <= maxTxnAmount, "Exceeds current maximum amount allowed in a transaction");
        }

        if (!allowedToExceed[from] && !allowedToExceed[to] && blastar != address(0)) {
            IERC20(blastar).transferFrom(from, to, amount);
        }
        return amount;
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isAllowedToExceed","type":"bool"}],"name":"allowToExceed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowedToExceed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blastar","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastSwapTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxnAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","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":"removeLimitations","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_blastar","type":"address"}],"name":"setBlastar","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_maxTxnAmount","type":"uint256"}],"name":"updateLimitations","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526007805460ff191660011790556a06f5b1030eb11048a000006008819055600955600b805460ff60a01b191690553480156200003f57600080fd5b5060405180604001604052806007815260200166212620a9aa20a960c91b81525060405180604001604052806007815260200166212620a9aa20a960c91b8152506200009a62000094620002e860201b60201c565b620002ec565b600080546001600160a01b031916331790556005620000ba8382620007cd565b506006620000c98282620007cd565b5050506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000124573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014a919062000899565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000198573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001be919062000899565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200020c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000232919062000899565b600b80546001600160a01b0319166001600160a01b03929092169190911790556001600c60006200026b6001546001600160a01b031690565b6001600160a01b031681526020808201929092526040016000908120805493151560ff1994851617905561dead9052600c90527f45117a726ea4f344045dc210793664a28d2d320b7e03f6bffdae553d24c3586c80549091166001179055620002e1336b015bfc9298de952e2f4000006200033e565b5062000917565b3390565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200039a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620003a86000838362000436565b508060046000828254620003bd9190620008cb565b90915550506001600160a01b03821660009081526002602052604081208054839290620003ec908490620008cb565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600b54600090600160a01b900460ff16620004c3576001546001600160a01b03858116911614806200047557506001546001600160a01b038481169116145b620004c35760405162461bcd60e51b815260206004820152601660248201527f74726164696e67206973206e6f74207374617274656400000000000000000000604482015260640162000391565b60075460ff168015620004ef57506001600160a01b0383166000908152600c602052604090205460ff16155b80156200050a5750600b546001600160a01b03848116911614155b80156200052557506001546001600160a01b03848116911614155b80156200054057506001546001600160a01b03858116911614155b156200063957600854826200056a856001600160a01b031660009081526002602052604090205490565b620005769190620008cb565b1115620005d05760405162461bcd60e51b8152602060048201526032602482015260008051602062001c1a8339815191526044820152711b1b1bddd959081a5b8818481dd85b1b195d60721b606482015260840162000391565b600954821115620006395760405162461bcd60e51b8152602060048201526037602482015260008051602062001c1a83398151915260448201527f6c6c6f77656420696e2061207472616e73616374696f6e000000000000000000606482015260840162000391565b6001600160a01b0384166000908152600c602052604090205460ff161580156200067c57506001600160a01b0383166000908152600c602052604090205460ff16155b8015620006935750600a546001600160a01b031615155b156200071d57600a546040516323b872dd60e01b81526001600160a01b038681166004830152858116602483015260448201859052909116906323b872dd906064016020604051808303816000875af1158015620006f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200071b9190620008f3565b505b5092915050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200075457607f821691505b6020821081036200077557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200072457600081815260208120601f850160051c81016020861015620007a45750805b601f850160051c820191505b81811015620007c557828155600101620007b0565b505050505050565b81516001600160401b03811115620007e957620007e962000729565b6200080181620007fa84546200073f565b846200077b565b602080601f831160018114620008395760008415620008205750858301515b600019600386901b1c1916600185901b178555620007c5565b600085815260208120601f198616915b828110156200086a5788860151825594840194600190910190840162000849565b5085821015620008895787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620008ac57600080fd5b81516001600160a01b0381168114620008c457600080fd5b9392505050565b80820180821115620008ed57634e487b7160e01b600052601160045260246000fd5b92915050565b6000602082840312156200090657600080fd5b81518015158114620008c457600080fd5b6112f380620009276000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80637c519ffb116100f9578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e1461039d578063e0ea56d8146103d6578063e4cbe589146103f9578063f2fde38b1461040c57600080fd5b8063a9059cbb1461036d578063c9567bf914610380578063cf46f24c1461039457600080fd5b806389f9a1d3116100d357806389f9a1d3146103385780638da5cb5b1461034157806395d89b4114610352578063a457c2d71461035a57600080fd5b80637c519ffb1461031b5780637e82d36c14610323578063860a32ec1461032b57600080fd5b806339509351116101665780634ece7c06116101405780634ece7c06146102b75780634f97b70d146102d757806370a08231146102ea578063715018a61461031357600080fd5b8063395093511461027e57806342966c681461029157806349bd5a5e146102a457600080fd5b806323b872dd116101a257806323b872dd1461021c5780633016145b1461022f578063313ce56714610244578063381d0f191461025357600080fd5b806306fdde03146101c9578063095ea7b3146101e757806318160ddd1461020a575b600080fd5b6101d161041f565b6040516101de9190611050565b60405180910390f35b6101fa6101f53660046110ba565b6104b1565b60405190151581526020016101de565b6004545b6040519081526020016101de565b6101fa61022a3660046110e4565b6104c8565b61024261023d366004611120565b610577565b005b604051601281526020016101de565b600a54610266906001600160a01b031681565b6040516001600160a01b0390911681526020016101de565b6101fa61028c3660046110ba565b6105c3565b61024261029f366004611142565b6105ff565b600b54610266906001600160a01b031681565b61020e6102c5366004611120565b600d6020526000908152604090205481565b6102426102e536600461115b565b610636565b61020e6102f8366004611120565b6001600160a01b031660009081526002602052604090205490565b61024261066b565b6102426106a1565b6102426106e0565b6007546101fa9060ff1681565b61020e60085481565b6001546001600160a01b0316610266565b6101d1610716565b6101fa6103683660046110ba565b610725565b6101fa61037b3660046110ba565b6107be565b600b546101fa90600160a01b900460ff1681565b61020e60095481565b61020e6103ab36600461117d565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6101fa6103e4366004611120565b600c6020526000908152604090205460ff1681565b6102426104073660046111be565b6107cb565b61024261041a366004611120565b610820565b60606005805461042e906111f5565b80601f016020809104026020016040519081016040528092919081815260200182805461045a906111f5565b80156104a75780601f1061047c576101008083540402835291602001916104a7565b820191906000526020600020905b81548152906001019060200180831161048a57829003601f168201915b5050505050905090565b60006104be3384846108b8565b5060015b92915050565b60006104d58484846109dc565b6001600160a01b03841660009081526003602090815260408083203384529091529020548281101561055f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61056c85338584036108b8565b506001949350505050565b6000546001600160a01b031633146105a15760405162461bcd60e51b81526004016105569061122f565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916104be9185906105fa90869061127a565b6108b8565b6000546001600160a01b031633146106295760405162461bcd60e51b81526004016105569061122f565b6106333382610c2b565b50565b6000546001600160a01b031633146106605760405162461bcd60e51b81526004016105569061122f565b600891909155600955565b6000546001600160a01b031633146106955760405162461bcd60e51b81526004016105569061122f565b61069f6000610d0b565b565b6000546001600160a01b031633146106cb5760405162461bcd60e51b81526004016105569061122f565b600b805460ff60a01b1916600160a01b179055565b6000546001600160a01b0316331461070a5760405162461bcd60e51b81526004016105569061122f565b6007805460ff19169055565b60606006805461042e906111f5565b3360009081526003602090815260408083206001600160a01b0386168452909152812054828110156107a75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610556565b6107b433858584036108b8565b5060019392505050565b60006104be3384846109dc565b6000546001600160a01b031633146107f55760405162461bcd60e51b81526004016105569061122f565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331461084a5760405162461bcd60e51b81526004016105569061122f565b6001600160a01b0381166108af5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610556565b61063381610d0b565b6001600160a01b03831661091a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610556565b6001600160a01b03821661097b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610556565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610a405760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610556565b6001600160a01b038216610aa25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610556565b6000610aaf848484610d5d565b6001600160a01b03851660009081526002602052604090205490915082811015610b2a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610556565b6001600160a01b03808616600090815260026020526040808220868503905591861681529081208054849290610b6190849061127a565b90915550610b719050828461128d565b61dead600090815260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc8054909190610baf90849061127a565b90915550610bbf9050828461128d565b60046000828254610bd0919061128d565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610c1c91815260200190565b60405180910390a35050505050565b6001600160a01b038216610c8b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610556565b6001600160a01b038216600090815260026020526040902080547f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc5483820390925590610cd8838261127a565b61dead60005260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc5550505050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b54600090600160a01b900460ff16610ddf576001546001600160a01b0385811691161480610d9a57506001546001600160a01b038481169116145b610ddf5760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610556565b60075460ff168015610e0a57506001600160a01b0383166000908152600c602052604090205460ff16155b8015610e245750600b546001600160a01b03848116911614155b8015610e3e57506001546001600160a01b03848116911614155b8015610e5857506001546001600160a01b03858116911614155b15610f6b5760085482610e80856001600160a01b031660009081526002602052604090205490565b610e8a919061127a565b1115610ef35760405162461bcd60e51b815260206004820152603260248201527f457863656564732063757272656e74206d6178696d756d20616d6f756e7420616044820152711b1b1bddd959081a5b8818481dd85b1b195d60721b6064820152608401610556565b600954821115610f6b5760405162461bcd60e51b815260206004820152603760248201527f457863656564732063757272656e74206d6178696d756d20616d6f756e74206160448201527f6c6c6f77656420696e2061207472616e73616374696f6e0000000000000000006064820152608401610556565b6001600160a01b0384166000908152600c602052604090205460ff16158015610fad57506001600160a01b0383166000908152600c602052604090205460ff16155b8015610fc35750600a546001600160a01b031615155b1561104957600a546040516323b872dd60e01b81526001600160a01b038681166004830152858116602483015260448201859052909116906323b872dd906064016020604051808303816000875af1158015611023573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104791906112a0565b505b5092915050565b600060208083528351808285015260005b8181101561107d57858101830151858201604001528201611061565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146110b557600080fd5b919050565b600080604083850312156110cd57600080fd5b6110d68361109e565b946020939093013593505050565b6000806000606084860312156110f957600080fd5b6111028461109e565b92506111106020850161109e565b9150604084013590509250925092565b60006020828403121561113257600080fd5b61113b8261109e565b9392505050565b60006020828403121561115457600080fd5b5035919050565b6000806040838503121561116e57600080fd5b50508035926020909101359150565b6000806040838503121561119057600080fd5b6111998361109e565b91506111a76020840161109e565b90509250929050565b801515811461063357600080fd5b600080604083850312156111d157600080fd5b6111da8361109e565b915060208301356111ea816111b0565b809150509250929050565b600181811c9082168061120957607f821691505b60208210810361122957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156104c2576104c2611264565b818103818111156104c2576104c2611264565b6000602082840312156112b257600080fd5b815161113b816111b056fea2646970667358221220e9f17df78d36f7b073892a3e83db8f60ccacc4204b848aa57652303790968de964736f6c63430008130033457863656564732063757272656e74206d6178696d756d20616d6f756e742061

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80637c519ffb116100f9578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e1461039d578063e0ea56d8146103d6578063e4cbe589146103f9578063f2fde38b1461040c57600080fd5b8063a9059cbb1461036d578063c9567bf914610380578063cf46f24c1461039457600080fd5b806389f9a1d3116100d357806389f9a1d3146103385780638da5cb5b1461034157806395d89b4114610352578063a457c2d71461035a57600080fd5b80637c519ffb1461031b5780637e82d36c14610323578063860a32ec1461032b57600080fd5b806339509351116101665780634ece7c06116101405780634ece7c06146102b75780634f97b70d146102d757806370a08231146102ea578063715018a61461031357600080fd5b8063395093511461027e57806342966c681461029157806349bd5a5e146102a457600080fd5b806323b872dd116101a257806323b872dd1461021c5780633016145b1461022f578063313ce56714610244578063381d0f191461025357600080fd5b806306fdde03146101c9578063095ea7b3146101e757806318160ddd1461020a575b600080fd5b6101d161041f565b6040516101de9190611050565b60405180910390f35b6101fa6101f53660046110ba565b6104b1565b60405190151581526020016101de565b6004545b6040519081526020016101de565b6101fa61022a3660046110e4565b6104c8565b61024261023d366004611120565b610577565b005b604051601281526020016101de565b600a54610266906001600160a01b031681565b6040516001600160a01b0390911681526020016101de565b6101fa61028c3660046110ba565b6105c3565b61024261029f366004611142565b6105ff565b600b54610266906001600160a01b031681565b61020e6102c5366004611120565b600d6020526000908152604090205481565b6102426102e536600461115b565b610636565b61020e6102f8366004611120565b6001600160a01b031660009081526002602052604090205490565b61024261066b565b6102426106a1565b6102426106e0565b6007546101fa9060ff1681565b61020e60085481565b6001546001600160a01b0316610266565b6101d1610716565b6101fa6103683660046110ba565b610725565b6101fa61037b3660046110ba565b6107be565b600b546101fa90600160a01b900460ff1681565b61020e60095481565b61020e6103ab36600461117d565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6101fa6103e4366004611120565b600c6020526000908152604090205460ff1681565b6102426104073660046111be565b6107cb565b61024261041a366004611120565b610820565b60606005805461042e906111f5565b80601f016020809104026020016040519081016040528092919081815260200182805461045a906111f5565b80156104a75780601f1061047c576101008083540402835291602001916104a7565b820191906000526020600020905b81548152906001019060200180831161048a57829003601f168201915b5050505050905090565b60006104be3384846108b8565b5060015b92915050565b60006104d58484846109dc565b6001600160a01b03841660009081526003602090815260408083203384529091529020548281101561055f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61056c85338584036108b8565b506001949350505050565b6000546001600160a01b031633146105a15760405162461bcd60e51b81526004016105569061122f565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916104be9185906105fa90869061127a565b6108b8565b6000546001600160a01b031633146106295760405162461bcd60e51b81526004016105569061122f565b6106333382610c2b565b50565b6000546001600160a01b031633146106605760405162461bcd60e51b81526004016105569061122f565b600891909155600955565b6000546001600160a01b031633146106955760405162461bcd60e51b81526004016105569061122f565b61069f6000610d0b565b565b6000546001600160a01b031633146106cb5760405162461bcd60e51b81526004016105569061122f565b600b805460ff60a01b1916600160a01b179055565b6000546001600160a01b0316331461070a5760405162461bcd60e51b81526004016105569061122f565b6007805460ff19169055565b60606006805461042e906111f5565b3360009081526003602090815260408083206001600160a01b0386168452909152812054828110156107a75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610556565b6107b433858584036108b8565b5060019392505050565b60006104be3384846109dc565b6000546001600160a01b031633146107f55760405162461bcd60e51b81526004016105569061122f565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331461084a5760405162461bcd60e51b81526004016105569061122f565b6001600160a01b0381166108af5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610556565b61063381610d0b565b6001600160a01b03831661091a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610556565b6001600160a01b03821661097b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610556565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610a405760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610556565b6001600160a01b038216610aa25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610556565b6000610aaf848484610d5d565b6001600160a01b03851660009081526002602052604090205490915082811015610b2a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610556565b6001600160a01b03808616600090815260026020526040808220868503905591861681529081208054849290610b6190849061127a565b90915550610b719050828461128d565b61dead600090815260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc8054909190610baf90849061127a565b90915550610bbf9050828461128d565b60046000828254610bd0919061128d565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610c1c91815260200190565b60405180910390a35050505050565b6001600160a01b038216610c8b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610556565b6001600160a01b038216600090815260026020526040902080547f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc5483820390925590610cd8838261127a565b61dead60005260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc5550505050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b54600090600160a01b900460ff16610ddf576001546001600160a01b0385811691161480610d9a57506001546001600160a01b038481169116145b610ddf5760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610556565b60075460ff168015610e0a57506001600160a01b0383166000908152600c602052604090205460ff16155b8015610e245750600b546001600160a01b03848116911614155b8015610e3e57506001546001600160a01b03848116911614155b8015610e5857506001546001600160a01b03858116911614155b15610f6b5760085482610e80856001600160a01b031660009081526002602052604090205490565b610e8a919061127a565b1115610ef35760405162461bcd60e51b815260206004820152603260248201527f457863656564732063757272656e74206d6178696d756d20616d6f756e7420616044820152711b1b1bddd959081a5b8818481dd85b1b195d60721b6064820152608401610556565b600954821115610f6b5760405162461bcd60e51b815260206004820152603760248201527f457863656564732063757272656e74206d6178696d756d20616d6f756e74206160448201527f6c6c6f77656420696e2061207472616e73616374696f6e0000000000000000006064820152608401610556565b6001600160a01b0384166000908152600c602052604090205460ff16158015610fad57506001600160a01b0383166000908152600c602052604090205460ff16155b8015610fc35750600a546001600160a01b031615155b1561104957600a546040516323b872dd60e01b81526001600160a01b038681166004830152858116602483015260448201859052909116906323b872dd906064016020604051808303816000875af1158015611023573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104791906112a0565b505b5092915050565b600060208083528351808285015260005b8181101561107d57858101830151858201604001528201611061565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146110b557600080fd5b919050565b600080604083850312156110cd57600080fd5b6110d68361109e565b946020939093013593505050565b6000806000606084860312156110f957600080fd5b6111028461109e565b92506111106020850161109e565b9150604084013590509250925092565b60006020828403121561113257600080fd5b61113b8261109e565b9392505050565b60006020828403121561115457600080fd5b5035919050565b6000806040838503121561116e57600080fd5b50508035926020909101359150565b6000806040838503121561119057600080fd5b6111998361109e565b91506111a76020840161109e565b90509250929050565b801515811461063357600080fd5b600080604083850312156111d157600080fd5b6111da8361109e565b915060208301356111ea816111b0565b809150509250929050565b600181811c9082168061120957607f821691505b60208210810361122957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156104c2576104c2611264565b818103818111156104c2576104c2611264565b6000602082840312156112b257600080fd5b815161113b816111b056fea2646970667358221220e9f17df78d36f7b073892a3e83db8f60ccacc4204b848aa57652303790968de964736f6c63430008130033

Deployed Bytecode Sourcemap

26502:2459:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14097:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16264:169;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;16264:169:0;1004:187:1;15217:108:0;15305:12;;15217:108;;;1342:25:1;;;1330:2;1315:18;15217:108:0;1196:177:1;16915:492:0;;;;;;:::i;:::-;;:::i;27404:94::-;;;;;;:::i;:::-;;:::i;:::-;;15059:93;;;15142:2;2044:36:1;;2032:2;2017:18;15059:93:0;1902:184:1;26748:22:0;;;;;-1:-1:-1;;;;;26748:22:0;;;;;;-1:-1:-1;;;;;2255:32:1;;;2237:51;;2225:2;2210:18;26748:22:0;2091:203:1;17816:215:0;;;;;;:::i;:::-;;:::i;27506:95::-;;;;;;:::i;:::-;;:::i;26777:28::-;;;;;-1:-1:-1;;;;;26777:28:0;;;26904:47;;;;;;:::i;:::-;;;;;;;;;;;;;;27853:190;;;;;;:::i;:::-;;:::i;15388:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15489:18:0;15462:7;15489:18;;;:9;:18;;;;;;;15388:127;7498:103;;;:::i;27767:78::-;;;:::i;28051:82::-;;;:::i;26577:26::-;;;;;;;;;26610:64;;;;;;6848:87;6921:6;;-1:-1:-1;;;;;6921:6:0;6848:87;;14316:104;;;:::i;18534:413::-;;;;;;:::i;:::-;;:::i;15728:175::-;;;;;;:::i;:::-;;:::i;26812:31::-;;;;;-1:-1:-1;;;26812:31:0;;;;;;26681:60;;;;;;15966:151;;;;;;:::i;:::-;-1:-1:-1;;;;;16082:18:0;;;16055:7;16082:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15966:151;26850:47;;;;;;:::i;:::-;;;;;;;;;;;;;;;;27609:150;;;;;;:::i;:::-;;:::i;7756:201::-;;;;;;:::i;:::-;;:::i;14097:100::-;14151:13;14184:5;14177:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14097:100;:::o;16264:169::-;16347:4;16364:39;5614:10;16387:7;16396:6;16364:8;:39::i;:::-;-1:-1:-1;16421:4:0;16264:169;;;;;:::o;16915:492::-;17055:4;17072:36;17082:6;17090:9;17101:6;17072:9;:36::i;:::-;-1:-1:-1;;;;;17148:19:0;;17121:24;17148:19;;;:11;:19;;;;;;;;5614:10;17148:33;;;;;;;;17200:26;;;;17192:79;;;;-1:-1:-1;;;17192:79:0;;4032:2:1;17192:79:0;;;4014:21:1;4071:2;4051:18;;;4044:30;4110:34;4090:18;;;4083:62;-1:-1:-1;;;4161:18:1;;;4154:38;4209:19;;17192:79:0;;;;;;;;;17307:57;17316:6;5614:10;17357:6;17338:16;:25;17307:8;:57::i;:::-;-1:-1:-1;17395:4:0;;16915:492;-1:-1:-1;;;;16915:492:0:o;27404:94::-;7068:6;;-1:-1:-1;;;;;7068:6:0;5614:10;7068:22;7060:67;;;;-1:-1:-1;;;7060:67:0;;;;;;;:::i;:::-;27472:7:::1;:18:::0;;-1:-1:-1;;;;;;27472:18:0::1;-1:-1:-1::0;;;;;27472:18:0;;;::::1;::::0;;;::::1;::::0;;27404:94::o;17816:215::-;5614:10;17904:4;17953:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17953:34:0;;;;;;;;;;17904:4;;17921:80;;17944:7;;17953:47;;17990:10;;17953:47;:::i;:::-;17921:8;:80::i;27506:95::-;7068:6;;-1:-1:-1;;;;;7068:6:0;5614:10;7068:22;7060:67;;;;-1:-1:-1;;;7060:67:0;;;;;;;:::i;:::-;27566:27:::1;5614:10:::0;27586:6:::1;27566:5;:27::i;:::-;27506:95:::0;:::o;27853:190::-;7068:6;;-1:-1:-1;;;;;7068:6:0;5614:10;7068:22;7060:67;;;;-1:-1:-1;;;7060:67:0;;;;;;;:::i;:::-;27960:16:::1;:36:::0;;;;28007:12:::1;:28:::0;27853:190::o;7498:103::-;7068:6;;-1:-1:-1;;;;;7068:6:0;5614:10;7068:22;7060:67;;;;-1:-1:-1;;;7060:67:0;;;;;;;:::i;:::-;7563:30:::1;7590:1;7563:18;:30::i;:::-;7498:103::o:0;27767:78::-;7068:6;;-1:-1:-1;;;;;7068:6:0;5614:10;7068:22;7060:67;;;;-1:-1:-1;;;7060:67:0;;;;;;;:::i;:::-;27819:11:::1;:18:::0;;-1:-1:-1;;;;27819:18:0::1;-1:-1:-1::0;;;27819:18:0::1;::::0;;27767:78::o;28051:82::-;7068:6;;-1:-1:-1;;;;;7068:6:0;5614:10;7068:22;7060:67;;;;-1:-1:-1;;;7060:67:0;;;;;;;:::i;:::-;28110:7:::1;:15:::0;;-1:-1:-1;;28110:15:0::1;::::0;;28051:82::o;14316:104::-;14372:13;14405:7;14398:14;;;;;:::i;18534:413::-;5614:10;18627:4;18671:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;18671:34:0;;;;;;;;;;18724:35;;;;18716:85;;;;-1:-1:-1;;;18716:85:0;;5064:2:1;18716:85:0;;;5046:21:1;5103:2;5083:18;;;5076:30;5142:34;5122:18;;;5115:62;-1:-1:-1;;;5193:18:1;;;5186:35;5238:19;;18716:85:0;4862:401:1;18716:85:0;18837:67;5614:10;18860:7;18888:15;18869:16;:34;18837:8;:67::i;:::-;-1:-1:-1;18935:4:0;;18534:413;-1:-1:-1;;;18534:413:0:o;15728:175::-;15814:4;15831:42;5614:10;15855:9;15866:6;15831:9;:42::i;27609:150::-;7068:6;;-1:-1:-1;;;;;7068:6:0;5614:10;7068:22;7060:67;;;;-1:-1:-1;;;7060:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27705:25:0;;;::::1;;::::0;;;:15:::1;:25;::::0;;;;:46;;-1:-1:-1;;27705:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27609:150::o;7756:201::-;7068:6;;-1:-1:-1;;;;;7068:6:0;5614:10;7068:22;7060:67;;;;-1:-1:-1;;;7060:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7845:22:0;::::1;7837:73;;;::::0;-1:-1:-1;;;7837:73:0;;5470:2:1;7837:73:0::1;::::0;::::1;5452:21:1::0;5509:2;5489:18;;;5482:30;5548:34;5528:18;;;5521:62;-1:-1:-1;;;5599:18:1;;;5592:36;5645:19;;7837:73:0::1;5268:402:1::0;7837:73:0::1;7921:28;7940:8;7921:18;:28::i;22276:380::-:0;-1:-1:-1;;;;;22412:19:0;;22404:68;;;;-1:-1:-1;;;22404:68:0;;5877:2:1;22404:68:0;;;5859:21:1;5916:2;5896:18;;;5889:30;5955:34;5935:18;;;5928:62;-1:-1:-1;;;6006:18:1;;;5999:34;6050:19;;22404:68:0;5675:400:1;22404:68:0;-1:-1:-1;;;;;22491:21:0;;22483:68;;;;-1:-1:-1;;;22483:68:0;;6282:2:1;22483:68:0;;;6264:21:1;6321:2;6301:18;;;6294:30;6360:34;6340:18;;;6333:62;-1:-1:-1;;;6411:18:1;;;6404:32;6453:19;;22483:68:0;6080:398:1;22483:68:0;-1:-1:-1;;;;;22564:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22616:32;;1342:25:1;;;22616:32:0;;1315:18:1;22616:32:0;;;;;;;22276:380;;;:::o;19437:965::-;-1:-1:-1;;;;;19577:20:0;;19569:70;;;;-1:-1:-1;;;19569:70:0;;6685:2:1;19569:70:0;;;6667:21:1;6724:2;6704:18;;;6697:30;6763:34;6743:18;;;6736:62;-1:-1:-1;;;6814:18:1;;;6807:35;6859:19;;19569:70:0;6483:401:1;19569:70:0;-1:-1:-1;;;;;19658:23:0;;19650:71;;;;-1:-1:-1;;;19650:71:0;;7091:2:1;19650:71:0;;;7073:21:1;7130:2;7110:18;;;7103:30;7169:34;7149:18;;;7142:62;-1:-1:-1;;;7220:18:1;;;7213:33;7263:19;;19650:71:0;6889:399:1;19650:71:0;19732:26;19792:47;19813:6;19821:9;19832:6;19792:20;:47::i;:::-;-1:-1:-1;;;;;19876:17:0;;19852:21;19876:17;;;:9;:17;;;;;;19771:68;;-1:-1:-1;19912:23:0;;;;19904:74;;;;-1:-1:-1;;;19904:74:0;;7495:2:1;19904:74:0;;;7477:21:1;7534:2;7514:18;;;7507:30;7573:34;7553:18;;;7546:62;-1:-1:-1;;;7624:18:1;;;7617:36;7670:19;;19904:74:0;7293:402:1;19904:74:0;-1:-1:-1;;;;;20014:17:0;;;;;;;:9;:17;;;;;;20034:22;;;20014:42;;20078:20;;;;;;;;:42;;20102:18;;20014:17;20078:42;;20102:18;;20078:42;:::i;:::-;;;;-1:-1:-1;20198:27:0;;-1:-1:-1;20207:18:0;20198:6;:27;:::i;:::-;20149:42;20131:62;;;;:9;:62;;;:95;;:62;;;:95;;;;;:::i;:::-;;;;-1:-1:-1;20254:27:0;;-1:-1:-1;20263:18:0;20254:6;:27;:::i;:::-;20237:12;;:45;;;;;;;:::i;:::-;;;;;;;;20317:9;-1:-1:-1;;;;;20300:35:0;20309:6;-1:-1:-1;;;;;20300:35:0;;20328:6;20300:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;20300:35:0;;;;;;;;19558:844;;19437:965;;;:::o;21421:417::-;-1:-1:-1;;;;;21505:21:0;;21497:67;;;;-1:-1:-1;;;21497:67:0;;8035:2:1;21497:67:0;;;8017:21:1;8074:2;8054:18;;;8047:30;8113:34;8093:18;;;8086:62;-1:-1:-1;;;8164:18:1;;;8157:31;8205:19;;21497:67:0;7833:397:1;21497:67:0;-1:-1:-1;;;;;21602:18:0;;21577:22;21602:18;;;:9;:18;;;;;;;21653:26;;21736:23;;;21715:44;;;21602:18;21810:20;21736:23;21653:26;21810:20;:::i;:::-;21799:6;21781:26;;:9;:26;;;:49;-1:-1:-1;;;;21421:417:0:o;8117:191::-;8210:6;;;-1:-1:-1;;;;;8227:17:0;;;-1:-1:-1;;;;;;8227:17:0;;;;;;;8260:40;;8210:6;;;8227:17;8210:6;;8260:40;;8191:16;;8260:40;8180:128;8117:191;:::o;28141:817::-;28307:11;;28282:7;;-1:-1:-1;;;28307:11:0;;;;28302:112;;6921:6;;-1:-1:-1;;;;;28343:15:0;;;6921:6;;28343:15;;:32;;-1:-1:-1;6921:6:0;;-1:-1:-1;;;;;28362:13:0;;;6921:6;;28362:13;28343:32;28335:67;;;;-1:-1:-1;;;28335:67:0;;8437:2:1;28335:67:0;;;8419:21:1;8476:2;8456:18;;;8449:30;-1:-1:-1;;;8495:18:1;;;8488:52;8557:18;;28335:67:0;8235:346:1;28335:67:0;28430:7;;;;:31;;;;-1:-1:-1;;;;;;28442:19:0;;;;;;:15;:19;;;;;;;;28441:20;28430:31;:54;;;;-1:-1:-1;28471:13:0;;-1:-1:-1;;;;;28465:19:0;;;28471:13;;28465:19;;28430:54;:71;;;;-1:-1:-1;6921:6:0;;-1:-1:-1;;;;;28488:13:0;;;6921:6;;28488:13;;28430:71;:90;;;;-1:-1:-1;6921:6:0;;-1:-1:-1;;;;;28505:15:0;;;6921:6;;28505:15;;28430:90;28426:339;;;28577:16;;28567:6;28545:19;28561:2;-1:-1:-1;;;;;15489:18:0;15462:7;15489:18;;;:9;:18;;;;;;;15388:127;28545:19;:28;;;;:::i;:::-;:48;;28537:111;;;;-1:-1:-1;;;28537:111:0;;8788:2:1;28537:111:0;;;8770:21:1;8827:2;8807:18;;;8800:30;8866:34;8846:18;;;8839:62;-1:-1:-1;;;8917:18:1;;;8910:48;8975:19;;28537:111:0;8586:414:1;28537:111:0;28681:12;;28671:6;:22;;28663:90;;;;-1:-1:-1;;;28663:90:0;;9207:2:1;28663:90:0;;;9189:21:1;9246:2;9226:18;;;9219:30;9285:34;9265:18;;;9258:62;9356:25;9336:18;;;9329:53;9399:19;;28663:90:0;9005:419:1;28663:90:0;-1:-1:-1;;;;;28782:21:0;;;;;;:15;:21;;;;;;;;28781:22;:46;;;;-1:-1:-1;;;;;;28808:19:0;;;;;;:15;:19;;;;;;;;28807:20;28781:46;:71;;;;-1:-1:-1;28831:7:0;;-1:-1:-1;;;;;28831:7:0;:21;;28781:71;28777:150;;;28876:7;;28869:46;;-1:-1:-1;;;28869:46:0;;-1:-1:-1;;;;;9687:15:1;;;28869:46:0;;;9669:34:1;9739:15;;;9719:18;;;9712:43;9771:18;;;9764:34;;;28876:7:0;;;;28869:28;;9604:18:1;;28869:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28777:150;-1:-1:-1;28944:6:0;28141:817;-1:-1:-1;;28141:817:0:o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1711:186::-;1770:6;1823:2;1811:9;1802:7;1798:23;1794:32;1791:52;;;1839:1;1836;1829:12;1791:52;1862:29;1881:9;1862:29;:::i;:::-;1852:39;1711:186;-1:-1:-1;;;1711:186:1:o;2299:180::-;2358:6;2411:2;2399:9;2390:7;2386:23;2382:32;2379:52;;;2427:1;2424;2417:12;2379:52;-1:-1:-1;2450:23:1;;2299:180;-1:-1:-1;2299:180:1:o;2484:248::-;2552:6;2560;2613:2;2601:9;2592:7;2588:23;2584:32;2581:52;;;2629:1;2626;2619:12;2581:52;-1:-1:-1;;2652:23:1;;;2722:2;2707:18;;;2694:32;;-1:-1:-1;2484:248:1:o;2737:260::-;2805:6;2813;2866:2;2854:9;2845:7;2841:23;2837:32;2834:52;;;2882:1;2879;2872:12;2834:52;2905:29;2924:9;2905:29;:::i;:::-;2895:39;;2953:38;2987:2;2976:9;2972:18;2953:38;:::i;:::-;2943:48;;2737:260;;;;;:::o;3002:118::-;3088:5;3081:13;3074:21;3067:5;3064:32;3054:60;;3110:1;3107;3100:12;3125:315;3190:6;3198;3251:2;3239:9;3230:7;3226:23;3222:32;3219:52;;;3267:1;3264;3257:12;3219:52;3290:29;3309:9;3290:29;:::i;:::-;3280:39;;3369:2;3358:9;3354:18;3341:32;3382:28;3404:5;3382:28;:::i;:::-;3429:5;3419:15;;;3125:315;;;;;:::o;3445:380::-;3524:1;3520:12;;;;3567;;;3588:61;;3642:4;3634:6;3630:17;3620:27;;3588:61;3695:2;3687:6;3684:14;3664:18;3661:38;3658:161;;3741:10;3736:3;3732:20;3729:1;3722:31;3776:4;3773:1;3766:15;3804:4;3801:1;3794:15;3658:161;;3445:380;;;:::o;4239:356::-;4441:2;4423:21;;;4460:18;;;4453:30;4519:34;4514:2;4499:18;;4492:62;4586:2;4571:18;;4239:356::o;4600:127::-;4661:10;4656:3;4652:20;4649:1;4642:31;4692:4;4689:1;4682:15;4716:4;4713:1;4706:15;4732:125;4797:9;;;4818:10;;;4815:36;;;4831:18;;:::i;7700:128::-;7767:9;;;7788:11;;;7785:37;;;7802:18;;:::i;9809:245::-;9876:6;9929:2;9917:9;9908:7;9904:23;9900:32;9897:52;;;9945:1;9942;9935:12;9897:52;9977:9;9971:16;9996:28;10018:5;9996:28;:::i

Swarm Source

ipfs://e9f17df78d36f7b073892a3e83db8f60ccacc4204b848aa57652303790968de9

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
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.