ETH Price: $2,352.93 (+0.21%)

Contract

0x8bFD4c0Eecc65a884CD6Ff42BfeadD28d6252aC4
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve183018452023-10-07 23:18:59340 days ago1696720739IN
0x8bFD4c0E...8d6252aC4
0 ETH0.0004777910.245579
Renounce Ownersh...183018352023-10-07 23:16:59340 days ago1696720619IN
0x8bFD4c0E...8d6252aC4
0 ETH0.000134265.76944434
Set Sell Taxes183018332023-10-07 23:16:35340 days ago1696720595IN
0x8bFD4c0E...8d6252aC4
0 ETH0.000145775.82340524
Set Buy Taxes183018312023-10-07 23:16:11340 days ago1696720571IN
0x8bFD4c0E...8d6252aC4
0 ETH0.000186567.45345976
Approve183018132023-10-07 23:12:35340 days ago1696720355IN
0x8bFD4c0E...8d6252aC4
0 ETH0.000375598.05410507
Set Sell Taxes183018052023-10-07 23:10:59340 days ago1696720259IN
0x8bFD4c0E...8d6252aC4
0 ETH0.000148974.99193637
Set Buy Taxes183018042023-10-07 23:10:47340 days ago1696720247IN
0x8bFD4c0E...8d6252aC4
0 ETH0.000146594.91252273
Approve183017942023-10-07 23:08:47340 days ago1696720127IN
0x8bFD4c0E...8d6252aC4
0 ETH0.000373838.01628827
Remove Limits183017832023-10-07 23:06:35340 days ago1696719995IN
0x8bFD4c0E...8d6252aC4
0 ETH0.000204936.07891984
Approve183017792023-10-07 23:05:47340 days ago1696719947IN
0x8bFD4c0E...8d6252aC4
0 ETH0.0004851210.40545833
Approve183017792023-10-07 23:05:47340 days ago1696719947IN
0x8bFD4c0E...8d6252aC4
0 ETH0.0004851210.40545833
Approve183017792023-10-07 23:05:47340 days ago1696719947IN
0x8bFD4c0E...8d6252aC4
0 ETH0.0004851210.40545833
Approve183017762023-10-07 23:05:11340 days ago1696719911IN
0x8bFD4c0E...8d6252aC4
0 ETH0.000388458.32978177
Approve183017752023-10-07 23:04:59340 days ago1696719899IN
0x8bFD4c0E...8d6252aC4
0 ETH0.00143130.68586686
Approve183017752023-10-07 23:04:59340 days ago1696719899IN
0x8bFD4c0E...8d6252aC4
0 ETH0.00143130.68586686
Approve183017752023-10-07 23:04:59340 days ago1696719899IN
0x8bFD4c0E...8d6252aC4
0 ETH0.00143130.68586686
Approve183017752023-10-07 23:04:59340 days ago1696719899IN
0x8bFD4c0E...8d6252aC4
0 ETH0.00143130.68586686
Approve183017752023-10-07 23:04:59340 days ago1696719899IN
0x8bFD4c0E...8d6252aC4
0 ETH0.00143130.68586686
Approve183017752023-10-07 23:04:59340 days ago1696719899IN
0x8bFD4c0E...8d6252aC4
0 ETH0.0005915912.68586686
Enable Trading183017732023-10-07 23:04:35340 days ago1696719875IN
0x8bFD4c0E...8d6252aC4
0 ETH0.000318246.27092762
Approve183017522023-10-07 23:00:23340 days ago1696719623IN
0x8bFD4c0E...8d6252aC4
0 ETH0.000301126.45721973
0x601960c0183017412023-10-07 22:58:11340 days ago1696719491IN
 Create: EROSION
0 ETH0.028079355.97078155

Latest 4 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
183018472023-10-07 23:19:35340 days ago1696720775
0x8bFD4c0E...8d6252aC4
0.01576057 ETH
183018472023-10-07 23:19:35340 days ago1696720775
0x8bFD4c0E...8d6252aC4
0.01576057 ETH
183018062023-10-07 23:11:11340 days ago1696720271
0x8bFD4c0E...8d6252aC4
0.23907023 ETH
183018062023-10-07 23:11:11340 days ago1696720271
0x8bFD4c0E...8d6252aC4
0.23907023 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
EROSION

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-07
*/

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// Telegram : https://t.me/ErosionPortal
// Twitter : https://twitter.com/Erosion_Bird


pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

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

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.9.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());
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts (last updated v4.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

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

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

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

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

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

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

// File: popi.sol

//SPDX-License-Identifier: MIT

// Telegram : https://t.me/ErosionPortal
// Twitter : https://twitter.com/Erosion_Bird




pragma solidity 0.8.19;

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

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

    function WETH() external pure returns (address);

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

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

contract EROSION is ERC20, Ownable {
    struct Tax {
        uint256 marketingTax;
    }

    uint256 private constant _totalSupply = 1_000_000_000 * 1e18;

    //Router
    DexRouter public immutable uniswapRouter;
    address public immutable pairAddress;

    //Taxes
    Tax public buyTaxes = Tax(25);
    Tax public sellTaxes = Tax(25);
    Tax public transferTaxes = Tax(25);



    //Whitelisting from taxes/maxwallet/txlimit/etc
    mapping(address => bool) private whitelisted;
    mapping(address => bool) private isblacklisted;
    mapping(address => uint256) private _holderLastTransferTimestamp;

    //Swapping
    uint256 public swapTokensAtAmount = _totalSupply / 1_000_000; //after 0.01% of total supply, swap them
    bool public swapAndLiquifyEnabled = true;
    bool public isSwapping = false;
    bool public tradingEnabled = false;
    uint256 public startTradingBlock;
    bool public transferDelayEnabled = true;

    //Wallets
    address public marketingWallet = 0xc053135F24Dab2D11b0d1555aC7D0D522931aBd3 ;
    uint256 public maxWalletPercentage = 2;


    //Events
    event BuyFeesUpdated(uint256 indexed _trFee);
    event SellFeesUpdated(uint256 indexed _trFee);
    event marketingWalletChanged(address indexed _trWallet);
    event SwapThresholdUpdated(uint256 indexed _newThreshold);
    event InternalSwapStatusUpdated(bool indexed _status);
    event Whitelist(address indexed _target, bool indexed _status);
    event MaxWalletChanged(uint256 percentage);

    constructor() ERC20("Erosion Bird", "EROSION") {


       uniswapRouter = DexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // mainet
        pairAddress = DexFactory(uniswapRouter.factory()).createPair(
            address(this),
            uniswapRouter.WETH()
        );
        whitelisted[msg.sender] = true;
        whitelisted[address(uniswapRouter)] = true;
        whitelisted[address(this)] = true;       
        _mint(msg.sender, _totalSupply);
 
    }

    function setmarketingWallet(address _newmarketing) external onlyOwner {
        require(
            _newmarketing != address(0),
            "can not set marketing to dead wallet"
        );
        marketingWallet = _newmarketing;
        emit marketingWalletChanged(_newmarketing);
    }
    function enableTrading() external onlyOwner {
        require(!tradingEnabled, "Trading is already enabled");
        tradingEnabled = true;
        startTradingBlock = block.number;
    }

    function setBuyTaxes(uint256 _marketingTax) external onlyOwner {
        buyTaxes.marketingTax = _marketingTax;
        require(_marketingTax <= 30, "Can not set buy fees higher than 30%");
        emit BuyFeesUpdated(_marketingTax);
    }

    function setSellTaxes(uint256 _marketingTax) external onlyOwner {
        sellTaxes.marketingTax = _marketingTax;
        require(_marketingTax <= 30, "Can not set buy fees higher than 30%");
        emit SellFeesUpdated(_marketingTax);
    }

    function setSwapTokensAtAmount(uint256 _newAmount) external onlyOwner {
        require(
            _newAmount > 0 && _newAmount <= (_totalSupply * 5) / 1000,
            "Minimum swap amount must be greater than 0 and less than 0.5% of total supply!"
        );
        swapTokensAtAmount = _newAmount;
        emit SwapThresholdUpdated(swapTokensAtAmount);
    }

    function toggleSwapping() external onlyOwner {
        swapAndLiquifyEnabled = (swapAndLiquifyEnabled) ? false : true;
    }

    function setWhitelistStatus(
        address _wallet,
        bool _status
    ) external onlyOwner {
        whitelisted[_wallet] = _status;
        emit Whitelist(_wallet, _status);
    }

    function checkWhitelist(address _wallet) external view returns (bool) {
        return whitelisted[_wallet];
    }
    function setMaxWalletPercentage(uint256 _percentage) external onlyOwner {
    require(_percentage > 1, "Percentage must be greater than 1%");
    require(_percentage <= 100, "Percentage must be less than or equal to 100");
    maxWalletPercentage = _percentage;
    emit MaxWalletChanged(_percentage);
}


    // this function is reponsible for managing tax, if _from or _to is whitelisted, we simply return _amount and skip all the limitations
function _takeTax(
        address _from,
        address _to,
        uint256 _amount
    ) internal returns (uint256) {
        if (whitelisted[_from] || whitelisted[_to]) {
            return _amount;
        }

        uint256 totalTax = transferTaxes.marketingTax;

        if (_to == pairAddress) {
            totalTax = sellTaxes.marketingTax;
        } else if (_from == pairAddress) {
            totalTax = buyTaxes.marketingTax;
        }


        uint256 tax = 0;
        if (totalTax > 0) {
            tax = (_amount * totalTax) / 100;
            super._transfer(_from, address(this), tax);
        }
        return (_amount - tax);
    }

function _transfer(
    address _from,
    address _to,
    uint256 _amount
) internal virtual override {
    // Add transfer delay logic
    if (transferDelayEnabled) {
        if (_to != address(pairAddress) && _to != address(pairAddress)) {
            require(_holderLastTransferTimestamp[tx.origin] < block.number, "Only one transfer per block allowed.");
            _holderLastTransferTimestamp[tx.origin] = block.number;
        }
    }

    require(_from != address(0), "transfer from address zero");
    require(_to != address(0), "transfer to address zero");
    require(_amount > 0, "Transfer amount must be greater than zero");

    // Check if the addresses are blacklisted
    require(!isblacklisted[_from], "Transfer from blacklisted address");
    require(!isblacklisted[_to], "Transfer to blacklisted address");

    // Calculate the maximum wallet amount based on the total supply and the maximum wallet percentage
    uint256 maxWalletAmount = _totalSupply * maxWalletPercentage / 100;

    // Check if the transaction is within the maximum wallet limit
    if (!whitelisted[_from] && !whitelisted[_to] && _to != address(0) && _to != address(this) && _to != pairAddress) {
        require(balanceOf(_to) + _amount <= maxWalletAmount, "Exceeds maximum wallet amount");
    }

    uint256 toTransfer = _takeTax(_from, _to, _amount);

    bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount;
    if (!whitelisted[_from] && !whitelisted[_to]) {
        require(tradingEnabled, "Trading not active");
        if (pairAddress == _to && swapAndLiquifyEnabled && canSwap && !isSwapping) {
            internalSwap();
        }
    }

    super._transfer(_from, _to, toTransfer);
}

    function internalSwap() internal {
        isSwapping = true;
        uint256 taxAmount = balanceOf(address(this)); 
        if (taxAmount == 0) {
            return;
        }
        swapToETH(balanceOf(address(this)));
       (bool success, ) = marketingWallet.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
        isSwapping = false;
    }
    function Isblacklisted(address a) public view returns (bool){
      return isblacklisted[a];
    }

    function addtoblacklist(address[] memory isblacklisted_) public onlyOwner {
        for (uint i = 0; i < isblacklisted_.length; i++) {
            isblacklisted[isblacklisted_[i]] = true;
        }
    }

    function removefromblacklist(address[] memory isnotblacklisted_) public onlyOwner {
      for (uint i = 0; i < isnotblacklisted_.length; i++) {
          isblacklisted[isnotblacklisted_[i]] = false;
      }
    }

        function removeLimits() external onlyOwner{
        maxWalletPercentage =100;
        transferDelayEnabled=false;
        transferTaxes.marketingTax = 0;
    }

    function swapToETH(uint256 _amount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapRouter.WETH();
        _approve(address(this), address(uniswapRouter), _amount);
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            _amount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_trFee","type":"uint256"}],"name":"BuyFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"InternalSwapStatusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"MaxWalletChanged","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":"uint256","name":"_trFee","type":"uint256"}],"name":"SellFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_newThreshold","type":"uint256"}],"name":"SwapThresholdUpdated","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_target","type":"address"},{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"Whitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_trWallet","type":"address"}],"name":"marketingWalletChanged","type":"event"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"Isblacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"isblacklisted_","type":"address[]"}],"name":"addtoblacklist","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":"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":"buyTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"enableTrading","outputs":[],"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":[],"name":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"isnotblacklisted_","type":"address[]"}],"name":"removefromblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percentage","type":"uint256"}],"name":"setMaxWalletPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newmarketing","type":"address"}],"name":"setmarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract DexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

601960c0819052600681905560e081905260078190556101206040526101008190526008556200003f620f42406b033b2e3c9fd0803ce800000062000402565b600c55600d805462ffffff19166001179055600f805474c053135f24dab2d11b0d1555ac7d0d522931abd3016001600160a81b031990911617905560026010553480156200008c57600080fd5b506040518060400160405280600c81526020016b115c9bdcda5bdb88109a5c9960a21b8152506040518060400160405280600781526020016622a927a9a4a7a760c91b8152508160039081620000e39190620004c9565b506004620000f28282620004c9565b5050506200010f62000109620002e160201b60201c565b620002e5565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000165573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018b919062000595565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001db573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000201919062000595565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200024f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000275919062000595565b6001600160a01b0390811660a052336000818152600960205260408082208054600160ff199182168117909255608051909516835281832080548616821790553083529120805490931617909155620002db906b033b2e3c9fd0803ce800000062000337565b620005ef565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003925760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620003a69190620005c7565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6000826200042057634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200045057607f821691505b6020821081036200047157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003fd57600081815260208120601f850160051c81016020861015620004a05750805b601f850160051c820191505b81811015620004c157828155600101620004ac565b505050505050565b81516001600160401b03811115620004e557620004e562000425565b620004fd81620004f684546200043b565b8462000477565b602080601f8311600181146200053557600084156200051c5750858301515b600019600386901b1c1916600185901b178555620004c1565b600085815260208120601f198616915b82811015620005665788860151825594840194600190910190840162000545565b5085821015620005855787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620005a857600080fd5b81516001600160a01b0381168114620005c057600080fd5b9392505050565b80820180821115620005e957634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a05161209062000654600039600081816105fb015281816111420152818161117f015281816114bf015281816116350152818161175301526117870152600081816104a001528181611aec01528181611ba50152611be101526120906000f3fe60806040526004361061023f5760003560e01c806376be96f31161012e578063afa4f3b2116100ab578063e5f320041161006f578063e5f32004146106cc578063e64b012f14610705578063ef586f7114610725578063f2fde38b1461073a578063f66895a31461075a57600080fd5b8063afa4f3b21461063d578063b88631151461065d578063c876d0b91461067c578063dd62ed3e14610696578063e2f45605146106b657600080fd5b806395d89b41116100f257806395d89b4114610594578063a3ca847d146105a9578063a457c2d7146105c9578063a8b08982146105e9578063a9059cbb1461061d57600080fd5b806376be96f3146105145780637a845ece1461052a578063864701a51461054a5780638a8c523c146105615780638da5cb5b1461057657600080fd5b806339509351116101bc57806370a082311161018057806370a0823114610443578063715018a614610479578063735de9f71461048e578063751039fc146104da57806375f0a874146104ef57600080fd5b806339509351146103bc5780634a74bb02146103dc5780634ada218b146103f65780635331803c14610416578063599ca3971461042d57600080fd5b806318160ddd1161020357806318160ddd146103085780631950c21814610327578063224611731461036057806323b872dd14610380578063313ce567146103a057600080fd5b806306fdde031461024b5780630940bbc714610276578063095ea7b3146102985780630c424284146102c857806315fac9f4146102e857600080fd5b3661024657005b600080fd5b34801561025757600080fd5b50610260610771565b60405161026d9190611c4d565b60405180910390f35b34801561028257600080fd5b50610296610291366004611c9b565b610803565b005b3480156102a457600080fd5b506102b86102b3366004611cd9565b610868565b604051901515815260200161026d565b3480156102d457600080fd5b506102966102e3366004611d05565b610882565b3480156102f457600080fd5b50610296610303366004611d59565b6108de565b34801561031457600080fd5b506002545b60405190815260200161026d565b34801561033357600080fd5b506102b8610342366004611e1e565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561036c57600080fd5b5061029661037b366004611e1e565b610952565b34801561038c57600080fd5b506102b861039b366004611e3b565b610a0e565b3480156103ac57600080fd5b506040516012815260200161026d565b3480156103c857600080fd5b506102b86103d7366004611cd9565b610a34565b3480156103e857600080fd5b50600d546102b89060ff1681565b34801561040257600080fd5b50600d546102b89062010000900460ff1681565b34801561042257600080fd5b506008546103199081565b34801561043957600080fd5b5061031960105481565b34801561044f57600080fd5b5061031961045e366004611e1e565b6001600160a01b031660009081526020819052604090205490565b34801561048557600080fd5b50610296610a56565b34801561049a57600080fd5b506104c27f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161026d565b3480156104e657600080fd5b50610296610a6a565b3480156104fb57600080fd5b50600f546104c29061010090046001600160a01b031681565b34801561052057600080fd5b50610319600e5481565b34801561053657600080fd5b50610296610545366004611c9b565b610a88565b34801561055657600080fd5b506006546103199081565b34801561056d57600080fd5b50610296610b8c565b34801561058257600080fd5b506005546001600160a01b03166104c2565b3480156105a057600080fd5b50610260610c04565b3480156105b557600080fd5b506102966105c4366004611c9b565b610c13565b3480156105d557600080fd5b506102b86105e4366004611cd9565b610c6f565b3480156105f557600080fd5b506104c27f000000000000000000000000000000000000000000000000000000000000000081565b34801561062957600080fd5b506102b8610638366004611cd9565b610cf5565b34801561064957600080fd5b50610296610658366004611c9b565b610d03565b34801561066957600080fd5b50600d546102b890610100900460ff1681565b34801561068857600080fd5b50600f546102b89060ff1681565b3480156106a257600080fd5b506103196106b1366004611e7c565b610dfa565b3480156106c257600080fd5b50610319600c5481565b3480156106d857600080fd5b506102b86106e7366004611e1e565b6001600160a01b03166000908152600a602052604090205460ff1690565b34801561071157600080fd5b50610296610720366004611d59565b610e25565b34801561073157600080fd5b50610296610e95565b34801561074657600080fd5b50610296610755366004611e1e565b610ec4565b34801561076657600080fd5b506007546103199081565b60606003805461078090611eaa565b80601f01602080910402602001604051908101604052809291908181526020018280546107ac90611eaa565b80156107f95780601f106107ce576101008083540402835291602001916107f9565b820191906000526020600020905b8154815290600101906020018083116107dc57829003601f168201915b5050505050905090565b61080b610f3d565b6007819055601e81111561083a5760405162461bcd60e51b815260040161083190611ee4565b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b600033610876818585610f97565b60019150505b92915050565b61088a610f3d565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b6108e6610f3d565b60005b815181101561094e576001600a600084848151811061090a5761090a611f28565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061094681611f54565b9150506108e9565b5050565b61095a610f3d565b6001600160a01b0381166109bc5760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b6064820152608401610831565b600f8054610100600160a81b0319166101006001600160a01b038416908102919091179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b600033610a1c8582856110bb565b610a27858585611135565b60019150505b9392505050565b600033610876818585610a478383610dfa565b610a519190611f6d565b610f97565b610a5e610f3d565b610a6860006116a9565b565b610a72610f3d565b6064601055600f805460ff191690556000600855565b610a90610f3d565b60018111610aeb5760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b6064820152608401610831565b6064811115610b515760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b6064820152608401610831565b60108190556040518181527fd79b8c9aaacc4db9fee532137a1ade40c7238016bff71cb2abc1a3cf8b6cdff69060200160405180910390a150565b610b94610f3d565b600d5462010000900460ff1615610bed5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610831565b600d805462ff000019166201000017905543600e55565b60606004805461078090611eaa565b610c1b610f3d565b6006819055601e811115610c415760405162461bcd60e51b815260040161083190611ee4565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b60003381610c7d8286610dfa565b905083811015610cdd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610831565b610cea8286868403610f97565b506001949350505050565b600033610876818585611135565b610d0b610f3d565b600081118015610d3e57506103e8610d306b033b2e3c9fd0803ce80000006005611f80565b610d3a9190611f97565b8111155b610dc75760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a401610831565b600c81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e2d610f3d565b60005b815181101561094e576000600a6000848481518110610e5157610e51611f28565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610e8d81611f54565b915050610e30565b610e9d610f3d565b600d5460ff16610eae576001610eb1565b60005b600d805460ff1916911515919091179055565b610ecc610f3d565b6001600160a01b038116610f315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610831565b610f3a816116a9565b50565b6005546001600160a01b03163314610a685760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610831565b6001600160a01b038316610ff95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610831565b6001600160a01b03821661105a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610831565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006110c78484610dfa565b9050600019811461112f57818110156111225760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610831565b61112f8484848403610f97565b50505050565b600f5460ff1615611236577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316141580156111b457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561123657326000908152600b602052604090205443116112235760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b6064820152608401610831565b326000908152600b602052604090204390555b6001600160a01b03831661128c5760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f0000000000006044820152606401610831565b6001600160a01b0382166112e25760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f00000000000000006044820152606401610831565b600081116113445760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610831565b6001600160a01b0383166000908152600a602052604090205460ff16156113b75760405162461bcd60e51b815260206004820152602160248201527f5472616e736665722066726f6d20626c61636b6c6973746564206164647265736044820152607360f81b6064820152608401610831565b6001600160a01b0382166000908152600a602052604090205460ff16156114205760405162461bcd60e51b815260206004820152601f60248201527f5472616e7366657220746f20626c61636b6c69737465642061646472657373006044820152606401610831565b600060646010546b033b2e3c9fd0803ce800000061143e9190611f80565b6114489190611f97565b6001600160a01b03851660009081526009602052604090205490915060ff1615801561148d57506001600160a01b03831660009081526009602052604090205460ff16155b80156114a157506001600160a01b03831615155b80156114b657506001600160a01b0383163014155b80156114f457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614155b1561157257808261151a856001600160a01b031660009081526020819052604090205490565b6115249190611f6d565b11156115725760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e740000006044820152606401610831565b600061157f8585856116fb565b600c5430600090815260208181526040808320546001600160a01b038b16845260099092529091205492935010159060ff161580156115d757506001600160a01b03851660009081526009602052604090205460ff16155b1561169657600d5462010000900460ff166116295760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b6044820152606401610831565b846001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614801561166c5750600d5460ff165b80156116755750805b80156116895750600d54610100900460ff16155b1561169657611696611802565b6116a18686846118f1565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff168061173a57506001600160a01b03831660009081526009602052604090205460ff165b15611746575080610a2d565b6008546001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169085160361178557506007546117c3565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316036117c357506006545b600081156117ee5760646117d78386611f80565b6117e19190611f97565b90506117ee8630836118f1565b6117f88185611fb9565b9695505050505050565b600d805461ff0019166101001790553060009081526020819052604081205490508060000361182e5750565b3060009081526020819052604090205461184790611a95565b600f5460405160009161010090046001600160a01b03169047908381818185875af1925050503d8060008114611899576040519150601f19603f3d011682016040523d82523d6000602084013e61189e565b606091505b50509050806118e25760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610831565b5050600d805461ff0019169055565b6001600160a01b0383166119555760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610831565b6001600160a01b0382166119b75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610831565b6001600160a01b03831660009081526020819052604090205481811015611a2f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610831565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361112f565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611aca57611aca611f28565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b6c9190611fcc565b81600181518110611b7f57611b7f611f28565b60200260200101906001600160a01b031690816001600160a01b031681525050611bca307f000000000000000000000000000000000000000000000000000000000000000084610f97565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611c1f908590600090869030904290600401611fe9565b600060405180830381600087803b158015611c3957600080fd5b505af11580156116a1573d6000803e3d6000fd5b600060208083528351808285015260005b81811015611c7a57858101830151858201604001528201611c5e565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611cad57600080fd5b5035919050565b6001600160a01b0381168114610f3a57600080fd5b8035611cd481611cb4565b919050565b60008060408385031215611cec57600080fd5b8235611cf781611cb4565b946020939093013593505050565b60008060408385031215611d1857600080fd5b8235611d2381611cb4565b915060208301358015158114611d3857600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215611d6c57600080fd5b823567ffffffffffffffff80821115611d8457600080fd5b818501915085601f830112611d9857600080fd5b813581811115611daa57611daa611d43565b8060051b604051601f19603f83011681018181108582111715611dcf57611dcf611d43565b604052918252848201925083810185019188831115611ded57600080fd5b938501935b82851015611e1257611e0385611cc9565b84529385019392850192611df2565b98975050505050505050565b600060208284031215611e3057600080fd5b8135610a2d81611cb4565b600080600060608486031215611e5057600080fd5b8335611e5b81611cb4565b92506020840135611e6b81611cb4565b929592945050506040919091013590565b60008060408385031215611e8f57600080fd5b8235611e9a81611cb4565b91506020830135611d3881611cb4565b600181811c90821680611ebe57607f821691505b602082108103611ede57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526024908201527f43616e206e6f742073657420627579206665657320686967686572207468616e6040820152632033302560e01b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611f6657611f66611f3e565b5060010190565b8082018082111561087c5761087c611f3e565b808202811582820484141761087c5761087c611f3e565b600082611fb457634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561087c5761087c611f3e565b600060208284031215611fde57600080fd5b8151610a2d81611cb4565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120395784516001600160a01b031683529383019391830191600101612014565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122022ddcb5adad127705b652b691b5ad282c31cad8b785a33113d7df4b74ce0063864736f6c63430008130033

Deployed Bytecode

0x60806040526004361061023f5760003560e01c806376be96f31161012e578063afa4f3b2116100ab578063e5f320041161006f578063e5f32004146106cc578063e64b012f14610705578063ef586f7114610725578063f2fde38b1461073a578063f66895a31461075a57600080fd5b8063afa4f3b21461063d578063b88631151461065d578063c876d0b91461067c578063dd62ed3e14610696578063e2f45605146106b657600080fd5b806395d89b41116100f257806395d89b4114610594578063a3ca847d146105a9578063a457c2d7146105c9578063a8b08982146105e9578063a9059cbb1461061d57600080fd5b806376be96f3146105145780637a845ece1461052a578063864701a51461054a5780638a8c523c146105615780638da5cb5b1461057657600080fd5b806339509351116101bc57806370a082311161018057806370a0823114610443578063715018a614610479578063735de9f71461048e578063751039fc146104da57806375f0a874146104ef57600080fd5b806339509351146103bc5780634a74bb02146103dc5780634ada218b146103f65780635331803c14610416578063599ca3971461042d57600080fd5b806318160ddd1161020357806318160ddd146103085780631950c21814610327578063224611731461036057806323b872dd14610380578063313ce567146103a057600080fd5b806306fdde031461024b5780630940bbc714610276578063095ea7b3146102985780630c424284146102c857806315fac9f4146102e857600080fd5b3661024657005b600080fd5b34801561025757600080fd5b50610260610771565b60405161026d9190611c4d565b60405180910390f35b34801561028257600080fd5b50610296610291366004611c9b565b610803565b005b3480156102a457600080fd5b506102b86102b3366004611cd9565b610868565b604051901515815260200161026d565b3480156102d457600080fd5b506102966102e3366004611d05565b610882565b3480156102f457600080fd5b50610296610303366004611d59565b6108de565b34801561031457600080fd5b506002545b60405190815260200161026d565b34801561033357600080fd5b506102b8610342366004611e1e565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561036c57600080fd5b5061029661037b366004611e1e565b610952565b34801561038c57600080fd5b506102b861039b366004611e3b565b610a0e565b3480156103ac57600080fd5b506040516012815260200161026d565b3480156103c857600080fd5b506102b86103d7366004611cd9565b610a34565b3480156103e857600080fd5b50600d546102b89060ff1681565b34801561040257600080fd5b50600d546102b89062010000900460ff1681565b34801561042257600080fd5b506008546103199081565b34801561043957600080fd5b5061031960105481565b34801561044f57600080fd5b5061031961045e366004611e1e565b6001600160a01b031660009081526020819052604090205490565b34801561048557600080fd5b50610296610a56565b34801561049a57600080fd5b506104c27f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161026d565b3480156104e657600080fd5b50610296610a6a565b3480156104fb57600080fd5b50600f546104c29061010090046001600160a01b031681565b34801561052057600080fd5b50610319600e5481565b34801561053657600080fd5b50610296610545366004611c9b565b610a88565b34801561055657600080fd5b506006546103199081565b34801561056d57600080fd5b50610296610b8c565b34801561058257600080fd5b506005546001600160a01b03166104c2565b3480156105a057600080fd5b50610260610c04565b3480156105b557600080fd5b506102966105c4366004611c9b565b610c13565b3480156105d557600080fd5b506102b86105e4366004611cd9565b610c6f565b3480156105f557600080fd5b506104c27f000000000000000000000000afe067d0275e8f5a59f2e54857f19475e2129d1581565b34801561062957600080fd5b506102b8610638366004611cd9565b610cf5565b34801561064957600080fd5b50610296610658366004611c9b565b610d03565b34801561066957600080fd5b50600d546102b890610100900460ff1681565b34801561068857600080fd5b50600f546102b89060ff1681565b3480156106a257600080fd5b506103196106b1366004611e7c565b610dfa565b3480156106c257600080fd5b50610319600c5481565b3480156106d857600080fd5b506102b86106e7366004611e1e565b6001600160a01b03166000908152600a602052604090205460ff1690565b34801561071157600080fd5b50610296610720366004611d59565b610e25565b34801561073157600080fd5b50610296610e95565b34801561074657600080fd5b50610296610755366004611e1e565b610ec4565b34801561076657600080fd5b506007546103199081565b60606003805461078090611eaa565b80601f01602080910402602001604051908101604052809291908181526020018280546107ac90611eaa565b80156107f95780601f106107ce576101008083540402835291602001916107f9565b820191906000526020600020905b8154815290600101906020018083116107dc57829003601f168201915b5050505050905090565b61080b610f3d565b6007819055601e81111561083a5760405162461bcd60e51b815260040161083190611ee4565b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b600033610876818585610f97565b60019150505b92915050565b61088a610f3d565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b6108e6610f3d565b60005b815181101561094e576001600a600084848151811061090a5761090a611f28565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061094681611f54565b9150506108e9565b5050565b61095a610f3d565b6001600160a01b0381166109bc5760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b6064820152608401610831565b600f8054610100600160a81b0319166101006001600160a01b038416908102919091179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b600033610a1c8582856110bb565b610a27858585611135565b60019150505b9392505050565b600033610876818585610a478383610dfa565b610a519190611f6d565b610f97565b610a5e610f3d565b610a6860006116a9565b565b610a72610f3d565b6064601055600f805460ff191690556000600855565b610a90610f3d565b60018111610aeb5760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b6064820152608401610831565b6064811115610b515760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b6064820152608401610831565b60108190556040518181527fd79b8c9aaacc4db9fee532137a1ade40c7238016bff71cb2abc1a3cf8b6cdff69060200160405180910390a150565b610b94610f3d565b600d5462010000900460ff1615610bed5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610831565b600d805462ff000019166201000017905543600e55565b60606004805461078090611eaa565b610c1b610f3d565b6006819055601e811115610c415760405162461bcd60e51b815260040161083190611ee4565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b60003381610c7d8286610dfa565b905083811015610cdd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610831565b610cea8286868403610f97565b506001949350505050565b600033610876818585611135565b610d0b610f3d565b600081118015610d3e57506103e8610d306b033b2e3c9fd0803ce80000006005611f80565b610d3a9190611f97565b8111155b610dc75760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a401610831565b600c81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e2d610f3d565b60005b815181101561094e576000600a6000848481518110610e5157610e51611f28565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610e8d81611f54565b915050610e30565b610e9d610f3d565b600d5460ff16610eae576001610eb1565b60005b600d805460ff1916911515919091179055565b610ecc610f3d565b6001600160a01b038116610f315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610831565b610f3a816116a9565b50565b6005546001600160a01b03163314610a685760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610831565b6001600160a01b038316610ff95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610831565b6001600160a01b03821661105a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610831565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006110c78484610dfa565b9050600019811461112f57818110156111225760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610831565b61112f8484848403610f97565b50505050565b600f5460ff1615611236577f000000000000000000000000afe067d0275e8f5a59f2e54857f19475e2129d156001600160a01b0316826001600160a01b0316141580156111b457507f000000000000000000000000afe067d0275e8f5a59f2e54857f19475e2129d156001600160a01b0316826001600160a01b031614155b1561123657326000908152600b602052604090205443116112235760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b6064820152608401610831565b326000908152600b602052604090204390555b6001600160a01b03831661128c5760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f0000000000006044820152606401610831565b6001600160a01b0382166112e25760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f00000000000000006044820152606401610831565b600081116113445760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610831565b6001600160a01b0383166000908152600a602052604090205460ff16156113b75760405162461bcd60e51b815260206004820152602160248201527f5472616e736665722066726f6d20626c61636b6c6973746564206164647265736044820152607360f81b6064820152608401610831565b6001600160a01b0382166000908152600a602052604090205460ff16156114205760405162461bcd60e51b815260206004820152601f60248201527f5472616e7366657220746f20626c61636b6c69737465642061646472657373006044820152606401610831565b600060646010546b033b2e3c9fd0803ce800000061143e9190611f80565b6114489190611f97565b6001600160a01b03851660009081526009602052604090205490915060ff1615801561148d57506001600160a01b03831660009081526009602052604090205460ff16155b80156114a157506001600160a01b03831615155b80156114b657506001600160a01b0383163014155b80156114f457507f000000000000000000000000afe067d0275e8f5a59f2e54857f19475e2129d156001600160a01b0316836001600160a01b031614155b1561157257808261151a856001600160a01b031660009081526020819052604090205490565b6115249190611f6d565b11156115725760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e740000006044820152606401610831565b600061157f8585856116fb565b600c5430600090815260208181526040808320546001600160a01b038b16845260099092529091205492935010159060ff161580156115d757506001600160a01b03851660009081526009602052604090205460ff16155b1561169657600d5462010000900460ff166116295760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b6044820152606401610831565b846001600160a01b03167f000000000000000000000000afe067d0275e8f5a59f2e54857f19475e2129d156001600160a01b031614801561166c5750600d5460ff165b80156116755750805b80156116895750600d54610100900460ff16155b1561169657611696611802565b6116a18686846118f1565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff168061173a57506001600160a01b03831660009081526009602052604090205460ff165b15611746575080610a2d565b6008546001600160a01b037f000000000000000000000000afe067d0275e8f5a59f2e54857f19475e2129d1581169085160361178557506007546117c3565b7f000000000000000000000000afe067d0275e8f5a59f2e54857f19475e2129d156001600160a01b0316856001600160a01b0316036117c357506006545b600081156117ee5760646117d78386611f80565b6117e19190611f97565b90506117ee8630836118f1565b6117f88185611fb9565b9695505050505050565b600d805461ff0019166101001790553060009081526020819052604081205490508060000361182e5750565b3060009081526020819052604090205461184790611a95565b600f5460405160009161010090046001600160a01b03169047908381818185875af1925050503d8060008114611899576040519150601f19603f3d011682016040523d82523d6000602084013e61189e565b606091505b50509050806118e25760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610831565b5050600d805461ff0019169055565b6001600160a01b0383166119555760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610831565b6001600160a01b0382166119b75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610831565b6001600160a01b03831660009081526020819052604090205481811015611a2f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610831565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361112f565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611aca57611aca611f28565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b6c9190611fcc565b81600181518110611b7f57611b7f611f28565b60200260200101906001600160a01b031690816001600160a01b031681525050611bca307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f97565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611c1f908590600090869030904290600401611fe9565b600060405180830381600087803b158015611c3957600080fd5b505af11580156116a1573d6000803e3d6000fd5b600060208083528351808285015260005b81811015611c7a57858101830151858201604001528201611c5e565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611cad57600080fd5b5035919050565b6001600160a01b0381168114610f3a57600080fd5b8035611cd481611cb4565b919050565b60008060408385031215611cec57600080fd5b8235611cf781611cb4565b946020939093013593505050565b60008060408385031215611d1857600080fd5b8235611d2381611cb4565b915060208301358015158114611d3857600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215611d6c57600080fd5b823567ffffffffffffffff80821115611d8457600080fd5b818501915085601f830112611d9857600080fd5b813581811115611daa57611daa611d43565b8060051b604051601f19603f83011681018181108582111715611dcf57611dcf611d43565b604052918252848201925083810185019188831115611ded57600080fd5b938501935b82851015611e1257611e0385611cc9565b84529385019392850192611df2565b98975050505050505050565b600060208284031215611e3057600080fd5b8135610a2d81611cb4565b600080600060608486031215611e5057600080fd5b8335611e5b81611cb4565b92506020840135611e6b81611cb4565b929592945050506040919091013590565b60008060408385031215611e8f57600080fd5b8235611e9a81611cb4565b91506020830135611d3881611cb4565b600181811c90821680611ebe57607f821691505b602082108103611ede57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526024908201527f43616e206e6f742073657420627579206665657320686967686572207468616e6040820152632033302560e01b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611f6657611f66611f3e565b5060010190565b8082018082111561087c5761087c611f3e565b808202811582820484141761087c5761087c611f3e565b600082611fb457634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561087c5761087c611f3e565b600060208284031215611fde57600080fd5b8151610a2d81611cb4565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120395784516001600160a01b031683529383019391830191600101612014565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122022ddcb5adad127705b652b691b5ad282c31cad8b785a33113d7df4b74ce0063864736f6c63430008130033

Deployed Bytecode Sourcemap

28275:8377:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16269:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31064:246;;;;;;;;;;-1:-1:-1;31064:246:0;;;;;:::i;:::-;;:::i;:::-;;18629:201;;;;;;;;;;-1:-1:-1;18629:201:0;;;;;:::i;:::-;;:::i;:::-;;;1512:14:1;;1505:22;1487:41;;1475:2;1460:18;18629:201:0;1347:187:1;31832:195:0;;;;;;;;;;-1:-1:-1;31832:195:0;;;;;:::i;:::-;;:::i;35551:207::-;;;;;;;;;;-1:-1:-1;35551:207:0;;;;;:::i;:::-;;:::i;17398:108::-;;;;;;;;;;-1:-1:-1;17486:12:0;;17398:108;;;3364:25:1;;;3352:2;3337:18;17398:108:0;3218:177:1;32035:116:0;;;;;;;;;;-1:-1:-1;32035:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;32123:20:0;32099:4;32123:20;;;:11;:20;;;;;;;;;32035:116;30310:297;;;;;;;;;;-1:-1:-1;30310:297:0;;;;;:::i;:::-;;:::i;19410:261::-;;;;;;;;;;-1:-1:-1;19410:261:0;;;;;:::i;:::-;;:::i;17240:93::-;;;;;;;;;;-1:-1:-1;17240:93:0;;17323:2;4255:36:1;;4243:2;4228:18;17240:93:0;4113:184:1;20080:238:0;;;;;;;;;;-1:-1:-1;20080:238:0;;;;;:::i;:::-;;:::i;29037:40::-;;;;;;;;;;-1:-1:-1;29037:40:0;;;;;;;;29121:34;;;;;;;;;;-1:-1:-1;29121:34:0;;;;;;;;;;;28636;;;;;;;;;;-1:-1:-1;28636:34:0;;;;;;29347:38;;;;;;;;;;;;;;;;17569:127;;;;;;;;;;-1:-1:-1;17569:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;17670:18:0;17643:7;17670:18;;;;;;;;;;;;17569:127;9724:103;;;;;;;;;;;;;:::i;28458:40::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4484:32:1;;;4466:51;;4454:2;4439:18;28458:40:0;4302:221:1;35994:163:0;;;;;;;;;;;;;:::i;29264:75::-;;;;;;;;;;-1:-1:-1;29264:75:0;;;;;;;-1:-1:-1;;;;;29264:75:0;;;29162:32;;;;;;;;;;;;;;;;32157:308;;;;;;;;;;-1:-1:-1;32157:308:0;;;;;:::i;:::-;;:::i;28563:29::-;;;;;;;;;;-1:-1:-1;28563:29:0;;;;;;30613:192;;;;;;;;;;;;;:::i;9083:87::-;;;;;;;;;;-1:-1:-1;9156:6:0;;-1:-1:-1;;;;;9156:6:0;9083:87;;16488:104;;;;;;;;;;;;;:::i;30813:243::-;;;;;;;;;;-1:-1:-1;30813:243:0;;;;;:::i;:::-;;:::i;20821:436::-;;;;;;;;;;-1:-1:-1;20821:436:0;;;;;:::i;:::-;;:::i;28505:36::-;;;;;;;;;;;;;;;17902:193;;;;;;;;;;-1:-1:-1;17902:193:0;;;;;:::i;:::-;;:::i;31318:372::-;;;;;;;;;;-1:-1:-1;31318:372:0;;;;;:::i;:::-;;:::i;29084:30::-;;;;;;;;;;-1:-1:-1;29084:30:0;;;;;;;;;;;29201:39;;;;;;;;;;-1:-1:-1;29201:39:0;;;;;;;;18158:151;;;;;;;;;;-1:-1:-1;18158:151:0;;;;;:::i;:::-;;:::i;28929:60::-;;;;;;;;;;;;;;;;35443:100;;;;;;;;;;-1:-1:-1;35443:100:0;;;;;:::i;:::-;-1:-1:-1;;;;;35519:16:0;35498:4;35519:16;;;:13;:16;;;;;;;;;35443:100;35766:216;;;;;;;;;;-1:-1:-1;35766:216:0;;;;;:::i;:::-;;:::i;31698:126::-;;;;;;;;;;;;;:::i;9982:201::-;;;;;;;;;;-1:-1:-1;9982:201:0;;;;;:::i;:::-;;:::i;28599:30::-;;;;;;;;;;-1:-1:-1;28599:30:0;;;;;;16269:100;16323:13;16356:5;16349:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16269:100;:::o;31064:246::-;8969:13;:11;:13::i;:::-;31139:9:::1;:38:::0;;;31213:2:::1;31196:19:::0;::::1;;31188:68;;;;-1:-1:-1::0;;;31188:68:0::1;;;;;;;:::i;:::-;;;;;;;;;31272:30;::::0;31288:13;;31272:30:::1;::::0;;;::::1;31064:246:::0;:::o;18629:201::-;18712:4;7714:10;18768:32;7714:10;18784:7;18793:6;18768:8;:32::i;:::-;18818:4;18811:11;;;18629:201;;;;;:::o;31832:195::-;8969:13;:11;:13::i;:::-;-1:-1:-1;;;;;31946:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;:30;;-1:-1:-1;;31946:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;31992:27;;31946:30;;:20;31992:27:::1;::::0;::::1;31832:195:::0;;:::o;35551:207::-;8969:13;:11;:13::i;:::-;35641:6:::1;35636:115;35657:14;:21;35653:1;:25;35636:115;;;35735:4;35700:13;:32;35714:14;35729:1;35714:17;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;35700:32:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;35700:32:0;:39;;-1:-1:-1;;35700:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35680:3;::::1;::::0;::::1;:::i;:::-;;;;35636:115;;;;35551:207:::0;:::o;30310:297::-;8969:13;:11;:13::i;:::-;-1:-1:-1;;;;;30413:27:0;::::1;30391:113;;;::::0;-1:-1:-1;;;30391:113:0;;6525:2:1;30391:113:0::1;::::0;::::1;6507:21:1::0;6564:2;6544:18;;;6537:30;6603:34;6583:18;;;6576:62;-1:-1:-1;;;6654:18:1;;;6647:34;6698:19;;30391:113:0::1;6323:400:1::0;30391:113:0::1;30515:15;:31:::0;;-1:-1:-1;;;;;;30515:31:0::1;;-1:-1:-1::0;;;;;30515:31:0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;30562:37:::1;::::0;::::1;::::0;-1:-1:-1;;30562:37:0::1;30310:297:::0;:::o;19410:261::-;19507:4;7714:10;19565:38;19581:4;7714:10;19596:6;19565:15;:38::i;:::-;19614:27;19624:4;19630:2;19634:6;19614:9;:27::i;:::-;19659:4;19652:11;;;19410:261;;;;;;:::o;20080:238::-;20168:4;7714:10;20224:64;7714:10;20240:7;20277:10;20249:25;7714:10;20240:7;20249:9;:25::i;:::-;:38;;;;:::i;:::-;20224:8;:64::i;9724:103::-;8969:13;:11;:13::i;:::-;9789:30:::1;9816:1;9789:18;:30::i;:::-;9724:103::o:0;35994:163::-;8969:13;:11;:13::i;:::-;36068:3:::1;36047:19;:24:::0;36082:20:::1;:26:::0;;-1:-1:-1;;36082:26:0::1;::::0;;36103:5:::1;36119:13;:30:::0;35994:163::o;32157:308::-;8969:13;:11;:13::i;:::-;32258:1:::1;32244:11;:15;32236:62;;;::::0;-1:-1:-1;;;32236:62:0;;7060:2:1;32236:62:0::1;::::0;::::1;7042:21:1::0;7099:2;7079:18;;;7072:30;7138:34;7118:18;;;7111:62;-1:-1:-1;;;7189:18:1;;;7182:32;7231:19;;32236:62:0::1;6858:398:1::0;32236:62:0::1;32328:3;32313:11;:18;;32305:75;;;::::0;-1:-1:-1;;;32305:75:0;;7463:2:1;32305:75:0::1;::::0;::::1;7445:21:1::0;7502:2;7482:18;;;7475:30;7541:34;7521:18;;;7514:62;-1:-1:-1;;;7592:18:1;;;7585:42;7644:19;;32305:75:0::1;7261:408:1::0;32305:75:0::1;32387:19;:33:::0;;;32432:29:::1;::::0;3364:25:1;;;32432:29:0::1;::::0;3352:2:1;3337:18;32432:29:0::1;;;;;;;32157:308:::0;:::o;30613:192::-;8969:13;:11;:13::i;:::-;30677:14:::1;::::0;;;::::1;;;30676:15;30668:54;;;::::0;-1:-1:-1;;;30668:54:0;;7876:2:1;30668:54:0::1;::::0;::::1;7858:21:1::0;7915:2;7895:18;;;7888:30;7954:28;7934:18;;;7927:56;8000:18;;30668:54:0::1;7674:350:1::0;30668:54:0::1;30733:14;:21:::0;;-1:-1:-1;;30733:21:0::1;::::0;::::1;::::0;;30785:12:::1;30765:17;:32:::0;30613:192::o;16488:104::-;16544:13;16577:7;16570:14;;;;;:::i;30813:243::-;8969:13;:11;:13::i;:::-;30887:8:::1;:37:::0;;;30960:2:::1;30943:19:::0;::::1;;30935:68;;;;-1:-1:-1::0;;;30935:68:0::1;;;;;;;:::i;:::-;31019:29;::::0;31034:13;;31019:29:::1;::::0;;;::::1;30813:243:::0;:::o;20821:436::-;20914:4;7714:10;20914:4;20997:25;7714:10;21014:7;20997:9;:25::i;:::-;20970:52;;21061:15;21041:16;:35;;21033:85;;;;-1:-1:-1;;;21033:85:0;;8231:2:1;21033:85:0;;;8213:21:1;8270:2;8250:18;;;8243:30;8309:34;8289:18;;;8282:62;-1:-1:-1;;;8360:18:1;;;8353:35;8405:19;;21033:85:0;8029:401:1;21033:85:0;21154:60;21163:5;21170:7;21198:15;21179:16;:34;21154:8;:60::i;:::-;-1:-1:-1;21245:4:0;;20821:436;-1:-1:-1;;;;20821:436:0:o;17902:193::-;17981:4;7714:10;18037:28;7714:10;18054:2;18058:6;18037:9;:28::i;31318:372::-;8969:13;:11;:13::i;:::-;31434:1:::1;31421:10;:14;:57;;;;-1:-1:-1::0;31474:4:0::1;31454:16;28415:20;31469:1;31454:16;:::i;:::-;31453:25;;;;:::i;:::-;31439:10;:39;;31421:57;31399:185;;;::::0;-1:-1:-1;;;31399:185:0;;9032:2:1;31399:185:0::1;::::0;::::1;9014:21:1::0;9071:2;9051:18;;;9044:30;9110:34;9090:18;;;9083:62;9181:34;9161:18;;;9154:62;-1:-1:-1;;;9232:19:1;;;9225:45;9287:19;;31399:185:0::1;8830:482:1::0;31399:185:0::1;31595:18;:31:::0;;;31642:40:::1;::::0;31616:10;;31642:40:::1;::::0;;;::::1;31318:372:::0;:::o;18158:151::-;-1:-1:-1;;;;;18274:18:0;;;18247:7;18274:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18158:151::o;35766:216::-;8969:13;:11;:13::i;:::-;35862:6:::1;35857:118;35878:17;:24;35874:1;:28;35857:118;;;35960:5;35922:13;:35;35936:17;35954:1;35936:20;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;35922:35:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;35922:35:0;:43;;-1:-1:-1;;35922:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35904:3;::::1;::::0;::::1;:::i;:::-;;;;35857:118;;31698:126:::0;8969:13;:11;:13::i;:::-;31779:21:::1;::::0;::::1;;31778:38;;31812:4;31778:38;;;31804:5;31778:38;31754:21;:62:::0;;-1:-1:-1;;31754:62:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31698:126::o;9982:201::-;8969:13;:11;:13::i;:::-;-1:-1:-1;;;;;10071:22:0;::::1;10063:73;;;::::0;-1:-1:-1;;;10063:73:0;;9519:2:1;10063:73:0::1;::::0;::::1;9501:21:1::0;9558:2;9538:18;;;9531:30;9597:34;9577:18;;;9570:62;-1:-1:-1;;;9648:18:1;;;9641:36;9694:19;;10063:73:0::1;9317:402:1::0;10063:73:0::1;10147:28;10166:8;10147:18;:28::i;:::-;9982:201:::0;:::o;9248:132::-;9156:6;;-1:-1:-1;;;;;9156:6:0;7714:10;9312:23;9304:68;;;;-1:-1:-1;;;9304:68:0;;9926:2:1;9304:68:0;;;9908:21:1;;;9945:18;;;9938:30;10004:34;9984:18;;;9977:62;10056:18;;9304:68:0;9724:356:1;24814:346:0;-1:-1:-1;;;;;24916:19:0;;24908:68;;;;-1:-1:-1;;;24908:68:0;;10287:2:1;24908:68:0;;;10269:21:1;10326:2;10306:18;;;10299:30;10365:34;10345:18;;;10338:62;-1:-1:-1;;;10416:18:1;;;10409:34;10460:19;;24908:68:0;10085:400:1;24908:68:0;-1:-1:-1;;;;;24995:21:0;;24987:68;;;;-1:-1:-1;;;24987:68:0;;10692:2:1;24987:68:0;;;10674:21:1;10731:2;10711:18;;;10704:30;10770:34;10750:18;;;10743:62;-1:-1:-1;;;10821:18:1;;;10814:32;10863:19;;24987:68:0;10490:398:1;24987:68:0;-1:-1:-1;;;;;25068:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25120:32;;3364:25:1;;;25120:32:0;;3337:18:1;25120:32:0;;;;;;;24814:346;;;:::o;25451:419::-;25552:24;25579:25;25589:5;25596:7;25579:9;:25::i;:::-;25552:52;;-1:-1:-1;;25619:16:0;:37;25615:248;;25701:6;25681:16;:26;;25673:68;;;;-1:-1:-1;;;25673:68:0;;11095:2:1;25673:68:0;;;11077:21:1;11134:2;11114:18;;;11107:30;11173:31;11153:18;;;11146:59;11222:18;;25673:68:0;10893:353:1;25673:68:0;25785:51;25794:5;25801:7;25829:6;25810:16;:25;25785:8;:51::i;:::-;25541:329;25451:419;;;:::o;33294:1742::-;33446:20;;;;33442:307;;;33498:11;-1:-1:-1;;;;;33483:27:0;:3;-1:-1:-1;;;;;33483:27:0;;;:58;;;;;33529:11;-1:-1:-1;;;;;33514:27:0;:3;-1:-1:-1;;;;;33514:27:0;;;33483:58;33479:263;;;33595:9;33566:39;;;;:28;:39;;;;;;33608:12;-1:-1:-1;33558:103:0;;;;-1:-1:-1;;;33558:103:0;;11453:2:1;33558:103:0;;;11435:21:1;11492:2;11472:18;;;11465:30;11531:34;11511:18;;;11504:62;-1:-1:-1;;;11582:18:1;;;11575:34;11626:19;;33558:103:0;11251:400:1;33558:103:0;33705:9;33676:39;;;;:28;:39;;;;;33718:12;33676:54;;33479:263;-1:-1:-1;;;;;33765:19:0;;33757:58;;;;-1:-1:-1;;;33757:58:0;;11858:2:1;33757:58:0;;;11840:21:1;11897:2;11877:18;;;11870:30;11936:28;11916:18;;;11909:56;11982:18;;33757:58:0;11656:350:1;33757:58:0;-1:-1:-1;;;;;33830:17:0;;33822:54;;;;-1:-1:-1;;;33822:54:0;;12213:2:1;33822:54:0;;;12195:21:1;12252:2;12232:18;;;12225:30;12291:26;12271:18;;;12264:54;12335:18;;33822:54:0;12011:348:1;33822:54:0;33901:1;33891:7;:11;33883:65;;;;-1:-1:-1;;;33883:65:0;;12566:2:1;33883:65:0;;;12548:21:1;12605:2;12585:18;;;12578:30;12644:34;12624:18;;;12617:62;-1:-1:-1;;;12695:18:1;;;12688:39;12744:19;;33883:65:0;12364:405:1;33883:65:0;-1:-1:-1;;;;;34013:20:0;;;;;;:13;:20;;;;;;;;34012:21;34004:67;;;;-1:-1:-1;;;34004:67:0;;12976:2:1;34004:67:0;;;12958:21:1;13015:2;12995:18;;;12988:30;13054:34;13034:18;;;13027:62;-1:-1:-1;;;13105:18:1;;;13098:31;13146:19;;34004:67:0;12774:397:1;34004:67:0;-1:-1:-1;;;;;34087:18:0;;;;;;:13;:18;;;;;;;;34086:19;34078:63;;;;-1:-1:-1;;;34078:63:0;;13378:2:1;34078:63:0;;;13360:21:1;13417:2;13397:18;;;13390:30;13456:33;13436:18;;;13429:61;13507:18;;34078:63:0;13176:355:1;34078:63:0;34254:23;34317:3;34295:19;;28415:20;34280:34;;;;:::i;:::-;:40;;;;:::i;:::-;-1:-1:-1;;;;;34402:18:0;;;;;;:11;:18;;;;;;34254:66;;-1:-1:-1;34402:18:0;;34401:19;:40;;;;-1:-1:-1;;;;;;34425:16:0;;;;;;:11;:16;;;;;;;;34424:17;34401:40;:61;;;;-1:-1:-1;;;;;;34445:17:0;;;;34401:61;:85;;;;-1:-1:-1;;;;;;34466:20:0;;34481:4;34466:20;;34401:85;:107;;;;;34497:11;-1:-1:-1;;;;;34490:18:0;:3;-1:-1:-1;;;;;34490:18:0;;;34401:107;34397:217;;;34557:15;34546:7;34529:14;34539:3;-1:-1:-1;;;;;17670:18:0;17643:7;17670:18;;;;;;;;;;;;17569:127;34529:14;:24;;;;:::i;:::-;:43;;34521:85;;;;-1:-1:-1;;;34521:85:0;;13738:2:1;34521:85:0;;;13720:21:1;13777:2;13757:18;;;13750:30;13816:31;13796:18;;;13789:59;13865:18;;34521:85:0;13536:353:1;34521:85:0;34622:18;34643:29;34652:5;34659:3;34664:7;34643:8;:29::i;:::-;34724:18;;34714:4;34681:12;17670:18;;;;;;;;;;;;-1:-1:-1;;;;;34754:18:0;;;;:11;:18;;;;;;;34622:50;;-1:-1:-1;;34696:46:0;;34754:18;;34753:19;:40;;;;-1:-1:-1;;;;;;34777:16:0;;;;;;:11;:16;;;;;;;;34776:17;34753:40;34749:236;;;34814:14;;;;;;;34806:45;;;;-1:-1:-1;;;34806:45:0;;14096:2:1;34806:45:0;;;14078:21:1;14135:2;14115:18;;;14108:30;-1:-1:-1;;;14154:18:1;;;14147:48;14212:18;;34806:45:0;13894:342:1;34806:45:0;34881:3;-1:-1:-1;;;;;34866:18:0;:11;-1:-1:-1;;;;;34866:18:0;;:43;;;;-1:-1:-1;34888:21:0;;;;34866:43;:54;;;;;34913:7;34866:54;:69;;;;-1:-1:-1;34925:10:0;;;;;;;34924:11;34866:69;34862:116;;;34952:14;:12;:14::i;:::-;34993:39;35009:5;35016:3;35021:10;34993:15;:39::i;:::-;33402:1634;;;33294:1742;;;:::o;10343:191::-;10436:6;;;-1:-1:-1;;;;;10453:17:0;;;-1:-1:-1;;;;;;10453:17:0;;;;;;;10486:40;;10436:6;;;10453:17;10436:6;;10486:40;;10417:16;;10486:40;10406:128;10343:191;:::o;32611:679::-;-1:-1:-1;;;;;32750:18:0;;32726:7;32750:18;;;:11;:18;;;;;;;;;:38;;-1:-1:-1;;;;;;32772:16:0;;;;;;:11;:16;;;;;;;;32750:38;32746:85;;;-1:-1:-1;32812:7:0;32805:14;;32746:85;32862:13;:26;-1:-1:-1;;;;;32912:11:0;32905:18;;;;;;32901:175;;-1:-1:-1;32951:9:0;:22;32901:175;;;33004:11;-1:-1:-1;;;;;32995:20:0;:5;-1:-1:-1;;;;;32995:20:0;;32991:85;;-1:-1:-1;33043:8:0;:21;32991:85;33090:11;33120:12;;33116:134;;33178:3;33156:18;33166:8;33156:7;:18;:::i;:::-;33155:26;;;;:::i;:::-;33149:32;;33196:42;33212:5;33227:4;33234:3;33196:15;:42::i;:::-;33268:13;33278:3;33268:7;:13;:::i;:::-;33260:22;32611:679;-1:-1:-1;;;;;;32611:679:0:o;35044:393::-;35088:10;:17;;-1:-1:-1;;35088:17:0;;;;;35154:4;-1:-1:-1;17670:18:0;;;;;;;;;;;35116:44;;35176:9;35189:1;35176:14;35172:53;;35207:7;35044:393::o;35172:53::-;35263:4;17643:7;17670:18;;;;;;;;;;;35235:35;;:9;:35::i;:::-;35299:15;;:54;;35281:12;;35299:15;;;-1:-1:-1;;;;;35299:15:0;;35327:21;;35281:12;35299:54;35281:12;35299:54;35327:21;35299:15;:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35280:73;;;35372:7;35364:36;;;;-1:-1:-1;;;35364:36:0;;14786:2:1;35364:36:0;;;14768:21:1;14825:2;14805:18;;;14798:30;-1:-1:-1;;;14844:18:1;;;14837:46;14900:18;;35364:36:0;14584:340:1;35364:36:0;-1:-1:-1;;35411:10:0;:18;;-1:-1:-1;;35411:18:0;;;35044:393::o;21727:806::-;-1:-1:-1;;;;;21824:18:0;;21816:68;;;;-1:-1:-1;;;21816:68:0;;15131:2:1;21816:68:0;;;15113:21:1;15170:2;15150:18;;;15143:30;15209:34;15189:18;;;15182:62;-1:-1:-1;;;15260:18:1;;;15253:35;15305:19;;21816:68:0;14929:401:1;21816:68:0;-1:-1:-1;;;;;21903:16:0;;21895:64;;;;-1:-1:-1;;;21895:64:0;;15537:2:1;21895:64:0;;;15519:21:1;15576:2;15556:18;;;15549:30;15615:34;15595:18;;;15588:62;-1:-1:-1;;;15666:18:1;;;15659:33;15709:19;;21895:64:0;15335:399:1;21895:64:0;-1:-1:-1;;;;;22045:15:0;;22023:19;22045:15;;;;;;;;;;;22079:21;;;;22071:72;;;;-1:-1:-1;;;22071:72:0;;15941:2:1;22071:72:0;;;15923:21:1;15980:2;15960:18;;;15953:30;16019:34;15999:18;;;15992:62;-1:-1:-1;;;16070:18:1;;;16063:36;16116:19;;22071:72:0;15739:402:1;22071:72:0;-1:-1:-1;;;;;22179:15:0;;;:9;:15;;;;;;;;;;;22197:20;;;22179:38;;22397:13;;;;;;;;;;:23;;;;;;22449:26;;3364:25:1;;;22397:13:0;;22449:26;;3337:18:1;22449:26:0;;;;;;;22488:37;26470:91;36165:447;36245:16;;;36259:1;36245:16;;;;;;;;36221:21;;36245:16;;;;;;;;;;-1:-1:-1;36245:16:0;36221:40;;36290:4;36272;36277:1;36272:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;36272:23:0;;;-1:-1:-1;;;;;36272:23:0;;;;;36316:13;-1:-1:-1;;;;;36316:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36306:4;36311:1;36306:7;;;;;;;;:::i;:::-;;;;;;:30;-1:-1:-1;;;;;36306:30:0;;;-1:-1:-1;;;;;36306:30:0;;;;;36347:56;36364:4;36379:13;36395:7;36347:8;:56::i;:::-;36414:190;;-1:-1:-1;;;36414:190:0;;-1:-1:-1;;;;;36414:13:0;:64;;;;:190;;36493:7;;36515:1;;36531:4;;36558;;36578:15;;36414:190;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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:180::-;626:6;679:2;667:9;658:7;654:23;650:32;647:52;;;695:1;692;685:12;647:52;-1:-1:-1;718:23:1;;567:180;-1:-1:-1;567:180:1:o;752:131::-;-1:-1:-1;;;;;827:31:1;;817:42;;807:70;;873:1;870;863:12;888:134;956:20;;985:31;956:20;985:31;:::i;:::-;888:134;;;:::o;1027:315::-;1095:6;1103;1156:2;1144:9;1135:7;1131:23;1127:32;1124:52;;;1172:1;1169;1162:12;1124:52;1211:9;1198:23;1230:31;1255:5;1230:31;:::i;:::-;1280:5;1332:2;1317:18;;;;1304:32;;-1:-1:-1;;;1027:315:1:o;1539:416::-;1604:6;1612;1665:2;1653:9;1644:7;1640:23;1636:32;1633:52;;;1681:1;1678;1671:12;1633:52;1720:9;1707:23;1739:31;1764:5;1739:31;:::i;:::-;1789:5;-1:-1:-1;1846:2:1;1831:18;;1818:32;1888:15;;1881:23;1869:36;;1859:64;;1919:1;1916;1909:12;1859:64;1942:7;1932:17;;;1539:416;;;;;:::o;1960:127::-;2021:10;2016:3;2012:20;2009:1;2002:31;2052:4;2049:1;2042:15;2076:4;2073:1;2066:15;2092:1121;2176:6;2207:2;2250;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2306:9;2293:23;2335:18;2376:2;2368:6;2365:14;2362:34;;;2392:1;2389;2382:12;2362:34;2430:6;2419:9;2415:22;2405:32;;2475:7;2468:4;2464:2;2460:13;2456:27;2446:55;;2497:1;2494;2487:12;2446:55;2533:2;2520:16;2555:2;2551;2548:10;2545:36;;;2561:18;;:::i;:::-;2607:2;2604:1;2600:10;2639:2;2633:9;2702:2;2698:7;2693:2;2689;2685:11;2681:25;2673:6;2669:38;2757:6;2745:10;2742:22;2737:2;2725:10;2722:18;2719:46;2716:72;;;2768:18;;:::i;:::-;2804:2;2797:22;2854:18;;;2888:15;;;;-1:-1:-1;2930:11:1;;;2926:20;;;2958:19;;;2955:39;;;2990:1;2987;2980:12;2955:39;3014:11;;;;3034:148;3050:6;3045:3;3042:15;3034:148;;;3116:23;3135:3;3116:23;:::i;:::-;3104:36;;3067:12;;;;3160;;;;3034:148;;;3201:6;2092:1121;-1:-1:-1;;;;;;;;2092:1121:1:o;3400:247::-;3459:6;3512:2;3500:9;3491:7;3487:23;3483:32;3480:52;;;3528:1;3525;3518:12;3480:52;3567:9;3554:23;3586:31;3611:5;3586:31;:::i;3652:456::-;3729:6;3737;3745;3798:2;3786:9;3777:7;3773:23;3769:32;3766:52;;;3814:1;3811;3804:12;3766:52;3853:9;3840:23;3872:31;3897:5;3872:31;:::i;:::-;3922:5;-1:-1:-1;3979:2:1;3964:18;;3951:32;3992:33;3951:32;3992:33;:::i;:::-;3652:456;;4044:7;;-1:-1:-1;;;4098:2:1;4083:18;;;;4070:32;;3652:456::o;4736:388::-;4804:6;4812;4865:2;4853:9;4844:7;4840:23;4836:32;4833:52;;;4881:1;4878;4871:12;4833:52;4920:9;4907:23;4939:31;4964:5;4939:31;:::i;:::-;4989:5;-1:-1:-1;5046:2:1;5031:18;;5018:32;5059:33;5018:32;5059:33;:::i;5129:380::-;5208:1;5204:12;;;;5251;;;5272:61;;5326:4;5318:6;5314:17;5304:27;;5272:61;5379:2;5371:6;5368:14;5348:18;5345:38;5342:161;;5425:10;5420:3;5416:20;5413:1;5406:31;5460:4;5457:1;5450:15;5488:4;5485:1;5478:15;5342:161;;5129:380;;;:::o;5514:400::-;5716:2;5698:21;;;5755:2;5735:18;;;5728:30;5794:34;5789:2;5774:18;;5767:62;-1:-1:-1;;;5860:2:1;5845:18;;5838:34;5904:3;5889:19;;5514:400::o;5919:127::-;5980:10;5975:3;5971:20;5968:1;5961:31;6011:4;6008:1;6001:15;6035:4;6032:1;6025:15;6051:127;6112:10;6107:3;6103:20;6100:1;6093:31;6143:4;6140:1;6133:15;6167:4;6164:1;6157:15;6183:135;6222:3;6243:17;;;6240:43;;6263:18;;:::i;:::-;-1:-1:-1;6310:1:1;6299:13;;6183:135::o;6728:125::-;6793:9;;;6814:10;;;6811:36;;;6827:18;;:::i;8435:168::-;8508:9;;;8539;;8556:15;;;8550:22;;8536:37;8526:71;;8577:18;;:::i;8608:217::-;8648:1;8674;8664:132;;8718:10;8713:3;8709:20;8706:1;8699:31;8753:4;8750:1;8743:15;8781:4;8778:1;8771:15;8664:132;-1:-1:-1;8810:9:1;;8608:217::o;14241:128::-;14308:9;;;14329:11;;;14326:37;;;14343:18;;:::i;16146:251::-;16216:6;16269:2;16257:9;16248:7;16244:23;16240:32;16237:52;;;16285:1;16282;16275:12;16237:52;16317:9;16311:16;16336:31;16361:5;16336:31;:::i;16402:980::-;16664:4;16712:3;16701:9;16697:19;16743:6;16732:9;16725:25;16769:2;16807:6;16802:2;16791:9;16787:18;16780:34;16850:3;16845:2;16834:9;16830:18;16823:31;16874:6;16909;16903:13;16940:6;16932;16925:22;16978:3;16967:9;16963:19;16956:26;;17017:2;17009:6;17005:15;16991:29;;17038:1;17048:195;17062:6;17059:1;17056:13;17048:195;;;17127:13;;-1:-1:-1;;;;;17123:39:1;17111:52;;17218:15;;;;17183:12;;;;17159:1;17077:9;17048:195;;;-1:-1:-1;;;;;;;17299:32:1;;;;17294:2;17279:18;;17272:60;-1:-1:-1;;;17363:3:1;17348:19;17341:35;17260:3;16402:980;-1:-1:-1;;;16402:980:1:o

Swarm Source

ipfs://22ddcb5adad127705b652b691b5ad282c31cad8b785a33113d7df4b74ce00638

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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