false
true
0

Contract Address Details

0xfFB45A15C59260e57250442E6Db8BED1dca84B70

Contract Name
PulseBitcoinLockNFTRewards
Creator
0xed2330–6745cf at 0x6637e6–df433b
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
10,087 Transactions
Transfers
0 Transfers
Gas Used
1,343,979,322
Last Balance Update
25981727
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:
PulseBitcoinLockNFTRewards




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




EVM Version
london




Verified at
2026-02-07T09:36:36.589298Z

Constructor Arguments

000000000000000000000000d55fe0a9b00bb8c2691fc5b30a99496b7a7c36650000000000000000000000001f06e2bb54d4d08b0ebd01be66db2f7ccb9c814b00000000000000000000000095379ac1c3e210a2a14dcc73597175a763d9426d

Arg [0] (address) : 0xd55fe0a9b00bb8c2691fc5b30a99496b7a7c3665
Arg [1] (address) : 0x1f06e2bb54d4d08b0ebd01be66db2f7ccb9c814b
Arg [2] (address) : 0x95379ac1c3e210a2a14dcc73597175a763d9426d

              

contracts/PulseBitcoinLockRewards.sol

// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

interface PulseBitcoinLockNFTInterface {
    function ownerOf(uint256 tokenId) external view returns (address);

    function lockTime(uint256 tokenId) external view returns (uint256);

    function tokenIdsToAmounts(uint256 tokenId) external view returns (uint256);
}

contract PulseBitcoinLockNFTRewards is Ownable {
    address public CARN;
    address public immutable waatcaAddress;
    address public immutable bulkClaimer;
    PulseBitcoinLockNFTInterface pulseBitcoinLockNftContract;
    address public pulseBitcoinLockNftContractAddress;
    mapping(uint256 => bool) public tokenIdsToRegistered; // True if they registered their NFT for rewards...will be able to withdraw rewards 1 day after registering
    mapping(uint256 => uint256) public tokenIdsToLastWithdrawalDay; // records the last day they withdrew rewards
    mapping(uint256 => uint256) public tokenIdsToDailyRewardAmount; // records their daily rewards amount
    mapping(uint256 => uint256) public tokenIdsToEndRewardsDay; // records their last day they can get rewards (max 1000 after registering)...(the smaller of 1000 or their actual end day measured from registration day)
    uint256 internal constant LAUNCH_TIME = 1680048000; // Wednesday, March 29, 2023 12:00:00 AM
    uint256 public totalFreeCarnWithdrawn;

    constructor(address _waatcaAddress, address _pulseBitcoinLockNftContractAddress, address _bulkClaimer) {
        waatcaAddress = _waatcaAddress;
        pulseBitcoinLockNftContractAddress = _pulseBitcoinLockNftContractAddress;
        pulseBitcoinLockNftContract = PulseBitcoinLockNFTInterface(pulseBitcoinLockNftContractAddress);
        bulkClaimer = _bulkClaimer;
    }

    function setCarnAddress(address _rewardTokenCARN) public onlyOwner {
        CARN = _rewardTokenCARN;
    }

    function withdrawRewards(uint256 tokenId) public {
        address tokenOwner = pulseBitcoinLockNftContract.ownerOf(tokenId);

        require(
            msg.sender == tokenOwner || msg.sender == bulkClaimer,
            "You are not the owner of this NFT, or the bulk claimer address"
        );
        require(
            tokenIdsToRegistered[tokenId],
            "You must register your NFT for rewards first"
        );
        require(
            tokenIdsToLastWithdrawalDay[tokenId] < tokenIdsToEndRewardsDay[tokenId],
            "You have already received all possible rewards for this NFT"
        );
        require(
            _currentDay() > tokenIdsToLastWithdrawalDay[tokenId],
            "Cannot withdraw twice on the same day, try again tomorrow"
        );

        uint256 totalDaysOfRewardsLeft = tokenIdsToEndRewardsDay[tokenId] - tokenIdsToLastWithdrawalDay[tokenId];
        uint256 numOfDaysSinceLastWithdrawal = _currentDay() - tokenIdsToLastWithdrawalDay[tokenId];

        // if numOfDaysSinceLastWithdrawal is greater than (their EndRewardsDay-LastWithdrawalDay) then set numOfDaysSinceLastWithdrawal to (their EndRewardsDay-LastWithdrawalDay)
        if (numOfDaysSinceLastWithdrawal > totalDaysOfRewardsLeft) {
            // in this scenario they are past the end of their lock up period.
            // meaning they locked up for 500 days, and its now day 540 for example (or 501)
            // in that case we only want to give them rewards from their last withdrawal day, up until the last day they are eligible for rewards (day 500)
            // so if their last withdrawal day was day 400, we would only give them 100 days worth of rewards and not 140
            numOfDaysSinceLastWithdrawal = totalDaysOfRewardsLeft;
        }


        IERC20(CARN).transfer(tokenOwner, tokenIdsToDailyRewardAmount[tokenId] * numOfDaysSinceLastWithdrawal);
        IERC20(CARN).transfer(waatcaAddress, tokenIdsToDailyRewardAmount[tokenId] * numOfDaysSinceLastWithdrawal);
        totalFreeCarnWithdrawn += tokenIdsToDailyRewardAmount[tokenId] * numOfDaysSinceLastWithdrawal;

        tokenIdsToLastWithdrawalDay[tokenId] = _currentDay();
    }

    function registerNftForRewards(uint256 tokenId) public {
        address tokenOwner = pulseBitcoinLockNftContract.ownerOf(tokenId);

        require(
            msg.sender == tokenOwner || msg.sender == bulkClaimer,
            "You are not the owner of this NFT, shame on you!"
        );

        require(!tokenIdsToRegistered[tokenId], "It seems you have already registered this NFT, go enjoy the rest of the carnival!");

        // get the '(the end day of their lock period)' for this tokenId
        uint256 endOfLockPeriod = pulseBitcoinLockNftContract.lockTime(tokenId);

        // calculate numDaysLockedUpFromRegistration (the end day of their lock period) - (the day they are registering...today) // set this to 1000 if its greater than 1000
        uint256 numDaysLockedUpFromRegistration = ((endOfLockPeriod - LAUNCH_TIME) / 1 days) - _currentDay();
        uint256 numDaysLockedUpFromRegistrationForRewards = numDaysLockedUpFromRegistration;

        if (numDaysLockedUpFromRegistrationForRewards > 1000) {
            // this makes locking more than 1000 PLSB for more than 1000 days, not beneficial in terms of getting rewards
            // we still want to let the user collect rewards everyday throughout their whole lock period, we keep the value of numDaysLockedUpFromRegistration
            // for the calculation of tokenIdsToEndRewardsDay later in this function
            numDaysLockedUpFromRegistrationForRewards = 1000;
        }

        uint256 amountPLSBLockedUp = pulseBitcoinLockNftContract.tokenIdsToAmounts(tokenId);

        if (amountPLSBLockedUp > 1000) {
            // this makes locking more than 1000 plsb for more than 1000 days, not beneficial in terms of getting rewards
            amountPLSBLockedUp = 1000;
        }

        // calculate this nft's tokenIdsToDailyRewardAmount (amount of PLSB locked * (numDaysLockedUpSinceRegistration / 1000) * 0.0015)
        tokenIdsToDailyRewardAmount[tokenId] =
        1_000_000_000_000 * (amountPLSBLockedUp * numDaysLockedUpFromRegistrationForRewards * 15) / 10_000_000;

        // set his registered value as TRUE (for that first require statement at the top of the function)
        tokenIdsToRegistered[tokenId] = true;

        // set his tokenIdsToLastWithdrawalDay to the _curentDay
        // even though this nft never had a real withdrawal, set the lastWithdrwalDay to today as a starting point to measure future withdrawals from
        tokenIdsToLastWithdrawalDay[tokenId] = _currentDay();

        // send the user his daily allotement of reward token for 1 days worth
        // as 1) a reward for registering, also it informs the user how much theyll be recieving per day
        if (tokenId < 1343){
            // give a bonus to the first 500 NFT's created
            // partially beneveolent and partially because people lost out who locked up earlier before the launch of this project
            IERC20(CARN).transfer(tokenOwner, tokenIdsToDailyRewardAmount[tokenId] * (1350-tokenId)/10 );
            IERC20(CARN).transfer(waatcaAddress, tokenIdsToDailyRewardAmount[tokenId] * (1350-tokenId)/10 );
            totalFreeCarnWithdrawn += tokenIdsToDailyRewardAmount[tokenId] * (1350-tokenId)/10;
        } else {
            IERC20(CARN).transfer(tokenOwner, tokenIdsToDailyRewardAmount[tokenId] * 7);
            IERC20(CARN).transfer(waatcaAddress, tokenIdsToDailyRewardAmount[tokenId] * 7);
            totalFreeCarnWithdrawn += tokenIdsToDailyRewardAmount[tokenId];
        }

        // set tokenIdsToEndRewardsDay to currentday + numDaysLockedUpFromRegistration (max 1000 days from registration)
        tokenIdsToEndRewardsDay[tokenId] = _currentDay() + numDaysLockedUpFromRegistration;
    }

    function currentDay() external view returns (uint256) {
        return _currentDay();
    }

    function _currentDay() internal view returns (uint256) {
        return (block.timestamp - LAUNCH_TIME) / 1 days;
    }
}
        

/IERC20.sol

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

/

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

/

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

Compiler Settings

{"remappings":[],"optimizer":{"runs":200,"enabled":false},"metadata":{"bytecodeHash":"ipfs"},"libraries":{},"evmVersion":"london","compilationTarget":{"contracts/PulseBitcoinLockRewards.sol":"PulseBitcoinLockNFTRewards"}}
              

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_waatcaAddress","internalType":"address"},{"type":"address","name":"_pulseBitcoinLockNftContractAddress","internalType":"address"},{"type":"address","name":"_bulkClaimer","internalType":"address"}]},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"CARN","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"bulkClaimer","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"currentDay","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"pulseBitcoinLockNftContractAddress","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"registerNftForRewards","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setCarnAddress","inputs":[{"type":"address","name":"_rewardTokenCARN","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenIdsToDailyRewardAmount","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenIdsToEndRewardsDay","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenIdsToLastWithdrawalDay","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"tokenIdsToRegistered","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalFreeCarnWithdrawn","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"waatcaAddress","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdrawRewards","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]}]
              

Contract Creation Code

0x60c06040523480156200001157600080fd5b5060405162001f8938038062001f898339818101604052810190620000379190620002a2565b620000576200004b6200016c60201b60201c565b6200017460201b60201c565b8273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050505050620002fe565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200026a826200023d565b9050919050565b6200027c816200025d565b81146200028857600080fd5b50565b6000815190506200029c8162000271565b92915050565b600080600060608486031215620002be57620002bd62000238565b5b6000620002ce868287016200028b565b9350506020620002e1868287016200028b565b9250506040620002f4868287016200028b565b9150509250925092565b60805160a051611c4262000347600039600081816103130152818161040c0152610cc801526000818161084d01528181610a5a01528181610fe4015261117b0152611c426000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063b9419a1b11610097578063e23a83dd11610066578063e23a83dd14610289578063eea293a7146102a7578063f2fde38b146102c5578063f99102d6146102e157610100565b8063b9419a1b146101db578063cb8fcaf7146101f9578063d5f5927814610229578063d958a6591461025957610100565b806388271cf8116100d357806388271cf8146101675780638da5cb5b146101835780639342c8f4146101a1578063a1053fbd146101bd57610100565b80630b844ddb1461010557806317b34c85146101235780635c9302c91461013f578063715018a61461015d575b600080fd5b61010d610311565b60405161011a91906113f0565b60405180910390f35b61013d60048036038101906101389190611446565b610335565b005b610147610b59565b6040516101549190611482565b60405180910390f35b610165610b68565b005b610181600480360381019061017c91906114c9565b610b7c565b005b61018b610bc8565b60405161019891906113f0565b60405180910390f35b6101bb60048036038101906101b69190611446565b610bf1565b005b6101c56110df565b6040516101d29190611482565b60405180910390f35b6101e36110e5565b6040516101f091906113f0565b60405180910390f35b610213600480360381019061020e9190611446565b61110b565b6040516102209190611482565b60405180910390f35b610243600480360381019061023e9190611446565b611123565b6040516102509190611482565b60405180910390f35b610273600480360381019061026e9190611446565b61113b565b6040516102809190611482565b60405180910390f35b610291611153565b60405161029e91906113f0565b60405180910390f35b6102af611179565b6040516102bc91906113f0565b60405180910390f35b6102df60048036038101906102da91906114c9565b61119d565b005b6102fb60048036038101906102f69190611446565b611220565b6040516103089190611511565b60405180910390f35b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016103929190611482565b602060405180830381865afa1580156103af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103d39190611541565b90508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061045a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610499576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610490906115f1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900460ff16156104fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f1906116a9565b60405180910390fd5b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e8b23f66846040518263ffffffff1660e01b81526004016105579190611482565b602060405180830381865afa158015610574573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061059891906116de565b905060006105a4611240565b620151806364237f80846105b8919061173a565b6105c2919061179d565b6105cc919061173a565b905060008190506103e88111156105e3576103e890505b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635ea73972876040518263ffffffff1660e01b81526004016106409190611482565b602060405180830381865afa15801561065d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061068191906116de565b90506103e8811115610693576103e890505b62989680600f83836106a591906117ce565b6106af91906117ce565b64e8d4a510006106bf91906117ce565b6106c9919061179d565b600660008881526020019081526020016000208190555060016004600088815260200190815260200160002060006101000a81548160ff021916908315150217905550610714611240565b600560008881526020019081526020016000208190555061053f86101561095a57600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb86600a89610546610784919061173a565b600660008c8152602001908152602001600020546107a291906117ce565b6107ac919061179d565b6040518363ffffffff1660e01b81526004016107c9929190611810565b6020604051808303816000875af11580156107e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061080c9190611865565b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb7f0000000000000000000000000000000000000000000000000000000000000000600a8961054661087c919061173a565b600660008c81526020019081526020016000205461089a91906117ce565b6108a4919061179d565b6040518363ffffffff1660e01b81526004016108c1929190611810565b6020604051808303816000875af11580156108e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109049190611865565b50600a86610546610915919061173a565b600660008981526020019081526020016000205461093391906117ce565b61093d919061179d565b6008600082825461094e9190611892565b92505081905550610b27565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb866007600660008b8152602001908152602001600020546109b991906117ce565b6040518363ffffffff1660e01b81526004016109d6929190611810565b6020604051808303816000875af11580156109f5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a199190611865565b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb7f00000000000000000000000000000000000000000000000000000000000000006007600660008b815260200190815260200160002054610a9991906117ce565b6040518363ffffffff1660e01b8152600401610ab6929190611810565b6020604051808303816000875af1158015610ad5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af99190611865565b50600660008781526020019081526020016000205460086000828254610b1f9190611892565b925050819055505b82610b30611240565b610b3a9190611892565b6007600088815260200190815260200160002081905550505050505050565b6000610b63611240565b905090565b610b70611265565b610b7a60006112e3565b565b610b84611265565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610c4e9190611482565b602060405180830381865afa158015610c6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8f9190611541565b90508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610d1657507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90611938565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900460ff16610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac906119ca565b60405180910390fd5b6007600083815260200190815260200160002054600560008481526020019081526020016000205410610e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1490611a5c565b60405180910390fd5b6005600083815260200190815260200160002054610e39611240565b11610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7090611aee565b60405180910390fd5b600060056000848152602001908152602001600020546007600085815260200190815260200160002054610ead919061173a565b905060006005600085815260200190815260200160002054610ecd611240565b610ed7919061173a565b905081811115610ee5578190505b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836006600089815260200190815260200160002054610f4391906117ce565b6040518363ffffffff1660e01b8152600401610f60929190611810565b6020604051808303816000875af1158015610f7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa39190611865565b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb7f000000000000000000000000000000000000000000000000000000000000000083600660008981526020019081526020016000205461102291906117ce565b6040518363ffffffff1660e01b815260040161103f929190611810565b6020604051808303816000875af115801561105e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110829190611865565b508060066000868152602001908152602001600020546110a291906117ce565b600860008282546110b39190611892565b925050819055506110c2611240565b600560008681526020019081526020016000208190555050505050565b60085481565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60076020528060005260406000206000915090505481565b60066020528060005260406000206000915090505481565b60056020528060005260406000206000915090505481565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6111a5611265565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b90611b80565b60405180910390fd5b61121d816112e3565b50565b60046020528060005260406000206000915054906101000a900460ff1681565b6000620151806364237f8042611256919061173a565b611260919061179d565b905090565b61126d6113a7565b73ffffffffffffffffffffffffffffffffffffffff1661128b610bc8565b73ffffffffffffffffffffffffffffffffffffffff16146112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d890611bec565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113da826113af565b9050919050565b6113ea816113cf565b82525050565b600060208201905061140560008301846113e1565b92915050565b600080fd5b6000819050919050565b61142381611410565b811461142e57600080fd5b50565b6000813590506114408161141a565b92915050565b60006020828403121561145c5761145b61140b565b5b600061146a84828501611431565b91505092915050565b61147c81611410565b82525050565b60006020820190506114976000830184611473565b92915050565b6114a6816113cf565b81146114b157600080fd5b50565b6000813590506114c38161149d565b92915050565b6000602082840312156114df576114de61140b565b5b60006114ed848285016114b4565b91505092915050565b60008115159050919050565b61150b816114f6565b82525050565b60006020820190506115266000830184611502565b92915050565b60008151905061153b8161149d565b92915050565b6000602082840312156115575761155661140b565b5b60006115658482850161152c565b91505092915050565b600082825260208201905092915050565b7f596f7520617265206e6f7420746865206f776e6572206f662074686973204e4660008201527f542c207368616d65206f6e20796f752100000000000000000000000000000000602082015250565b60006115db60308361156e565b91506115e68261157f565b604082019050919050565b6000602082019050818103600083015261160a816115ce565b9050919050565b7f4974207365656d7320796f75206861766520616c72656164792072656769737460008201527f657265642074686973204e46542c20676f20656e6a6f7920746865207265737460208201527f206f6620746865206361726e6976616c21000000000000000000000000000000604082015250565b600061169360518361156e565b915061169e82611611565b606082019050919050565b600060208201905081810360008301526116c281611686565b9050919050565b6000815190506116d88161141a565b92915050565b6000602082840312156116f4576116f361140b565b5b6000611702848285016116c9565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061174582611410565b915061175083611410565b92508282039050818111156117685761176761170b565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006117a882611410565b91506117b383611410565b9250826117c3576117c261176e565b5b828204905092915050565b60006117d982611410565b91506117e483611410565b92508282026117f281611410565b915082820484148315176118095761180861170b565b5b5092915050565b600060408201905061182560008301856113e1565b6118326020830184611473565b9392505050565b611842816114f6565b811461184d57600080fd5b50565b60008151905061185f81611839565b92915050565b60006020828403121561187b5761187a61140b565b5b600061188984828501611850565b91505092915050565b600061189d82611410565b91506118a883611410565b92508282019050808211156118c0576118bf61170b565b5b92915050565b7f596f7520617265206e6f7420746865206f776e6572206f662074686973204e4660008201527f542c206f72207468652062756c6b20636c61696d657220616464726573730000602082015250565b6000611922603e8361156e565b915061192d826118c6565b604082019050919050565b6000602082019050818103600083015261195181611915565b9050919050565b7f596f75206d75737420726567697374657220796f7572204e465420666f72207260008201527f6577617264732066697273740000000000000000000000000000000000000000602082015250565b60006119b4602c8361156e565b91506119bf82611958565b604082019050919050565b600060208201905081810360008301526119e3816119a7565b9050919050565b7f596f75206861766520616c726561647920726563656976656420616c6c20706f60008201527f737369626c65207265776172647320666f722074686973204e46540000000000602082015250565b6000611a46603b8361156e565b9150611a51826119ea565b604082019050919050565b60006020820190508181036000830152611a7581611a39565b9050919050565b7f43616e6e6f74207769746864726177207477696365206f6e207468652073616d60008201527f65206461792c2074727920616761696e20746f6d6f72726f7700000000000000602082015250565b6000611ad860398361156e565b9150611ae382611a7c565b604082019050919050565b60006020820190508181036000830152611b0781611acb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b6a60268361156e565b9150611b7582611b0e565b604082019050919050565b60006020820190508181036000830152611b9981611b5d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611bd660208361156e565b9150611be182611ba0565b602082019050919050565b60006020820190508181036000830152611c0581611bc9565b905091905056fea26469706673582212207065802105e4c03a585977c992891d6d11662a1fb7e5a45a26919e0a2dd4817a64736f6c63430008110033000000000000000000000000d55fe0a9b00bb8c2691fc5b30a99496b7a7c36650000000000000000000000001f06e2bb54d4d08b0ebd01be66db2f7ccb9c814b00000000000000000000000095379ac1c3e210a2a14dcc73597175a763d9426d

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063b9419a1b11610097578063e23a83dd11610066578063e23a83dd14610289578063eea293a7146102a7578063f2fde38b146102c5578063f99102d6146102e157610100565b8063b9419a1b146101db578063cb8fcaf7146101f9578063d5f5927814610229578063d958a6591461025957610100565b806388271cf8116100d357806388271cf8146101675780638da5cb5b146101835780639342c8f4146101a1578063a1053fbd146101bd57610100565b80630b844ddb1461010557806317b34c85146101235780635c9302c91461013f578063715018a61461015d575b600080fd5b61010d610311565b60405161011a91906113f0565b60405180910390f35b61013d60048036038101906101389190611446565b610335565b005b610147610b59565b6040516101549190611482565b60405180910390f35b610165610b68565b005b610181600480360381019061017c91906114c9565b610b7c565b005b61018b610bc8565b60405161019891906113f0565b60405180910390f35b6101bb60048036038101906101b69190611446565b610bf1565b005b6101c56110df565b6040516101d29190611482565b60405180910390f35b6101e36110e5565b6040516101f091906113f0565b60405180910390f35b610213600480360381019061020e9190611446565b61110b565b6040516102209190611482565b60405180910390f35b610243600480360381019061023e9190611446565b611123565b6040516102509190611482565b60405180910390f35b610273600480360381019061026e9190611446565b61113b565b6040516102809190611482565b60405180910390f35b610291611153565b60405161029e91906113f0565b60405180910390f35b6102af611179565b6040516102bc91906113f0565b60405180910390f35b6102df60048036038101906102da91906114c9565b61119d565b005b6102fb60048036038101906102f69190611446565b611220565b6040516103089190611511565b60405180910390f35b7f00000000000000000000000095379ac1c3e210a2a14dcc73597175a763d9426d81565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016103929190611482565b602060405180830381865afa1580156103af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103d39190611541565b90508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061045a57507f00000000000000000000000095379ac1c3e210a2a14dcc73597175a763d9426d73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610499576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610490906115f1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900460ff16156104fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f1906116a9565b60405180910390fd5b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e8b23f66846040518263ffffffff1660e01b81526004016105579190611482565b602060405180830381865afa158015610574573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061059891906116de565b905060006105a4611240565b620151806364237f80846105b8919061173a565b6105c2919061179d565b6105cc919061173a565b905060008190506103e88111156105e3576103e890505b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635ea73972876040518263ffffffff1660e01b81526004016106409190611482565b602060405180830381865afa15801561065d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061068191906116de565b90506103e8811115610693576103e890505b62989680600f83836106a591906117ce565b6106af91906117ce565b64e8d4a510006106bf91906117ce565b6106c9919061179d565b600660008881526020019081526020016000208190555060016004600088815260200190815260200160002060006101000a81548160ff021916908315150217905550610714611240565b600560008881526020019081526020016000208190555061053f86101561095a57600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb86600a89610546610784919061173a565b600660008c8152602001908152602001600020546107a291906117ce565b6107ac919061179d565b6040518363ffffffff1660e01b81526004016107c9929190611810565b6020604051808303816000875af11580156107e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061080c9190611865565b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb7f000000000000000000000000d55fe0a9b00bb8c2691fc5b30a99496b7a7c3665600a8961054661087c919061173a565b600660008c81526020019081526020016000205461089a91906117ce565b6108a4919061179d565b6040518363ffffffff1660e01b81526004016108c1929190611810565b6020604051808303816000875af11580156108e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109049190611865565b50600a86610546610915919061173a565b600660008981526020019081526020016000205461093391906117ce565b61093d919061179d565b6008600082825461094e9190611892565b92505081905550610b27565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb866007600660008b8152602001908152602001600020546109b991906117ce565b6040518363ffffffff1660e01b81526004016109d6929190611810565b6020604051808303816000875af11580156109f5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a199190611865565b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb7f000000000000000000000000d55fe0a9b00bb8c2691fc5b30a99496b7a7c36656007600660008b815260200190815260200160002054610a9991906117ce565b6040518363ffffffff1660e01b8152600401610ab6929190611810565b6020604051808303816000875af1158015610ad5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af99190611865565b50600660008781526020019081526020016000205460086000828254610b1f9190611892565b925050819055505b82610b30611240565b610b3a9190611892565b6007600088815260200190815260200160002081905550505050505050565b6000610b63611240565b905090565b610b70611265565b610b7a60006112e3565b565b610b84611265565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610c4e9190611482565b602060405180830381865afa158015610c6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8f9190611541565b90508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610d1657507f00000000000000000000000095379ac1c3e210a2a14dcc73597175a763d9426d73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610d55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4c90611938565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900460ff16610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac906119ca565b60405180910390fd5b6007600083815260200190815260200160002054600560008481526020019081526020016000205410610e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1490611a5c565b60405180910390fd5b6005600083815260200190815260200160002054610e39611240565b11610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7090611aee565b60405180910390fd5b600060056000848152602001908152602001600020546007600085815260200190815260200160002054610ead919061173a565b905060006005600085815260200190815260200160002054610ecd611240565b610ed7919061173a565b905081811115610ee5578190505b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836006600089815260200190815260200160002054610f4391906117ce565b6040518363ffffffff1660e01b8152600401610f60929190611810565b6020604051808303816000875af1158015610f7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa39190611865565b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb7f000000000000000000000000d55fe0a9b00bb8c2691fc5b30a99496b7a7c366583600660008981526020019081526020016000205461102291906117ce565b6040518363ffffffff1660e01b815260040161103f929190611810565b6020604051808303816000875af115801561105e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110829190611865565b508060066000868152602001908152602001600020546110a291906117ce565b600860008282546110b39190611892565b925050819055506110c2611240565b600560008681526020019081526020016000208190555050505050565b60085481565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60076020528060005260406000206000915090505481565b60066020528060005260406000206000915090505481565b60056020528060005260406000206000915090505481565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000d55fe0a9b00bb8c2691fc5b30a99496b7a7c366581565b6111a5611265565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b90611b80565b60405180910390fd5b61121d816112e3565b50565b60046020528060005260406000206000915054906101000a900460ff1681565b6000620151806364237f8042611256919061173a565b611260919061179d565b905090565b61126d6113a7565b73ffffffffffffffffffffffffffffffffffffffff1661128b610bc8565b73ffffffffffffffffffffffffffffffffffffffff16146112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d890611bec565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113da826113af565b9050919050565b6113ea816113cf565b82525050565b600060208201905061140560008301846113e1565b92915050565b600080fd5b6000819050919050565b61142381611410565b811461142e57600080fd5b50565b6000813590506114408161141a565b92915050565b60006020828403121561145c5761145b61140b565b5b600061146a84828501611431565b91505092915050565b61147c81611410565b82525050565b60006020820190506114976000830184611473565b92915050565b6114a6816113cf565b81146114b157600080fd5b50565b6000813590506114c38161149d565b92915050565b6000602082840312156114df576114de61140b565b5b60006114ed848285016114b4565b91505092915050565b60008115159050919050565b61150b816114f6565b82525050565b60006020820190506115266000830184611502565b92915050565b60008151905061153b8161149d565b92915050565b6000602082840312156115575761155661140b565b5b60006115658482850161152c565b91505092915050565b600082825260208201905092915050565b7f596f7520617265206e6f7420746865206f776e6572206f662074686973204e4660008201527f542c207368616d65206f6e20796f752100000000000000000000000000000000602082015250565b60006115db60308361156e565b91506115e68261157f565b604082019050919050565b6000602082019050818103600083015261160a816115ce565b9050919050565b7f4974207365656d7320796f75206861766520616c72656164792072656769737460008201527f657265642074686973204e46542c20676f20656e6a6f7920746865207265737460208201527f206f6620746865206361726e6976616c21000000000000000000000000000000604082015250565b600061169360518361156e565b915061169e82611611565b606082019050919050565b600060208201905081810360008301526116c281611686565b9050919050565b6000815190506116d88161141a565b92915050565b6000602082840312156116f4576116f361140b565b5b6000611702848285016116c9565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061174582611410565b915061175083611410565b92508282039050818111156117685761176761170b565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006117a882611410565b91506117b383611410565b9250826117c3576117c261176e565b5b828204905092915050565b60006117d982611410565b91506117e483611410565b92508282026117f281611410565b915082820484148315176118095761180861170b565b5b5092915050565b600060408201905061182560008301856113e1565b6118326020830184611473565b9392505050565b611842816114f6565b811461184d57600080fd5b50565b60008151905061185f81611839565b92915050565b60006020828403121561187b5761187a61140b565b5b600061188984828501611850565b91505092915050565b600061189d82611410565b91506118a883611410565b92508282019050808211156118c0576118bf61170b565b5b92915050565b7f596f7520617265206e6f7420746865206f776e6572206f662074686973204e4660008201527f542c206f72207468652062756c6b20636c61696d657220616464726573730000602082015250565b6000611922603e8361156e565b915061192d826118c6565b604082019050919050565b6000602082019050818103600083015261195181611915565b9050919050565b7f596f75206d75737420726567697374657220796f7572204e465420666f72207260008201527f6577617264732066697273740000000000000000000000000000000000000000602082015250565b60006119b4602c8361156e565b91506119bf82611958565b604082019050919050565b600060208201905081810360008301526119e3816119a7565b9050919050565b7f596f75206861766520616c726561647920726563656976656420616c6c20706f60008201527f737369626c65207265776172647320666f722074686973204e46540000000000602082015250565b6000611a46603b8361156e565b9150611a51826119ea565b604082019050919050565b60006020820190508181036000830152611a7581611a39565b9050919050565b7f43616e6e6f74207769746864726177207477696365206f6e207468652073616d60008201527f65206461792c2074727920616761696e20746f6d6f72726f7700000000000000602082015250565b6000611ad860398361156e565b9150611ae382611a7c565b604082019050919050565b60006020820190508181036000830152611b0781611acb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b6a60268361156e565b9150611b7582611b0e565b604082019050919050565b60006020820190508181036000830152611b9981611b5d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611bd660208361156e565b9150611be182611ba0565b602082019050919050565b60006020820190508181036000830152611c0581611bc9565b905091905056fea26469706673582212207065802105e4c03a585977c992891d6d11662a1fb7e5a45a26919e0a2dd4817a64736f6c63430008110033