false
true
0

Contract Address Details

0x7fBc0BDf643341b42cf691f3Dbbb193e41c3Cf9d

Token
Salvation (SALV)
Creator
0xdbe1e9–861db8 at 0x728fba–f395be
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
108 Transactions
Transfers
0 Transfers
Gas Used
6,432,398
Last Balance Update
25970721
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
This contract has been verified via Sourcify. View contract in Sourcify repository
Contract name:
Salvation




Optimization enabled
false
Compiler version
v0.8.20+commit.a1b79de6




EVM Version
shanghai




Verified at
2026-02-11T22:05:06.869311Z

contract-1263c3023e.sol

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

// Import OpenZeppelin contracts with explicit version for compatibility
import "@openzeppelin/contracts@4.9.0/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts@4.9.0/security/ReentrancyGuard.sol";

/// @title Salvation - A stakable ERC20 token with transfer fees and vesting rewards
/// @notice Implements staking with lockup periods, burns transfer fees, and distributes vested rewards
/// @dev Uses OpenZeppelin ERC20 and ReentrancyGuard for security. Fully immutable and decentralized.
contract Salvation is ERC20, ReentrancyGuard {
    // --- Tokenomics Constants ---
    /// @notice Maximum total supply of SALV tokens
    uint256 public constant MAX_SUPPLY = 100_000_000 * 10**18; // 100M SALV (18 decimals)
    /// @notice Initial reward pool for staking
    uint256 public constant STAKING_REWARD_POOL = 95_000_000 * 10**18; // 95M SALV for rewards
    /// @notice Allocation for deployer
    uint256 public constant DEPLOYER_ALLOCATION = 5_000_000 * 10**18; // 5M SALV for deployer
    /// @notice Annual staking reward rate (7% in wei)
    uint256 public constant BASE_STAKING_REWARD_RATE = 7 * 10**16; // 7% annual yield
    /// @notice Duration for vesting rewards
    uint256 public constant VESTING_PERIOD = 60 days; // Rewards vest over 60 days
    /// @notice Lockup periods for staking
    uint256 public constant LOCKUP_3_MONTHS = 90 days; // 3-month lockup
    uint256 public constant LOCKUP_6_MONTHS = 180 days; // 6-month lockup
    uint256 public constant LOCKUP_1_YEAR = 365 days; // 1-year lockup
    uint256 public constant LOCKUP_2_YEARS = 2 * 365 days; // 2-year lockup
    uint256 public constant LOCKUP_4_YEARS = 4 * 365 days; // 4-year lockup
    /// @notice Reward multipliers for lockup periods
    uint256 public constant MULTIPLIER_3_MONTHS = 11 * 10**17; // 1.1x for 3 months
    uint256 public constant MULTIPLIER_6_MONTHS = 125 * 10**16; // 1.25x for 6 months
    uint256 public constant MULTIPLIER_1_YEAR = 15 * 10**17; // 1.5x for 1 year
    uint256 public constant MULTIPLIER_2_YEARS = 2 * 10**18; // 2x for 2 years
    uint256 public constant MULTIPLIER_4_YEARS = 3 * 10**18; // 3x for 4 years
    /// @notice Fee on token transfers (0.1% in wei)
    uint256 public constant TRANSFER_FEE = 10**15; // 0.1% fee on transfers
    /// @notice Penalty for early unstaking (10% in wei)
    uint256 public constant EARLY_UNSTAKE_PENALTY = 10**17; // 10% penalty for early unstaking (all penalties are burnt)

    // --- Staking State ---
    /// @notice Represents a single stake for a user
    struct Stake {
        uint256 amount; // Staked SALV amount
        uint256 lockupPeriod; // Lockup duration (0, 90/180/365/730/1460 days)
        uint256 startTime; // Stake start timestamp
        uint256 accumulatedRewards; // Accumulated rewards
    }

    /// @notice Mapping of user addresses to their array of stakes
    mapping(address => Stake[]) public stakes;
    /// @notice Vested rewards balance per user
    mapping(address => uint256) public vestingBalance;
    /// @notice Vesting start timestamp per user
    mapping(address => uint256) public vestingStartTime;
    /// @notice Total staked amount per user
    mapping(address => uint256) public userTotalStaked;
    /// @notice Total SALV staked across all users
    uint256 public totalStaked;
    /// @notice Remaining rewards in the staking pool
    uint256 public remainingRewardPool;

    // --- Events ---
    event Staked(address indexed user, uint256 amount, uint256 lockupPeriod);
    event Unstaked(address indexed user, uint256 amount, uint256 stakeIndex, uint256 penalty);
    event RewardsClaimed(address indexed user, uint256 amount);
    event RewardsVested(address indexed user, uint256 amount);
    event VestingWithdrawn(address indexed user, uint256 amount);
    event Burned(address indexed user, uint256 amount);
    event FeeBurned(address indexed user, uint256 amount);

    /// @notice Constructor to initialize token and allocate supply
    /// @dev Mints reward pool to contract and deployer allocation to msg.sender
    constructor() ERC20("Salvation", "SALV") {
        _mint(address(this), STAKING_REWARD_POOL); // 95M to contract for rewards
        _mint(msg.sender, DEPLOYER_ALLOCATION); // 5M to deployer
        remainingRewardPool = STAKING_REWARD_POOL;

        // Deployer allocation plan:
        // - 500,000 SALV for HEX/SALV liquidity pair
        // - 500,000 SALV for PLS/SALV liquidity pair
        // - 500,000 SALV for PLSX/SALV liquidity pair
        // - 500,000 SALV for INC/SALV liquidity pair
        // - 1,000,000 SALV for sale to enable staking
        // - 1,000,000 SALV for deployer staking (4 year stake)
        // - 1,000,000 SALV to remain liquid
    }

    /// @notice Transfers tokens, burning a 0.1% fee
    /// @param recipient Address to receive tokens
    /// @param amount Amount of tokens to transfer
    /// @return bool Success status
    function transfer(address recipient, uint256 amount) public override nonReentrant returns (bool) {
        uint256 fee = (amount * TRANSFER_FEE) / 10**18; // 0.1% fee
        uint256 netAmount = amount - fee;

        // Interactions: Burn fee and transfer net amount
        _burn(msg.sender, fee);
        _transfer(msg.sender, recipient, netAmount);

        emit FeeBurned(msg.sender, fee);
        return true;
    }

    /// @notice Transfers tokens from sender, burning a 0.1% fee
    /// @param sender Address sending tokens
    /// @param recipient Address to receive tokens
    /// @param amount Amount of tokens to transfer
    /// @return bool Success status
    function transferFrom(address sender, address recipient, uint256 amount) public override nonReentrant returns (bool) {
        uint256 fee = (amount * TRANSFER_FEE) / 10**18; // 0.1% fee
        uint256 netAmount = amount - fee;

        // Effects: Update allowance
        _approve(sender, msg.sender, allowance(sender, msg.sender) - amount);

        // Interactions: Burn fee and transfer net amount
        _burn(sender, fee);
        _transfer(sender, recipient, netAmount);

        emit FeeBurned(sender, fee);
        return true;
    }

    /// @notice Stakes tokens with an optional lockup period
    /// @param amount Amount of SALV to stake
    /// @param lockupPeriod Lockup duration (0, 90/180/365/730/1460 days)
    function stake(uint256 amount, uint256 lockupPeriod) external nonReentrant {
        require(amount > 0, "Amount must be greater than 0");
        require(balanceOf(msg.sender) >= amount, "Insufficient balance");
        require(allowance(msg.sender, address(this)) >= amount, "Insufficient allowance");
        require(
            lockupPeriod == 0 ||
            lockupPeriod == LOCKUP_3_MONTHS ||
            lockupPeriod == LOCKUP_6_MONTHS ||
            lockupPeriod == LOCKUP_1_YEAR ||
            lockupPeriod == LOCKUP_2_YEARS ||
            lockupPeriod == LOCKUP_4_YEARS,
            "Invalid lockup period"
        );

        // Transfer tokens to contract
        _transfer(msg.sender, address(this), amount);

        // Create new stake
        stakes[msg.sender].push(Stake({
            amount: amount,
            lockupPeriod: lockupPeriod,
            startTime: block.timestamp,
            accumulatedRewards: 0
        }));

        // Update staked totals
        totalStaked += amount;
        userTotalStaked[msg.sender] += amount;

        emit Staked(msg.sender, amount, lockupPeriod);
    }

    /// @notice Unstakes tokens from a specific stake
    /// @param stakeIndex Index of the stake to unstake
    function unstake(uint256 stakeIndex) external nonReentrant {
        require(stakeIndex < stakes[msg.sender].length, "Invalid stake index");
        Stake storage userStake = stakes[msg.sender][stakeIndex];
        require(userStake.amount > 0, "No staked amount");

        uint256 amount = userStake.amount;
        uint256 penalty = 0;

        // Apply penalty for early unstaking
        if (userStake.lockupPeriod > 0 && block.timestamp < userStake.startTime + userStake.lockupPeriod) {
            penalty = (amount * EARLY_UNSTAKE_PENALTY) / 10**18; // 10% penalty (all penalties to be burnt)
            amount -= penalty;
            _burn(address(this), penalty); // Burn penalty
        }

        // Update rewards before unstaking
        _updateRewards(msg.sender, stakeIndex);

        // Update staked totals
        totalStaked -= userStake.amount;
        userTotalStaked[msg.sender] -= userStake.amount;

        // Transfer tokens back to user
        userStake.amount = 0; // Mark stake as withdrawn
        _transfer(address(this), msg.sender, amount);

        emit Unstaked(msg.sender, amount, stakeIndex, penalty);
    }

    /// @notice Claims accumulated rewards for a specific stake
    /// @param stakeIndex Index of the stake to claim rewards for
    function claimRewards(uint256 stakeIndex) external nonReentrant {
        require(stakeIndex < stakes[msg.sender].length, "Invalid stake index");
        _updateRewards(msg.sender, stakeIndex);

        uint256 reward = stakes[msg.sender][stakeIndex].accumulatedRewards;
        require(reward > 0, "No rewards available");
        require(reward <= remainingRewardPool, "Insufficient reward pool");

        remainingRewardPool -= reward;
        stakes[msg.sender][stakeIndex].accumulatedRewards = 0;
        vestingBalance[msg.sender] += reward;
        vestingStartTime[msg.sender] = block.timestamp;

        emit RewardsClaimed(msg.sender, reward);
        emit RewardsVested(msg.sender, reward);
    }

    /// @notice Withdraws vested rewards
    function withdrawVested() external nonReentrant {
        uint256 available = calculateVestedAmount(msg.sender);
        require(available > 0, "No vested amount available");

        vestingBalance[msg.sender] -= available;
        _transfer(address(this), msg.sender, available);

        emit VestingWithdrawn(msg.sender, available);
    }

    /// @notice Burns SALV tokens to reduce total supply
    /// @param amount Amount of tokens to burn
    function burn(uint256 amount) external {
        require(amount > 0, "Amount must be greater than 0");
        require(balanceOf(msg.sender) >= amount, "Insufficient balance");

        _burn(msg.sender, amount);
        emit Burned(msg.sender, amount);
    }

    /// @notice Returns the total staked balance for a user
    /// @param user Address to query
    /// @return Total staked amount
    function getStakedBalance(address user) external view returns (uint256) {
        return userTotalStaked[user];
    }

    /// @notice Calculates pending rewards for a specific stake
    /// @param user Address of the user
    /// @param stakeIndex Index of the stake
    /// @return Pending rewards
    function calculateRewards(address user, uint256 stakeIndex) public view returns (uint256) {
        if (stakeIndex >= stakes[user].length) return 0;
        Stake storage userStake = stakes[user][stakeIndex];
        if (userStake.amount == 0) return userStake.accumulatedRewards;

        uint256 timeElapsed = block.timestamp - userStake.startTime;
        uint256 multiplier = _getMultiplier(userStake.lockupPeriod);
        uint256 baseReward = (userStake.amount * BASE_STAKING_REWARD_RATE * timeElapsed) /
                            (365 days * 10**18);
        return userStake.accumulatedRewards + (baseReward * multiplier) / 10**18;
    }

    /// @notice Calculates vested amount available for withdrawal
    /// @param user Address of the user
    /// @return Vested amount
    function calculateVestedAmount(address user) public view returns (uint256) {
        if (vestingBalance[user] == 0 || block.timestamp < vestingStartTime[user]) return 0;

        uint256 timeElapsed = block.timestamp - vestingStartTime[user];
        if (timeElapsed >= VESTING_PERIOD) return vestingBalance[user];

        return (vestingBalance[user] * timeElapsed) / VESTING_PERIOD;
    }

    /// @notice Updates rewards for a specific stake
    /// @param user Address of the user
    /// @param stakeIndex Index of the stake
    function _updateRewards(address user, uint256 stakeIndex) internal {
        if (stakeIndex < stakes[user].length) {
            stakes[user][stakeIndex].accumulatedRewards = calculateRewards(user, stakeIndex);
            stakes[user][stakeIndex].startTime = block.timestamp;
        }
    }

    /// @notice Returns the reward multiplier based on lockup period
    /// @param lockupPeriod Lockup duration
    /// @return Multiplier (in wei)
    function _getMultiplier(uint256 lockupPeriod) internal pure returns (uint256) {
        if (lockupPeriod == LOCKUP_3_MONTHS) return MULTIPLIER_3_MONTHS;
        if (lockupPeriod == LOCKUP_6_MONTHS) return MULTIPLIER_6_MONTHS;
        if (lockupPeriod == LOCKUP_1_YEAR) return MULTIPLIER_1_YEAR;
        if (lockupPeriod == LOCKUP_2_YEARS) return MULTIPLIER_2_YEARS;
        if (lockupPeriod == LOCKUP_4_YEARS) return MULTIPLIER_4_YEARS;
        return 10**18; // 1x for flexible staking
    }
}
        

/

// 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;
    }
}
          

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

/IERC20.sol

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

/ERC20.sol

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}
          

Compiler Settings

{"remappings":[],"optimizer":{"runs":200,"enabled":false},"metadata":{"bytecodeHash":"ipfs"},"libraries":{},"evmVersion":"shanghai","compilationTarget":{"contract-1263c3023e.sol":"Salvation"}}
              

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Burned","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"FeeBurned","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"RewardsClaimed","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"RewardsVested","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Staked","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false},{"type":"uint256","name":"lockupPeriod","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Unstaked","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false},{"type":"uint256","name":"stakeIndex","internalType":"uint256","indexed":false},{"type":"uint256","name":"penalty","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"VestingWithdrawn","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"BASE_STAKING_REWARD_RATE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"DEPLOYER_ALLOCATION","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"EARLY_UNSTAKE_PENALTY","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"LOCKUP_1_YEAR","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"LOCKUP_2_YEARS","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"LOCKUP_3_MONTHS","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"LOCKUP_4_YEARS","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"LOCKUP_6_MONTHS","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"MAX_SUPPLY","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"MULTIPLIER_1_YEAR","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"MULTIPLIER_2_YEARS","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"MULTIPLIER_3_MONTHS","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"MULTIPLIER_4_YEARS","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"MULTIPLIER_6_MONTHS","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"STAKING_REWARD_POOL","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"TRANSFER_FEE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"VESTING_PERIOD","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burn","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"calculateRewards","inputs":[{"type":"address","name":"user","internalType":"address"},{"type":"uint256","name":"stakeIndex","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"calculateVestedAmount","inputs":[{"type":"address","name":"user","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"claimRewards","inputs":[{"type":"uint256","name":"stakeIndex","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getStakedBalance","inputs":[{"type":"address","name":"user","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"remainingRewardPool","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"stake","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"},{"type":"uint256","name":"lockupPeriod","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"amount","internalType":"uint256"},{"type":"uint256","name":"lockupPeriod","internalType":"uint256"},{"type":"uint256","name":"startTime","internalType":"uint256"},{"type":"uint256","name":"accumulatedRewards","internalType":"uint256"}],"name":"stakes","inputs":[{"type":"address","name":"","internalType":"address"},{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalStaked","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"unstake","inputs":[{"type":"uint256","name":"stakeIndex","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"userTotalStaked","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"vestingBalance","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"vestingStartTime","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdrawVested","inputs":[]}]
              

Contract Creation Code

0x608060405234801562000010575f80fd5b506040518060400160405280600981526020017f53616c766174696f6e00000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f53414c560000000000000000000000000000000000000000000000000000000081525081600390816200008e9190620004d0565b508060049081620000a09190620004d0565b5050506001600581905550620000c8306a4e950851be0c2ebf000000620000fd60201b60201c565b620000e5336a0422ca8b0a00a425000000620000fd60201b60201c565b6a4e950851be0c2ebf000000600b81905550620006c5565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200016e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001659062000612565b60405180910390fd5b620001815f83836200026260201b60201c565b8060025f8282546200019491906200065f565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002439190620006aa565b60405180910390a36200025e5f83836200026760201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620002e857607f821691505b602082108103620002fe57620002fd620002a3565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620003627fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000325565b6200036e868362000325565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620003b8620003b2620003ac8462000386565b6200038f565b62000386565b9050919050565b5f819050919050565b620003d38362000398565b620003eb620003e282620003bf565b84845462000331565b825550505050565b5f90565b62000401620003f3565b6200040e818484620003c8565b505050565b5b818110156200043557620004295f82620003f7565b60018101905062000414565b5050565b601f82111562000484576200044e8162000304565b620004598462000316565b8101602085101562000469578190505b62000481620004788562000316565b83018262000413565b50505b505050565b5f82821c905092915050565b5f620004a65f198460080262000489565b1980831691505092915050565b5f620004c0838362000495565b9150826002028217905092915050565b620004db826200026c565b67ffffffffffffffff811115620004f757620004f662000276565b5b620005038254620002d0565b6200051082828562000439565b5f60209050601f83116001811462000546575f841562000531578287015190505b6200053d8582620004b3565b865550620005ac565b601f198416620005568662000304565b5f5b828110156200057f5784890151825560018201915060208501945060208101905062000558565b868310156200059f57848901516200059b601f89168262000495565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620005fa601f83620005b4565b91506200060782620005c4565b602082019050919050565b5f6020820190508181035f8301526200062b81620005ec565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6200066b8262000386565b9150620006788362000386565b925082820190508082111562000693576200069262000632565b5b92915050565b620006a48162000386565b82525050565b5f602082019050620006bf5f83018462000699565b92915050565b6131e880620006d35f395ff3fe608060405234801561000f575f80fd5b506004361061025c575f3560e01c806370a0823111610144578063beb8314c116100c1578063dd62ed3e11610085578063dd62ed3e14610745578063e7a0fb9b14610775578063ea63fb2614610793578063ec2130be146107c3578063f32df791146107e1578063ffa06b2a146107ff5761025c565b8063beb8314c1461069d578063bf4f1066146106cd578063c6d2b9cf146106eb578063c7ba5c4b14610709578063d58051a0146107275761025c565b8063817b1cd211610108578063817b1cd2146105e357806395d89b4114610601578063a457c2d71461061f578063a9059cbb1461064f578063b28bc23a1461067f5761025c565b806370a082311461052b578063719de1ef1461055b5780637b0472f01461058b5780637b25edf1146105a75780637f0c57db146105c55761025c565b80632e17de78116101dd5780633a02a42d116101a15780633a02a42d146104525780633bbb15c71461048257806342966c68146104a057806350990803146104bc578063584b62a1146104da57806367f63bab1461050d5761025c565b80632e17de78146103ac578063313ce567146103c857806332cb6b0c146103e6578063362651921461040457806339509351146104225761025c565b806318160ddd1161022457806318160ddd146102f2578063192399d1146103105780631b5a9e60146103405780631f4531f51461035e57806323b872dd1461037c5761025c565b80630197d9721461026057806306fdde031461027e578063095ea7b31461029c5780630962ef79146102cc5780630ea0783c146102e8575b5f80fd5b61026861082f565b60405161027591906123c6565b60405180910390f35b610286610836565b6040516102939190612469565b60405180910390f35b6102b660048036038101906102b19190612511565b6108c6565b6040516102c39190612569565b60405180910390f35b6102e660048036038101906102e19190612582565b6108e8565b005b6102f0610c1d565b005b6102fa610d2a565b60405161030791906123c6565b60405180910390f35b61032a600480360381019061032591906125ad565b610d33565b60405161033791906123c6565b60405180910390f35b610348610d48565b60405161035591906123c6565b60405180910390f35b610366610d54565b60405161037391906123c6565b60405180910390f35b610396600480360381019061039191906125d8565b610d60565b6040516103a39190612569565b60405180910390f35b6103c660048036038101906103c19190612582565b610e38565b005b6103d06110c7565b6040516103dd9190612643565b60405180910390f35b6103ee6110cf565b6040516103fb91906123c6565b60405180910390f35b61040c6110de565b60405161041991906123c6565b60405180910390f35b61043c60048036038101906104379190612511565b6110e9565b6040516104499190612569565b60405180910390f35b61046c600480360381019061046791906125ad565b61111f565b60405161047991906123c6565b60405180910390f35b61048a611165565b60405161049791906123c6565b60405180910390f35b6104ba60048036038101906104b59190612582565b611174565b005b6104c461125c565b6040516104d191906123c6565b60405180910390f35b6104f460048036038101906104ef9190612511565b611268565b604051610504949392919061265c565b60405180910390f35b6105156112ae565b60405161052291906123c6565b60405180910390f35b610545600480360381019061054091906125ad565b6112b6565b60405161055291906123c6565b60405180910390f35b610575600480360381019061057091906125ad565b6112fb565b60405161058291906123c6565b60405180910390f35b6105a560048036038101906105a0919061269f565b611310565b005b6105af6115f5565b6040516105bc91906123c6565b60405180910390f35b6105cd6115fc565b6040516105da91906123c6565b60405180910390f35b6105eb611608565b6040516105f891906123c6565b60405180910390f35b61060961160e565b6040516106169190612469565b60405180910390f35b61063960048036038101906106349190612511565b61169e565b6040516106469190612569565b60405180910390f35b61066960048036038101906106649190612511565b611713565b6040516106769190612569565b60405180910390f35b6106876117cb565b60405161069491906123c6565b60405180910390f35b6106b760048036038101906106b29190612511565b6117d7565b6040516106c491906123c6565b60405180910390f35b6106d5611934565b6040516106e291906123c6565b60405180910390f35b6106f361193b565b60405161070091906123c6565b60405180910390f35b610711611946565b60405161071e91906123c6565b60405180910390f35b61072f61194e565b60405161073c91906123c6565b60405180910390f35b61075f600480360381019061075a91906126dd565b611956565b60405161076c91906123c6565b60405180910390f35b61077d6119d8565b60405161078a91906123c6565b60405180910390f35b6107ad60048036038101906107a891906125ad565b6119de565b6040516107ba91906123c6565b60405180910390f35b6107cb6119f3565b6040516107d891906123c6565b60405180910390f35b6107e9611a02565b6040516107f691906123c6565b60405180910390f35b610819600480360381019061081491906125ad565b611a0e565b60405161082691906123c6565b60405180910390f35b624f1a0081565b60606003805461084590612748565b80601f016020809104026020016040519081016040528092919081815260200182805461087190612748565b80156108bc5780601f10610893576101008083540402835291602001916108bc565b820191905f5260205f20905b81548152906001019060200180831161089f57829003601f168201915b5050505050905090565b5f806108d0611b9f565b90506108dd818585611ba6565b600191505092915050565b6108f0611d69565b60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490508110610972576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610969906127c2565b60405180910390fd5b61097c3382611db8565b5f60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2082815481106109cc576109cb6127e0565b5b905f5260205f2090600402016003015490505f8111610a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1790612857565b60405180910390fd5b600b54811115610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c906128bf565b60405180910390fd5b80600b5f828254610a76919061290a565b925050819055505f60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208381548110610acd57610acc6127e0565b5b905f5260205f209060040201600301819055508060075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610b2c919061293d565b925050819055504260085f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503373ffffffffffffffffffffffffffffffffffffffff167ffc30cddea38e2bf4d6ea7d3f9ed3b6ad7f176419f4963bd81318067a4aee73fe82604051610bbb91906123c6565b60405180910390a23373ffffffffffffffffffffffffffffffffffffffff167facea123f8434fb380d75d36c9908548ac7b1804b1f1ce4b2396a3e167e64e6a082604051610c0991906123c6565b60405180910390a250610c1a611ed4565b50565b610c25611d69565b5f610c2f33611a0e565b90505f8111610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a906129ba565b60405180910390fd5b8060075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610cbf919061290a565b92505081905550610cd1303383611ede565b3373ffffffffffffffffffffffffffffffffffffffff167f1ac2c07e3ea525a04232f1be6ad5b5441ef9cf47beb764c8a3d7b8d71b63761882604051610d1791906123c6565b60405180910390a250610d28611ed4565b565b5f600254905090565b6007602052805f5260405f205f915090505481565b671bc16d674ec8000081565b67016345785d8a000081565b5f610d69611d69565b5f670de0b6b3a764000066038d7ea4c6800084610d8691906129d8565b610d909190612a46565b90505f8184610d9f919061290a565b9050610dc0863386610db18a33611956565b610dbb919061290a565b611ba6565b610dca868361214a565b610dd5868683611ede565b8573ffffffffffffffffffffffffffffffffffffffff167f1a0bca5ab55a89c60d1dc6fd10b10a05c2f16d3a06f4031e59a39083fbe56a6a83604051610e1b91906123c6565b60405180910390a2600192505050610e31611ed4565b9392505050565b610e40611d69565b60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490508110610ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb9906127c2565b60405180910390fd5b5f60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208281548110610f1257610f116127e0565b5b905f5260205f20906004020190505f815f015411610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c90612ac0565b60405180910390fd5b5f815f015490505f808360010154118015610f92575082600101548360020154610f8f919061293d565b42105b15610fd957670de0b6b3a764000067016345785d8a000083610fb491906129d8565b610fbe9190612a46565b90508082610fcc919061290a565b9150610fd8308261214a565b5b610fe33385611db8565b825f0154600a5f828254610ff7919061290a565b92505081905550825f015460095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461104d919061290a565b925050819055505f835f0181905550611067303384611ede565b3373ffffffffffffffffffffffffffffffffffffffff167f204fccf0d92ed8d48f204adb39b2e81e92bad0dedb93f5716ca9478cfb57de008386846040516110b193929190612ade565b60405180910390a25050506110c4611ed4565b50565b5f6012905090565b6a52b7d2dcc80cd2e400000081565b66038d7ea4c6800081565b5f806110f3611b9f565b90506111148185856111058589611956565b61110f919061293d565b611ba6565b600191505092915050565b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6a4e950851be0c2ebf00000081565b5f81116111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad90612b5d565b60405180910390fd5b806111c0336112b6565b1015611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f890612bc5565b60405180910390fd5b61120b338261214a565b3373ffffffffffffffffffffffffffffffffffffffff167f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df78260405161125191906123c6565b60405180910390a250565b670f43fc2c04ee000081565b6006602052815f5260405f208181548110611281575f80fd5b905f5260205f2090600402015f9150915050805f0154908060010154908060020154908060030154905084565b6301e1338081565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6009602052805f5260405f205f915090505481565b611318611d69565b5f821161135a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135190612b5d565b60405180910390fd5b81611364336112b6565b10156113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139c90612bc5565b60405180910390fd5b816113b03330611956565b10156113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e890612c2d565b60405180910390fd5b5f81148061140157506276a70081145b8061140e575062ed4e0081145b8061141c57506301e1338081145b8061142a57506303c2670081145b806114385750630784ce0081145b611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e90612c95565b60405180910390fd5b611482333084611ede565b60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2060405180608001604052808481526020018381526020014281526020015f815250908060018154018082558091505060019003905f5260205f2090600402015f909190919091505f820151815f0155602082015181600101556040820151816002015560608201518160030155505081600a5f82825461153f919061293d565b925050819055508160095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611592919061293d565b925050819055503373ffffffffffffffffffffffffffffffffffffffff167f1449c6dd7851abc30abf37f57715f492010519147cc2652fbc38202c18a6ee9083836040516115e1929190612cb3565b60405180910390a26115f1611ed4565b5050565b6276a70081565b671158e460913d000081565b600a5481565b60606004805461161d90612748565b80601f016020809104026020016040519081016040528092919081815260200182805461164990612748565b80156116945780601f1061166b57610100808354040283529160200191611694565b820191905f5260205f20905b81548152906001019060200180831161167757829003601f168201915b5050505050905090565b5f806116a8611b9f565b90505f6116b58286611956565b9050838110156116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f190612d4a565b60405180910390fd5b6117078286868403611ba6565b60019250505092915050565b5f61171c611d69565b5f670de0b6b3a764000066038d7ea4c680008461173991906129d8565b6117439190612a46565b90505f8184611752919061290a565b905061175e338361214a565b611769338683611ede565b3373ffffffffffffffffffffffffffffffffffffffff167f1a0bca5ab55a89c60d1dc6fd10b10a05c2f16d3a06f4031e59a39083fbe56a6a836040516117af91906123c6565b60405180910390a26001925050506117c5611ed4565b92915050565b6714d1120d7b16000081565b5f60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490508210611827575f905061192e565b5f60065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208381548110611877576118766127e0565b5b905f5260205f20906004020190505f815f01540361189c57806003015491505061192e565b5f8160020154426118ad919061290a565b90505f6118bd836001015461230d565b90505f6a1a1601fc4ea7109e0000008366f8b0a10e470000865f01546118e391906129d8565b6118ed91906129d8565b6118f79190612a46565b9050670de0b6b3a7640000828261190e91906129d8565b6119189190612a46565b8460030154611927919061293d565b9450505050505b92915050565b62ed4e0081565b66f8b0a10e47000081565b6303c2670081565b630784ce0081565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600b5481565b6008602052805f5260405f205f915090505481565b6a0422ca8b0a00a42500000081565b6729a2241af62c000081565b5f8060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541480611a96575060085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205442105b15611aa3575f9050611b9a565b5f60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205442611aed919061290a565b9050624f1a008110611b3f5760075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054915050611b9a565b624f1a008160075f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b8c91906129d8565b611b969190612a46565b9150505b919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0b90612dd8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7990612e66565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d5c91906123c6565b60405180910390a3505050565b600260055403611dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da590612ece565b60405180910390fd5b6002600581905550565b60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050811015611ed057611e0a82826117d7565b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208281548110611e5957611e586127e0565b5b905f5260205f209060040201600301819055504260065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208281548110611ebc57611ebb6127e0565b5b905f5260205f209060040201600201819055505b5050565b6001600581905550565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4390612f5c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb190612fea565b60405180910390fd5b611fc58383836123a4565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f90613078565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161213191906123c6565b60405180910390a36121448484846123a9565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036121b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121af90613106565b60405180910390fd5b6121c3825f836123a4565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223d90613194565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122f591906123c6565b60405180910390a3612308835f846123a9565b505050565b5f6276a700820361232857670f43fc2c04ee0000905061239f565b62ed4e00820361234257671158e460913d0000905061239f565b6301e13380820361235d576714d1120d7b160000905061239f565b6303c26700820361237857671bc16d674ec80000905061239f565b630784ce008203612393576729a2241af62c0000905061239f565b670de0b6b3a764000090505b919050565b505050565b505050565b5f819050919050565b6123c0816123ae565b82525050565b5f6020820190506123d95f8301846123b7565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156124165780820151818401526020810190506123fb565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61243b826123df565b61244581856123e9565b93506124558185602086016123f9565b61245e81612421565b840191505092915050565b5f6020820190508181035f8301526124818184612431565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6124b68261248d565b9050919050565b6124c6816124ac565b81146124d0575f80fd5b50565b5f813590506124e1816124bd565b92915050565b6124f0816123ae565b81146124fa575f80fd5b50565b5f8135905061250b816124e7565b92915050565b5f806040838503121561252757612526612489565b5b5f612534858286016124d3565b9250506020612545858286016124fd565b9150509250929050565b5f8115159050919050565b6125638161254f565b82525050565b5f60208201905061257c5f83018461255a565b92915050565b5f6020828403121561259757612596612489565b5b5f6125a4848285016124fd565b91505092915050565b5f602082840312156125c2576125c1612489565b5b5f6125cf848285016124d3565b91505092915050565b5f805f606084860312156125ef576125ee612489565b5b5f6125fc868287016124d3565b935050602061260d868287016124d3565b925050604061261e868287016124fd565b9150509250925092565b5f60ff82169050919050565b61263d81612628565b82525050565b5f6020820190506126565f830184612634565b92915050565b5f60808201905061266f5f8301876123b7565b61267c60208301866123b7565b61268960408301856123b7565b61269660608301846123b7565b95945050505050565b5f80604083850312156126b5576126b4612489565b5b5f6126c2858286016124fd565b92505060206126d3858286016124fd565b9150509250929050565b5f80604083850312156126f3576126f2612489565b5b5f612700858286016124d3565b9250506020612711858286016124d3565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061275f57607f821691505b6020821081036127725761277161271b565b5b50919050565b7f496e76616c6964207374616b6520696e646578000000000000000000000000005f82015250565b5f6127ac6013836123e9565b91506127b782612778565b602082019050919050565b5f6020820190508181035f8301526127d9816127a0565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e6f207265776172647320617661696c61626c650000000000000000000000005f82015250565b5f6128416014836123e9565b915061284c8261280d565b602082019050919050565b5f6020820190508181035f83015261286e81612835565b9050919050565b7f496e73756666696369656e742072657761726420706f6f6c00000000000000005f82015250565b5f6128a96018836123e9565b91506128b482612875565b602082019050919050565b5f6020820190508181035f8301526128d68161289d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612914826123ae565b915061291f836123ae565b9250828203905081811115612937576129366128dd565b5b92915050565b5f612947826123ae565b9150612952836123ae565b925082820190508082111561296a576129696128dd565b5b92915050565b7f4e6f2076657374656420616d6f756e7420617661696c61626c650000000000005f82015250565b5f6129a4601a836123e9565b91506129af82612970565b602082019050919050565b5f6020820190508181035f8301526129d181612998565b9050919050565b5f6129e2826123ae565b91506129ed836123ae565b92508282026129fb816123ae565b91508282048414831517612a1257612a116128dd565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612a50826123ae565b9150612a5b836123ae565b925082612a6b57612a6a612a19565b5b828204905092915050565b7f4e6f207374616b656420616d6f756e74000000000000000000000000000000005f82015250565b5f612aaa6010836123e9565b9150612ab582612a76565b602082019050919050565b5f6020820190508181035f830152612ad781612a9e565b9050919050565b5f606082019050612af15f8301866123b7565b612afe60208301856123b7565b612b0b60408301846123b7565b949350505050565b7f416d6f756e74206d7573742062652067726561746572207468616e20300000005f82015250565b5f612b47601d836123e9565b9150612b5282612b13565b602082019050919050565b5f6020820190508181035f830152612b7481612b3b565b9050919050565b7f496e73756666696369656e742062616c616e63650000000000000000000000005f82015250565b5f612baf6014836123e9565b9150612bba82612b7b565b602082019050919050565b5f6020820190508181035f830152612bdc81612ba3565b9050919050565b7f496e73756666696369656e7420616c6c6f77616e6365000000000000000000005f82015250565b5f612c176016836123e9565b9150612c2282612be3565b602082019050919050565b5f6020820190508181035f830152612c4481612c0b565b9050919050565b7f496e76616c6964206c6f636b757020706572696f6400000000000000000000005f82015250565b5f612c7f6015836123e9565b9150612c8a82612c4b565b602082019050919050565b5f6020820190508181035f830152612cac81612c73565b9050919050565b5f604082019050612cc65f8301856123b7565b612cd360208301846123b7565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612d346025836123e9565b9150612d3f82612cda565b604082019050919050565b5f6020820190508181035f830152612d6181612d28565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612dc26024836123e9565b9150612dcd82612d68565b604082019050919050565b5f6020820190508181035f830152612def81612db6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612e506022836123e9565b9150612e5b82612df6565b604082019050919050565b5f6020820190508181035f830152612e7d81612e44565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f612eb8601f836123e9565b9150612ec382612e84565b602082019050919050565b5f6020820190508181035f830152612ee581612eac565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612f466025836123e9565b9150612f5182612eec565b604082019050919050565b5f6020820190508181035f830152612f7381612f3a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612fd46023836123e9565b9150612fdf82612f7a565b604082019050919050565b5f6020820190508181035f83015261300181612fc8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6130626026836123e9565b915061306d82613008565b604082019050919050565b5f6020820190508181035f83015261308f81613056565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6130f06021836123e9565b91506130fb82613096565b604082019050919050565b5f6020820190508181035f83015261311d816130e4565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f61317e6022836123e9565b915061318982613124565b604082019050919050565b5f6020820190508181035f8301526131ab81613172565b905091905056fea26469706673582212207b630c9bf196ad0cb6a48ae0c46fbb31280f3c11cc7f23a4f4fe1de2f0dadb4564736f6c63430008140033

Deployed ByteCode

0x608060405234801561000f575f80fd5b506004361061025c575f3560e01c806370a0823111610144578063beb8314c116100c1578063dd62ed3e11610085578063dd62ed3e14610745578063e7a0fb9b14610775578063ea63fb2614610793578063ec2130be146107c3578063f32df791146107e1578063ffa06b2a146107ff5761025c565b8063beb8314c1461069d578063bf4f1066146106cd578063c6d2b9cf146106eb578063c7ba5c4b14610709578063d58051a0146107275761025c565b8063817b1cd211610108578063817b1cd2146105e357806395d89b4114610601578063a457c2d71461061f578063a9059cbb1461064f578063b28bc23a1461067f5761025c565b806370a082311461052b578063719de1ef1461055b5780637b0472f01461058b5780637b25edf1146105a75780637f0c57db146105c55761025c565b80632e17de78116101dd5780633a02a42d116101a15780633a02a42d146104525780633bbb15c71461048257806342966c68146104a057806350990803146104bc578063584b62a1146104da57806367f63bab1461050d5761025c565b80632e17de78146103ac578063313ce567146103c857806332cb6b0c146103e6578063362651921461040457806339509351146104225761025c565b806318160ddd1161022457806318160ddd146102f2578063192399d1146103105780631b5a9e60146103405780631f4531f51461035e57806323b872dd1461037c5761025c565b80630197d9721461026057806306fdde031461027e578063095ea7b31461029c5780630962ef79146102cc5780630ea0783c146102e8575b5f80fd5b61026861082f565b60405161027591906123c6565b60405180910390f35b610286610836565b6040516102939190612469565b60405180910390f35b6102b660048036038101906102b19190612511565b6108c6565b6040516102c39190612569565b60405180910390f35b6102e660048036038101906102e19190612582565b6108e8565b005b6102f0610c1d565b005b6102fa610d2a565b60405161030791906123c6565b60405180910390f35b61032a600480360381019061032591906125ad565b610d33565b60405161033791906123c6565b60405180910390f35b610348610d48565b60405161035591906123c6565b60405180910390f35b610366610d54565b60405161037391906123c6565b60405180910390f35b610396600480360381019061039191906125d8565b610d60565b6040516103a39190612569565b60405180910390f35b6103c660048036038101906103c19190612582565b610e38565b005b6103d06110c7565b6040516103dd9190612643565b60405180910390f35b6103ee6110cf565b6040516103fb91906123c6565b60405180910390f35b61040c6110de565b60405161041991906123c6565b60405180910390f35b61043c60048036038101906104379190612511565b6110e9565b6040516104499190612569565b60405180910390f35b61046c600480360381019061046791906125ad565b61111f565b60405161047991906123c6565b60405180910390f35b61048a611165565b60405161049791906123c6565b60405180910390f35b6104ba60048036038101906104b59190612582565b611174565b005b6104c461125c565b6040516104d191906123c6565b60405180910390f35b6104f460048036038101906104ef9190612511565b611268565b604051610504949392919061265c565b60405180910390f35b6105156112ae565b60405161052291906123c6565b60405180910390f35b610545600480360381019061054091906125ad565b6112b6565b60405161055291906123c6565b60405180910390f35b610575600480360381019061057091906125ad565b6112fb565b60405161058291906123c6565b60405180910390f35b6105a560048036038101906105a0919061269f565b611310565b005b6105af6115f5565b6040516105bc91906123c6565b60405180910390f35b6105cd6115fc565b6040516105da91906123c6565b60405180910390f35b6105eb611608565b6040516105f891906123c6565b60405180910390f35b61060961160e565b6040516106169190612469565b60405180910390f35b61063960048036038101906106349190612511565b61169e565b6040516106469190612569565b60405180910390f35b61066960048036038101906106649190612511565b611713565b6040516106769190612569565b60405180910390f35b6106876117cb565b60405161069491906123c6565b60405180910390f35b6106b760048036038101906106b29190612511565b6117d7565b6040516106c491906123c6565b60405180910390f35b6106d5611934565b6040516106e291906123c6565b60405180910390f35b6106f361193b565b60405161070091906123c6565b60405180910390f35b610711611946565b60405161071e91906123c6565b60405180910390f35b61072f61194e565b60405161073c91906123c6565b60405180910390f35b61075f600480360381019061075a91906126dd565b611956565b60405161076c91906123c6565b60405180910390f35b61077d6119d8565b60405161078a91906123c6565b60405180910390f35b6107ad60048036038101906107a891906125ad565b6119de565b6040516107ba91906123c6565b60405180910390f35b6107cb6119f3565b6040516107d891906123c6565b60405180910390f35b6107e9611a02565b6040516107f691906123c6565b60405180910390f35b610819600480360381019061081491906125ad565b611a0e565b60405161082691906123c6565b60405180910390f35b624f1a0081565b60606003805461084590612748565b80601f016020809104026020016040519081016040528092919081815260200182805461087190612748565b80156108bc5780601f10610893576101008083540402835291602001916108bc565b820191905f5260205f20905b81548152906001019060200180831161089f57829003601f168201915b5050505050905090565b5f806108d0611b9f565b90506108dd818585611ba6565b600191505092915050565b6108f0611d69565b60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490508110610972576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610969906127c2565b60405180910390fd5b61097c3382611db8565b5f60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2082815481106109cc576109cb6127e0565b5b905f5260205f2090600402016003015490505f8111610a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1790612857565b60405180910390fd5b600b54811115610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c906128bf565b60405180910390fd5b80600b5f828254610a76919061290a565b925050819055505f60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208381548110610acd57610acc6127e0565b5b905f5260205f209060040201600301819055508060075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610b2c919061293d565b925050819055504260085f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503373ffffffffffffffffffffffffffffffffffffffff167ffc30cddea38e2bf4d6ea7d3f9ed3b6ad7f176419f4963bd81318067a4aee73fe82604051610bbb91906123c6565b60405180910390a23373ffffffffffffffffffffffffffffffffffffffff167facea123f8434fb380d75d36c9908548ac7b1804b1f1ce4b2396a3e167e64e6a082604051610c0991906123c6565b60405180910390a250610c1a611ed4565b50565b610c25611d69565b5f610c2f33611a0e565b90505f8111610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a906129ba565b60405180910390fd5b8060075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610cbf919061290a565b92505081905550610cd1303383611ede565b3373ffffffffffffffffffffffffffffffffffffffff167f1ac2c07e3ea525a04232f1be6ad5b5441ef9cf47beb764c8a3d7b8d71b63761882604051610d1791906123c6565b60405180910390a250610d28611ed4565b565b5f600254905090565b6007602052805f5260405f205f915090505481565b671bc16d674ec8000081565b67016345785d8a000081565b5f610d69611d69565b5f670de0b6b3a764000066038d7ea4c6800084610d8691906129d8565b610d909190612a46565b90505f8184610d9f919061290a565b9050610dc0863386610db18a33611956565b610dbb919061290a565b611ba6565b610dca868361214a565b610dd5868683611ede565b8573ffffffffffffffffffffffffffffffffffffffff167f1a0bca5ab55a89c60d1dc6fd10b10a05c2f16d3a06f4031e59a39083fbe56a6a83604051610e1b91906123c6565b60405180910390a2600192505050610e31611ed4565b9392505050565b610e40611d69565b60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490508110610ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb9906127c2565b60405180910390fd5b5f60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208281548110610f1257610f116127e0565b5b905f5260205f20906004020190505f815f015411610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c90612ac0565b60405180910390fd5b5f815f015490505f808360010154118015610f92575082600101548360020154610f8f919061293d565b42105b15610fd957670de0b6b3a764000067016345785d8a000083610fb491906129d8565b610fbe9190612a46565b90508082610fcc919061290a565b9150610fd8308261214a565b5b610fe33385611db8565b825f0154600a5f828254610ff7919061290a565b92505081905550825f015460095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461104d919061290a565b925050819055505f835f0181905550611067303384611ede565b3373ffffffffffffffffffffffffffffffffffffffff167f204fccf0d92ed8d48f204adb39b2e81e92bad0dedb93f5716ca9478cfb57de008386846040516110b193929190612ade565b60405180910390a25050506110c4611ed4565b50565b5f6012905090565b6a52b7d2dcc80cd2e400000081565b66038d7ea4c6800081565b5f806110f3611b9f565b90506111148185856111058589611956565b61110f919061293d565b611ba6565b600191505092915050565b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6a4e950851be0c2ebf00000081565b5f81116111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad90612b5d565b60405180910390fd5b806111c0336112b6565b1015611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f890612bc5565b60405180910390fd5b61120b338261214a565b3373ffffffffffffffffffffffffffffffffffffffff167f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df78260405161125191906123c6565b60405180910390a250565b670f43fc2c04ee000081565b6006602052815f5260405f208181548110611281575f80fd5b905f5260205f2090600402015f9150915050805f0154908060010154908060020154908060030154905084565b6301e1338081565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6009602052805f5260405f205f915090505481565b611318611d69565b5f821161135a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135190612b5d565b60405180910390fd5b81611364336112b6565b10156113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139c90612bc5565b60405180910390fd5b816113b03330611956565b10156113f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e890612c2d565b60405180910390fd5b5f81148061140157506276a70081145b8061140e575062ed4e0081145b8061141c57506301e1338081145b8061142a57506303c2670081145b806114385750630784ce0081145b611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e90612c95565b60405180910390fd5b611482333084611ede565b60065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2060405180608001604052808481526020018381526020014281526020015f815250908060018154018082558091505060019003905f5260205f2090600402015f909190919091505f820151815f0155602082015181600101556040820151816002015560608201518160030155505081600a5f82825461153f919061293d565b925050819055508160095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611592919061293d565b925050819055503373ffffffffffffffffffffffffffffffffffffffff167f1449c6dd7851abc30abf37f57715f492010519147cc2652fbc38202c18a6ee9083836040516115e1929190612cb3565b60405180910390a26115f1611ed4565b5050565b6276a70081565b671158e460913d000081565b600a5481565b60606004805461161d90612748565b80601f016020809104026020016040519081016040528092919081815260200182805461164990612748565b80156116945780601f1061166b57610100808354040283529160200191611694565b820191905f5260205f20905b81548152906001019060200180831161167757829003601f168201915b5050505050905090565b5f806116a8611b9f565b90505f6116b58286611956565b9050838110156116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f190612d4a565b60405180910390fd5b6117078286868403611ba6565b60019250505092915050565b5f61171c611d69565b5f670de0b6b3a764000066038d7ea4c680008461173991906129d8565b6117439190612a46565b90505f8184611752919061290a565b905061175e338361214a565b611769338683611ede565b3373ffffffffffffffffffffffffffffffffffffffff167f1a0bca5ab55a89c60d1dc6fd10b10a05c2f16d3a06f4031e59a39083fbe56a6a836040516117af91906123c6565b60405180910390a26001925050506117c5611ed4565b92915050565b6714d1120d7b16000081565b5f60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490508210611827575f905061192e565b5f60065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208381548110611877576118766127e0565b5b905f5260205f20906004020190505f815f01540361189c57806003015491505061192e565b5f8160020154426118ad919061290a565b90505f6118bd836001015461230d565b90505f6a1a1601fc4ea7109e0000008366f8b0a10e470000865f01546118e391906129d8565b6118ed91906129d8565b6118f79190612a46565b9050670de0b6b3a7640000828261190e91906129d8565b6119189190612a46565b8460030154611927919061293d565b9450505050505b92915050565b62ed4e0081565b66f8b0a10e47000081565b6303c2670081565b630784ce0081565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600b5481565b6008602052805f5260405f205f915090505481565b6a0422ca8b0a00a42500000081565b6729a2241af62c000081565b5f8060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541480611a96575060085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205442105b15611aa3575f9050611b9a565b5f60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205442611aed919061290a565b9050624f1a008110611b3f5760075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054915050611b9a565b624f1a008160075f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b8c91906129d8565b611b969190612a46565b9150505b919050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0b90612dd8565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7990612e66565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d5c91906123c6565b60405180910390a3505050565b600260055403611dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da590612ece565b60405180910390fd5b6002600581905550565b60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050811015611ed057611e0a82826117d7565b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208281548110611e5957611e586127e0565b5b905f5260205f209060040201600301819055504260065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208281548110611ebc57611ebb6127e0565b5b905f5260205f209060040201600201819055505b5050565b6001600581905550565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4390612f5c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb190612fea565b60405180910390fd5b611fc58383836123a4565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f90613078565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161213191906123c6565b60405180910390a36121448484846123a9565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036121b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121af90613106565b60405180910390fd5b6121c3825f836123a4565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223d90613194565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122f591906123c6565b60405180910390a3612308835f846123a9565b505050565b5f6276a700820361232857670f43fc2c04ee0000905061239f565b62ed4e00820361234257671158e460913d0000905061239f565b6301e13380820361235d576714d1120d7b160000905061239f565b6303c26700820361237857671bc16d674ec80000905061239f565b630784ce008203612393576729a2241af62c0000905061239f565b670de0b6b3a764000090505b919050565b505050565b505050565b5f819050919050565b6123c0816123ae565b82525050565b5f6020820190506123d95f8301846123b7565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156124165780820151818401526020810190506123fb565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61243b826123df565b61244581856123e9565b93506124558185602086016123f9565b61245e81612421565b840191505092915050565b5f6020820190508181035f8301526124818184612431565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6124b68261248d565b9050919050565b6124c6816124ac565b81146124d0575f80fd5b50565b5f813590506124e1816124bd565b92915050565b6124f0816123ae565b81146124fa575f80fd5b50565b5f8135905061250b816124e7565b92915050565b5f806040838503121561252757612526612489565b5b5f612534858286016124d3565b9250506020612545858286016124fd565b9150509250929050565b5f8115159050919050565b6125638161254f565b82525050565b5f60208201905061257c5f83018461255a565b92915050565b5f6020828403121561259757612596612489565b5b5f6125a4848285016124fd565b91505092915050565b5f602082840312156125c2576125c1612489565b5b5f6125cf848285016124d3565b91505092915050565b5f805f606084860312156125ef576125ee612489565b5b5f6125fc868287016124d3565b935050602061260d868287016124d3565b925050604061261e868287016124fd565b9150509250925092565b5f60ff82169050919050565b61263d81612628565b82525050565b5f6020820190506126565f830184612634565b92915050565b5f60808201905061266f5f8301876123b7565b61267c60208301866123b7565b61268960408301856123b7565b61269660608301846123b7565b95945050505050565b5f80604083850312156126b5576126b4612489565b5b5f6126c2858286016124fd565b92505060206126d3858286016124fd565b9150509250929050565b5f80604083850312156126f3576126f2612489565b5b5f612700858286016124d3565b9250506020612711858286016124d3565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061275f57607f821691505b6020821081036127725761277161271b565b5b50919050565b7f496e76616c6964207374616b6520696e646578000000000000000000000000005f82015250565b5f6127ac6013836123e9565b91506127b782612778565b602082019050919050565b5f6020820190508181035f8301526127d9816127a0565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e6f207265776172647320617661696c61626c650000000000000000000000005f82015250565b5f6128416014836123e9565b915061284c8261280d565b602082019050919050565b5f6020820190508181035f83015261286e81612835565b9050919050565b7f496e73756666696369656e742072657761726420706f6f6c00000000000000005f82015250565b5f6128a96018836123e9565b91506128b482612875565b602082019050919050565b5f6020820190508181035f8301526128d68161289d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612914826123ae565b915061291f836123ae565b9250828203905081811115612937576129366128dd565b5b92915050565b5f612947826123ae565b9150612952836123ae565b925082820190508082111561296a576129696128dd565b5b92915050565b7f4e6f2076657374656420616d6f756e7420617661696c61626c650000000000005f82015250565b5f6129a4601a836123e9565b91506129af82612970565b602082019050919050565b5f6020820190508181035f8301526129d181612998565b9050919050565b5f6129e2826123ae565b91506129ed836123ae565b92508282026129fb816123ae565b91508282048414831517612a1257612a116128dd565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612a50826123ae565b9150612a5b836123ae565b925082612a6b57612a6a612a19565b5b828204905092915050565b7f4e6f207374616b656420616d6f756e74000000000000000000000000000000005f82015250565b5f612aaa6010836123e9565b9150612ab582612a76565b602082019050919050565b5f6020820190508181035f830152612ad781612a9e565b9050919050565b5f606082019050612af15f8301866123b7565b612afe60208301856123b7565b612b0b60408301846123b7565b949350505050565b7f416d6f756e74206d7573742062652067726561746572207468616e20300000005f82015250565b5f612b47601d836123e9565b9150612b5282612b13565b602082019050919050565b5f6020820190508181035f830152612b7481612b3b565b9050919050565b7f496e73756666696369656e742062616c616e63650000000000000000000000005f82015250565b5f612baf6014836123e9565b9150612bba82612b7b565b602082019050919050565b5f6020820190508181035f830152612bdc81612ba3565b9050919050565b7f496e73756666696369656e7420616c6c6f77616e6365000000000000000000005f82015250565b5f612c176016836123e9565b9150612c2282612be3565b602082019050919050565b5f6020820190508181035f830152612c4481612c0b565b9050919050565b7f496e76616c6964206c6f636b757020706572696f6400000000000000000000005f82015250565b5f612c7f6015836123e9565b9150612c8a82612c4b565b602082019050919050565b5f6020820190508181035f830152612cac81612c73565b9050919050565b5f604082019050612cc65f8301856123b7565b612cd360208301846123b7565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612d346025836123e9565b9150612d3f82612cda565b604082019050919050565b5f6020820190508181035f830152612d6181612d28565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612dc26024836123e9565b9150612dcd82612d68565b604082019050919050565b5f6020820190508181035f830152612def81612db6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612e506022836123e9565b9150612e5b82612df6565b604082019050919050565b5f6020820190508181035f830152612e7d81612e44565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f612eb8601f836123e9565b9150612ec382612e84565b602082019050919050565b5f6020820190508181035f830152612ee581612eac565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612f466025836123e9565b9150612f5182612eec565b604082019050919050565b5f6020820190508181035f830152612f7381612f3a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612fd46023836123e9565b9150612fdf82612f7a565b604082019050919050565b5f6020820190508181035f83015261300181612fc8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6130626026836123e9565b915061306d82613008565b604082019050919050565b5f6020820190508181035f83015261308f81613056565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6130f06021836123e9565b91506130fb82613096565b604082019050919050565b5f6020820190508181035f83015261311d816130e4565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f61317e6022836123e9565b915061318982613124565b604082019050919050565b5f6020820190508181035f8301526131ab81613172565b905091905056fea26469706673582212207b630c9bf196ad0cb6a48ae0c46fbb31280f3c11cc7f23a4f4fe1de2f0dadb4564736f6c63430008140033