Mumbai Testnet

Contract

0x8803d0B54596CDe7fbdEA9e5a4f93D91355067F1

Overview

MATIC Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 MATIC

Token Holdings

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Value
Transfer211396182021-11-06 22:52:08873 days ago1636239128IN
0x8803d0B5...1355067F1
0 MATIC0.000163963
Transfer211386722021-11-06 22:19:36873 days ago1636237176IN
0x8803d0B5...1355067F1
0 MATIC0.000273274.9999848
Transfer208822222021-10-31 19:04:56879 days ago1635707096IN
0x8803d0B5...1355067F1
0 MATIC0.000175423
Transfer208820422021-10-31 18:58:44879 days ago1635706724IN
0x8803d0B5...1355067F1
0 MATIC0.000175383
Burn From206993262021-10-27 9:45:48883 days ago1635327948IN
0x8803d0B5...1355067F1
0 MATIC0.000109694.4
Transfer From206990802021-10-27 9:37:24883 days ago1635327444IN
0x8803d0B5...1355067F1
0 MATIC0.0011459730
Transfer206990402021-10-27 9:36:00883 days ago1635327360IN
0x8803d0B5...1355067F1
0 MATIC0.0008961630
Transfer From206989362021-10-27 9:32:24883 days ago1635327144IN
0x8803d0B5...1355067F1
0 MATIC0.0011459730
Transfer From206989032021-10-27 9:31:18883 days ago1635327078IN
0x8803d0B5...1355067F1
0 MATIC0.0011459730
Increase Allowan...206988782021-10-27 9:30:24883 days ago1635327024IN
0x8803d0B5...1355067F1
0 MATIC0.0014175330
Transfer From206988472021-10-27 9:29:22883 days ago1635326962IN
0x8803d0B5...1355067F1
0 MATIC0.0011459730
Transfer206984612021-10-27 9:16:06883 days ago1635326166IN
0x8803d0B5...1355067F1
0 MATIC0.0024119430
Transfer206981672021-10-27 9:05:58883 days ago1635325558IN
0x8803d0B5...1355067F1
0 MATIC0.0011270430
Burn206968662021-10-27 8:21:16883 days ago1635322876IN
0x8803d0B5...1355067F1
0 MATIC0.001031130
Transfer206963782021-10-27 8:04:28883 days ago1635321868IN
0x8803d0B5...1355067F1
0 MATIC0.0016396830
0x60806040206961572021-10-27 7:56:54883 days ago1635321414IN
 Create: TestNBU
0 MATIC0.0593561130

Parent Txn Hash Block From To Value
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
TestNBU

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at mumbai.polygonscan.com on 2021-10-27
*/

// SPDX-License-Identifier: Unlicensed

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/f1e92dd184a599f39ce9cc4ec8a5e4a94416f3a2/contracts/utils/math/SafeMath.sol



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 no longer needed starting with Solidity 0.8. 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 substraction 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.3.2 (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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.3.2 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.3.2 (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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol


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

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _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 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts v4.3.2 (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}


pragma solidity ^0.8.0;


contract TestNBU is ERC20, ERC20Burnable, Ownable {
    using SafeMath for uint256;
    using Address for address;
    
    
    uint Dev_Fee = 1;
    uint Burn_Fee= 1;
    
    uint256 internal TOTALSUPPLY = 500000 * 10**18;
    uint256 internal basePercent = 100;
    uint256 public _burnStopAmount;
    
    //address public owner;
    mapping(address => bool) internal ExcludedFromFee;
    
    constructor() public ERC20('TestNBU', 'TNBU') {
        _mint(owner(), TOTALSUPPLY);
        //owner = owner();
        ExcludedFromFee[owner()] = true;
        
        _burnStopAmount = TOTALSUPPLY/10;

    }
    
    function transfer(address recipient, uint256 amount) public override returns(bool) {
        
        if(ExcludedFromFee[msg.sender] == true) {
            _transfer(_msgSender(), recipient, amount);
        }
        
        //else if(TOTALSUPPLY <= _burnStopAmount) {
        //    uint ownerAmount = amount.mul(Dev_Fee)/ basePercent;
        //    _transfer(_msgSender(), owner(), ownerAmount);
        //    _transfer(_msgSender(), recipient, amount.sub(ownerAmount));
        //}
        
        else {
            uint burntAmount = amount.mul(Burn_Fee) / basePercent;
            uint ownerAmount = amount.mul(Dev_Fee)/ basePercent;
            _burn(_msgSender(), burntAmount);
            _transfer(_msgSender(), owner(), ownerAmount);
            _transfer(_msgSender(), recipient, amount.sub(burntAmount).sub(ownerAmount));
        }
        
        return true;
    }
}

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_burnStopAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600160065560016007556969e10de76676d080000060085560646009553480156200002e57600080fd5b506040518060400160405280600781526020017f546573744e4255000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f544e4255000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000b392919062000411565b508060049080519060200190620000cc92919062000411565b505050620000ef620000e36200019660201b60201c565b6200019e60201b60201c565b62000112620001036200026460201b60201c565b6008546200028e60201b60201c565b6001600b6000620001286200026460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a6008546200018a9190620005c1565b600a81905550620006c6565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000301576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f89062000514565b60405180910390fd5b62000315600083836200040760201b60201c565b806002600082825462000329919062000564565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000380919062000564565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003e7919062000536565b60405180910390a362000403600083836200040c60201b60201c565b5050565b505050565b505050565b8280546200041f9062000603565b90600052602060002090601f0160209004810192826200044357600085556200048f565b82601f106200045e57805160ff19168380011785556200048f565b828001600101855582156200048f579182015b828111156200048e57825182559160200191906001019062000471565b5b5090506200049e9190620004a2565b5090565b5b80821115620004bd576000816000905550600101620004a3565b5090565b6000620004d0601f8362000553565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200050e81620005f9565b82525050565b600060208201905081810360008301526200052f81620004c1565b9050919050565b60006020820190506200054d600083018462000503565b92915050565b600082825260208201905092915050565b60006200057182620005f9565b91506200057e83620005f9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005b657620005b562000639565b5b828201905092915050565b6000620005ce82620005f9565b9150620005db83620005f9565b925082620005ee57620005ed62000668565b5b828204905092915050565b6000819050919050565b600060028204905060018216806200061c57607f821691505b6020821081141562000633576200063262000697565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b611e0b80620006d66000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a39c13e711610071578063a39c13e7146102a8578063a457c2d7146102c6578063a9059cbb146102f6578063dd62ed3e14610326578063f2fde38b146103565761010b565b8063715018a61461024657806379cc6790146102505780638da5cb5b1461026c57806395d89b411461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610372565b6040516101259190611946565b60405180910390f35b61014860048036038101906101439190611394565b610404565b604051610155919061192b565b60405180910390f35b610166610422565b6040516101739190611ae8565b60405180910390f35b61019660048036038101906101919190611345565b61042c565b6040516101a3919061192b565b60405180910390f35b6101b4610524565b6040516101c19190611b03565b60405180910390f35b6101e460048036038101906101df9190611394565b61052d565b6040516101f1919061192b565b60405180910390f35b610214600480360381019061020f91906113d0565b6105d9565b005b610230600480360381019061022b91906112e0565b6105ed565b60405161023d9190611ae8565b60405180910390f35b61024e610635565b005b61026a60048036038101906102659190611394565b6106bd565b005b610274610738565b6040516102819190611910565b60405180910390f35b610292610762565b60405161029f9190611946565b60405180910390f35b6102b06107f4565b6040516102bd9190611ae8565b60405180910390f35b6102e060048036038101906102db9190611394565b6107fa565b6040516102ed919061192b565b60405180910390f35b610310600480360381019061030b9190611394565b6108e5565b60405161031d919061192b565b60405180910390f35b610340600480360381019061033b9190611309565b610a10565b60405161034d9190611ae8565b60405180910390f35b610370600480360381019061036b91906112e0565b610a97565b005b60606003805461038190611cd7565b80601f01602080910402602001604051908101604052809291908181526020018280546103ad90611cd7565b80156103fa5780601f106103cf576101008083540402835291602001916103fa565b820191906000526020600020905b8154815290600101906020018083116103dd57829003601f168201915b5050505050905090565b6000610418610411610b8f565b8484610b97565b6001905092915050565b6000600254905090565b6000610439848484610d62565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610484610b8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104fb90611a08565b60405180910390fd5b61051885610510610b8f565b858403610b97565b60019150509392505050565b60006012905090565b60006105cf61053a610b8f565b848460016000610548610b8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105ca9190611b3a565b610b97565b6001905092915050565b6105ea6105e4610b8f565b82610fe3565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61063d610b8f565b73ffffffffffffffffffffffffffffffffffffffff1661065b610738565b73ffffffffffffffffffffffffffffffffffffffff16146106b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a890611a28565b60405180910390fd5b6106bb60006111ba565b565b60006106d0836106cb610b8f565b610a10565b905081811015610715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070c90611a48565b60405180910390fd5b61072983610721610b8f565b848403610b97565b6107338383610fe3565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461077190611cd7565b80601f016020809104026020016040519081016040528092919081815260200182805461079d90611cd7565b80156107ea5780601f106107bf576101008083540402835291602001916107ea565b820191906000526020600020905b8154815290600101906020018083116107cd57829003601f168201915b5050505050905090565b600a5481565b60008060016000610809610b8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bd90611ac8565b60405180910390fd5b6108da6108d1610b8f565b85858403610b97565b600191505092915050565b600060011515600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156109575761095261094b610b8f565b8484610d62565b610a06565b60006009546109716007548561128090919063ffffffff16565b61097b9190611b90565b905060006009546109976006548661128090919063ffffffff16565b6109a19190611b90565b90506109b46109ae610b8f565b83610fe3565b6109cd6109bf610b8f565b6109c7610738565b83610d62565b610a036109d8610b8f565b866109fe846109f0878a61129690919063ffffffff16565b61129690919063ffffffff16565b610d62565b50505b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a9f610b8f565b73ffffffffffffffffffffffffffffffffffffffff16610abd610738565b73ffffffffffffffffffffffffffffffffffffffff1614610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a90611a28565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a906119a8565b60405180910390fd5b610b8c816111ba565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe90611aa8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e906119c8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d559190611ae8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc990611a88565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3990611968565b60405180910390fd5b610e4d8383836112ac565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca906119e8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f669190611b3a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fca9190611ae8565b60405180910390a3610fdd8484846112b1565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104a90611a68565b60405180910390fd5b61105f826000836112ac565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc90611988565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461113c9190611c1b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111a19190611ae8565b60405180910390a36111b5836000846112b1565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818361128e9190611bc1565b905092915050565b600081836112a49190611c1b565b905092915050565b505050565b505050565b6000813590506112c581611da7565b92915050565b6000813590506112da81611dbe565b92915050565b6000602082840312156112f257600080fd5b6000611300848285016112b6565b91505092915050565b6000806040838503121561131c57600080fd5b600061132a858286016112b6565b925050602061133b858286016112b6565b9150509250929050565b60008060006060848603121561135a57600080fd5b6000611368868287016112b6565b9350506020611379868287016112b6565b925050604061138a868287016112cb565b9150509250925092565b600080604083850312156113a757600080fd5b60006113b5858286016112b6565b92505060206113c6858286016112cb565b9150509250929050565b6000602082840312156113e257600080fd5b60006113f0848285016112cb565b91505092915050565b61140281611c4f565b82525050565b61141181611c61565b82525050565b600061142282611b1e565b61142c8185611b29565b935061143c818560208601611ca4565b61144581611d96565b840191505092915050565b600061145d602383611b29565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114c3602283611b29565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611529602683611b29565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061158f602283611b29565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115f5602683611b29565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061165b602883611b29565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116c1602083611b29565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611701602483611b29565b91507f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008301527f616e6365000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611767602183611b29565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117cd602583611b29565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611833602483611b29565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611899602583611b29565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6118fb81611c8d565b82525050565b61190a81611c97565b82525050565b600060208201905061192560008301846113f9565b92915050565b60006020820190506119406000830184611408565b92915050565b600060208201905081810360008301526119608184611417565b905092915050565b6000602082019050818103600083015261198181611450565b9050919050565b600060208201905081810360008301526119a1816114b6565b9050919050565b600060208201905081810360008301526119c18161151c565b9050919050565b600060208201905081810360008301526119e181611582565b9050919050565b60006020820190508181036000830152611a01816115e8565b9050919050565b60006020820190508181036000830152611a218161164e565b9050919050565b60006020820190508181036000830152611a41816116b4565b9050919050565b60006020820190508181036000830152611a61816116f4565b9050919050565b60006020820190508181036000830152611a818161175a565b9050919050565b60006020820190508181036000830152611aa1816117c0565b9050919050565b60006020820190508181036000830152611ac181611826565b9050919050565b60006020820190508181036000830152611ae18161188c565b9050919050565b6000602082019050611afd60008301846118f2565b92915050565b6000602082019050611b186000830184611901565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611b4582611c8d565b9150611b5083611c8d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b8557611b84611d09565b5b828201905092915050565b6000611b9b82611c8d565b9150611ba683611c8d565b925082611bb657611bb5611d38565b5b828204905092915050565b6000611bcc82611c8d565b9150611bd783611c8d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611c1057611c0f611d09565b5b828202905092915050565b6000611c2682611c8d565b9150611c3183611c8d565b925082821015611c4457611c43611d09565b5b828203905092915050565b6000611c5a82611c6d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611cc2578082015181840152602081019050611ca7565b83811115611cd1576000848401525b50505050565b60006002820490506001821680611cef57607f821691505b60208210811415611d0357611d02611d67565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611db081611c4f565b8114611dbb57600080fd5b50565b611dc781611c8d565b8114611dd257600080fd5b5056fea2646970667358221220ab834b12a878106cbc7b515dc3e9bc028804334ad8f6f22eff93da670143572364736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a39c13e711610071578063a39c13e7146102a8578063a457c2d7146102c6578063a9059cbb146102f6578063dd62ed3e14610326578063f2fde38b146103565761010b565b8063715018a61461024657806379cc6790146102505780638da5cb5b1461026c57806395d89b411461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806342966c68146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610372565b6040516101259190611946565b60405180910390f35b61014860048036038101906101439190611394565b610404565b604051610155919061192b565b60405180910390f35b610166610422565b6040516101739190611ae8565b60405180910390f35b61019660048036038101906101919190611345565b61042c565b6040516101a3919061192b565b60405180910390f35b6101b4610524565b6040516101c19190611b03565b60405180910390f35b6101e460048036038101906101df9190611394565b61052d565b6040516101f1919061192b565b60405180910390f35b610214600480360381019061020f91906113d0565b6105d9565b005b610230600480360381019061022b91906112e0565b6105ed565b60405161023d9190611ae8565b60405180910390f35b61024e610635565b005b61026a60048036038101906102659190611394565b6106bd565b005b610274610738565b6040516102819190611910565b60405180910390f35b610292610762565b60405161029f9190611946565b60405180910390f35b6102b06107f4565b6040516102bd9190611ae8565b60405180910390f35b6102e060048036038101906102db9190611394565b6107fa565b6040516102ed919061192b565b60405180910390f35b610310600480360381019061030b9190611394565b6108e5565b60405161031d919061192b565b60405180910390f35b610340600480360381019061033b9190611309565b610a10565b60405161034d9190611ae8565b60405180910390f35b610370600480360381019061036b91906112e0565b610a97565b005b60606003805461038190611cd7565b80601f01602080910402602001604051908101604052809291908181526020018280546103ad90611cd7565b80156103fa5780601f106103cf576101008083540402835291602001916103fa565b820191906000526020600020905b8154815290600101906020018083116103dd57829003601f168201915b5050505050905090565b6000610418610411610b8f565b8484610b97565b6001905092915050565b6000600254905090565b6000610439848484610d62565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610484610b8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104fb90611a08565b60405180910390fd5b61051885610510610b8f565b858403610b97565b60019150509392505050565b60006012905090565b60006105cf61053a610b8f565b848460016000610548610b8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105ca9190611b3a565b610b97565b6001905092915050565b6105ea6105e4610b8f565b82610fe3565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61063d610b8f565b73ffffffffffffffffffffffffffffffffffffffff1661065b610738565b73ffffffffffffffffffffffffffffffffffffffff16146106b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a890611a28565b60405180910390fd5b6106bb60006111ba565b565b60006106d0836106cb610b8f565b610a10565b905081811015610715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070c90611a48565b60405180910390fd5b61072983610721610b8f565b848403610b97565b6107338383610fe3565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461077190611cd7565b80601f016020809104026020016040519081016040528092919081815260200182805461079d90611cd7565b80156107ea5780601f106107bf576101008083540402835291602001916107ea565b820191906000526020600020905b8154815290600101906020018083116107cd57829003601f168201915b5050505050905090565b600a5481565b60008060016000610809610b8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bd90611ac8565b60405180910390fd5b6108da6108d1610b8f565b85858403610b97565b600191505092915050565b600060011515600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156109575761095261094b610b8f565b8484610d62565b610a06565b60006009546109716007548561128090919063ffffffff16565b61097b9190611b90565b905060006009546109976006548661128090919063ffffffff16565b6109a19190611b90565b90506109b46109ae610b8f565b83610fe3565b6109cd6109bf610b8f565b6109c7610738565b83610d62565b610a036109d8610b8f565b866109fe846109f0878a61129690919063ffffffff16565b61129690919063ffffffff16565b610d62565b50505b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a9f610b8f565b73ffffffffffffffffffffffffffffffffffffffff16610abd610738565b73ffffffffffffffffffffffffffffffffffffffff1614610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a90611a28565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a906119a8565b60405180910390fd5b610b8c816111ba565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe90611aa8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e906119c8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d559190611ae8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc990611a88565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3990611968565b60405180910390fd5b610e4d8383836112ac565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca906119e8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f669190611b3a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fca9190611ae8565b60405180910390a3610fdd8484846112b1565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104a90611a68565b60405180910390fd5b61105f826000836112ac565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc90611988565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461113c9190611c1b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111a19190611ae8565b60405180910390a36111b5836000846112b1565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818361128e9190611bc1565b905092915050565b600081836112a49190611c1b565b905092915050565b505050565b505050565b6000813590506112c581611da7565b92915050565b6000813590506112da81611dbe565b92915050565b6000602082840312156112f257600080fd5b6000611300848285016112b6565b91505092915050565b6000806040838503121561131c57600080fd5b600061132a858286016112b6565b925050602061133b858286016112b6565b9150509250929050565b60008060006060848603121561135a57600080fd5b6000611368868287016112b6565b9350506020611379868287016112b6565b925050604061138a868287016112cb565b9150509250925092565b600080604083850312156113a757600080fd5b60006113b5858286016112b6565b92505060206113c6858286016112cb565b9150509250929050565b6000602082840312156113e257600080fd5b60006113f0848285016112cb565b91505092915050565b61140281611c4f565b82525050565b61141181611c61565b82525050565b600061142282611b1e565b61142c8185611b29565b935061143c818560208601611ca4565b61144581611d96565b840191505092915050565b600061145d602383611b29565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114c3602283611b29565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611529602683611b29565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061158f602283611b29565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115f5602683611b29565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061165b602883611b29565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116c1602083611b29565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611701602483611b29565b91507f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008301527f616e6365000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611767602183611b29565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117cd602583611b29565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611833602483611b29565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611899602583611b29565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6118fb81611c8d565b82525050565b61190a81611c97565b82525050565b600060208201905061192560008301846113f9565b92915050565b60006020820190506119406000830184611408565b92915050565b600060208201905081810360008301526119608184611417565b905092915050565b6000602082019050818103600083015261198181611450565b9050919050565b600060208201905081810360008301526119a1816114b6565b9050919050565b600060208201905081810360008301526119c18161151c565b9050919050565b600060208201905081810360008301526119e181611582565b9050919050565b60006020820190508181036000830152611a01816115e8565b9050919050565b60006020820190508181036000830152611a218161164e565b9050919050565b60006020820190508181036000830152611a41816116b4565b9050919050565b60006020820190508181036000830152611a61816116f4565b9050919050565b60006020820190508181036000830152611a818161175a565b9050919050565b60006020820190508181036000830152611aa1816117c0565b9050919050565b60006020820190508181036000830152611ac181611826565b9050919050565b60006020820190508181036000830152611ae18161188c565b9050919050565b6000602082019050611afd60008301846118f2565b92915050565b6000602082019050611b186000830184611901565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611b4582611c8d565b9150611b5083611c8d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b8557611b84611d09565b5b828201905092915050565b6000611b9b82611c8d565b9150611ba683611c8d565b925082611bb657611bb5611d38565b5b828204905092915050565b6000611bcc82611c8d565b9150611bd783611c8d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611c1057611c0f611d09565b5b828202905092915050565b6000611c2682611c8d565b9150611c3183611c8d565b925082821015611c4457611c43611d09565b5b828203905092915050565b6000611c5a82611c6d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611cc2578082015181840152602081019050611ca7565b83811115611cd1576000848401525b50505050565b60006002820490506001821680611cef57607f821691505b60208210811415611d0357611d02611d67565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611db081611c4f565b8114611dbb57600080fd5b50565b611dc781611c8d565b8114611dd257600080fd5b5056fea2646970667358221220ab834b12a878106cbc7b515dc3e9bc028804334ad8f6f22eff93da670143572364736f6c63430008000033

Deployed Bytecode Sourcemap

35871:1549:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24473:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26640:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25593:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27291:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25435:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28192:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35055:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25764:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17735:103;;;:::i;:::-;;35465:368;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17084:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24692:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36151:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28910:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36514:903;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26342:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17993:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24473:100;24527:13;24560:5;24553:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24473:100;:::o;26640:169::-;26723:4;26740:39;26749:12;:10;:12::i;:::-;26763:7;26772:6;26740:8;:39::i;:::-;26797:4;26790:11;;26640:169;;;;:::o;25593:108::-;25654:7;25681:12;;25674:19;;25593:108;:::o;27291:492::-;27431:4;27448:36;27458:6;27466:9;27477:6;27448:9;:36::i;:::-;27497:24;27524:11;:19;27536:6;27524:19;;;;;;;;;;;;;;;:33;27544:12;:10;:12::i;:::-;27524:33;;;;;;;;;;;;;;;;27497:60;;27596:6;27576:16;:26;;27568:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;27683:57;27692:6;27700:12;:10;:12::i;:::-;27733:6;27714:16;:25;27683:8;:57::i;:::-;27771:4;27764:11;;;27291:492;;;;;:::o;25435:93::-;25493:5;25518:2;25511:9;;25435:93;:::o;28192:215::-;28280:4;28297:80;28306:12;:10;:12::i;:::-;28320:7;28366:10;28329:11;:25;28341:12;:10;:12::i;:::-;28329:25;;;;;;;;;;;;;;;:34;28355:7;28329:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;28297:8;:80::i;:::-;28395:4;28388:11;;28192:215;;;;:::o;35055:91::-;35111:27;35117:12;:10;:12::i;:::-;35131:6;35111:5;:27::i;:::-;35055:91;:::o;25764:127::-;25838:7;25865:9;:18;25875:7;25865:18;;;;;;;;;;;;;;;;25858:25;;25764:127;;;:::o;17735:103::-;17315:12;:10;:12::i;:::-;17304:23;;:7;:5;:7::i;:::-;:23;;;17296:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17800:30:::1;17827:1;17800:18;:30::i;:::-;17735:103::o:0;35465:368::-;35542:24;35569:32;35579:7;35588:12;:10;:12::i;:::-;35569:9;:32::i;:::-;35542:59;;35640:6;35620:16;:26;;35612:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;35723:58;35732:7;35741:12;:10;:12::i;:::-;35774:6;35755:16;:25;35723:8;:58::i;:::-;35803:22;35809:7;35818:6;35803:5;:22::i;:::-;35465:368;;;:::o;17084:87::-;17130:7;17157:6;;;;;;;;;;;17150:13;;17084:87;:::o;24692:104::-;24748:13;24781:7;24774:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24692:104;:::o;36151:30::-;;;;:::o;28910:413::-;29003:4;29020:24;29047:11;:25;29059:12;:10;:12::i;:::-;29047:25;;;;;;;;;;;;;;;:34;29073:7;29047:34;;;;;;;;;;;;;;;;29020:61;;29120:15;29100:16;:35;;29092:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29213:67;29222:12;:10;:12::i;:::-;29236:7;29264:15;29245:16;:34;29213:8;:67::i;:::-;29311:4;29304:11;;;28910:413;;;;:::o;36514:903::-;36591:4;36652;36621:35;;:15;:27;36637:10;36621:27;;;;;;;;;;;;;;;;;;;;;;;;;:35;;;36618:760;;;36673:42;36683:12;:10;:12::i;:::-;36697:9;36708:6;36673:9;:42::i;:::-;36618:760;;;37049:16;37091:11;;37068:20;37079:8;;37068:6;:10;;:20;;;;:::i;:::-;:34;;;;:::i;:::-;37049:53;;37117:16;37157:11;;37136:19;37147:7;;37136:6;:10;;:19;;;;:::i;:::-;:32;;;;:::i;:::-;37117:51;;37183:32;37189:12;:10;:12::i;:::-;37203:11;37183:5;:32::i;:::-;37230:45;37240:12;:10;:12::i;:::-;37254:7;:5;:7::i;:::-;37263:11;37230:9;:45::i;:::-;37290:76;37300:12;:10;:12::i;:::-;37314:9;37325:40;37353:11;37325:23;37336:11;37325:6;:10;;:23;;;;:::i;:::-;:27;;:40;;;;:::i;:::-;37290:9;:76::i;:::-;36618:760;;;37405:4;37398:11;;36514:903;;;;:::o;26342:151::-;26431:7;26458:11;:18;26470:5;26458:18;;;;;;;;;;;;;;;:27;26477:7;26458:27;;;;;;;;;;;;;;;;26451:34;;26342:151;;;;:::o;17993:201::-;17315:12;:10;:12::i;:::-;17304:23;;:7;:5;:7::i;:::-;:23;;;17296:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18102:1:::1;18082:22;;:8;:22;;;;18074:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;18158:28;18177:8;18158:18;:28::i;:::-;17993:201:::0;:::o;15755:98::-;15808:7;15835:10;15828:17;;15755:98;:::o;32594:380::-;32747:1;32730:19;;:5;:19;;;;32722:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32828:1;32809:21;;:7;:21;;;;32801:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32912:6;32882:11;:18;32894:5;32882:18;;;;;;;;;;;;;;;:27;32901:7;32882:27;;;;;;;;;;;;;;;:36;;;;32950:7;32934:32;;32943:5;32934:32;;;32959:6;32934:32;;;;;;:::i;:::-;;;;;;;;32594:380;;;:::o;29813:733::-;29971:1;29953:20;;:6;:20;;;;29945:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;30055:1;30034:23;;:9;:23;;;;30026:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30110:47;30131:6;30139:9;30150:6;30110:20;:47::i;:::-;30170:21;30194:9;:17;30204:6;30194:17;;;;;;;;;;;;;;;;30170:41;;30247:6;30230:13;:23;;30222:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30368:6;30352:13;:22;30332:9;:17;30342:6;30332:17;;;;;;;;;;;;;;;:42;;;;30420:6;30396:9;:20;30406:9;30396:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;30461:9;30444:35;;30453:6;30444:35;;;30472:6;30444:35;;;;;;:::i;:::-;;;;;;;;30492:46;30512:6;30520:9;30531:6;30492:19;:46::i;:::-;29813:733;;;;:::o;31565:591::-;31668:1;31649:21;;:7;:21;;;;31641:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;31721:49;31742:7;31759:1;31763:6;31721:20;:49::i;:::-;31783:22;31808:9;:18;31818:7;31808:18;;;;;;;;;;;;;;;;31783:43;;31863:6;31845:14;:24;;31837:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;31982:6;31965:14;:23;31944:9;:18;31954:7;31944:18;;;;;;;;;;;;;;;:44;;;;32026:6;32010:12;;:22;;;;;;;:::i;:::-;;;;;;;;32076:1;32050:37;;32059:7;32050:37;;;32080:6;32050:37;;;;;;:::i;:::-;;;;;;;;32100:48;32120:7;32137:1;32141:6;32100:19;:48::i;:::-;31565:591;;;:::o;18354:191::-;18428:16;18447:6;;;;;;;;;;;18428:25;;18473:8;18464:6;;:17;;;;;;;;;;;;;;;;;;18528:8;18497:40;;18518:8;18497:40;;;;;;;;;;;;18354:191;;:::o;11698:98::-;11756:7;11787:1;11783;:5;;;;:::i;:::-;11776:12;;11698:98;;;;:::o;11341:::-;11399:7;11430:1;11426;:5;;;;:::i;:::-;11419:12;;11341:98;;;;:::o;33574:125::-;;;;:::o;34303:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:366::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:34;3455:1;3450:3;3446:11;3439:55;3525:4;3520:2;3515:3;3511:12;3504:26;3556:2;3551:3;3547:12;3540:19;;3345:220;;;:::o;3571:370::-;;3734:67;3798:2;3793:3;3734:67;:::i;:::-;3727:74;;3831:34;3827:1;3822:3;3818:11;3811:55;3897:8;3892:2;3887:3;3883:12;3876:30;3932:2;3927:3;3923:12;3916:19;;3717:224;;;:::o;3947:366::-;;4110:67;4174:2;4169:3;4110:67;:::i;:::-;4103:74;;4207:34;4203:1;4198:3;4194:11;4187:55;4273:4;4268:2;4263:3;4259:12;4252:26;4304:2;4299:3;4295:12;4288:19;;4093:220;;;:::o;4319:370::-;;4482:67;4546:2;4541:3;4482:67;:::i;:::-;4475:74;;4579:34;4575:1;4570:3;4566:11;4559:55;4645:8;4640:2;4635:3;4631:12;4624:30;4680:2;4675:3;4671:12;4664:19;;4465:224;;;:::o;4695:372::-;;4858:67;4922:2;4917:3;4858:67;:::i;:::-;4851:74;;4955:34;4951:1;4946:3;4942:11;4935:55;5021:10;5016:2;5011:3;5007:12;5000:32;5058:2;5053:3;5049:12;5042:19;;4841:226;;;:::o;5073:330::-;;5236:67;5300:2;5295:3;5236:67;:::i;:::-;5229:74;;5333:34;5329:1;5324:3;5320:11;5313:55;5394:2;5389:3;5385:12;5378:19;;5219:184;;;:::o;5409:368::-;;5572:67;5636:2;5631:3;5572:67;:::i;:::-;5565:74;;5669:34;5665:1;5660:3;5656:11;5649:55;5735:6;5730:2;5725:3;5721:12;5714:28;5768:2;5763:3;5759:12;5752:19;;5555:222;;;:::o;5783:365::-;;5946:67;6010:2;6005:3;5946:67;:::i;:::-;5939:74;;6043:34;6039:1;6034:3;6030:11;6023:55;6109:3;6104:2;6099:3;6095:12;6088:25;6139:2;6134:3;6130:12;6123:19;;5929:219;;;:::o;6154:369::-;;6317:67;6381:2;6376:3;6317:67;:::i;:::-;6310:74;;6414:34;6410:1;6405:3;6401:11;6394:55;6480:7;6475:2;6470:3;6466:12;6459:29;6514:2;6509:3;6505:12;6498:19;;6300:223;;;:::o;6529:368::-;;6692:67;6756:2;6751:3;6692:67;:::i;:::-;6685:74;;6789:34;6785:1;6780:3;6776:11;6769:55;6855:6;6850:2;6845:3;6841:12;6834:28;6888:2;6883:3;6879:12;6872:19;;6675:222;;;:::o;6903:369::-;;7066:67;7130:2;7125:3;7066:67;:::i;:::-;7059:74;;7163:34;7159:1;7154:3;7150:11;7143:55;7229:7;7224:2;7219:3;7215:12;7208:29;7263:2;7258:3;7254:12;7247:19;;7049:223;;;:::o;7278:118::-;7365:24;7383:5;7365:24;:::i;:::-;7360:3;7353:37;7343:53;;:::o;7402:112::-;7485:22;7501:5;7485:22;:::i;:::-;7480:3;7473:35;7463:51;;:::o;7520:222::-;;7651:2;7640:9;7636:18;7628:26;;7664:71;7732:1;7721:9;7717:17;7708:6;7664:71;:::i;:::-;7618:124;;;;:::o;7748:210::-;;7873:2;7862:9;7858:18;7850:26;;7886:65;7948:1;7937:9;7933:17;7924:6;7886:65;:::i;:::-;7840:118;;;;:::o;7964:313::-;;8115:2;8104:9;8100:18;8092:26;;8164:9;8158:4;8154:20;8150:1;8139:9;8135:17;8128:47;8192:78;8265:4;8256:6;8192:78;:::i;:::-;8184:86;;8082:195;;;;:::o;8283:419::-;;8487:2;8476:9;8472:18;8464:26;;8536:9;8530:4;8526:20;8522:1;8511:9;8507:17;8500:47;8564:131;8690:4;8564:131;:::i;:::-;8556:139;;8454:248;;;:::o;8708:419::-;;8912:2;8901:9;8897:18;8889:26;;8961:9;8955:4;8951:20;8947:1;8936:9;8932:17;8925:47;8989:131;9115:4;8989:131;:::i;:::-;8981:139;;8879:248;;;:::o;9133:419::-;;9337:2;9326:9;9322:18;9314:26;;9386:9;9380:4;9376:20;9372:1;9361:9;9357:17;9350:47;9414:131;9540:4;9414:131;:::i;:::-;9406:139;;9304:248;;;:::o;9558:419::-;;9762:2;9751:9;9747:18;9739:26;;9811:9;9805:4;9801:20;9797:1;9786:9;9782:17;9775:47;9839:131;9965:4;9839:131;:::i;:::-;9831:139;;9729:248;;;:::o;9983:419::-;;10187:2;10176:9;10172:18;10164:26;;10236:9;10230:4;10226:20;10222:1;10211:9;10207:17;10200:47;10264:131;10390:4;10264:131;:::i;:::-;10256:139;;10154:248;;;:::o;10408:419::-;;10612:2;10601:9;10597:18;10589:26;;10661:9;10655:4;10651:20;10647:1;10636:9;10632:17;10625:47;10689:131;10815:4;10689:131;:::i;:::-;10681:139;;10579:248;;;:::o;10833:419::-;;11037:2;11026:9;11022:18;11014:26;;11086:9;11080:4;11076:20;11072:1;11061:9;11057:17;11050:47;11114:131;11240:4;11114:131;:::i;:::-;11106:139;;11004:248;;;:::o;11258:419::-;;11462:2;11451:9;11447:18;11439:26;;11511:9;11505:4;11501:20;11497:1;11486:9;11482:17;11475:47;11539:131;11665:4;11539:131;:::i;:::-;11531:139;;11429:248;;;:::o;11683:419::-;;11887:2;11876:9;11872:18;11864:26;;11936:9;11930:4;11926:20;11922:1;11911:9;11907:17;11900:47;11964:131;12090:4;11964:131;:::i;:::-;11956:139;;11854:248;;;:::o;12108:419::-;;12312:2;12301:9;12297:18;12289:26;;12361:9;12355:4;12351:20;12347:1;12336:9;12332:17;12325:47;12389:131;12515:4;12389:131;:::i;:::-;12381:139;;12279:248;;;:::o;12533:419::-;;12737:2;12726:9;12722:18;12714:26;;12786:9;12780:4;12776:20;12772:1;12761:9;12757:17;12750:47;12814:131;12940:4;12814:131;:::i;:::-;12806:139;;12704:248;;;:::o;12958:419::-;;13162:2;13151:9;13147:18;13139:26;;13211:9;13205:4;13201:20;13197:1;13186:9;13182:17;13175:47;13239:131;13365:4;13239:131;:::i;:::-;13231:139;;13129:248;;;:::o;13383:222::-;;13514:2;13503:9;13499:18;13491:26;;13527:71;13595:1;13584:9;13580:17;13571:6;13527:71;:::i;:::-;13481:124;;;;:::o;13611:214::-;;13738:2;13727:9;13723:18;13715:26;;13751:67;13815:1;13804:9;13800:17;13791:6;13751:67;:::i;:::-;13705:120;;;;:::o;13831:99::-;;13917:5;13911:12;13901:22;;13890:40;;;:::o;13936:169::-;;14054:6;14049:3;14042:19;14094:4;14089:3;14085:14;14070:29;;14032:73;;;;:::o;14111:305::-;;14170:20;14188:1;14170:20;:::i;:::-;14165:25;;14204:20;14222:1;14204:20;:::i;:::-;14199:25;;14358:1;14290:66;14286:74;14283:1;14280:81;14277:2;;;14364:18;;:::i;:::-;14277:2;14408:1;14405;14401:9;14394:16;;14155:261;;;;:::o;14422:185::-;;14479:20;14497:1;14479:20;:::i;:::-;14474:25;;14513:20;14531:1;14513:20;:::i;:::-;14508:25;;14552:1;14542:2;;14557:18;;:::i;:::-;14542:2;14599:1;14596;14592:9;14587:14;;14464:143;;;;:::o;14613:348::-;;14676:20;14694:1;14676:20;:::i;:::-;14671:25;;14710:20;14728:1;14710:20;:::i;:::-;14705:25;;14898:1;14830:66;14826:74;14823:1;14820:81;14815:1;14808:9;14801:17;14797:105;14794:2;;;14905:18;;:::i;:::-;14794:2;14953:1;14950;14946:9;14935:20;;14661:300;;;;:::o;14967:191::-;;15027:20;15045:1;15027:20;:::i;:::-;15022:25;;15061:20;15079:1;15061:20;:::i;:::-;15056:25;;15100:1;15097;15094:8;15091:2;;;15105:18;;:::i;:::-;15091:2;15150:1;15147;15143:9;15135:17;;15012:146;;;;:::o;15164:96::-;;15230:24;15248:5;15230:24;:::i;:::-;15219:35;;15209:51;;;:::o;15266:90::-;;15343:5;15336:13;15329:21;15318:32;;15308:48;;;:::o;15362:126::-;;15439:42;15432:5;15428:54;15417:65;;15407:81;;;:::o;15494:77::-;;15560:5;15549:16;;15539:32;;;:::o;15577:86::-;;15652:4;15645:5;15641:16;15630:27;;15620:43;;;:::o;15669:307::-;15737:1;15747:113;15761:6;15758:1;15755:13;15747:113;;;15846:1;15841:3;15837:11;15831:18;15827:1;15822:3;15818:11;15811:39;15783:2;15780:1;15776:10;15771:15;;15747:113;;;15878:6;15875:1;15872:13;15869:2;;;15958:1;15949:6;15944:3;15940:16;15933:27;15869:2;15718:258;;;;:::o;15982:320::-;;16063:1;16057:4;16053:12;16043:22;;16110:1;16104:4;16100:12;16131:18;16121:2;;16187:4;16179:6;16175:17;16165:27;;16121:2;16249;16241:6;16238:14;16218:18;16215:38;16212:2;;;16268:18;;:::i;:::-;16212:2;16033:269;;;;:::o;16308:180::-;16356:77;16353:1;16346:88;16453:4;16450:1;16443:15;16477:4;16474:1;16467:15;16494:180;16542:77;16539:1;16532:88;16639:4;16636:1;16629:15;16663:4;16660:1;16653:15;16680:180;16728:77;16725:1;16718:88;16825:4;16822:1;16815:15;16849:4;16846:1;16839:15;16866:102;;16958:2;16954:7;16949:2;16942:5;16938:14;16934:28;16924:38;;16914:54;;;:::o;16974:122::-;17047:24;17065:5;17047:24;:::i;:::-;17040:5;17037:35;17027:2;;17086:1;17083;17076:12;17027:2;17017:79;:::o;17102:122::-;17175:24;17193:5;17175:24;:::i;:::-;17168:5;17165:35;17155:2;;17214:1;17211;17204:12;17155:2;17145:79;:::o

Swarm Source

ipfs://ab834b12a878106cbc7b515dc3e9bc028804334ad8f6f22eff93da6701435723

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ 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.