false
true
0

Contract Address Details

0x77eFf47746273D624FEa755880d5654A524573aA

Token
⏦ (⏦)
Creator
0x369418–c59888 at 0x6129bc–d24571
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
1,231 Transactions
Transfers
0 Transfers
Gas Used
0
Last Balance Update
25963393
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
pulsekeepers




Optimization enabled
false
Compiler version
v0.8.21+commit.d9974bed




EVM Version
default




Verified at
2024-06-02T03:26:47.568674Z

Contract source code

//SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.21;

address constant dead = address(0x000000000000000000000000000000000000dEaD);

address constant IRC = address(0x0509CAB0d9Dd46D061B6A420065E76E186F23Edf);

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (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: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        _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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (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 {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}




pragma solidity ^0.8.21;


contract pulsekeepers is ERC20, ERC20Burnable, Ownable {
    IERC20 private Irc;
    uint256 private mintCounter;

    constructor() ERC20(unicode"⏦", unicode"⏦") {
        Irc = IERC20(IRC);
        mintCounter = 0;
    }

    function BuyWithIRC() public {
        address sender = _msgSender();
        uint256 price = calculatePrice();

        // Check if the sender has enough IRC tokens for minting
        require(Irc.balanceOf(sender) >= price, unicode"Not enough IRC tokens available");

        bool success1 = Irc.transferFrom(sender, address(dead), price);
        require(success1, unicode"Error! Revert! IRC Not Yet Approved!");


        _mint(sender, 1 * 10 ** decimals());
        mintCounter++;
    }

    function calculatePrice() internal view returns (uint256) {
        // Calculate price based on an elongated exponential curve
        uint256 price = 88000000000000 * (2 ** (mintCounter / 100));
        return price;
    }
}
        

Contract ABI

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

Contract Creation Code

Verify & Publish
0x608060405234801562000010575f80fd5b506040518060400160405280600381526020017fe28fa600000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017fe28fa6000000000000000000000000000000000000000000000000000000000081525081600390816200008e919062000452565b508060049081620000a0919062000452565b505050620000c3620000b76200012460201b60201c565b6200012b60201b60201c565b730509cab0d9dd46d061b6a420065e76e186f23edf60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f60078190555062000536565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200026a57607f821691505b60208210810362000280576200027f62000225565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620002e47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002a7565b620002f08683620002a7565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200033a620003346200032e8462000308565b62000311565b62000308565b9050919050565b5f819050919050565b62000355836200031a565b6200036d620003648262000341565b848454620002b3565b825550505050565b5f90565b6200038362000375565b620003908184846200034a565b505050565b5b81811015620003b757620003ab5f8262000379565b60018101905062000396565b5050565b601f8211156200040657620003d08162000286565b620003db8462000298565b81016020851015620003eb578190505b62000403620003fa8562000298565b83018262000395565b50505b505050565b5f82821c905092915050565b5f620004285f19846008026200040b565b1980831691505092915050565b5f62000442838362000417565b9150826002028217905092915050565b6200045d82620001ee565b67ffffffffffffffff811115620004795762000478620001f8565b5b62000485825462000252565b62000492828285620003bb565b5f60209050601f831160018114620004c8575f8415620004b3578287015190505b620004bf858262000435565b8655506200052e565b601f198416620004d88662000286565b5f5b828110156200050157848901518255600182019150602085019450602081019050620004da565b868310156200052157848901516200051d601f89168262000417565b8355505b6001600288020188555050505b505050505050565b61230880620005445f395ff3fe608060405234801561000f575f80fd5b5060043610610109575f3560e01c8063715018a6116100a0578063a457c2d71161006f578063a457c2d7146102a5578063a9059cbb146102d5578063dd62ed3e14610305578063ec3f619a14610335578063f2fde38b1461033f57610109565b8063715018a61461024357806379cc67901461024d5780638da5cb5b1461026957806395d89b411461028757610109565b8063313ce567116100dc578063313ce567146101a957806339509351146101c757806342966c68146101f757806370a082311461021357610109565b806306fdde031461010d578063095ea7b31461012b57806318160ddd1461015b57806323b872dd14610179575b5f80fd5b61011561035b565b60405161012291906114bb565b60405180910390f35b6101456004803603810190610140919061156c565b6103eb565b60405161015291906115c4565b60405180910390f35b61016361040d565b60405161017091906115ec565b60405180910390f35b610193600480360381019061018e9190611605565b610416565b6040516101a091906115c4565b60405180910390f35b6101b1610444565b6040516101be9190611670565b60405180910390f35b6101e160048036038101906101dc919061156c565b61044c565b6040516101ee91906115c4565b60405180910390f35b610211600480360381019061020c9190611689565b6104f1565b005b61022d600480360381019061022891906116b4565b610505565b60405161023a91906115ec565b60405180910390f35b61024b61054a565b005b6102676004803603810190610262919061156c565b6105d1565b005b6102716105f1565b60405161027e91906116ee565b60405180910390f35b61028f610619565b60405161029c91906114bb565b60405180910390f35b6102bf60048036038101906102ba919061156c565b6106a9565b6040516102cc91906115c4565b60405180910390f35b6102ef60048036038101906102ea919061156c565b61078d565b6040516102fc91906115c4565b60405180910390f35b61031f600480360381019061031a9190611707565b6107af565b60405161032c91906115ec565b60405180910390f35b61033d610831565b005b610359600480360381019061035491906116b4565b610a4a565b005b60606003805461036a90611772565b80601f016020809104026020016040519081016040528092919081815260200182805461039690611772565b80156103e15780601f106103b8576101008083540402835291602001916103e1565b820191905f5260205f20905b8154815290600101906020018083116103c457829003601f168201915b5050505050905090565b5f806103f5610b40565b9050610402818585610b47565b600191505092915050565b5f600254905090565b5f80610420610b40565b905061042d858285610d0a565b610438858585610d95565b60019150509392505050565b5f6012905090565b5f80610456610b40565b90506104e681858560015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546104e191906117cf565b610b47565b600191505092915050565b6105026104fc610b40565b8261100a565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610552610b40565b73ffffffffffffffffffffffffffffffffffffffff166105706105f1565b73ffffffffffffffffffffffffffffffffffffffff16146105c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105bd9061184c565b60405180910390fd5b6105cf5f6111d6565b565b6105e3826105dd610b40565b83610d0a565b6105ed828261100a565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461062890611772565b80601f016020809104026020016040519081016040528092919081815260200182805461065490611772565b801561069f5780601f106106765761010080835404028352916020019161069f565b820191905f5260205f20905b81548152906001019060200180831161068257829003601f168201915b5050505050905090565b5f806106b3610b40565b90505f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905083811015610774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076b906118da565b60405180910390fd5b6107818286868403610b47565b60019250505092915050565b5f80610797610b40565b90506107a4818585610d95565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f61083a610b40565b90505f610845611299565b90508060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b81526004016108a291906116ee565b602060405180830381865afa1580156108bd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108e1919061190c565b1015610922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091990611981565b60405180910390fd5b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd8461dead856040518463ffffffff1660e01b81526004016109839392919061199f565b6020604051808303815f875af115801561099f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109c391906119fe565b905080610a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fc90611a99565b60405180910390fd5b610a2e83610a11610444565b600a610a1d9190611be6565b6001610a299190611c30565b6112d0565b60075f815480929190610a4090611c71565b9190505550505050565b610a52610b40565b73ffffffffffffffffffffffffffffffffffffffff16610a706105f1565b73ffffffffffffffffffffffffffffffffffffffff1614610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd9061184c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2b90611d28565b60405180910390fd5b610b3d816111d6565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac90611db6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1a90611e44565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cfd91906115ec565b60405180910390a3505050565b5f610d1584846107af565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d8f5781811015610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890611eac565b60405180910390fd5b610d8e8484848403610b47565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa90611f3a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6890611fc8565b60405180910390fd5b610e7c838383611427565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef690612056565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610f8d91906117cf565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ff191906115ec565b60405180910390a361100484848461142c565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f906120e4565b60405180910390fd5b611083825f83611427565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fd90612172565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825461115a9190612190565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111be91906115ec565b60405180910390a36111d1835f8461142c565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8060646007546112aa91906121f0565b60026112b69190612220565b65500918bd80006112c79190611c30565b90508091505090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361133e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611335906122b4565b60405180910390fd5b6113495f8383611427565b8060025f82825461135a91906117cf565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546113ac91906117cf565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161141091906115ec565b60405180910390a36114235f838361142c565b5050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561146857808201518184015260208101905061144d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61148d82611431565b611497818561143b565b93506114a781856020860161144b565b6114b081611473565b840191505092915050565b5f6020820190508181035f8301526114d38184611483565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611508826114df565b9050919050565b611518816114fe565b8114611522575f80fd5b50565b5f813590506115338161150f565b92915050565b5f819050919050565b61154b81611539565b8114611555575f80fd5b50565b5f8135905061156681611542565b92915050565b5f8060408385031215611582576115816114db565b5b5f61158f85828601611525565b92505060206115a085828601611558565b9150509250929050565b5f8115159050919050565b6115be816115aa565b82525050565b5f6020820190506115d75f8301846115b5565b92915050565b6115e681611539565b82525050565b5f6020820190506115ff5f8301846115dd565b92915050565b5f805f6060848603121561161c5761161b6114db565b5b5f61162986828701611525565b935050602061163a86828701611525565b925050604061164b86828701611558565b9150509250925092565b5f60ff82169050919050565b61166a81611655565b82525050565b5f6020820190506116835f830184611661565b92915050565b5f6020828403121561169e5761169d6114db565b5b5f6116ab84828501611558565b91505092915050565b5f602082840312156116c9576116c86114db565b5b5f6116d684828501611525565b91505092915050565b6116e8816114fe565b82525050565b5f6020820190506117015f8301846116df565b92915050565b5f806040838503121561171d5761171c6114db565b5b5f61172a85828601611525565b925050602061173b85828601611525565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061178957607f821691505b60208210810361179c5761179b611745565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6117d982611539565b91506117e483611539565b92508282019050808211156117fc576117fb6117a2565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61183660208361143b565b915061184182611802565b602082019050919050565b5f6020820190508181035f8301526118638161182a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6118c460258361143b565b91506118cf8261186a565b604082019050919050565b5f6020820190508181035f8301526118f1816118b8565b9050919050565b5f8151905061190681611542565b92915050565b5f60208284031215611921576119206114db565b5b5f61192e848285016118f8565b91505092915050565b7f4e6f7420656e6f7567682049524320746f6b656e7320617661696c61626c65005f82015250565b5f61196b601f8361143b565b915061197682611937565b602082019050919050565b5f6020820190508181035f8301526119988161195f565b9050919050565b5f6060820190506119b25f8301866116df565b6119bf60208301856116df565b6119cc60408301846115dd565b949350505050565b6119dd816115aa565b81146119e7575f80fd5b50565b5f815190506119f8816119d4565b92915050565b5f60208284031215611a1357611a126114db565b5b5f611a20848285016119ea565b91505092915050565b7f4572726f7221205265766572742120495243204e6f742059657420417070726f5f8201527f7665642100000000000000000000000000000000000000000000000000000000602082015250565b5f611a8360248361143b565b9150611a8e82611a29565b604082019050919050565b5f6020820190508181035f830152611ab081611a77565b9050919050565b5f8160011c9050919050565b5f808291508390505b6001851115611b0c57808604811115611ae857611ae76117a2565b5b6001851615611af75780820291505b8081029050611b0585611ab7565b9450611acc565b94509492505050565b5f82611b245760019050611bdf565b81611b31575f9050611bdf565b8160018114611b475760028114611b5157611b80565b6001915050611bdf565b60ff841115611b6357611b626117a2565b5b8360020a915084821115611b7a57611b796117a2565b5b50611bdf565b5060208310610133831016604e8410600b8410161715611bb55782820a905083811115611bb057611baf6117a2565b5b611bdf565b611bc28484846001611ac3565b92509050818404811115611bd957611bd86117a2565b5b81810290505b9392505050565b5f611bf082611539565b9150611bfb83611655565b9250611c287fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611b15565b905092915050565b5f611c3a82611539565b9150611c4583611539565b9250828202611c5381611539565b91508282048414831517611c6a57611c696117a2565b5b5092915050565b5f611c7b82611539565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611cad57611cac6117a2565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611d1260268361143b565b9150611d1d82611cb8565b604082019050919050565b5f6020820190508181035f830152611d3f81611d06565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611da060248361143b565b9150611dab82611d46565b604082019050919050565b5f6020820190508181035f830152611dcd81611d94565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611e2e60228361143b565b9150611e3982611dd4565b604082019050919050565b5f6020820190508181035f830152611e5b81611e22565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611e96601d8361143b565b9150611ea182611e62565b602082019050919050565b5f6020820190508181035f830152611ec381611e8a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611f2460258361143b565b9150611f2f82611eca565b604082019050919050565b5f6020820190508181035f830152611f5181611f18565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611fb260238361143b565b9150611fbd82611f58565b604082019050919050565b5f6020820190508181035f830152611fdf81611fa6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61204060268361143b565b915061204b82611fe6565b604082019050919050565b5f6020820190508181035f83015261206d81612034565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6120ce60218361143b565b91506120d982612074565b604082019050919050565b5f6020820190508181035f8301526120fb816120c2565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f61215c60228361143b565b915061216782612102565b604082019050919050565b5f6020820190508181035f83015261218981612150565b9050919050565b5f61219a82611539565b91506121a583611539565b92508282039050818111156121bd576121bc6117a2565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6121fa82611539565b915061220583611539565b925082612215576122146121c3565b5b828204905092915050565b5f61222a82611539565b915061223583611539565b92506122627fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611b15565b905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f61229e601f8361143b565b91506122a98261226a565b602082019050919050565b5f6020820190508181035f8301526122cb81612292565b905091905056fea2646970667358221220c45da5d87e0876dd4eba5f06927948ddba25140f480123f3dc0ce339dd2ddc2b64736f6c63430008150033

Deployed ByteCode

0x608060405234801561000f575f80fd5b5060043610610109575f3560e01c8063715018a6116100a0578063a457c2d71161006f578063a457c2d7146102a5578063a9059cbb146102d5578063dd62ed3e14610305578063ec3f619a14610335578063f2fde38b1461033f57610109565b8063715018a61461024357806379cc67901461024d5780638da5cb5b1461026957806395d89b411461028757610109565b8063313ce567116100dc578063313ce567146101a957806339509351146101c757806342966c68146101f757806370a082311461021357610109565b806306fdde031461010d578063095ea7b31461012b57806318160ddd1461015b57806323b872dd14610179575b5f80fd5b61011561035b565b60405161012291906114bb565b60405180910390f35b6101456004803603810190610140919061156c565b6103eb565b60405161015291906115c4565b60405180910390f35b61016361040d565b60405161017091906115ec565b60405180910390f35b610193600480360381019061018e9190611605565b610416565b6040516101a091906115c4565b60405180910390f35b6101b1610444565b6040516101be9190611670565b60405180910390f35b6101e160048036038101906101dc919061156c565b61044c565b6040516101ee91906115c4565b60405180910390f35b610211600480360381019061020c9190611689565b6104f1565b005b61022d600480360381019061022891906116b4565b610505565b60405161023a91906115ec565b60405180910390f35b61024b61054a565b005b6102676004803603810190610262919061156c565b6105d1565b005b6102716105f1565b60405161027e91906116ee565b60405180910390f35b61028f610619565b60405161029c91906114bb565b60405180910390f35b6102bf60048036038101906102ba919061156c565b6106a9565b6040516102cc91906115c4565b60405180910390f35b6102ef60048036038101906102ea919061156c565b61078d565b6040516102fc91906115c4565b60405180910390f35b61031f600480360381019061031a9190611707565b6107af565b60405161032c91906115ec565b60405180910390f35b61033d610831565b005b610359600480360381019061035491906116b4565b610a4a565b005b60606003805461036a90611772565b80601f016020809104026020016040519081016040528092919081815260200182805461039690611772565b80156103e15780601f106103b8576101008083540402835291602001916103e1565b820191905f5260205f20905b8154815290600101906020018083116103c457829003601f168201915b5050505050905090565b5f806103f5610b40565b9050610402818585610b47565b600191505092915050565b5f600254905090565b5f80610420610b40565b905061042d858285610d0a565b610438858585610d95565b60019150509392505050565b5f6012905090565b5f80610456610b40565b90506104e681858560015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546104e191906117cf565b610b47565b600191505092915050565b6105026104fc610b40565b8261100a565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610552610b40565b73ffffffffffffffffffffffffffffffffffffffff166105706105f1565b73ffffffffffffffffffffffffffffffffffffffff16146105c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105bd9061184c565b60405180910390fd5b6105cf5f6111d6565b565b6105e3826105dd610b40565b83610d0a565b6105ed828261100a565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461062890611772565b80601f016020809104026020016040519081016040528092919081815260200182805461065490611772565b801561069f5780601f106106765761010080835404028352916020019161069f565b820191905f5260205f20905b81548152906001019060200180831161068257829003601f168201915b5050505050905090565b5f806106b3610b40565b90505f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905083811015610774576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076b906118da565b60405180910390fd5b6107818286868403610b47565b60019250505092915050565b5f80610797610b40565b90506107a4818585610d95565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f61083a610b40565b90505f610845611299565b90508060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b81526004016108a291906116ee565b602060405180830381865afa1580156108bd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108e1919061190c565b1015610922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091990611981565b60405180910390fd5b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd8461dead856040518463ffffffff1660e01b81526004016109839392919061199f565b6020604051808303815f875af115801561099f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109c391906119fe565b905080610a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fc90611a99565b60405180910390fd5b610a2e83610a11610444565b600a610a1d9190611be6565b6001610a299190611c30565b6112d0565b60075f815480929190610a4090611c71565b9190505550505050565b610a52610b40565b73ffffffffffffffffffffffffffffffffffffffff16610a706105f1565b73ffffffffffffffffffffffffffffffffffffffff1614610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd9061184c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2b90611d28565b60405180910390fd5b610b3d816111d6565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac90611db6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1a90611e44565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cfd91906115ec565b60405180910390a3505050565b5f610d1584846107af565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d8f5781811015610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890611eac565b60405180910390fd5b610d8e8484848403610b47565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa90611f3a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6890611fc8565b60405180910390fd5b610e7c838383611427565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef690612056565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610f8d91906117cf565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ff191906115ec565b60405180910390a361100484848461142c565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f906120e4565b60405180910390fd5b611083825f83611427565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fd90612172565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825461115a9190612190565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111be91906115ec565b60405180910390a36111d1835f8461142c565b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8060646007546112aa91906121f0565b60026112b69190612220565b65500918bd80006112c79190611c30565b90508091505090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361133e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611335906122b4565b60405180910390fd5b6113495f8383611427565b8060025f82825461135a91906117cf565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546113ac91906117cf565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161141091906115ec565b60405180910390a36114235f838361142c565b5050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561146857808201518184015260208101905061144d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61148d82611431565b611497818561143b565b93506114a781856020860161144b565b6114b081611473565b840191505092915050565b5f6020820190508181035f8301526114d38184611483565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611508826114df565b9050919050565b611518816114fe565b8114611522575f80fd5b50565b5f813590506115338161150f565b92915050565b5f819050919050565b61154b81611539565b8114611555575f80fd5b50565b5f8135905061156681611542565b92915050565b5f8060408385031215611582576115816114db565b5b5f61158f85828601611525565b92505060206115a085828601611558565b9150509250929050565b5f8115159050919050565b6115be816115aa565b82525050565b5f6020820190506115d75f8301846115b5565b92915050565b6115e681611539565b82525050565b5f6020820190506115ff5f8301846115dd565b92915050565b5f805f6060848603121561161c5761161b6114db565b5b5f61162986828701611525565b935050602061163a86828701611525565b925050604061164b86828701611558565b9150509250925092565b5f60ff82169050919050565b61166a81611655565b82525050565b5f6020820190506116835f830184611661565b92915050565b5f6020828403121561169e5761169d6114db565b5b5f6116ab84828501611558565b91505092915050565b5f602082840312156116c9576116c86114db565b5b5f6116d684828501611525565b91505092915050565b6116e8816114fe565b82525050565b5f6020820190506117015f8301846116df565b92915050565b5f806040838503121561171d5761171c6114db565b5b5f61172a85828601611525565b925050602061173b85828601611525565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061178957607f821691505b60208210810361179c5761179b611745565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6117d982611539565b91506117e483611539565b92508282019050808211156117fc576117fb6117a2565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61183660208361143b565b915061184182611802565b602082019050919050565b5f6020820190508181035f8301526118638161182a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6118c460258361143b565b91506118cf8261186a565b604082019050919050565b5f6020820190508181035f8301526118f1816118b8565b9050919050565b5f8151905061190681611542565b92915050565b5f60208284031215611921576119206114db565b5b5f61192e848285016118f8565b91505092915050565b7f4e6f7420656e6f7567682049524320746f6b656e7320617661696c61626c65005f82015250565b5f61196b601f8361143b565b915061197682611937565b602082019050919050565b5f6020820190508181035f8301526119988161195f565b9050919050565b5f6060820190506119b25f8301866116df565b6119bf60208301856116df565b6119cc60408301846115dd565b949350505050565b6119dd816115aa565b81146119e7575f80fd5b50565b5f815190506119f8816119d4565b92915050565b5f60208284031215611a1357611a126114db565b5b5f611a20848285016119ea565b91505092915050565b7f4572726f7221205265766572742120495243204e6f742059657420417070726f5f8201527f7665642100000000000000000000000000000000000000000000000000000000602082015250565b5f611a8360248361143b565b9150611a8e82611a29565b604082019050919050565b5f6020820190508181035f830152611ab081611a77565b9050919050565b5f8160011c9050919050565b5f808291508390505b6001851115611b0c57808604811115611ae857611ae76117a2565b5b6001851615611af75780820291505b8081029050611b0585611ab7565b9450611acc565b94509492505050565b5f82611b245760019050611bdf565b81611b31575f9050611bdf565b8160018114611b475760028114611b5157611b80565b6001915050611bdf565b60ff841115611b6357611b626117a2565b5b8360020a915084821115611b7a57611b796117a2565b5b50611bdf565b5060208310610133831016604e8410600b8410161715611bb55782820a905083811115611bb057611baf6117a2565b5b611bdf565b611bc28484846001611ac3565b92509050818404811115611bd957611bd86117a2565b5b81810290505b9392505050565b5f611bf082611539565b9150611bfb83611655565b9250611c287fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611b15565b905092915050565b5f611c3a82611539565b9150611c4583611539565b9250828202611c5381611539565b91508282048414831517611c6a57611c696117a2565b5b5092915050565b5f611c7b82611539565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611cad57611cac6117a2565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611d1260268361143b565b9150611d1d82611cb8565b604082019050919050565b5f6020820190508181035f830152611d3f81611d06565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611da060248361143b565b9150611dab82611d46565b604082019050919050565b5f6020820190508181035f830152611dcd81611d94565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611e2e60228361143b565b9150611e3982611dd4565b604082019050919050565b5f6020820190508181035f830152611e5b81611e22565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611e96601d8361143b565b9150611ea182611e62565b602082019050919050565b5f6020820190508181035f830152611ec381611e8a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611f2460258361143b565b9150611f2f82611eca565b604082019050919050565b5f6020820190508181035f830152611f5181611f18565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611fb260238361143b565b9150611fbd82611f58565b604082019050919050565b5f6020820190508181035f830152611fdf81611fa6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61204060268361143b565b915061204b82611fe6565b604082019050919050565b5f6020820190508181035f83015261206d81612034565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6120ce60218361143b565b91506120d982612074565b604082019050919050565b5f6020820190508181035f8301526120fb816120c2565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f61215c60228361143b565b915061216782612102565b604082019050919050565b5f6020820190508181035f83015261218981612150565b9050919050565b5f61219a82611539565b91506121a583611539565b92508282039050818111156121bd576121bc6117a2565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6121fa82611539565b915061220583611539565b925082612215576122146121c3565b5b828204905092915050565b5f61222a82611539565b915061223583611539565b92506122627fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611b15565b905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f61229e601f8361143b565b91506122a98261226a565b602082019050919050565b5f6020820190508181035f8301526122cb81612292565b905091905056fea2646970667358221220c45da5d87e0876dd4eba5f06927948ddba25140f480123f3dc0ce339dd2ddc2b64736f6c63430008150033