- We're indexing this chain right now. Some of the counts may be inaccurate.

Contract Address Details

0x433357a14c35815E6A32758fe95c93380D194aaf

Contract Name
Staking
Creator
0x046bf7–da7b9c at 0xf52f2a–899ab0
Balance
0 LIT ( )
Tokens
Fetching tokens...
Transactions
96 Transactions
Transfers
10 Transfers
Gas Used
6,757,501
Last Balance Update
1970983
Contract name:
Staking




Optimization enabled
false
Compiler version
v0.8.17+commit.8df45f5f




Verified at
2023-04-27T22:49:14.618342Z

Constructor Arguments

00000000000000000000000053695556f8a1a064edff91767f15652bbfafad04

Arg [0] (address) : 0x53695556f8a1a064edff91767f15652bbfafad04

              

contracts/lit-node/Staking.sol

//SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.17;

import { ReentrancyGuard } from "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import { ERC20Burnable } from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import { Pausable } from "@openzeppelin/contracts/security/Pausable.sol";
import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol";
import { EnumerableSet } from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";

import "hardhat/console.sol";

contract Staking is ReentrancyGuard, Pausable, Ownable {
    using EnumerableSet for EnumerableSet.AddressSet;

    /* ========== STATE VARIABLES ========== */

    enum States {
        Active,
        NextValidatorSetLocked,
        ReadyForNextEpoch,
        Unlocked,
        Paused
    }

    // this enum is not used, and instead we use an integer so that
    // we can add more reasons after the contract is deployed.
    // This enum is kept in the comments here for reference.
    // enum KickReason {
    //     NULLREASON, // 0
    //     UNRESPONSIVE, // 1
    //     BAD_ATTESTATION // 2
    // }

    States public state = States.Active;

    ERC20Burnable public stakingToken;

    struct Epoch {
        uint256 epochLength;
        uint256 number;
        uint256 endBlock; //
        uint256 retries; // incremented upon failure to advance and subsequent unlock
        uint256 timeout; // timeout in blocks, where the nodes can be unlocked.
    }

    Epoch public epoch;

    uint256 public tokenRewardPerTokenPerEpoch;

    uint256 public minimumStake;
    uint256 public totalStaked;

    // tokens slashed when kicked
    uint256 public kickPenaltyPercent;

    EnumerableSet.AddressSet validatorsInCurrentEpoch;
    EnumerableSet.AddressSet validatorsInNextEpoch;
    EnumerableSet.AddressSet validatorsKickedFromNextEpoch;

    struct Validator {
        uint32 ip;
        uint128 ipv6;
        uint32 port;
        address nodeAddress;
        uint256 balance;
        uint256 reward;
        uint256 senderPubKey;
        uint256 receiverPubKey;
    }

    struct VoteToKickValidatorInNextEpoch {
        uint256 votes;
        mapping(address => bool) voted;
    }

    // list of all validators, even ones that are not in the current or next epoch
    // maps STAKER address to Validator struct
    mapping(address => Validator) public validators;

    // stakers join by staking, but nodes need to be able to vote to kick.
    // to avoid node operators having to run a hotwallet with their staking private key,
    // the node gets it's own private key that it can use to vote to kick,
    // or signal that the next epoch is ready.
    // this mapping lets you go from the nodeAddressto the stakingAddress.
    mapping(address => address) public nodeAddressToStakerAddress;

    // after the validator set is locked, nodes vote that they have successfully completed the PSS
    // operation.  Once a threshold of nodes have voted that they are ready, then the epoch can advance
    mapping(address => bool) public readyForNextEpoch;

    // nodes can vote to kick another node.  If a threshold of nodes vote to kick someone, they
    // are removed from the next validator set
    mapping(uint256 => mapping(address => VoteToKickValidatorInNextEpoch))
        public votesToKickValidatorsInNextEpoch;

    // resolver contract address. the resolver contract is used to lookup other contract addresses.
    address public resolverContractAddress;

    /* ========== CONSTRUCTOR ========== */
    constructor(address _stakingToken) {
        stakingToken = ERC20Burnable(_stakingToken);
        epoch = Epoch({
            epochLength: 80,
            number: 1,
            endBlock: block.number + 1,
            retries: 0,
            timeout: 80
        });
        // 0.05 tokens per token staked meaning a 5% per epoch inflation rate
        tokenRewardPerTokenPerEpoch = (10 ** stakingToken.decimals()) / 20;
        // 1 token minimum stake
        minimumStake = 1 * (10 ** stakingToken.decimals());
        kickPenaltyPercent = 0;
    }

    /* ========== VIEWS ========== */
    function isActiveValidator(address account) external view returns (bool) {
        return validatorsInCurrentEpoch.contains(account);
    }

    function isActiveValidatorByNodeAddress(
        address account
    ) external view returns (bool) {
        return
            validatorsInCurrentEpoch.contains(
                nodeAddressToStakerAddress[account]
            );
    }

    function rewardOf(address account) external view returns (uint256) {
        return validators[account].reward;
    }

    function balanceOf(address account) external view returns (uint256) {
        return validators[account].balance;
    }

    function getVotingStatusToKickValidator(
        uint256 epochNumber,
        address validatorStakerAddress,
        address voterStakerAddress
    ) external view returns (uint256, bool) {
        VoteToKickValidatorInNextEpoch
            storage votingStatus = votesToKickValidatorsInNextEpoch[
                epochNumber
            ][validatorStakerAddress];
        return (votingStatus.votes, votingStatus.voted[voterStakerAddress]);
    }

    function getValidatorsInCurrentEpoch()
        public
        view
        returns (address[] memory)
    {
        address[] memory values = new address[](
            validatorsInCurrentEpoch.length()
        );
        uint256 validatorLength = validatorsInCurrentEpoch.length();
        for (uint256 i = 0; i < validatorLength; i++) {
            values[i] = validatorsInCurrentEpoch.at(i);
        }
        return values;
    }

    function getValidatorsInCurrentEpochLength()
        external
        view
        returns (uint256)
    {
        return validatorsInCurrentEpoch.length();
    }

    function getValidatorsInNextEpoch() public view returns (address[] memory) {
        address[] memory values = new address[](validatorsInNextEpoch.length());
        uint256 validatorLength = validatorsInNextEpoch.length();
        for (uint256 i = 0; i < validatorLength; i++) {
            values[i] = validatorsInNextEpoch.at(i);
        }
        return values;
    }

    function getValidatorsStructs(
        address[] memory addresses
    ) public view returns (Validator[] memory) {
        Validator[] memory values = new Validator[](addresses.length);
        for (uint256 i = 0; i < addresses.length; i++) {
            values[i] = validators[addresses[i]];
        }
        return values;
    }

    function getValidatorsStructsInCurrentEpoch()
        external
        view
        returns (Validator[] memory)
    {
        address[] memory addresses = getValidatorsInCurrentEpoch();
        return getValidatorsStructs(addresses);
    }

    function getValidatorsStructsInNextEpoch()
        external
        view
        returns (Validator[] memory)
    {
        address[] memory addresses = getValidatorsInNextEpoch();
        return getValidatorsStructs(addresses);
    }

    function isReadyForNextEpoch() public view returns (bool) {
        uint256 total = 0;
        uint256 validatorLength = validatorsInNextEpoch.length();
        for (uint256 i = 0; i < validatorLength; i++) {
            if (readyForNextEpoch[validatorsInNextEpoch.at(i)]) {
                total++;
            }
        }
        if ((total >= validatorCountForConsensus())) {
            // 2/3 of validators must be ready
            return true;
        }
        return false;
    }

    function shouldKickValidator(
        address stakerAddress
    ) public view returns (bool) {
        VoteToKickValidatorInNextEpoch
            storage vk = votesToKickValidatorsInNextEpoch[epoch.number][
                stakerAddress
            ];
        if (vk.votes >= validatorCountForConsensus()) {
            // 2/3 of validators must vote
            return true;
        }
        return false;
    }

    // these could be checked with uint return value with the state getter, but included defensively in case more states are added.
    function validatorsInNextEpochAreLocked() public view returns (bool) {
        return state == States.NextValidatorSetLocked;
    }

    function validatorStateIsActive() public view returns (bool) {
        return state == States.Active;
    }

    function validatorStateIsUnlocked() public view returns (bool) {
        return state == States.Unlocked;
    }

    // currently set to 2/3.  this could be changed to be configurable.
    function validatorCountForConsensus() public view returns (uint256) {
        if (validatorsInCurrentEpoch.length() <= 2) {
            return 1;
        }
        return (validatorsInCurrentEpoch.length() * 2) / 3;
    }

    /* ========== MUTATIVE FUNCTIONS ========== */

    /// Lock in the validators for the next epoch
    function lockValidatorsForNextEpoch() public {
        require(
            block.number >= epoch.endBlock,
            "Enough blocks have not elapsed since the last epoch"
        );
        require(
            state == States.Active || state == States.Unlocked,
            "Must be in active or unlocked state"
        );

        state = States.NextValidatorSetLocked;
        emit StateChanged(state);
    }

    /// After proactive secret sharing is complete, the nodes may signal that they are ready for the next epoch.  Note that this function is called by the node itself, and so msg.sender is the nodeAddress and not the stakerAddress.
    function signalReadyForNextEpoch() public {
        address stakerAddress = nodeAddressToStakerAddress[msg.sender];
        require(
            state == States.NextValidatorSetLocked ||
                state == States.ReadyForNextEpoch,
            "Must be in state NextValidatorSetLocked or ReadyForNextEpoch"
        );
        // at the first epoch, validatorsInCurrentEpoch is empty
        if (epoch.number != 1) {
            require(
                validatorsInNextEpoch.contains(stakerAddress),
                "Validator is not in the next epoch"
            );
        }
        readyForNextEpoch[stakerAddress] = true;
        emit ReadyForNextEpoch(stakerAddress);

        if (isReadyForNextEpoch()) {
            state = States.ReadyForNextEpoch;
            emit StateChanged(state);
        }
    }

    /// If the nodes fail to advance (e.g. because dkg failed), anyone can call to unlock and allow retry
    function unlockValidatorsForNextEpoch() public {
        // the deadline to advance is thus epoch.endBlock + epoch.timeout
        require(
            block.number >= epoch.endBlock + epoch.timeout,
            "Enough blocks have not elapsed since the last epoch"
        );
        require(
            state == States.NextValidatorSetLocked,
            "Must be in NextValidatorSetLocked"
        );

        uint256 validatorLength = validatorsInNextEpoch.length();
        for (uint256 i = 0; i < validatorLength; i++) {
            readyForNextEpoch[validatorsInNextEpoch.at(i)] = false;
        }

        epoch.retries++;

        state = States.Unlocked;
        emit StateChanged(state);
    }

    /// Advance to the next Epoch.  Rewards validators, adds the joiners, and removes the leavers
    function advanceEpoch() public {
        require(
            block.number >= epoch.endBlock,
            "Enough blocks have not elapsed since the last epoch"
        );
        require(
            state == States.ReadyForNextEpoch,
            "Must be in ready for next epoch state"
        );
        require(
            isReadyForNextEpoch() == true,
            "Not enough validators are ready for the next epoch"
        );

        // reward the validators
        uint256 validatorLength = validatorsInCurrentEpoch.length();
        for (uint256 i = 0; i < validatorLength; i++) {
            address validatorAddress = validatorsInCurrentEpoch.at(i);
            validators[validatorAddress].reward +=
                (tokenRewardPerTokenPerEpoch *
                    validators[validatorAddress].balance) /
                10 ** stakingToken.decimals();
        }

        // set the validators to the new validator set
        // ideally we could just do this:
        // validatorsInCurrentEpoch = validatorsInNextEpoch;
        // but solidity doesn't allow that, so we have to do it manually

        // clear out validators in current epoch
        while (validatorsInCurrentEpoch.length() > 0) {
            validatorsInCurrentEpoch.remove(validatorsInCurrentEpoch.at(0));
        }

        // copy validators from next epoch to current epoch
        validatorLength = validatorsInNextEpoch.length();
        for (uint256 i = 0; i < validatorLength; i++) {
            validatorsInCurrentEpoch.add(validatorsInNextEpoch.at(i));

            // clear out readyForNextEpoch
            readyForNextEpoch[validatorsInNextEpoch.at(i)] = false;
        }

        epoch.number++;
        epoch.endBlock = block.number + epoch.epochLength; // not epoch.endBlock +

        state = States.Active;
        emit StateChanged(state);
    }

    /// Stake and request to join the validator set
    /// @param amount The amount of tokens to stake
    /// @param ip The IP address of the node
    /// @param port The port of the node
    function stakeAndJoin(
        uint256 amount,
        uint32 ip,
        uint128 ipv6,
        uint32 port,
        address nodeAddress,
        uint256 senderPubKey,
        uint256 receiverPubKey
    ) public whenNotPaused {
        stake(amount);
        requestToJoin(
            ip,
            ipv6,
            port,
            nodeAddress,
            senderPubKey,
            receiverPubKey
        );
    }

    /// Stake tokens for a validator
    function stake(uint256 amount) public nonReentrant {
        require(amount > 0, "Cannot stake 0");

        stakingToken.transferFrom(msg.sender, address(this), amount);
        validators[msg.sender].balance += amount;

        totalStaked += amount;

        emit Staked(msg.sender, amount);
    }

    function requestToJoin(
        uint32 ip,
        uint128 ipv6,
        uint32 port,
        address nodeAddress,
        uint256 senderPubKey,
        uint256 receiverPubKey
    ) public nonReentrant {
        uint256 amountStaked = validators[msg.sender].balance;
        require(
            amountStaked >= minimumStake,
            "Stake must be greater than or equal to minimumStake"
        );
        require(
            state == States.Active ||
                state == States.Unlocked ||
                state == States.Paused,
            "Must be in Active or Unlocked state to request to join"
        );

        // make sure they haven't been kicked
        require(
            validatorsKickedFromNextEpoch.contains(msg.sender) == false,
            "You cannot rejoin if you have been kicked until the next epoch"
        );

        validators[msg.sender].ip = ip;
        validators[msg.sender].ipv6 = ipv6;
        validators[msg.sender].port = port;
        validators[msg.sender].nodeAddress = nodeAddress;
        validators[msg.sender].senderPubKey = senderPubKey;
        validators[msg.sender].receiverPubKey = receiverPubKey;
        nodeAddressToStakerAddress[nodeAddress] = msg.sender;

        validatorsInNextEpoch.add(msg.sender);

        emit RequestToJoin(msg.sender);
    }

    /// Withdraw staked tokens.  This can only be done by users who are not active in the validator set.
    /// @param amount The amount of tokens to withdraw
    function withdraw(uint256 amount) public nonReentrant {
        require(amount > 0, "Cannot withdraw 0");

        require(
            validatorsInCurrentEpoch.contains(msg.sender) == false,
            "Active validators cannot leave.  Please use the leave() function and wait for the next epoch to leave"
        );

        require(
            validators[msg.sender].balance >= amount,
            "Not enough tokens to withdraw"
        );

        totalStaked = totalStaked - amount;
        validators[msg.sender].balance =
            validators[msg.sender].balance -
            amount;
        stakingToken.transfer(msg.sender, amount);
        emit Withdrawn(msg.sender, amount);
    }

    /// Request to leave in the next Epoch
    function requestToLeave() public nonReentrant {
        require(
            state == States.Active ||
                state == States.Unlocked ||
                state == States.Paused,
            "Must be in Active or Unlocked state to request to leave"
        );
        if (validatorsInNextEpoch.contains(msg.sender)) {
            // remove them
            validatorsInNextEpoch.remove(msg.sender);
        }
        emit RequestToLeave(msg.sender);
    }

    /// Transfer any outstanding reward tokens
    function getReward() public nonReentrant {
        uint256 reward = validators[msg.sender].reward;
        if (reward > 0) {
            validators[msg.sender].reward = 0;
            stakingToken.transfer(msg.sender, reward);
            emit RewardPaid(msg.sender, reward);
        }
    }

    /// Exit staking and get any outstanding rewards
    function exit() public {
        withdraw(validators[msg.sender].balance);
        getReward();
    }

    /// If more than the threshold of validators vote to kick someone, kick them.
    /// It's expected that this will be called by the node directly, so msg.sender will be the nodeAddress
    function kickValidatorInNextEpoch(
        address validatorStakerAddress,
        uint256 reason,
        bytes calldata data
    ) public nonReentrant {
        address stakerAddressOfSender = nodeAddressToStakerAddress[msg.sender];
        require(
            stakerAddressOfSender != address(0),
            "Could not map your nodeAddress to your stakerAddress"
        );
        require(
            validatorsInNextEpoch.contains(stakerAddressOfSender),
            "You must be a validator in the next epoch to kick someone from the next epoch"
        );
        require(
            votesToKickValidatorsInNextEpoch[epoch.number][
                validatorStakerAddress
            ].voted[stakerAddressOfSender] == false,
            "You can only vote to kick someone once per epoch"
        );

        // Vote to kick
        votesToKickValidatorsInNextEpoch[epoch.number][validatorStakerAddress]
            .votes++;
        votesToKickValidatorsInNextEpoch[epoch.number][validatorStakerAddress]
            .voted[stakerAddressOfSender] = true;

        if (
            validatorsInNextEpoch.contains(validatorStakerAddress) &&
            shouldKickValidator(validatorStakerAddress)
        ) {
            // remove from next validator set
            validatorsInNextEpoch.remove(validatorStakerAddress);
            // block them from rejoining the next epoch
            validatorsKickedFromNextEpoch.add(validatorStakerAddress);
            // slash the stake
            uint256 amountToBurn = (validators[validatorStakerAddress].balance *
                kickPenaltyPercent) / 100;
            validators[validatorStakerAddress].balance -= amountToBurn;
            totalStaked -= amountToBurn;
            stakingToken.burn(amountToBurn);
            // shame them with an event
            emit ValidatorKickedFromNextEpoch(
                validatorStakerAddress,
                amountToBurn
            );
        }

        emit VotedToKickValidatorInNextEpoch(
            stakerAddressOfSender,
            validatorStakerAddress,
            reason,
            data
        );
    }

    /// Set the IP and port of your node
    /// @param ip The ip address of your node
    /// @param port The port of your node
    function setIpPortNodeAddressAndCommunicationPubKeys(
        uint32 ip,
        uint128 ipv6,
        uint32 port,
        address nodeAddress,
        uint256 senderPubKey,
        uint256 receiverPubKey
    ) public {
        validators[msg.sender].ip = ip;
        validators[msg.sender].ipv6 = ipv6;
        validators[msg.sender].port = port;
        validators[msg.sender].nodeAddress = nodeAddress;
        validators[msg.sender].senderPubKey = senderPubKey;
        validators[msg.sender].receiverPubKey = receiverPubKey;
    }

    function setEpochLength(uint256 newEpochLength) public onlyOwner {
        epoch.epochLength = newEpochLength;
        emit EpochLengthSet(newEpochLength);
    }

    function setEpochTimeout(uint256 newEpochTimeout) public onlyOwner {
        epoch.timeout = newEpochTimeout;
        emit EpochTimeoutSet(newEpochTimeout);
    }

    function setStakingToken(address newStakingTokenAddress) public onlyOwner {
        stakingToken = ERC20Burnable(newStakingTokenAddress);
        emit StakingTokenSet(newStakingTokenAddress);
    }

    function setTokenRewardPerTokenPerEpoch(
        uint256 newTokenRewardPerTokenPerEpoch
    ) public onlyOwner {
        tokenRewardPerTokenPerEpoch = newTokenRewardPerTokenPerEpoch;
        emit TokenRewardPerTokenPerEpochSet(newTokenRewardPerTokenPerEpoch);
    }

    function setMinimumStake(uint256 newMinimumStake) public onlyOwner {
        minimumStake = newMinimumStake;
        emit MinimumStakeSet(newMinimumStake);
    }

    function setKickPenaltyPercent(
        uint256 newKickPenaltyPercent
    ) public onlyOwner {
        kickPenaltyPercent = newKickPenaltyPercent;
        emit KickPenaltyPercentSet(newKickPenaltyPercent);
    }

    function setResolverContractAddress(
        address newResolverContractAddress
    ) public onlyOwner {
        resolverContractAddress = newResolverContractAddress;

        emit ResolverContractAddressSet(newResolverContractAddress);
    }

    function setEpochState(States newState) public onlyOwner {
        state = newState;
        emit StateChanged(newState);
    }

    function pauseEpoch() public onlyOwner {
        state = States.Paused;
        emit StateChanged(States.Paused);
    }

    function adminKickValidatorInNextEpoch(
        address validatorStakerAddress
    ) public nonReentrant onlyOwner {
        // remove from next validator set
        validatorsInNextEpoch.remove(validatorStakerAddress);
        // block them from rejoining the next epoch
        validatorsKickedFromNextEpoch.add(validatorStakerAddress);
        emit ValidatorKickedFromNextEpoch(validatorStakerAddress, 0);
    }

    function adminSlashValidator(
        address validatorStakerAddress,
        uint256 amountToBurn
    ) public nonReentrant onlyOwner {
        validators[validatorStakerAddress].balance -= amountToBurn;
        totalStaked -= amountToBurn;
        stakingToken.burn(amountToBurn);
        emit ValidatorKickedFromNextEpoch(validatorStakerAddress, amountToBurn);
    }

    /* ========== EVENTS ========== */

    event Staked(address indexed staker, uint256 amount);
    event Withdrawn(address indexed staker, uint256 amount);
    event RewardPaid(address indexed staker, uint256 reward);
    event RewardsDurationUpdated(uint256 newDuration);
    event RequestToJoin(address indexed staker);
    event RequestToLeave(address indexed staker);
    event Recovered(address token, uint256 amount);
    event ReadyForNextEpoch(address indexed staker);
    event StateChanged(States newState);
    event VotedToKickValidatorInNextEpoch(
        address indexed reporter,
        address indexed validatorStakerAddress,
        uint256 indexed reason,
        bytes data
    );
    event ValidatorKickedFromNextEpoch(
        address indexed staker,
        uint256 amountBurned
    );

    // onlyOwner events
    event EpochLengthSet(uint256 newEpochLength);
    event EpochTimeoutSet(uint256 newEpochTimeout);
    event StakingTokenSet(address newStakingTokenAddress);
    event TokenRewardPerTokenPerEpochSet(
        uint256 newTokenRewardPerTokenPerEpoch
    );
    event MinimumStakeSet(uint256 newMinimumStake);
    event KickPenaltyPercentSet(uint256 newKickPenaltyPercent);
    event ResolverContractAddressSet(address newResolverContractAddress);
}
        

@openzeppelin/contracts/access/Ownable.sol

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

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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);
    }
}
          

@openzeppelin/contracts/security/Pausable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}
          

@openzeppelin/contracts/security/ReentrancyGuard.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}
          

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

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

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * 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, allowance(owner, spender) + addedValue);
        return true;
    }

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../utils/Context.sol";

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

@openzeppelin/contracts/utils/Context.sol

// SPDX-License-Identifier: MIT
// 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;
    }
}
          

@openzeppelin/contracts/utils/structs/EnumerableSet.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/structs/EnumerableSet.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 *  Trying to delete such a structure from storage will likely result in data corruption, rendering the structure unusable.
 *  See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 *  In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an array of EnumerableSet.
 * ====
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}
          

hardhat/console.sol

// SPDX-License-Identifier: MIT
pragma solidity >= 0.4.22 <0.9.0;

library console {
	address constant CONSOLE_ADDRESS = address(0x000000000000000000636F6e736F6c652e6c6f67);

	function _sendLogPayload(bytes memory payload) private view {
		uint256 payloadLength = payload.length;
		address consoleAddress = CONSOLE_ADDRESS;
		assembly {
			let payloadStart := add(payload, 32)
			let r := staticcall(gas(), consoleAddress, payloadStart, payloadLength, 0, 0)
		}
	}

	function log() internal view {
		_sendLogPayload(abi.encodeWithSignature("log()"));
	}

	function logInt(int256 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(int256)", p0));
	}

	function logUint(uint256 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256)", p0));
	}

	function logString(string memory p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string)", p0));
	}

	function logBool(bool p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool)", p0));
	}

	function logAddress(address p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address)", p0));
	}

	function logBytes(bytes memory p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes)", p0));
	}

	function logBytes1(bytes1 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes1)", p0));
	}

	function logBytes2(bytes2 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes2)", p0));
	}

	function logBytes3(bytes3 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes3)", p0));
	}

	function logBytes4(bytes4 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes4)", p0));
	}

	function logBytes5(bytes5 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes5)", p0));
	}

	function logBytes6(bytes6 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes6)", p0));
	}

	function logBytes7(bytes7 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes7)", p0));
	}

	function logBytes8(bytes8 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes8)", p0));
	}

	function logBytes9(bytes9 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes9)", p0));
	}

	function logBytes10(bytes10 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes10)", p0));
	}

	function logBytes11(bytes11 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes11)", p0));
	}

	function logBytes12(bytes12 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes12)", p0));
	}

	function logBytes13(bytes13 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes13)", p0));
	}

	function logBytes14(bytes14 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes14)", p0));
	}

	function logBytes15(bytes15 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes15)", p0));
	}

	function logBytes16(bytes16 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes16)", p0));
	}

	function logBytes17(bytes17 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes17)", p0));
	}

	function logBytes18(bytes18 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes18)", p0));
	}

	function logBytes19(bytes19 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes19)", p0));
	}

	function logBytes20(bytes20 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes20)", p0));
	}

	function logBytes21(bytes21 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes21)", p0));
	}

	function logBytes22(bytes22 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes22)", p0));
	}

	function logBytes23(bytes23 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes23)", p0));
	}

	function logBytes24(bytes24 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes24)", p0));
	}

	function logBytes25(bytes25 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes25)", p0));
	}

	function logBytes26(bytes26 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes26)", p0));
	}

	function logBytes27(bytes27 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes27)", p0));
	}

	function logBytes28(bytes28 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes28)", p0));
	}

	function logBytes29(bytes29 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes29)", p0));
	}

	function logBytes30(bytes30 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes30)", p0));
	}

	function logBytes31(bytes31 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes31)", p0));
	}

	function logBytes32(bytes32 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes32)", p0));
	}

	function log(uint256 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256)", p0));
	}

	function log(string memory p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string)", p0));
	}

	function log(bool p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool)", p0));
	}

	function log(address p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address)", p0));
	}

	function log(uint256 p0, uint256 p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256)", p0, p1));
	}

	function log(uint256 p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string)", p0, p1));
	}

	function log(uint256 p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool)", p0, p1));
	}

	function log(uint256 p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address)", p0, p1));
	}

	function log(string memory p0, uint256 p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256)", p0, p1));
	}

	function log(string memory p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string)", p0, p1));
	}

	function log(string memory p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool)", p0, p1));
	}

	function log(string memory p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address)", p0, p1));
	}

	function log(bool p0, uint256 p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256)", p0, p1));
	}

	function log(bool p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string)", p0, p1));
	}

	function log(bool p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool)", p0, p1));
	}

	function log(bool p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address)", p0, p1));
	}

	function log(address p0, uint256 p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256)", p0, p1));
	}

	function log(address p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string)", p0, p1));
	}

	function log(address p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool)", p0, p1));
	}

	function log(address p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address)", p0, p1));
	}

	function log(uint256 p0, uint256 p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256)", p0, p1, p2));
	}

	function log(uint256 p0, uint256 p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string)", p0, p1, p2));
	}

	function log(uint256 p0, uint256 p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool)", p0, p1, p2));
	}

	function log(uint256 p0, uint256 p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address)", p0, p1, p2));
	}

	function log(uint256 p0, string memory p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256)", p0, p1, p2));
	}

	function log(uint256 p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string)", p0, p1, p2));
	}

	function log(uint256 p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool)", p0, p1, p2));
	}

	function log(uint256 p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address)", p0, p1, p2));
	}

	function log(uint256 p0, bool p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256)", p0, p1, p2));
	}

	function log(uint256 p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string)", p0, p1, p2));
	}

	function log(uint256 p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool)", p0, p1, p2));
	}

	function log(uint256 p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address)", p0, p1, p2));
	}

	function log(uint256 p0, address p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256)", p0, p1, p2));
	}

	function log(uint256 p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string)", p0, p1, p2));
	}

	function log(uint256 p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool)", p0, p1, p2));
	}

	function log(uint256 p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address)", p0, p1, p2));
	}

	function log(string memory p0, uint256 p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256)", p0, p1, p2));
	}

	function log(string memory p0, uint256 p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string)", p0, p1, p2));
	}

	function log(string memory p0, uint256 p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool)", p0, p1, p2));
	}

	function log(string memory p0, uint256 p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address)", p0, p1, p2));
	}

	function log(string memory p0, address p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256)", p0, p1, p2));
	}

	function log(string memory p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string)", p0, p1, p2));
	}

	function log(string memory p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool)", p0, p1, p2));
	}

	function log(string memory p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address)", p0, p1, p2));
	}

	function log(bool p0, uint256 p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256)", p0, p1, p2));
	}

	function log(bool p0, uint256 p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string)", p0, p1, p2));
	}

	function log(bool p0, uint256 p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool)", p0, p1, p2));
	}

	function log(bool p0, uint256 p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address)", p0, p1, p2));
	}

	function log(bool p0, bool p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256)", p0, p1, p2));
	}

	function log(bool p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string)", p0, p1, p2));
	}

	function log(bool p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool)", p0, p1, p2));
	}

	function log(bool p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address)", p0, p1, p2));
	}

	function log(bool p0, address p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256)", p0, p1, p2));
	}

	function log(bool p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string)", p0, p1, p2));
	}

	function log(bool p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool)", p0, p1, p2));
	}

	function log(bool p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address)", p0, p1, p2));
	}

	function log(address p0, uint256 p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256)", p0, p1, p2));
	}

	function log(address p0, uint256 p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string)", p0, p1, p2));
	}

	function log(address p0, uint256 p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool)", p0, p1, p2));
	}

	function log(address p0, uint256 p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address)", p0, p1, p2));
	}

	function log(address p0, string memory p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256)", p0, p1, p2));
	}

	function log(address p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string)", p0, p1, p2));
	}

	function log(address p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool)", p0, p1, p2));
	}

	function log(address p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address)", p0, p1, p2));
	}

	function log(address p0, bool p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256)", p0, p1, p2));
	}

	function log(address p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string)", p0, p1, p2));
	}

	function log(address p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool)", p0, p1, p2));
	}

	function log(address p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address)", p0, p1, p2));
	}

	function log(address p0, address p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256)", p0, p1, p2));
	}

	function log(address p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string)", p0, p1, p2));
	}

	function log(address p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool)", p0, p1, p2));
	}

	function log(address p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address)", p0, p1, p2));
	}

	function log(uint256 p0, uint256 p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,address)", p0, p1, p2, p3));
	}

}
          

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_stakingToken","internalType":"address"}]},{"type":"event","name":"EpochLengthSet","inputs":[{"type":"uint256","name":"newEpochLength","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"EpochTimeoutSet","inputs":[{"type":"uint256","name":"newEpochTimeout","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"KickPenaltyPercentSet","inputs":[{"type":"uint256","name":"newKickPenaltyPercent","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"MinimumStakeSet","inputs":[{"type":"uint256","name":"newMinimumStake","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":"Paused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"ReadyForNextEpoch","inputs":[{"type":"address","name":"staker","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Recovered","inputs":[{"type":"address","name":"token","internalType":"address","indexed":false},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"RequestToJoin","inputs":[{"type":"address","name":"staker","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"RequestToLeave","inputs":[{"type":"address","name":"staker","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"ResolverContractAddressSet","inputs":[{"type":"address","name":"newResolverContractAddress","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"RewardPaid","inputs":[{"type":"address","name":"staker","internalType":"address","indexed":true},{"type":"uint256","name":"reward","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"RewardsDurationUpdated","inputs":[{"type":"uint256","name":"newDuration","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Staked","inputs":[{"type":"address","name":"staker","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"StakingTokenSet","inputs":[{"type":"address","name":"newStakingTokenAddress","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"StateChanged","inputs":[{"type":"uint8","name":"newState","internalType":"enum Staking.States","indexed":false}],"anonymous":false},{"type":"event","name":"TokenRewardPerTokenPerEpochSet","inputs":[{"type":"uint256","name":"newTokenRewardPerTokenPerEpoch","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Unpaused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"ValidatorKickedFromNextEpoch","inputs":[{"type":"address","name":"staker","internalType":"address","indexed":true},{"type":"uint256","name":"amountBurned","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"VotedToKickValidatorInNextEpoch","inputs":[{"type":"address","name":"reporter","internalType":"address","indexed":true},{"type":"address","name":"validatorStakerAddress","internalType":"address","indexed":true},{"type":"uint256","name":"reason","internalType":"uint256","indexed":true},{"type":"bytes","name":"data","internalType":"bytes","indexed":false}],"anonymous":false},{"type":"event","name":"Withdrawn","inputs":[{"type":"address","name":"staker","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"adminKickValidatorInNextEpoch","inputs":[{"type":"address","name":"validatorStakerAddress","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"adminSlashValidator","inputs":[{"type":"address","name":"validatorStakerAddress","internalType":"address"},{"type":"uint256","name":"amountToBurn","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"advanceEpoch","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"epochLength","internalType":"uint256"},{"type":"uint256","name":"number","internalType":"uint256"},{"type":"uint256","name":"endBlock","internalType":"uint256"},{"type":"uint256","name":"retries","internalType":"uint256"},{"type":"uint256","name":"timeout","internalType":"uint256"}],"name":"epoch","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"exit","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"getReward","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address[]","name":"","internalType":"address[]"}],"name":"getValidatorsInCurrentEpoch","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getValidatorsInCurrentEpochLength","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address[]","name":"","internalType":"address[]"}],"name":"getValidatorsInNextEpoch","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"tuple[]","name":"","internalType":"struct Staking.Validator[]","components":[{"type":"uint32","name":"ip","internalType":"uint32"},{"type":"uint128","name":"ipv6","internalType":"uint128"},{"type":"uint32","name":"port","internalType":"uint32"},{"type":"address","name":"nodeAddress","internalType":"address"},{"type":"uint256","name":"balance","internalType":"uint256"},{"type":"uint256","name":"reward","internalType":"uint256"},{"type":"uint256","name":"senderPubKey","internalType":"uint256"},{"type":"uint256","name":"receiverPubKey","internalType":"uint256"}]}],"name":"getValidatorsStructs","inputs":[{"type":"address[]","name":"addresses","internalType":"address[]"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"tuple[]","name":"","internalType":"struct Staking.Validator[]","components":[{"type":"uint32","name":"ip","internalType":"uint32"},{"type":"uint128","name":"ipv6","internalType":"uint128"},{"type":"uint32","name":"port","internalType":"uint32"},{"type":"address","name":"nodeAddress","internalType":"address"},{"type":"uint256","name":"balance","internalType":"uint256"},{"type":"uint256","name":"reward","internalType":"uint256"},{"type":"uint256","name":"senderPubKey","internalType":"uint256"},{"type":"uint256","name":"receiverPubKey","internalType":"uint256"}]}],"name":"getValidatorsStructsInCurrentEpoch","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"tuple[]","name":"","internalType":"struct Staking.Validator[]","components":[{"type":"uint32","name":"ip","internalType":"uint32"},{"type":"uint128","name":"ipv6","internalType":"uint128"},{"type":"uint32","name":"port","internalType":"uint32"},{"type":"address","name":"nodeAddress","internalType":"address"},{"type":"uint256","name":"balance","internalType":"uint256"},{"type":"uint256","name":"reward","internalType":"uint256"},{"type":"uint256","name":"senderPubKey","internalType":"uint256"},{"type":"uint256","name":"receiverPubKey","internalType":"uint256"}]}],"name":"getValidatorsStructsInNextEpoch","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"},{"type":"bool","name":"","internalType":"bool"}],"name":"getVotingStatusToKickValidator","inputs":[{"type":"uint256","name":"epochNumber","internalType":"uint256"},{"type":"address","name":"validatorStakerAddress","internalType":"address"},{"type":"address","name":"voterStakerAddress","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isActiveValidator","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isActiveValidatorByNodeAddress","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isReadyForNextEpoch","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"kickPenaltyPercent","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"kickValidatorInNextEpoch","inputs":[{"type":"address","name":"validatorStakerAddress","internalType":"address"},{"type":"uint256","name":"reason","internalType":"uint256"},{"type":"bytes","name":"data","internalType":"bytes"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"lockValidatorsForNextEpoch","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"minimumStake","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"nodeAddressToStakerAddress","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"pauseEpoch","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"paused","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"readyForNextEpoch","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"requestToJoin","inputs":[{"type":"uint32","name":"ip","internalType":"uint32"},{"type":"uint128","name":"ipv6","internalType":"uint128"},{"type":"uint32","name":"port","internalType":"uint32"},{"type":"address","name":"nodeAddress","internalType":"address"},{"type":"uint256","name":"senderPubKey","internalType":"uint256"},{"type":"uint256","name":"receiverPubKey","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"requestToLeave","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"resolverContractAddress","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"rewardOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setEpochLength","inputs":[{"type":"uint256","name":"newEpochLength","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setEpochState","inputs":[{"type":"uint8","name":"newState","internalType":"enum Staking.States"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setEpochTimeout","inputs":[{"type":"uint256","name":"newEpochTimeout","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setIpPortNodeAddressAndCommunicationPubKeys","inputs":[{"type":"uint32","name":"ip","internalType":"uint32"},{"type":"uint128","name":"ipv6","internalType":"uint128"},{"type":"uint32","name":"port","internalType":"uint32"},{"type":"address","name":"nodeAddress","internalType":"address"},{"type":"uint256","name":"senderPubKey","internalType":"uint256"},{"type":"uint256","name":"receiverPubKey","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setKickPenaltyPercent","inputs":[{"type":"uint256","name":"newKickPenaltyPercent","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMinimumStake","inputs":[{"type":"uint256","name":"newMinimumStake","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setResolverContractAddress","inputs":[{"type":"address","name":"newResolverContractAddress","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setStakingToken","inputs":[{"type":"address","name":"newStakingTokenAddress","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setTokenRewardPerTokenPerEpoch","inputs":[{"type":"uint256","name":"newTokenRewardPerTokenPerEpoch","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"shouldKickValidator","inputs":[{"type":"address","name":"stakerAddress","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"signalReadyForNextEpoch","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"stake","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"stakeAndJoin","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"},{"type":"uint32","name":"ip","internalType":"uint32"},{"type":"uint128","name":"ipv6","internalType":"uint128"},{"type":"uint32","name":"port","internalType":"uint32"},{"type":"address","name":"nodeAddress","internalType":"address"},{"type":"uint256","name":"senderPubKey","internalType":"uint256"},{"type":"uint256","name":"receiverPubKey","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract ERC20Burnable"}],"name":"stakingToken","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"enum Staking.States"}],"name":"state","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenRewardPerTokenPerEpoch","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalStaked","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"unlockValidatorsForNextEpoch","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"validatorCountForConsensus","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"validatorStateIsActive","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"validatorStateIsUnlocked","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint32","name":"ip","internalType":"uint32"},{"type":"uint128","name":"ipv6","internalType":"uint128"},{"type":"uint32","name":"port","internalType":"uint32"},{"type":"address","name":"nodeAddress","internalType":"address"},{"type":"uint256","name":"balance","internalType":"uint256"},{"type":"uint256","name":"reward","internalType":"uint256"},{"type":"uint256","name":"senderPubKey","internalType":"uint256"},{"type":"uint256","name":"receiverPubKey","internalType":"uint256"}],"name":"validators","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"validatorsInNextEpochAreLocked","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"votes","internalType":"uint256"}],"name":"votesToKickValidatorsInNextEpoch","inputs":[{"type":"uint256","name":"","internalType":"uint256"},{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdraw","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]}]
            

Contract Creation Code

0x60806040526000600160156101000a81548160ff021916908360048111156200002d576200002c6200039f565b5b02179055503480156200003f57600080fd5b506040516200659338038062006593833981810160405281019062000065919062000438565b60016000819055506000600160006101000a81548160ff021916908315150217905550620000a86200009c620002d460201b60201c565b620002dc60201b60201c565b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060a001604052806050815260200160018152602001600143620001119190620004a3565b8152602001600081526020016050815250600360008201518160000155602082015181600101556040820151816002015560608201518160030155608082015181600401559050506014600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ef91906200051c565b600a620001fd9190620006a2565b62000209919062000722565b600881905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a391906200051c565b600a620002b19190620006a2565b6001620002bf91906200075a565b6009819055506000600b8190555050620007a5565b600033905090565b600060018054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816001806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200040082620003d3565b9050919050565b6200041281620003f3565b81146200041e57600080fd5b50565b600081519050620004328162000407565b92915050565b600060208284031215620004515762000450620003ce565b5b6000620004618482850162000421565b91505092915050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620004b0826200046a565b9150620004bd836200046a565b9250828201905080821115620004d857620004d762000474565b5b92915050565b600060ff82169050919050565b620004f681620004de565b81146200050257600080fd5b50565b6000815190506200051681620004eb565b92915050565b600060208284031215620005355762000534620003ce565b5b6000620005458482850162000505565b91505092915050565b60008160011c9050919050565b6000808291508390505b6001851115620005ad5780860481111562000585576200058462000474565b5b6001851615620005955780820291505b8081029050620005a5856200054e565b945062000565565b94509492505050565b600082620005c857600190506200069b565b81620005d857600090506200069b565b8160018114620005f15760028114620005fc5762000632565b60019150506200069b565b60ff84111562000611576200061062000474565b5b8360020a9150848211156200062b576200062a62000474565b5b506200069b565b5060208310610133831016604e8410600b84101617156200066c5782820a90508381111562000666576200066562000474565b5b6200069b565b6200067b84848460016200055b565b9250905081840481111562000695576200069462000474565b5b81810290505b9392505050565b6000620006af826200046a565b9150620006bc83620004de565b9250620006eb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620005b6565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200072f826200046a565b91506200073c836200046a565b9250826200074f576200074e620006f3565b5b828204905092915050565b600062000767826200046a565b915062000774836200046a565b925082820262000784816200046a565b915082820484148315176200079e576200079d62000474565b5b5092915050565b615dde80620007b56000396000f3fe608060405234801561001057600080fd5b50600436106103835760003560e01c8063857b7663116101de578063ba3bd22e1161010f578063e587b8a7116100ad578063f1887fec1161007c578063f1887fec146109a3578063f2fde38b146109c1578063f48d2a27146109dd578063fa52c7d8146109fb57610383565b8063e587b8a714610941578063e7c087201461095d578063e9fad8ee1461097b578063ec5ffac21461098557610383565b8063c19d93fb116100e9578063c19d93fb146108c9578063c35d4d09146108e7578063d4818fca14610905578063dd21d6261461092357610383565b8063ba3bd22e14610899578063bee36e9c146108b5578063c006e00b146108bf57610383565b8063a25e49a41161017c578063ac2f8afe11610156578063ac2f8afe14610849578063b139603c14610853578063b6688e001461085d578063b9ce66381461087b57610383565b8063a25e49a4146107df578063a4c569b91461080f578063a694fc3a1461082d57610383565b80638d2b9c81116101b85780638d2b9c81146107655780638da5cb5b14610783578063900cf0cf146107a1578063988ac279146107c357610383565b8063857b76631461070f578063865419e91461072d5780638b80d8331461074957610383565b80634f8f0102116102b857806370a082311161025657806372f702f31161023057806372f702f3146106875780637aa086e7146106a5578063817b1cd2146106c1578063847e0625146106df57610383565b806370a082311461061c57806370fe276a1461064c578063715018a61461067d57610383565b8063533d463e11610292578063533d463e1461059457806354eea796146105c45780635c975abb146105e057806361dee8a3146105fe57610383565b80634f8f0102146105185780635081f66f14610534578063519877eb1461056457610383565b80633528db88116103255780633f819713116102ff5780633f8197131461048057806340550a1c1461049c578063455b0de6146104cc5780634927a143146104e857610383565b80633528db88146104505780633cf80e6c1461046c5780633d18b9121461047657610383565b80631e9b12ef116103615780631e9b12ef146103e05780631fab87c4146103fc578063233e9903146104185780632e1a7d4d1461043457610383565b8063063d82391461038857806316930f4d146103a65780631d62ebd9146103b0575b600080fd5b610390610a32565b60405161039d91906140d9565b60405180910390f35b6103ae610a38565b005b6103ca60048036038101906103c59190614166565b610ba6565b6040516103d791906140d9565b60405180910390f35b6103fa60048036038101906103f59190614166565b610bf2565b005b610416600480360381019061041191906141bf565b610c75565b005b610432600480360381019061042d91906141bf565b610cc1565b005b61044e600480360381019061044991906141bf565b610d0a565b005b61046a60048036038101906104659190614270565b61101b565b005b610474611570565b005b61047e6119b9565b005b61049a60048036038101906104959190614322565b611b99565b005b6104b660048036038101906104b19190614166565b611c05565b6040516104c3919061436a565b60405180910390f35b6104e660048036038101906104e191906141bf565b611c22565b005b61050260048036038101906104fd9190614385565b611c6b565b60405161050f91906140d9565b60405180910390f35b610532600480360381019061052d9190614270565b611c96565b005b61054e60048036038101906105499190614166565b611ee8565b60405161055b91906143d4565b60405180910390f35b61057e60048036038101906105799190614166565b611f1b565b60405161058b919061436a565b60405180910390f35b6105ae60048036038101906105a99190614548565b611f3b565b6040516105bb919061471f565b60405180910390f35b6105de60048036038101906105d991906141bf565b612156565b005b6105e86121a2565b6040516105f5919061436a565b60405180910390f35b6106066121b9565b604051610613919061471f565b60405180910390f35b61063660048036038101906106319190614166565b6121d6565b60405161064391906140d9565b60405180910390f35b61066660048036038101906106619190614741565b612222565b604051610674929190614794565b60405180910390f35b6106856122da565b005b61068f6122ee565b60405161069c919061481c565b60405180910390f35b6106bf60048036038101906106ba9190614166565b612314565b005b6106c96123ed565b6040516106d691906140d9565b60405180910390f35b6106f960048036038101906106f49190614166565b6123f3565b604051610706919061436a565b60405180910390f35b610717612474565b60405161072491906148e6565b60405180910390f35b61074760048036038101906107429190614963565b612562565b005b610763600480360381019061075e91906149d7565b612b54565b005b61076d612d02565b60405161077a919061436a565b60405180910390f35b61078b612d40565b60405161079891906143d4565b60405180910390f35b6107a9612d68565b6040516107ba959493929190614a17565b60405180910390f35b6107dd60048036038101906107d89190614166565b612d8c565b005b6107f960048036038101906107f49190614166565b612e0f565b604051610806919061436a565b60405180910390f35b610817612e8b565b604051610824919061436a565b60405180910390f35b610847600480360381019061084291906141bf565b612ec8565b005b6108516130c6565b005b61085b613280565b005b6108656132ed565b60405161087291906143d4565b60405180910390f35b610883613313565b60405161089091906140d9565b60405180910390f35b6108b360048036038101906108ae9190614a6a565b613319565b005b6108bd613341565b005b6108c76135d7565b005b6108d16137cb565b6040516108de9190614b83565b60405180910390f35b6108ef6137de565b6040516108fc91906148e6565b60405180910390f35b61090d6138cc565b60405161091a91906140d9565b60405180910390f35b61092b6138dd565b60405161093891906140d9565b60405180910390f35b61095b600480360381019061095691906141bf565b613921565b005b61096561396a565b604051610972919061471f565b60405180910390f35b610983613987565b005b61098d6139dc565b60405161099a91906140d9565b60405180910390f35b6109ab6139e2565b6040516109b8919061436a565b60405180910390f35b6109db60048036038101906109d69190614166565b613aad565b005b6109e5613b30565b6040516109f2919061436a565b60405180910390f35b610a156004803603810190610a109190614166565b613b6e565b604051610a29989796959493929190614bbc565b60405180910390f35b60085481565b600360020154431015610a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7790614cbd565b60405180910390fd5b60006004811115610a9457610a93614b0c565b5b600160159054906101000a900460ff166004811115610ab657610ab5614b0c565b5b1480610af5575060036004811115610ad157610ad0614b0c565b5b600160159054906101000a900460ff166004811115610af357610af2614b0c565b5b145b610b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2b90614d4f565b60405180910390fd5b60018060156101000a81548160ff02191690836004811115610b5957610b58614b0c565b5b02179055507f551dc40198cc79684bb69e4931dba4ac16e4598792ee1c0a5000aeea366d7bb6600160159054906101000a900460ff16604051610b9c9190614b83565b60405180910390a1565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600301549050919050565b610bfa613c12565b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f9904a32444ae0eb0bae2045baf588aa248f03f4fef600c18afd1d7e751614af881604051610c6a91906143d4565b60405180910390a150565b610c7d613c12565b806003600401819055507f887fed3a9270ffbbf863d640a07413b6f58cf97afaa9d7267693e962a76bd81081604051610cb691906140d9565b60405180910390a150565b610cc9613c12565b806009819055507fe933824a81d0b6aa53640e0e8df82b08c3f5297409b86d5beb73c41253518b2981604051610cff91906140d9565b60405180910390a150565b600260005403610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690614dbb565b60405180910390fd5b600260008190555060008111610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9190614e27565b60405180910390fd5b60001515610db233600c613c9090919063ffffffff16565b151514610df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610deb90614f05565b60405180910390fd5b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201541015610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7090614f71565b60405180910390fd5b80600a54610e879190614fc0565b600a8190555080601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154610edb9190614fc0565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020181905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610f7e929190614ff4565b6020604051808303816000875af1158015610f9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc19190615049565b503373ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d58260405161100891906140d9565b60405180910390a2600160008190555050565b600260005403611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790614dbb565b60405180910390fd5b60026000819055506000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015490506009548110156110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb906150e8565b60405180910390fd5b6000600481111561110857611107614b0c565b5b600160159054906101000a900460ff16600481111561112a57611129614b0c565b5b148061116957506003600481111561114557611144614b0c565b5b600160159054906101000a900460ff16600481111561116757611166614b0c565b5b145b806111a6575060048081111561118257611181614b0c565b5b600160159054906101000a900460ff1660048111156111a4576111a3614b0c565b5b145b6111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc9061517a565b60405180910390fd5b600015156111fd336010613c9090919063ffffffff16565b15151461123f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112369061520c565b60405180910390fd5b86601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548163ffffffff021916908363ffffffff16021790555085601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160046101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555084601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160146101000a81548163ffffffff021916908363ffffffff16021790555083601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206004018190555081601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206005018190555033601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061151b33600e613cc090919063ffffffff16565b503373ffffffffffffffffffffffffffffffffffffffff167f1dc186bd4daaf3fc4b9f8c689228a0be60dd2952dc502829514ae0d6955c0f5160405160405180910390a2506001600081905550505050505050565b6003600201544310156115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af90614cbd565b60405180910390fd5b600260048111156115cc576115cb614b0c565b5b600160159054906101000a900460ff1660048111156115ee576115ed614b0c565b5b1461162e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116259061529e565b60405180910390fd5b6001151561163a6139e2565b15151461167c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167390615330565b60405180910390fd5b6000611688600c613cf0565b905060005b818110156118105760006116ab82600c613d0590919063ffffffff16565b9050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561171a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061173e9190615389565b600a61174a91906154e9565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015460085461179a9190615534565b6117a491906155a5565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160008282546117f591906155d6565b925050819055505080806118089061560a565b91505061168d565b505b600061181e600c613cf0565b11156118525761184c61183c6000600c613d0590919063ffffffff16565b600c613d1f90919063ffffffff16565b50611812565b61185c600e613cf0565b905060005b8181101561190f5761189061188082600e613d0590919063ffffffff16565b600c613cc090919063ffffffff16565b506000601460006118ab84600e613d0590919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806119079061560a565b915050611861565b50600360010160008154809291906119269061560a565b91905055506003600001544361193c91906155d6565b6003600201819055506000600160156101000a81548160ff0219169083600481111561196b5761196a614b0c565b5b02179055507f551dc40198cc79684bb69e4931dba4ac16e4598792ee1c0a5000aeea366d7bb6600160159054906101000a900460ff166040516119ae9190614b83565b60405180910390a150565b6002600054036119fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f590614dbb565b60405180910390fd5b60026000819055506000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003015490506000811115611b8e576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030181905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611afb929190614ff4565b6020604051808303816000875af1158015611b1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b3e9190615049565b503373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e048682604051611b8591906140d9565b60405180910390a25b506001600081905550565b611ba1613c12565b80600160156101000a81548160ff02191690836004811115611bc657611bc5614b0c565b5b02179055507f551dc40198cc79684bb69e4931dba4ac16e4598792ee1c0a5000aeea366d7bb681604051611bfa9190614b83565b60405180910390a150565b6000611c1b82600c613c9090919063ffffffff16565b9050919050565b611c2a613c12565b806008819055507fc33a6daf06e5c2185564f32ef90cabd653cb01a6945c9d3c18a7481d20d3a0ed81604051611c6091906140d9565b60405180910390a150565b6015602052816000526040600020602052806000526040600020600091509150508060000154905081565b85601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548163ffffffff021916908363ffffffff16021790555084601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160046101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160146101000a81548163ffffffff021916908363ffffffff16021790555082601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206004018190555080601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060050181905550505050505050565b60136020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60146020528060005260406000206000915054906101000a900460ff1681565b60606000825167ffffffffffffffff811115611f5a57611f59614405565b5b604051908082528060200260200182016040528015611f9357816020015b611f80614047565b815260200190600190039081611f785790505b50905060005b835181101561214c5760126000858381518110611fb957611fb8615652565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806101000160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160028201548152602001600382015481526020016004820154815260200160058201548152505082828151811061212e5761212d615652565b5b602002602001018190525080806121449061560a565b915050611f99565b5080915050919050565b61215e613c12565b806003600001819055507f5f15d41eab42cb3f8a5c9e8cd44043648cb85a815522c5f4ae5a32597a8447a08160405161219791906140d9565b60405180910390a150565b6000600160009054906101000a900460ff16905090565b606060006121c56137de565b90506121d081611f3b565b91505090565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201549050919050565b60008060006015600087815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905080600001548160010160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169250925050935093915050565b6122e2613c12565b6122ec6000613d4f565b565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260005403612359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235090614dbb565b60405180910390fd5b6002600081905550612369613c12565b61237d81600e613d1f90919063ffffffff16565b50612392816010613cc090919063ffffffff16565b508073ffffffffffffffffffffffffffffffffffffffff167ff020e162c28460a603e71f641a2e83634580ace02b9e28b844b2257949860e9760006040516123da91906156bc565b60405180910390a2600160008190555050565b600a5481565b60008060156000600360010154815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506124556138dd565b81600001541061246957600191505061246f565b60009150505b919050565b60606000612482600c613cf0565b67ffffffffffffffff81111561249b5761249a614405565b5b6040519080825280602002602001820160405280156124c95781602001602082028036833780820191505090505b50905060006124d8600c613cf0565b905060005b81811015612559576124f981600c613d0590919063ffffffff16565b83828151811061250c5761250b615652565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505080806125519061560a565b9150506124dd565b50819250505090565b6002600054036125a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259e90614dbb565b60405180910390fd5b60026000819055506000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267990615749565b60405180910390fd5b61269681600e613c9090919063ffffffff16565b6126d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cc90615801565b60405180910390fd5b6000151560156000600360010154815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146127be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b590615893565b60405180910390fd5b60156000600360010154815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008154809291906128279061560a565b9190505550600160156000600360010154815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506128ee85600e613c9090919063ffffffff16565b80156128ff57506128fe856123f3565b5b15612add5761291885600e613d1f90919063ffffffff16565b5061292d856010613cc090919063ffffffff16565b5060006064600b54601260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201546129829190615534565b61298c91906155a5565b905080601260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160008282546129e09190614fc0565b9250508190555080600a60008282546129f99190614fc0565b92505081905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342966c68826040518263ffffffff1660e01b8152600401612a5b91906140d9565b600060405180830381600087803b158015612a7557600080fd5b505af1158015612a89573d6000803e3d6000fd5b505050508573ffffffffffffffffffffffffffffffffffffffff167ff020e162c28460a603e71f641a2e83634580ace02b9e28b844b2257949860e9782604051612ad391906140d9565b60405180910390a2505b838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167febdee48ed32f3feff81eed274b9e084b367ac42fe1cb710dcbd43f1d537d99fa8686604051612b3d929190615900565b60405180910390a450600160008190555050505050565b600260005403612b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9090614dbb565b60405180910390fd5b6002600081905550612ba9613c12565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002016000828254612bfb9190614fc0565b9250508190555080600a6000828254612c149190614fc0565b92505081905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342966c68826040518263ffffffff1660e01b8152600401612c7691906140d9565b600060405180830381600087803b158015612c9057600080fd5b505af1158015612ca4573d6000803e3d6000fd5b505050508173ffffffffffffffffffffffffffffffffffffffff167ff020e162c28460a603e71f641a2e83634580ace02b9e28b844b2257949860e9782604051612cee91906140d9565b60405180910390a260016000819055505050565b600060016004811115612d1857612d17614b0c565b5b600160159054906101000a900460ff166004811115612d3a57612d39614b0c565b5b14905090565b600060018054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60038060000154908060010154908060020154908060030154908060040154905085565b612d94613c12565b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f2b5fe80d5061b20e017f0cde52b331309601bfcab0cb14cfcf6a4096410a607581604051612e0491906143d4565b60405180910390a150565b6000612e84601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c613c9090919063ffffffff16565b9050919050565b6000806004811115612ea057612e9f614b0c565b5b600160159054906101000a900460ff166004811115612ec257612ec1614b0c565b5b14905090565b600260005403612f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0490614dbb565b60405180910390fd5b600260008190555060008111612f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4f90615970565b60405180910390fd5b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401612fb793929190615990565b6020604051808303816000875af1158015612fd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ffa9190615049565b5080601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201600082825461304d91906155d6565b9250508190555080600a600082825461306691906155d6565b925050819055503373ffffffffffffffffffffffffffffffffffffffff167f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d826040516130b391906140d9565b60405180910390a2600160008190555050565b60026000540361310b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310290614dbb565b60405180910390fd5b60026000819055506000600481111561312757613126614b0c565b5b600160159054906101000a900460ff16600481111561314957613148614b0c565b5b148061318857506003600481111561316457613163614b0c565b5b600160159054906101000a900460ff16600481111561318657613185614b0c565b5b145b806131c557506004808111156131a1576131a0614b0c565b5b600160159054906101000a900460ff1660048111156131c3576131c2614b0c565b5b145b613204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fb90615a39565b60405180910390fd5b61321833600e613c9090919063ffffffff16565b156132335761323133600e613d1f90919063ffffffff16565b505b3373ffffffffffffffffffffffffffffffffffffffff167fff61c8020d05b8c2e31cdbb3d3f8cbcbdc57fcafa00229d9858b7cfd3b039c8a60405160405180910390a26001600081905550565b613288613c12565b6004600160156101000a81548160ff021916908360048111156132ae576132ad614b0c565b5b02179055507f551dc40198cc79684bb69e4931dba4ac16e4598792ee1c0a5000aeea366d7bb660046040516132e39190614b83565b60405180910390a1565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b613321613e12565b61332a87612ec8565b61333886868686868661101b565b50505050505050565b6000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600160048111156133b9576133b8614b0c565b5b600160159054906101000a900460ff1660048111156133db576133da614b0c565b5b148061341a5750600260048111156133f6576133f5614b0c565b5b600160159054906101000a900460ff16600481111561341857613417614b0c565b5b145b613459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161345090615acb565b60405180910390fd5b6001600360010154146134ba5761347a81600e613c9090919063ffffffff16565b6134b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134b090615b5d565b60405180910390fd5b5b6001601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f9784a0102afe6a5b031e774420da20a7d1e8207dde8e1ede9c6cefe5680ba05e60405160405180910390a261355d6139e2565b156135d4576002600160156101000a81548160ff0219169083600481111561358857613587614b0c565b5b02179055507f551dc40198cc79684bb69e4931dba4ac16e4598792ee1c0a5000aeea366d7bb6600160159054906101000a900460ff166040516135cb9190614b83565b60405180910390a15b50565b6003600401546003600201546135ed91906155d6565b43101561362f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362690614cbd565b60405180910390fd5b6001600481111561364357613642614b0c565b5b600160159054906101000a900460ff16600481111561366557613664614b0c565b5b146136a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369c90615bef565b60405180910390fd5b60006136b1600e613cf0565b905060005b8181101561373c576000601460006136d884600e613d0590919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806137349061560a565b9150506136b6565b506003800160008154809291906137529061560a565b91905055506003600160156101000a81548160ff0219169083600481111561377d5761377c614b0c565b5b02179055507f551dc40198cc79684bb69e4931dba4ac16e4598792ee1c0a5000aeea366d7bb6600160159054906101000a900460ff166040516137c09190614b83565b60405180910390a150565b600160159054906101000a900460ff1681565b606060006137ec600e613cf0565b67ffffffffffffffff81111561380557613804614405565b5b6040519080825280602002602001820160405280156138335781602001602082028036833780820191505090505b5090506000613842600e613cf0565b905060005b818110156138c35761386381600e613d0590919063ffffffff16565b83828151811061387657613875615652565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505080806138bb9061560a565b915050613847565b50819250505090565b60006138d8600c613cf0565b905090565b600060026138eb600c613cf0565b116138f9576001905061391e565b60036002613907600c613cf0565b6139119190615534565b61391b91906155a5565b90505b90565b613929613c12565b80600b819055507fc0ff1deb4b889cc8d47d930be1a37c0e7442ab9850450d2dce635435c005e6a58160405161395f91906140d9565b60405180910390a150565b60606000613976612474565b905061398181611f3b565b91505090565b6139d2601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154610d0a565b6139da6119b9565b565b60095481565b6000806000905060006139f5600e613cf0565b905060005b81811015613a895760146000613a1a83600e613d0590919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613a76578280613a729061560a565b9350505b8080613a819061560a565b9150506139fa565b50613a926138dd565b8210613aa357600192505050613aaa565b6000925050505b90565b613ab5613c12565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603613b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b1b90615c81565b60405180910390fd5b613b2d81613d4f565b50565b600060036004811115613b4657613b45614b0c565b5b600160159054906101000a900460ff166004811115613b6857613b67614b0c565b5b14905090565b60126020528060005260406000206000915090508060000160009054906101000a900463ffffffff16908060000160049054906101000a90046fffffffffffffffffffffffffffffffff16908060000160149054906101000a900463ffffffff16908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020154908060030154908060040154908060050154905088565b613c1a613e5c565b73ffffffffffffffffffffffffffffffffffffffff16613c38612d40565b73ffffffffffffffffffffffffffffffffffffffff1614613c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c8590615ced565b60405180910390fd5b565b6000613cb8836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613e64565b905092915050565b6000613ce8836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613e87565b905092915050565b6000613cfe82600001613ef7565b9050919050565b6000613d148360000183613f08565b60001c905092915050565b6000613d47836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613f33565b905092915050565b600060018054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816001806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613e1a6121a2565b15613e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e5190615d59565b60405180910390fd5b565b600033905090565b600080836001016000848152602001908152602001600020541415905092915050565b6000613e938383613e64565b613eec578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613ef1565b600090505b92915050565b600081600001805490509050919050565b6000826000018281548110613f2057613f1f615652565b5b9060005260206000200154905092915050565b6000808360010160008481526020019081526020016000205490506000811461403b576000600182613f659190614fc0565b9050600060018660000180549050613f7d9190614fc0565b9050818114613fec576000866000018281548110613f9e57613f9d615652565b5b9060005260206000200154905080876000018481548110613fc257613fc1615652565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b8560000180548061400057613fff615d79565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050614041565b60009150505b92915050565b604051806101000160405280600063ffffffff16815260200160006fffffffffffffffffffffffffffffffff168152602001600063ffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600081526020016000815260200160008152602001600081525090565b6000819050919050565b6140d3816140c0565b82525050565b60006020820190506140ee60008301846140ca565b92915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061413382614108565b9050919050565b61414381614128565b811461414e57600080fd5b50565b6000813590506141608161413a565b92915050565b60006020828403121561417c5761417b6140fe565b5b600061418a84828501614151565b91505092915050565b61419c816140c0565b81146141a757600080fd5b50565b6000813590506141b981614193565b92915050565b6000602082840312156141d5576141d46140fe565b5b60006141e3848285016141aa565b91505092915050565b600063ffffffff82169050919050565b614205816141ec565b811461421057600080fd5b50565b600081359050614222816141fc565b92915050565b60006fffffffffffffffffffffffffffffffff82169050919050565b61424d81614228565b811461425857600080fd5b50565b60008135905061426a81614244565b92915050565b60008060008060008060c0878903121561428d5761428c6140fe565b5b600061429b89828a01614213565b96505060206142ac89828a0161425b565b95505060406142bd89828a01614213565b94505060606142ce89828a01614151565b93505060806142df89828a016141aa565b92505060a06142f089828a016141aa565b9150509295509295509295565b6005811061430a57600080fd5b50565b60008135905061431c816142fd565b92915050565b600060208284031215614338576143376140fe565b5b60006143468482850161430d565b91505092915050565b60008115159050919050565b6143648161434f565b82525050565b600060208201905061437f600083018461435b565b92915050565b6000806040838503121561439c5761439b6140fe565b5b60006143aa858286016141aa565b92505060206143bb85828601614151565b9150509250929050565b6143ce81614128565b82525050565b60006020820190506143e960008301846143c5565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61443d826143f4565b810181811067ffffffffffffffff8211171561445c5761445b614405565b5b80604052505050565b600061446f6140f4565b905061447b8282614434565b919050565b600067ffffffffffffffff82111561449b5761449a614405565b5b602082029050602081019050919050565b600080fd5b60006144c46144bf84614480565b614465565b905080838252602082019050602084028301858111156144e7576144e66144ac565b5b835b8181101561451057806144fc8882614151565b8452602084019350506020810190506144e9565b5050509392505050565b600082601f83011261452f5761452e6143ef565b5b813561453f8482602086016144b1565b91505092915050565b60006020828403121561455e5761455d6140fe565b5b600082013567ffffffffffffffff81111561457c5761457b614103565b5b6145888482850161451a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6145c6816141ec565b82525050565b6145d581614228565b82525050565b6145e481614128565b82525050565b6145f3816140c0565b82525050565b6101008201600082015161461060008501826145bd565b50602082015161462360208501826145cc565b50604082015161463660408501826145bd565b50606082015161464960608501826145db565b50608082015161465c60808501826145ea565b5060a082015161466f60a08501826145ea565b5060c082015161468260c08501826145ea565b5060e082015161469560e08501826145ea565b50505050565b60006146a783836145f9565b6101008301905092915050565b6000602082019050919050565b60006146cc82614591565b6146d6818561459c565b93506146e1836145ad565b8060005b838110156147125781516146f9888261469b565b9750614704836146b4565b9250506001810190506146e5565b5085935050505092915050565b6000602082019050818103600083015261473981846146c1565b905092915050565b60008060006060848603121561475a576147596140fe565b5b6000614768868287016141aa565b935050602061477986828701614151565b925050604061478a86828701614151565b9150509250925092565b60006040820190506147a960008301856140ca565b6147b6602083018461435b565b9392505050565b6000819050919050565b60006147e26147dd6147d884614108565b6147bd565b614108565b9050919050565b60006147f4826147c7565b9050919050565b6000614806826147e9565b9050919050565b614816816147fb565b82525050565b6000602082019050614831600083018461480d565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600061486f83836145db565b60208301905092915050565b6000602082019050919050565b600061489382614837565b61489d8185614842565b93506148a883614853565b8060005b838110156148d95781516148c08882614863565b97506148cb8361487b565b9250506001810190506148ac565b5085935050505092915050565b600060208201905081810360008301526149008184614888565b905092915050565b600080fd5b60008083601f840112614923576149226143ef565b5b8235905067ffffffffffffffff8111156149405761493f614908565b5b60208301915083600182028301111561495c5761495b6144ac565b5b9250929050565b6000806000806060858703121561497d5761497c6140fe565b5b600061498b87828801614151565b945050602061499c878288016141aa565b935050604085013567ffffffffffffffff8111156149bd576149bc614103565b5b6149c98782880161490d565b925092505092959194509250565b600080604083850312156149ee576149ed6140fe565b5b60006149fc85828601614151565b9250506020614a0d858286016141aa565b9150509250929050565b600060a082019050614a2c60008301886140ca565b614a3960208301876140ca565b614a4660408301866140ca565b614a5360608301856140ca565b614a6060808301846140ca565b9695505050505050565b600080600080600080600060e0888a031215614a8957614a886140fe565b5b6000614a978a828b016141aa565b9750506020614aa88a828b01614213565b9650506040614ab98a828b0161425b565b9550506060614aca8a828b01614213565b9450506080614adb8a828b01614151565b93505060a0614aec8a828b016141aa565b92505060c0614afd8a828b016141aa565b91505092959891949750929550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60058110614b4c57614b4b614b0c565b5b50565b6000819050614b5d82614b3b565b919050565b6000614b6d82614b4f565b9050919050565b614b7d81614b62565b82525050565b6000602082019050614b986000830184614b74565b92915050565b614ba7816141ec565b82525050565b614bb681614228565b82525050565b600061010082019050614bd2600083018b614b9e565b614bdf602083018a614bad565b614bec6040830189614b9e565b614bf960608301886143c5565b614c0660808301876140ca565b614c1360a08301866140ca565b614c2060c08301856140ca565b614c2d60e08301846140ca565b9998505050505050505050565b600082825260208201905092915050565b7f456e6f75676820626c6f636b732068617665206e6f7420656c6170736564207360008201527f696e636520746865206c6173742065706f636800000000000000000000000000602082015250565b6000614ca7603383614c3a565b9150614cb282614c4b565b604082019050919050565b60006020820190508181036000830152614cd681614c9a565b9050919050565b7f4d75737420626520696e20616374697665206f7220756e6c6f636b656420737460008201527f6174650000000000000000000000000000000000000000000000000000000000602082015250565b6000614d39602383614c3a565b9150614d4482614cdd565b604082019050919050565b60006020820190508181036000830152614d6881614d2c565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614da5601f83614c3a565b9150614db082614d6f565b602082019050919050565b60006020820190508181036000830152614dd481614d98565b9050919050565b7f43616e6e6f742077697468647261772030000000000000000000000000000000600082015250565b6000614e11601183614c3a565b9150614e1c82614ddb565b602082019050919050565b60006020820190508181036000830152614e4081614e04565b9050919050565b7f4163746976652076616c696461746f72732063616e6e6f74206c656176652e2060008201527f20506c656173652075736520746865206c6561766528292066756e6374696f6e60208201527f20616e64207761697420666f7220746865206e6578742065706f636820746f2060408201527f6c65617665000000000000000000000000000000000000000000000000000000606082015250565b6000614eef606583614c3a565b9150614efa82614e47565b608082019050919050565b60006020820190508181036000830152614f1e81614ee2565b9050919050565b7f4e6f7420656e6f75676820746f6b656e7320746f207769746864726177000000600082015250565b6000614f5b601d83614c3a565b9150614f6682614f25565b602082019050919050565b60006020820190508181036000830152614f8a81614f4e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614fcb826140c0565b9150614fd6836140c0565b9250828203905081811115614fee57614fed614f91565b5b92915050565b600060408201905061500960008301856143c5565b61501660208301846140ca565b9392505050565b6150268161434f565b811461503157600080fd5b50565b6000815190506150438161501d565b92915050565b60006020828403121561505f5761505e6140fe565b5b600061506d84828501615034565b91505092915050565b7f5374616b65206d7573742062652067726561746572207468616e206f7220657160008201527f75616c20746f206d696e696d756d5374616b6500000000000000000000000000602082015250565b60006150d2603383614c3a565b91506150dd82615076565b604082019050919050565b60006020820190508181036000830152615101816150c5565b9050919050565b7f4d75737420626520696e20416374697665206f7220556e6c6f636b656420737460008201527f61746520746f207265717565737420746f206a6f696e00000000000000000000602082015250565b6000615164603683614c3a565b915061516f82615108565b604082019050919050565b6000602082019050818103600083015261519381615157565b9050919050565b7f596f752063616e6e6f742072656a6f696e20696620796f75206861766520626560008201527f656e206b69636b656420756e74696c20746865206e6578742065706f63680000602082015250565b60006151f6603e83614c3a565b91506152018261519a565b604082019050919050565b60006020820190508181036000830152615225816151e9565b9050919050565b7f4d75737420626520696e20726561647920666f72206e6578742065706f63682060008201527f7374617465000000000000000000000000000000000000000000000000000000602082015250565b6000615288602583614c3a565b91506152938261522c565b604082019050919050565b600060208201905081810360008301526152b78161527b565b9050919050565b7f4e6f7420656e6f7567682076616c696461746f7273206172652072656164792060008201527f666f7220746865206e6578742065706f63680000000000000000000000000000602082015250565b600061531a603283614c3a565b9150615325826152be565b604082019050919050565b600060208201905081810360008301526153498161530d565b9050919050565b600060ff82169050919050565b61536681615350565b811461537157600080fd5b50565b6000815190506153838161535d565b92915050565b60006020828403121561539f5761539e6140fe565b5b60006153ad84828501615374565b91505092915050565b60008160011c9050919050565b6000808291508390505b600185111561540d578086048111156153e9576153e8614f91565b5b60018516156153f85780820291505b8081029050615406856153b6565b94506153cd565b94509492505050565b60008261542657600190506154e2565b8161543457600090506154e2565b816001811461544a576002811461545457615483565b60019150506154e2565b60ff84111561546657615465614f91565b5b8360020a91508482111561547d5761547c614f91565b5b506154e2565b5060208310610133831016604e8410600b84101617156154b85782820a9050838111156154b3576154b2614f91565b5b6154e2565b6154c584848460016153c3565b925090508184048111156154dc576154db614f91565b5b81810290505b9392505050565b60006154f4826140c0565b91506154ff83615350565b925061552c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484615416565b905092915050565b600061553f826140c0565b915061554a836140c0565b9250828202615558816140c0565b9150828204841483151761556f5761556e614f91565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006155b0826140c0565b91506155bb836140c0565b9250826155cb576155ca615576565b5b828204905092915050565b60006155e1826140c0565b91506155ec836140c0565b925082820190508082111561560457615603614f91565b5b92915050565b6000615615826140c0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361564757615646614f91565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b60006156a66156a161569c84615681565b6147bd565b6140c0565b9050919050565b6156b68161568b565b82525050565b60006020820190506156d160008301846156ad565b92915050565b7f436f756c64206e6f74206d617020796f7572206e6f646541646472657373207460008201527f6f20796f7572207374616b657241646472657373000000000000000000000000602082015250565b6000615733603483614c3a565b915061573e826156d7565b604082019050919050565b6000602082019050818103600083015261576281615726565b9050919050565b7f596f75206d75737420626520612076616c696461746f7220696e20746865206e60008201527f6578742065706f636820746f206b69636b20736f6d656f6e652066726f6d207460208201527f6865206e6578742065706f636800000000000000000000000000000000000000604082015250565b60006157eb604d83614c3a565b91506157f682615769565b606082019050919050565b6000602082019050818103600083015261581a816157de565b9050919050565b7f596f752063616e206f6e6c7920766f746520746f206b69636b20736f6d656f6e60008201527f65206f6e6365207065722065706f636800000000000000000000000000000000602082015250565b600061587d603083614c3a565b915061588882615821565b604082019050919050565b600060208201905081810360008301526158ac81615870565b9050919050565b600082825260208201905092915050565b82818337600083830152505050565b60006158df83856158b3565b93506158ec8385846158c4565b6158f5836143f4565b840190509392505050565b6000602082019050818103600083015261591b8184866158d3565b90509392505050565b7f43616e6e6f74207374616b652030000000000000000000000000000000000000600082015250565b600061595a600e83614c3a565b915061596582615924565b602082019050919050565b600060208201905081810360008301526159898161594d565b9050919050565b60006060820190506159a560008301866143c5565b6159b260208301856143c5565b6159bf60408301846140ca565b949350505050565b7f4d75737420626520696e20416374697665206f7220556e6c6f636b656420737460008201527f61746520746f207265717565737420746f206c65617665000000000000000000602082015250565b6000615a23603783614c3a565b9150615a2e826159c7565b604082019050919050565b60006020820190508181036000830152615a5281615a16565b9050919050565b7f4d75737420626520696e207374617465204e65787456616c696461746f72536560008201527f744c6f636b6564206f72205265616479466f724e65787445706f636800000000602082015250565b6000615ab5603c83614c3a565b9150615ac082615a59565b604082019050919050565b60006020820190508181036000830152615ae481615aa8565b9050919050565b7f56616c696461746f72206973206e6f7420696e20746865206e6578742065706f60008201527f6368000000000000000000000000000000000000000000000000000000000000602082015250565b6000615b47602283614c3a565b9150615b5282615aeb565b604082019050919050565b60006020820190508181036000830152615b7681615b3a565b9050919050565b7f4d75737420626520696e204e65787456616c696461746f725365744c6f636b6560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000615bd9602183614c3a565b9150615be482615b7d565b604082019050919050565b60006020820190508181036000830152615c0881615bcc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615c6b602683614c3a565b9150615c7682615c0f565b604082019050919050565b60006020820190508181036000830152615c9a81615c5e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615cd7602083614c3a565b9150615ce282615ca1565b602082019050919050565b60006020820190508181036000830152615d0681615cca565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000615d43601083614c3a565b9150615d4e82615d0d565b602082019050919050565b60006020820190508181036000830152615d7281615d36565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220727863cb5ac8d87a0a3ea3671645877f6b62ef235e046fe3c1b1c9a32dfd2a3e64736f6c6343000811003300000000000000000000000053695556f8a1a064edff91767f15652bbfafad04

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106103835760003560e01c8063857b7663116101de578063ba3bd22e1161010f578063e587b8a7116100ad578063f1887fec1161007c578063f1887fec146109a3578063f2fde38b146109c1578063f48d2a27146109dd578063fa52c7d8146109fb57610383565b8063e587b8a714610941578063e7c087201461095d578063e9fad8ee1461097b578063ec5ffac21461098557610383565b8063c19d93fb116100e9578063c19d93fb146108c9578063c35d4d09146108e7578063d4818fca14610905578063dd21d6261461092357610383565b8063ba3bd22e14610899578063bee36e9c146108b5578063c006e00b146108bf57610383565b8063a25e49a41161017c578063ac2f8afe11610156578063ac2f8afe14610849578063b139603c14610853578063b6688e001461085d578063b9ce66381461087b57610383565b8063a25e49a4146107df578063a4c569b91461080f578063a694fc3a1461082d57610383565b80638d2b9c81116101b85780638d2b9c81146107655780638da5cb5b14610783578063900cf0cf146107a1578063988ac279146107c357610383565b8063857b76631461070f578063865419e91461072d5780638b80d8331461074957610383565b80634f8f0102116102b857806370a082311161025657806372f702f31161023057806372f702f3146106875780637aa086e7146106a5578063817b1cd2146106c1578063847e0625146106df57610383565b806370a082311461061c57806370fe276a1461064c578063715018a61461067d57610383565b8063533d463e11610292578063533d463e1461059457806354eea796146105c45780635c975abb146105e057806361dee8a3146105fe57610383565b80634f8f0102146105185780635081f66f14610534578063519877eb1461056457610383565b80633528db88116103255780633f819713116102ff5780633f8197131461048057806340550a1c1461049c578063455b0de6146104cc5780634927a143146104e857610383565b80633528db88146104505780633cf80e6c1461046c5780633d18b9121461047657610383565b80631e9b12ef116103615780631e9b12ef146103e05780631fab87c4146103fc578063233e9903146104185780632e1a7d4d1461043457610383565b8063063d82391461038857806316930f4d146103a65780631d62ebd9146103b0575b600080fd5b610390610a32565b60405161039d91906140d9565b60405180910390f35b6103ae610a38565b005b6103ca60048036038101906103c59190614166565b610ba6565b6040516103d791906140d9565b60405180910390f35b6103fa60048036038101906103f59190614166565b610bf2565b005b610416600480360381019061041191906141bf565b610c75565b005b610432600480360381019061042d91906141bf565b610cc1565b005b61044e600480360381019061044991906141bf565b610d0a565b005b61046a60048036038101906104659190614270565b61101b565b005b610474611570565b005b61047e6119b9565b005b61049a60048036038101906104959190614322565b611b99565b005b6104b660048036038101906104b19190614166565b611c05565b6040516104c3919061436a565b60405180910390f35b6104e660048036038101906104e191906141bf565b611c22565b005b61050260048036038101906104fd9190614385565b611c6b565b60405161050f91906140d9565b60405180910390f35b610532600480360381019061052d9190614270565b611c96565b005b61054e60048036038101906105499190614166565b611ee8565b60405161055b91906143d4565b60405180910390f35b61057e60048036038101906105799190614166565b611f1b565b60405161058b919061436a565b60405180910390f35b6105ae60048036038101906105a99190614548565b611f3b565b6040516105bb919061471f565b60405180910390f35b6105de60048036038101906105d991906141bf565b612156565b005b6105e86121a2565b6040516105f5919061436a565b60405180910390f35b6106066121b9565b604051610613919061471f565b60405180910390f35b61063660048036038101906106319190614166565b6121d6565b60405161064391906140d9565b60405180910390f35b61066660048036038101906106619190614741565b612222565b604051610674929190614794565b60405180910390f35b6106856122da565b005b61068f6122ee565b60405161069c919061481c565b60405180910390f35b6106bf60048036038101906106ba9190614166565b612314565b005b6106c96123ed565b6040516106d691906140d9565b60405180910390f35b6106f960048036038101906106f49190614166565b6123f3565b604051610706919061436a565b60405180910390f35b610717612474565b60405161072491906148e6565b60405180910390f35b61074760048036038101906107429190614963565b612562565b005b610763600480360381019061075e91906149d7565b612b54565b005b61076d612d02565b60405161077a919061436a565b60405180910390f35b61078b612d40565b60405161079891906143d4565b60405180910390f35b6107a9612d68565b6040516107ba959493929190614a17565b60405180910390f35b6107dd60048036038101906107d89190614166565b612d8c565b005b6107f960048036038101906107f49190614166565b612e0f565b604051610806919061436a565b60405180910390f35b610817612e8b565b604051610824919061436a565b60405180910390f35b610847600480360381019061084291906141bf565b612ec8565b005b6108516130c6565b005b61085b613280565b005b6108656132ed565b60405161087291906143d4565b60405180910390f35b610883613313565b60405161089091906140d9565b60405180910390f35b6108b360048036038101906108ae9190614a6a565b613319565b005b6108bd613341565b005b6108c76135d7565b005b6108d16137cb565b6040516108de9190614b83565b60405180910390f35b6108ef6137de565b6040516108fc91906148e6565b60405180910390f35b61090d6138cc565b60405161091a91906140d9565b60405180910390f35b61092b6138dd565b60405161093891906140d9565b60405180910390f35b61095b600480360381019061095691906141bf565b613921565b005b61096561396a565b604051610972919061471f565b60405180910390f35b610983613987565b005b61098d6139dc565b60405161099a91906140d9565b60405180910390f35b6109ab6139e2565b6040516109b8919061436a565b60405180910390f35b6109db60048036038101906109d69190614166565b613aad565b005b6109e5613b30565b6040516109f2919061436a565b60405180910390f35b610a156004803603810190610a109190614166565b613b6e565b604051610a29989796959493929190614bbc565b60405180910390f35b60085481565b600360020154431015610a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7790614cbd565b60405180910390fd5b60006004811115610a9457610a93614b0c565b5b600160159054906101000a900460ff166004811115610ab657610ab5614b0c565b5b1480610af5575060036004811115610ad157610ad0614b0c565b5b600160159054906101000a900460ff166004811115610af357610af2614b0c565b5b145b610b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2b90614d4f565b60405180910390fd5b60018060156101000a81548160ff02191690836004811115610b5957610b58614b0c565b5b02179055507f551dc40198cc79684bb69e4931dba4ac16e4598792ee1c0a5000aeea366d7bb6600160159054906101000a900460ff16604051610b9c9190614b83565b60405180910390a1565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600301549050919050565b610bfa613c12565b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f9904a32444ae0eb0bae2045baf588aa248f03f4fef600c18afd1d7e751614af881604051610c6a91906143d4565b60405180910390a150565b610c7d613c12565b806003600401819055507f887fed3a9270ffbbf863d640a07413b6f58cf97afaa9d7267693e962a76bd81081604051610cb691906140d9565b60405180910390a150565b610cc9613c12565b806009819055507fe933824a81d0b6aa53640e0e8df82b08c3f5297409b86d5beb73c41253518b2981604051610cff91906140d9565b60405180910390a150565b600260005403610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690614dbb565b60405180910390fd5b600260008190555060008111610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9190614e27565b60405180910390fd5b60001515610db233600c613c9090919063ffffffff16565b151514610df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610deb90614f05565b60405180910390fd5b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201541015610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7090614f71565b60405180910390fd5b80600a54610e879190614fc0565b600a8190555080601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154610edb9190614fc0565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020181905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610f7e929190614ff4565b6020604051808303816000875af1158015610f9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc19190615049565b503373ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d58260405161100891906140d9565b60405180910390a2600160008190555050565b600260005403611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790614dbb565b60405180910390fd5b60026000819055506000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015490506009548110156110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb906150e8565b60405180910390fd5b6000600481111561110857611107614b0c565b5b600160159054906101000a900460ff16600481111561112a57611129614b0c565b5b148061116957506003600481111561114557611144614b0c565b5b600160159054906101000a900460ff16600481111561116757611166614b0c565b5b145b806111a6575060048081111561118257611181614b0c565b5b600160159054906101000a900460ff1660048111156111a4576111a3614b0c565b5b145b6111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc9061517a565b60405180910390fd5b600015156111fd336010613c9090919063ffffffff16565b15151461123f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112369061520c565b60405180910390fd5b86601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548163ffffffff021916908363ffffffff16021790555085601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160046101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555084601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160146101000a81548163ffffffff021916908363ffffffff16021790555083601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206004018190555081601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206005018190555033601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061151b33600e613cc090919063ffffffff16565b503373ffffffffffffffffffffffffffffffffffffffff167f1dc186bd4daaf3fc4b9f8c689228a0be60dd2952dc502829514ae0d6955c0f5160405160405180910390a2506001600081905550505050505050565b6003600201544310156115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af90614cbd565b60405180910390fd5b600260048111156115cc576115cb614b0c565b5b600160159054906101000a900460ff1660048111156115ee576115ed614b0c565b5b1461162e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116259061529e565b60405180910390fd5b6001151561163a6139e2565b15151461167c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167390615330565b60405180910390fd5b6000611688600c613cf0565b905060005b818110156118105760006116ab82600c613d0590919063ffffffff16565b9050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561171a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061173e9190615389565b600a61174a91906154e9565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015460085461179a9190615534565b6117a491906155a5565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160008282546117f591906155d6565b925050819055505080806118089061560a565b91505061168d565b505b600061181e600c613cf0565b11156118525761184c61183c6000600c613d0590919063ffffffff16565b600c613d1f90919063ffffffff16565b50611812565b61185c600e613cf0565b905060005b8181101561190f5761189061188082600e613d0590919063ffffffff16565b600c613cc090919063ffffffff16565b506000601460006118ab84600e613d0590919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806119079061560a565b915050611861565b50600360010160008154809291906119269061560a565b91905055506003600001544361193c91906155d6565b6003600201819055506000600160156101000a81548160ff0219169083600481111561196b5761196a614b0c565b5b02179055507f551dc40198cc79684bb69e4931dba4ac16e4598792ee1c0a5000aeea366d7bb6600160159054906101000a900460ff166040516119ae9190614b83565b60405180910390a150565b6002600054036119fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f590614dbb565b60405180910390fd5b60026000819055506000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003015490506000811115611b8e576000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030181905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611afb929190614ff4565b6020604051808303816000875af1158015611b1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b3e9190615049565b503373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e048682604051611b8591906140d9565b60405180910390a25b506001600081905550565b611ba1613c12565b80600160156101000a81548160ff02191690836004811115611bc657611bc5614b0c565b5b02179055507f551dc40198cc79684bb69e4931dba4ac16e4598792ee1c0a5000aeea366d7bb681604051611bfa9190614b83565b60405180910390a150565b6000611c1b82600c613c9090919063ffffffff16565b9050919050565b611c2a613c12565b806008819055507fc33a6daf06e5c2185564f32ef90cabd653cb01a6945c9d3c18a7481d20d3a0ed81604051611c6091906140d9565b60405180910390a150565b6015602052816000526040600020602052806000526040600020600091509150508060000154905081565b85601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548163ffffffff021916908363ffffffff16021790555084601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160046101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160146101000a81548163ffffffff021916908363ffffffff16021790555082601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206004018190555080601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060050181905550505050505050565b60136020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60146020528060005260406000206000915054906101000a900460ff1681565b60606000825167ffffffffffffffff811115611f5a57611f59614405565b5b604051908082528060200260200182016040528015611f9357816020015b611f80614047565b815260200190600190039081611f785790505b50905060005b835181101561214c5760126000858381518110611fb957611fb8615652565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806101000160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200160028201548152602001600382015481526020016004820154815260200160058201548152505082828151811061212e5761212d615652565b5b602002602001018190525080806121449061560a565b915050611f99565b5080915050919050565b61215e613c12565b806003600001819055507f5f15d41eab42cb3f8a5c9e8cd44043648cb85a815522c5f4ae5a32597a8447a08160405161219791906140d9565b60405180910390a150565b6000600160009054906101000a900460ff16905090565b606060006121c56137de565b90506121d081611f3b565b91505090565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201549050919050565b60008060006015600087815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905080600001548160010160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169250925050935093915050565b6122e2613c12565b6122ec6000613d4f565b565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260005403612359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235090614dbb565b60405180910390fd5b6002600081905550612369613c12565b61237d81600e613d1f90919063ffffffff16565b50612392816010613cc090919063ffffffff16565b508073ffffffffffffffffffffffffffffffffffffffff167ff020e162c28460a603e71f641a2e83634580ace02b9e28b844b2257949860e9760006040516123da91906156bc565b60405180910390a2600160008190555050565b600a5481565b60008060156000600360010154815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506124556138dd565b81600001541061246957600191505061246f565b60009150505b919050565b60606000612482600c613cf0565b67ffffffffffffffff81111561249b5761249a614405565b5b6040519080825280602002602001820160405280156124c95781602001602082028036833780820191505090505b50905060006124d8600c613cf0565b905060005b81811015612559576124f981600c613d0590919063ffffffff16565b83828151811061250c5761250b615652565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505080806125519061560a565b9150506124dd565b50819250505090565b6002600054036125a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259e90614dbb565b60405180910390fd5b60026000819055506000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267990615749565b60405180910390fd5b61269681600e613c9090919063ffffffff16565b6126d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cc90615801565b60405180910390fd5b6000151560156000600360010154815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146127be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b590615893565b60405180910390fd5b60156000600360010154815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008154809291906128279061560a565b9190505550600160156000600360010154815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506128ee85600e613c9090919063ffffffff16565b80156128ff57506128fe856123f3565b5b15612add5761291885600e613d1f90919063ffffffff16565b5061292d856010613cc090919063ffffffff16565b5060006064600b54601260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201546129829190615534565b61298c91906155a5565b905080601260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160008282546129e09190614fc0565b9250508190555080600a60008282546129f99190614fc0565b92505081905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342966c68826040518263ffffffff1660e01b8152600401612a5b91906140d9565b600060405180830381600087803b158015612a7557600080fd5b505af1158015612a89573d6000803e3d6000fd5b505050508573ffffffffffffffffffffffffffffffffffffffff167ff020e162c28460a603e71f641a2e83634580ace02b9e28b844b2257949860e9782604051612ad391906140d9565b60405180910390a2505b838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167febdee48ed32f3feff81eed274b9e084b367ac42fe1cb710dcbd43f1d537d99fa8686604051612b3d929190615900565b60405180910390a450600160008190555050505050565b600260005403612b99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9090614dbb565b60405180910390fd5b6002600081905550612ba9613c12565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002016000828254612bfb9190614fc0565b9250508190555080600a6000828254612c149190614fc0565b92505081905550600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342966c68826040518263ffffffff1660e01b8152600401612c7691906140d9565b600060405180830381600087803b158015612c9057600080fd5b505af1158015612ca4573d6000803e3d6000fd5b505050508173ffffffffffffffffffffffffffffffffffffffff167ff020e162c28460a603e71f641a2e83634580ace02b9e28b844b2257949860e9782604051612cee91906140d9565b60405180910390a260016000819055505050565b600060016004811115612d1857612d17614b0c565b5b600160159054906101000a900460ff166004811115612d3a57612d39614b0c565b5b14905090565b600060018054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60038060000154908060010154908060020154908060030154908060040154905085565b612d94613c12565b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f2b5fe80d5061b20e017f0cde52b331309601bfcab0cb14cfcf6a4096410a607581604051612e0491906143d4565b60405180910390a150565b6000612e84601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c613c9090919063ffffffff16565b9050919050565b6000806004811115612ea057612e9f614b0c565b5b600160159054906101000a900460ff166004811115612ec257612ec1614b0c565b5b14905090565b600260005403612f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0490614dbb565b60405180910390fd5b600260008190555060008111612f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4f90615970565b60405180910390fd5b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401612fb793929190615990565b6020604051808303816000875af1158015612fd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ffa9190615049565b5080601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201600082825461304d91906155d6565b9250508190555080600a600082825461306691906155d6565b925050819055503373ffffffffffffffffffffffffffffffffffffffff167f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d826040516130b391906140d9565b60405180910390a2600160008190555050565b60026000540361310b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310290614dbb565b60405180910390fd5b60026000819055506000600481111561312757613126614b0c565b5b600160159054906101000a900460ff16600481111561314957613148614b0c565b5b148061318857506003600481111561316457613163614b0c565b5b600160159054906101000a900460ff16600481111561318657613185614b0c565b5b145b806131c557506004808111156131a1576131a0614b0c565b5b600160159054906101000a900460ff1660048111156131c3576131c2614b0c565b5b145b613204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fb90615a39565b60405180910390fd5b61321833600e613c9090919063ffffffff16565b156132335761323133600e613d1f90919063ffffffff16565b505b3373ffffffffffffffffffffffffffffffffffffffff167fff61c8020d05b8c2e31cdbb3d3f8cbcbdc57fcafa00229d9858b7cfd3b039c8a60405160405180910390a26001600081905550565b613288613c12565b6004600160156101000a81548160ff021916908360048111156132ae576132ad614b0c565b5b02179055507f551dc40198cc79684bb69e4931dba4ac16e4598792ee1c0a5000aeea366d7bb660046040516132e39190614b83565b60405180910390a1565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b613321613e12565b61332a87612ec8565b61333886868686868661101b565b50505050505050565b6000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600160048111156133b9576133b8614b0c565b5b600160159054906101000a900460ff1660048111156133db576133da614b0c565b5b148061341a5750600260048111156133f6576133f5614b0c565b5b600160159054906101000a900460ff16600481111561341857613417614b0c565b5b145b613459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161345090615acb565b60405180910390fd5b6001600360010154146134ba5761347a81600e613c9090919063ffffffff16565b6134b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134b090615b5d565b60405180910390fd5b5b6001601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f9784a0102afe6a5b031e774420da20a7d1e8207dde8e1ede9c6cefe5680ba05e60405160405180910390a261355d6139e2565b156135d4576002600160156101000a81548160ff0219169083600481111561358857613587614b0c565b5b02179055507f551dc40198cc79684bb69e4931dba4ac16e4598792ee1c0a5000aeea366d7bb6600160159054906101000a900460ff166040516135cb9190614b83565b60405180910390a15b50565b6003600401546003600201546135ed91906155d6565b43101561362f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362690614cbd565b60405180910390fd5b6001600481111561364357613642614b0c565b5b600160159054906101000a900460ff16600481111561366557613664614b0c565b5b146136a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369c90615bef565b60405180910390fd5b60006136b1600e613cf0565b905060005b8181101561373c576000601460006136d884600e613d0590919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806137349061560a565b9150506136b6565b506003800160008154809291906137529061560a565b91905055506003600160156101000a81548160ff0219169083600481111561377d5761377c614b0c565b5b02179055507f551dc40198cc79684bb69e4931dba4ac16e4598792ee1c0a5000aeea366d7bb6600160159054906101000a900460ff166040516137c09190614b83565b60405180910390a150565b600160159054906101000a900460ff1681565b606060006137ec600e613cf0565b67ffffffffffffffff81111561380557613804614405565b5b6040519080825280602002602001820160405280156138335781602001602082028036833780820191505090505b5090506000613842600e613cf0565b905060005b818110156138c35761386381600e613d0590919063ffffffff16565b83828151811061387657613875615652565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505080806138bb9061560a565b915050613847565b50819250505090565b60006138d8600c613cf0565b905090565b600060026138eb600c613cf0565b116138f9576001905061391e565b60036002613907600c613cf0565b6139119190615534565b61391b91906155a5565b90505b90565b613929613c12565b80600b819055507fc0ff1deb4b889cc8d47d930be1a37c0e7442ab9850450d2dce635435c005e6a58160405161395f91906140d9565b60405180910390a150565b60606000613976612474565b905061398181611f3b565b91505090565b6139d2601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154610d0a565b6139da6119b9565b565b60095481565b6000806000905060006139f5600e613cf0565b905060005b81811015613a895760146000613a1a83600e613d0590919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613a76578280613a729061560a565b9350505b8080613a819061560a565b9150506139fa565b50613a926138dd565b8210613aa357600192505050613aaa565b6000925050505b90565b613ab5613c12565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603613b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b1b90615c81565b60405180910390fd5b613b2d81613d4f565b50565b600060036004811115613b4657613b45614b0c565b5b600160159054906101000a900460ff166004811115613b6857613b67614b0c565b5b14905090565b60126020528060005260406000206000915090508060000160009054906101000a900463ffffffff16908060000160049054906101000a90046fffffffffffffffffffffffffffffffff16908060000160149054906101000a900463ffffffff16908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020154908060030154908060040154908060050154905088565b613c1a613e5c565b73ffffffffffffffffffffffffffffffffffffffff16613c38612d40565b73ffffffffffffffffffffffffffffffffffffffff1614613c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c8590615ced565b60405180910390fd5b565b6000613cb8836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613e64565b905092915050565b6000613ce8836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613e87565b905092915050565b6000613cfe82600001613ef7565b9050919050565b6000613d148360000183613f08565b60001c905092915050565b6000613d47836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613f33565b905092915050565b600060018054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816001806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613e1a6121a2565b15613e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e5190615d59565b60405180910390fd5b565b600033905090565b600080836001016000848152602001908152602001600020541415905092915050565b6000613e938383613e64565b613eec578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613ef1565b600090505b92915050565b600081600001805490509050919050565b6000826000018281548110613f2057613f1f615652565b5b9060005260206000200154905092915050565b6000808360010160008481526020019081526020016000205490506000811461403b576000600182613f659190614fc0565b9050600060018660000180549050613f7d9190614fc0565b9050818114613fec576000866000018281548110613f9e57613f9d615652565b5b9060005260206000200154905080876000018481548110613fc257613fc1615652565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b8560000180548061400057613fff615d79565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050614041565b60009150505b92915050565b604051806101000160405280600063ffffffff16815260200160006fffffffffffffffffffffffffffffffff168152602001600063ffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600081526020016000815260200160008152602001600081525090565b6000819050919050565b6140d3816140c0565b82525050565b60006020820190506140ee60008301846140ca565b92915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061413382614108565b9050919050565b61414381614128565b811461414e57600080fd5b50565b6000813590506141608161413a565b92915050565b60006020828403121561417c5761417b6140fe565b5b600061418a84828501614151565b91505092915050565b61419c816140c0565b81146141a757600080fd5b50565b6000813590506141b981614193565b92915050565b6000602082840312156141d5576141d46140fe565b5b60006141e3848285016141aa565b91505092915050565b600063ffffffff82169050919050565b614205816141ec565b811461421057600080fd5b50565b600081359050614222816141fc565b92915050565b60006fffffffffffffffffffffffffffffffff82169050919050565b61424d81614228565b811461425857600080fd5b50565b60008135905061426a81614244565b92915050565b60008060008060008060c0878903121561428d5761428c6140fe565b5b600061429b89828a01614213565b96505060206142ac89828a0161425b565b95505060406142bd89828a01614213565b94505060606142ce89828a01614151565b93505060806142df89828a016141aa565b92505060a06142f089828a016141aa565b9150509295509295509295565b6005811061430a57600080fd5b50565b60008135905061431c816142fd565b92915050565b600060208284031215614338576143376140fe565b5b60006143468482850161430d565b91505092915050565b60008115159050919050565b6143648161434f565b82525050565b600060208201905061437f600083018461435b565b92915050565b6000806040838503121561439c5761439b6140fe565b5b60006143aa858286016141aa565b92505060206143bb85828601614151565b9150509250929050565b6143ce81614128565b82525050565b60006020820190506143e960008301846143c5565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61443d826143f4565b810181811067ffffffffffffffff8211171561445c5761445b614405565b5b80604052505050565b600061446f6140f4565b905061447b8282614434565b919050565b600067ffffffffffffffff82111561449b5761449a614405565b5b602082029050602081019050919050565b600080fd5b60006144c46144bf84614480565b614465565b905080838252602082019050602084028301858111156144e7576144e66144ac565b5b835b8181101561451057806144fc8882614151565b8452602084019350506020810190506144e9565b5050509392505050565b600082601f83011261452f5761452e6143ef565b5b813561453f8482602086016144b1565b91505092915050565b60006020828403121561455e5761455d6140fe565b5b600082013567ffffffffffffffff81111561457c5761457b614103565b5b6145888482850161451a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6145c6816141ec565b82525050565b6145d581614228565b82525050565b6145e481614128565b82525050565b6145f3816140c0565b82525050565b6101008201600082015161461060008501826145bd565b50602082015161462360208501826145cc565b50604082015161463660408501826145bd565b50606082015161464960608501826145db565b50608082015161465c60808501826145ea565b5060a082015161466f60a08501826145ea565b5060c082015161468260c08501826145ea565b5060e082015161469560e08501826145ea565b50505050565b60006146a783836145f9565b6101008301905092915050565b6000602082019050919050565b60006146cc82614591565b6146d6818561459c565b93506146e1836145ad565b8060005b838110156147125781516146f9888261469b565b9750614704836146b4565b9250506001810190506146e5565b5085935050505092915050565b6000602082019050818103600083015261473981846146c1565b905092915050565b60008060006060848603121561475a576147596140fe565b5b6000614768868287016141aa565b935050602061477986828701614151565b925050604061478a86828701614151565b9150509250925092565b60006040820190506147a960008301856140ca565b6147b6602083018461435b565b9392505050565b6000819050919050565b60006147e26147dd6147d884614108565b6147bd565b614108565b9050919050565b60006147f4826147c7565b9050919050565b6000614806826147e9565b9050919050565b614816816147fb565b82525050565b6000602082019050614831600083018461480d565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600061486f83836145db565b60208301905092915050565b6000602082019050919050565b600061489382614837565b61489d8185614842565b93506148a883614853565b8060005b838110156148d95781516148c08882614863565b97506148cb8361487b565b9250506001810190506148ac565b5085935050505092915050565b600060208201905081810360008301526149008184614888565b905092915050565b600080fd5b60008083601f840112614923576149226143ef565b5b8235905067ffffffffffffffff8111156149405761493f614908565b5b60208301915083600182028301111561495c5761495b6144ac565b5b9250929050565b6000806000806060858703121561497d5761497c6140fe565b5b600061498b87828801614151565b945050602061499c878288016141aa565b935050604085013567ffffffffffffffff8111156149bd576149bc614103565b5b6149c98782880161490d565b925092505092959194509250565b600080604083850312156149ee576149ed6140fe565b5b60006149fc85828601614151565b9250506020614a0d858286016141aa565b9150509250929050565b600060a082019050614a2c60008301886140ca565b614a3960208301876140ca565b614a4660408301866140ca565b614a5360608301856140ca565b614a6060808301846140ca565b9695505050505050565b600080600080600080600060e0888a031215614a8957614a886140fe565b5b6000614a978a828b016141aa565b9750506020614aa88a828b01614213565b9650506040614ab98a828b0161425b565b9550506060614aca8a828b01614213565b9450506080614adb8a828b01614151565b93505060a0614aec8a828b016141aa565b92505060c0614afd8a828b016141aa565b91505092959891949750929550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60058110614b4c57614b4b614b0c565b5b50565b6000819050614b5d82614b3b565b919050565b6000614b6d82614b4f565b9050919050565b614b7d81614b62565b82525050565b6000602082019050614b986000830184614b74565b92915050565b614ba7816141ec565b82525050565b614bb681614228565b82525050565b600061010082019050614bd2600083018b614b9e565b614bdf602083018a614bad565b614bec6040830189614b9e565b614bf960608301886143c5565b614c0660808301876140ca565b614c1360a08301866140ca565b614c2060c08301856140ca565b614c2d60e08301846140ca565b9998505050505050505050565b600082825260208201905092915050565b7f456e6f75676820626c6f636b732068617665206e6f7420656c6170736564207360008201527f696e636520746865206c6173742065706f636800000000000000000000000000602082015250565b6000614ca7603383614c3a565b9150614cb282614c4b565b604082019050919050565b60006020820190508181036000830152614cd681614c9a565b9050919050565b7f4d75737420626520696e20616374697665206f7220756e6c6f636b656420737460008201527f6174650000000000000000000000000000000000000000000000000000000000602082015250565b6000614d39602383614c3a565b9150614d4482614cdd565b604082019050919050565b60006020820190508181036000830152614d6881614d2c565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614da5601f83614c3a565b9150614db082614d6f565b602082019050919050565b60006020820190508181036000830152614dd481614d98565b9050919050565b7f43616e6e6f742077697468647261772030000000000000000000000000000000600082015250565b6000614e11601183614c3a565b9150614e1c82614ddb565b602082019050919050565b60006020820190508181036000830152614e4081614e04565b9050919050565b7f4163746976652076616c696461746f72732063616e6e6f74206c656176652e2060008201527f20506c656173652075736520746865206c6561766528292066756e6374696f6e60208201527f20616e64207761697420666f7220746865206e6578742065706f636820746f2060408201527f6c65617665000000000000000000000000000000000000000000000000000000606082015250565b6000614eef606583614c3a565b9150614efa82614e47565b608082019050919050565b60006020820190508181036000830152614f1e81614ee2565b9050919050565b7f4e6f7420656e6f75676820746f6b656e7320746f207769746864726177000000600082015250565b6000614f5b601d83614c3a565b9150614f6682614f25565b602082019050919050565b60006020820190508181036000830152614f8a81614f4e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614fcb826140c0565b9150614fd6836140c0565b9250828203905081811115614fee57614fed614f91565b5b92915050565b600060408201905061500960008301856143c5565b61501660208301846140ca565b9392505050565b6150268161434f565b811461503157600080fd5b50565b6000815190506150438161501d565b92915050565b60006020828403121561505f5761505e6140fe565b5b600061506d84828501615034565b91505092915050565b7f5374616b65206d7573742062652067726561746572207468616e206f7220657160008201527f75616c20746f206d696e696d756d5374616b6500000000000000000000000000602082015250565b60006150d2603383614c3a565b91506150dd82615076565b604082019050919050565b60006020820190508181036000830152615101816150c5565b9050919050565b7f4d75737420626520696e20416374697665206f7220556e6c6f636b656420737460008201527f61746520746f207265717565737420746f206a6f696e00000000000000000000602082015250565b6000615164603683614c3a565b915061516f82615108565b604082019050919050565b6000602082019050818103600083015261519381615157565b9050919050565b7f596f752063616e6e6f742072656a6f696e20696620796f75206861766520626560008201527f656e206b69636b656420756e74696c20746865206e6578742065706f63680000602082015250565b60006151f6603e83614c3a565b91506152018261519a565b604082019050919050565b60006020820190508181036000830152615225816151e9565b9050919050565b7f4d75737420626520696e20726561647920666f72206e6578742065706f63682060008201527f7374617465000000000000000000000000000000000000000000000000000000602082015250565b6000615288602583614c3a565b91506152938261522c565b604082019050919050565b600060208201905081810360008301526152b78161527b565b9050919050565b7f4e6f7420656e6f7567682076616c696461746f7273206172652072656164792060008201527f666f7220746865206e6578742065706f63680000000000000000000000000000602082015250565b600061531a603283614c3a565b9150615325826152be565b604082019050919050565b600060208201905081810360008301526153498161530d565b9050919050565b600060ff82169050919050565b61536681615350565b811461537157600080fd5b50565b6000815190506153838161535d565b92915050565b60006020828403121561539f5761539e6140fe565b5b60006153ad84828501615374565b91505092915050565b60008160011c9050919050565b6000808291508390505b600185111561540d578086048111156153e9576153e8614f91565b5b60018516156153f85780820291505b8081029050615406856153b6565b94506153cd565b94509492505050565b60008261542657600190506154e2565b8161543457600090506154e2565b816001811461544a576002811461545457615483565b60019150506154e2565b60ff84111561546657615465614f91565b5b8360020a91508482111561547d5761547c614f91565b5b506154e2565b5060208310610133831016604e8410600b84101617156154b85782820a9050838111156154b3576154b2614f91565b5b6154e2565b6154c584848460016153c3565b925090508184048111156154dc576154db614f91565b5b81810290505b9392505050565b60006154f4826140c0565b91506154ff83615350565b925061552c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484615416565b905092915050565b600061553f826140c0565b915061554a836140c0565b9250828202615558816140c0565b9150828204841483151761556f5761556e614f91565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006155b0826140c0565b91506155bb836140c0565b9250826155cb576155ca615576565b5b828204905092915050565b60006155e1826140c0565b91506155ec836140c0565b925082820190508082111561560457615603614f91565b5b92915050565b6000615615826140c0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361564757615646614f91565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b60006156a66156a161569c84615681565b6147bd565b6140c0565b9050919050565b6156b68161568b565b82525050565b60006020820190506156d160008301846156ad565b92915050565b7f436f756c64206e6f74206d617020796f7572206e6f646541646472657373207460008201527f6f20796f7572207374616b657241646472657373000000000000000000000000602082015250565b6000615733603483614c3a565b915061573e826156d7565b604082019050919050565b6000602082019050818103600083015261576281615726565b9050919050565b7f596f75206d75737420626520612076616c696461746f7220696e20746865206e60008201527f6578742065706f636820746f206b69636b20736f6d656f6e652066726f6d207460208201527f6865206e6578742065706f636800000000000000000000000000000000000000604082015250565b60006157eb604d83614c3a565b91506157f682615769565b606082019050919050565b6000602082019050818103600083015261581a816157de565b9050919050565b7f596f752063616e206f6e6c7920766f746520746f206b69636b20736f6d656f6e60008201527f65206f6e6365207065722065706f636800000000000000000000000000000000602082015250565b600061587d603083614c3a565b915061588882615821565b604082019050919050565b600060208201905081810360008301526158ac81615870565b9050919050565b600082825260208201905092915050565b82818337600083830152505050565b60006158df83856158b3565b93506158ec8385846158c4565b6158f5836143f4565b840190509392505050565b6000602082019050818103600083015261591b8184866158d3565b90509392505050565b7f43616e6e6f74207374616b652030000000000000000000000000000000000000600082015250565b600061595a600e83614c3a565b915061596582615924565b602082019050919050565b600060208201905081810360008301526159898161594d565b9050919050565b60006060820190506159a560008301866143c5565b6159b260208301856143c5565b6159bf60408301846140ca565b949350505050565b7f4d75737420626520696e20416374697665206f7220556e6c6f636b656420737460008201527f61746520746f207265717565737420746f206c65617665000000000000000000602082015250565b6000615a23603783614c3a565b9150615a2e826159c7565b604082019050919050565b60006020820190508181036000830152615a5281615a16565b9050919050565b7f4d75737420626520696e207374617465204e65787456616c696461746f72536560008201527f744c6f636b6564206f72205265616479466f724e65787445706f636800000000602082015250565b6000615ab5603c83614c3a565b9150615ac082615a59565b604082019050919050565b60006020820190508181036000830152615ae481615aa8565b9050919050565b7f56616c696461746f72206973206e6f7420696e20746865206e6578742065706f60008201527f6368000000000000000000000000000000000000000000000000000000000000602082015250565b6000615b47602283614c3a565b9150615b5282615aeb565b604082019050919050565b60006020820190508181036000830152615b7681615b3a565b9050919050565b7f4d75737420626520696e204e65787456616c696461746f725365744c6f636b6560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b6000615bd9602183614c3a565b9150615be482615b7d565b604082019050919050565b60006020820190508181036000830152615c0881615bcc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615c6b602683614c3a565b9150615c7682615c0f565b604082019050919050565b60006020820190508181036000830152615c9a81615c5e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615cd7602083614c3a565b9150615ce282615ca1565b602082019050919050565b60006020820190508181036000830152615d0681615cca565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000615d43601083614c3a565b9150615d4e82615d0d565b602082019050919050565b60006020820190508181036000830152615d7281615d36565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220727863cb5ac8d87a0a3ea3671645877f6b62ef235e046fe3c1b1c9a32dfd2a3e64736f6c63430008110033