Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- SuperFirst
- Optimization enabled
- true
- Compiler version
- v0.8.20+commit.a1b79de6
- Optimization runs
- 200
- EVM Version
- london
- Verified at
- 2024-05-20T14:20:45.340254Z
Constructor Arguments
0x000000000000000000000000112c37126c035e1de37346f5b6005494ef80506e
Arg [0] (address) : 0x112c37126c035e1de37346f5b6005494ef80506e
Contract source code
pragma solidity 0.8.20; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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); } } library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert FailedInnerCall(); } } } 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; /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); 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 if (_status == ENTERED) { revert ReentrancyGuardReentrantCall(); } // 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; } } 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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); } interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon * a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or * {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon * a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the address zero. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } interface IBankroll { function sendFTN(address _to, uint256 _amount) external; function sendERC20(IERC20 _token, address _to, uint256 _amount) external; function sendERC721(IERC721 _token, address _to, uint256 _id) external; } // SPDX-License-Identifier: MIT /** * @title SuperFirst * @dev A simple betting contract where players can bet on boxes, and if their bet matches the randomly selected box, they win a prize. */ contract SuperFirst is Ownable, ReentrancyGuard { using Address for address payable; IBankroll public bankrollContract; uint256 private salt; uint256 public minBet; uint256 public maxBet; uint256 public winCoefficient; uint256 public numberOfBoxes; uint256 public constant COEFFICIENT_DENOMINATOR = 100; struct Bet { uint256 blockNumber; uint256 amount; uint256 boxNumber; uint256 salt; address player; } mapping(address => Bet[]) public bets; event RewardDistributed(uint256 amount); /** * @dev Emitted when a player places a bet. * @param player The address of the player placing the bet. * @param blockNumber The block number at which the bet is placed. * @param amount The amount of FTNs sent with the bet. * @param boxNumber The player's selected box number. */ event BetPlaced( address indexed player, uint256 blockNumber, uint256 amount, uint256 boxNumber, uint256 salt ); /** * @dev Emitted when a player claims their prize. * @param player The address of the player claiming the prize. * @param winAmount The amount of FTN won by the player. */ event PrizeClaimed(address indexed player, uint256 winAmount); modifier notZero(uint256 number) { require(number > 0, "Number must be greater than zero"); _; } constructor(IBankroll _bankrollContract) Ownable(msg.sender) { minBet = 1 * 10 ** 18; maxBet = 10 * 10 ** 18; numberOfBoxes = 5; winCoefficient = numberOfBoxes * COEFFICIENT_DENOMINATOR; bankrollContract = _bankrollContract; } receive() external payable {} /** * @dev Withdraws the FTN balance from the contract. * @param _amount The amount of FTN to withdraw. */ function withdrawFTN(uint256 _amount) external onlyOwner { payable(msg.sender).sendValue(_amount); } /** * @dev Sets the address of the Bankroll contract. * @param _bankrollContract The address of the Bankroll contract to be set. * @notice Only the owner of this contract can set the Bankroll contract address. * @dev Reverts if the provided Bankroll contract address is zero. */ function setBankrollContract( IBankroll _bankrollContract ) external onlyOwner { require( address(_bankrollContract) != address(0), "Invalid bankroll contract address" ); bankrollContract = _bankrollContract; } /** * @dev Sets the minimum bet amount. * @param _minBet The new minimum bet amount. */ function setMinBet(uint256 _minBet) external onlyOwner notZero(_minBet) { minBet = _minBet; } /** * @dev Sets the maximum bet amount. * @param _maxBet The new maximum bet amount. */ function setMaxBet(uint256 _maxBet) external onlyOwner notZero(_maxBet) { maxBet = _maxBet; } /** * @dev Sets the win coefficient. * @param _winCoefficient The new win coefficient. */ function setWinCoefficient( uint256 _winCoefficient ) external onlyOwner notZero(_winCoefficient) { winCoefficient = _winCoefficient; } /** * @dev Sets the number of boxes available for betting. * @param _numberOfBoxes The new number of boxes. */ function setNumberOfBoxes( uint256 _numberOfBoxes ) external onlyOwner notZero(_numberOfBoxes) { numberOfBoxes = _numberOfBoxes; } /** * @dev Allows a player to place a bet on a box. * @param _boxNumber The player's selected box number. */ function play(uint256 _boxNumber) external payable nonReentrant { require( address(bankrollContract).balance >= (msg.value * winCoefficient) / COEFFICIENT_DENOMINATOR, "Insufficient funds" ); require( _boxNumber > 0 && _boxNumber <= numberOfBoxes, "Incorrect bet number" ); require( msg.value >= minBet && msg.value <= maxBet, "Incorrect bet amount" ); payable(address(bankrollContract)).sendValue(msg.value); distributeReward(msg.sender); bets[msg.sender].push( Bet(block.number, msg.value, _boxNumber, salt, msg.sender) ); emit BetPlaced(msg.sender, block.number, msg.value, _boxNumber, salt); salt++; } /** * @dev Allows a player to claim their prize. */ function getPrize() external nonReentrant { uint256 winAmount = calculateTotalWin(msg.sender); require(winAmount > 0, "You have not won"); delete bets[msg.sender]; bankrollContract.sendFTN(msg.sender, winAmount); emit PrizeClaimed(msg.sender, winAmount); } function distributeReward(address _player) public { if ( bets[_player].length == 0 || bets[_player][0].blockNumber == block.number ) { return; } uint256 totalWin; for (uint256 i = 0; i < bets[_player].length; i++) { totalWin += calculateWin(_player, i); } delete bets[_player]; if (totalWin > 0) { bankrollContract.sendFTN(_player, totalWin); emit RewardDistributed(totalWin); } } /** * @dev Retrieves the bets placed by a player. * @param _player The address of the player. * @return An array of Bet structs representing the player's bets. */ function getPlayerBets( address _player ) external view returns (Bet[] memory) { return bets[_player]; } /** * @dev Calculates the total prize amount for a player. * @param _player The address of the player. * @return The total prize amount. */ function calculateTotalWin(address _player) public view returns (uint256) { uint256 totalWin; for (uint256 i = 0; i < bets[_player].length; i++) { totalWin += calculateWin(_player, i); } return totalWin; } /** * @dev Calculates the prize for player's specific bet. * @param _player The address of the player. * @param _betIndex The index of the bet in the player's array of bets. * @return The amount of prize for the bet. */ function calculateWin( address _player, uint256 _betIndex ) public view returns (uint256) { Bet storage _bet = bets[_player][_betIndex]; uint256 winNum = getRand(_bet.blockNumber, _bet.salt, _player); if (_bet.boxNumber == winNum) { return (_bet.amount * winCoefficient) / COEFFICIENT_DENOMINATOR; } else { return 0; } } /** * @dev Estimates the potential reward for a given bet amount. * @param _amount The amount of FTN staked in the bet. * @return The estimated reward based on the bet amount and the global win coefficient. * @notice This function provides an estimate of the potential reward for a bet * based on the specified amount of bet and the win coefficient stated in this smart contract. * The estimate does not represent the actual reward claimable by the player. * To claim the actual reward, use the 'getPrize' function after the bet's outcome is determined. * @dev The win coefficient used for the calculation is set by the contract owner. */ function estimatePotentialReward( uint256 _amount ) public view returns (uint256) { return (_amount * winCoefficient) / COEFFICIENT_DENOMINATOR; } /** * @dev Generates a random number based on the hash of the past block. * @param _blockNumber The block number to use for generation of a random number. * @return The random number. */ function getRand( uint256 _blockNumber, uint256 _salt, address _player ) internal view returns (uint256) { require(block.number > _blockNumber, "Block number is out of range"); if (_blockNumber + 250 < block.number) { return 0; } return (uint256( keccak256( abi.encodePacked((blockhash(_blockNumber)), _salt, _player) ) ) % numberOfBoxes) + 1; } /** * @dev Checks if a bet is a winning bet and calculates the potential prize. * @param _blockHash The hash of the block at which the bet was placed. * @param _boxNumber The player's selected box number. * @param _betAmount The amount of FTN staked in the bet. * @return The potential prize based on the bet outcome. * @dev The win coefficient used for the calculation is set by the contract owner. */ function checkGameResult( bytes32 _blockHash, uint256 _boxNumber, uint256 _betAmount, uint256 _salt, address _player ) external view returns (uint256) { uint256 winNum = (uint256( keccak256(abi.encodePacked(_blockHash, _salt, _player)) ) % numberOfBoxes) + 1; if (winNum == _boxNumber) { return (_betAmount * winCoefficient) / COEFFICIENT_DENOMINATOR; } else { return 0; } } }
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_bankrollContract","internalType":"contract IBankroll"}]},{"type":"error","name":"AddressInsufficientBalance","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"error","name":"FailedInnerCall","inputs":[]},{"type":"error","name":"OwnableInvalidOwner","inputs":[{"type":"address","name":"owner","internalType":"address"}]},{"type":"error","name":"OwnableUnauthorizedAccount","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"error","name":"ReentrancyGuardReentrantCall","inputs":[]},{"type":"event","name":"BetPlaced","inputs":[{"type":"address","name":"player","internalType":"address","indexed":true},{"type":"uint256","name":"blockNumber","internalType":"uint256","indexed":false},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false},{"type":"uint256","name":"boxNumber","internalType":"uint256","indexed":false},{"type":"uint256","name":"salt","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"PrizeClaimed","inputs":[{"type":"address","name":"player","internalType":"address","indexed":true},{"type":"uint256","name":"winAmount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"RewardDistributed","inputs":[{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"COEFFICIENT_DENOMINATOR","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IBankroll"}],"name":"bankrollContract","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"blockNumber","internalType":"uint256"},{"type":"uint256","name":"amount","internalType":"uint256"},{"type":"uint256","name":"boxNumber","internalType":"uint256"},{"type":"uint256","name":"salt","internalType":"uint256"},{"type":"address","name":"player","internalType":"address"}],"name":"bets","inputs":[{"type":"address","name":"","internalType":"address"},{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"calculateTotalWin","inputs":[{"type":"address","name":"_player","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"calculateWin","inputs":[{"type":"address","name":"_player","internalType":"address"},{"type":"uint256","name":"_betIndex","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"checkGameResult","inputs":[{"type":"bytes32","name":"_blockHash","internalType":"bytes32"},{"type":"uint256","name":"_boxNumber","internalType":"uint256"},{"type":"uint256","name":"_betAmount","internalType":"uint256"},{"type":"uint256","name":"_salt","internalType":"uint256"},{"type":"address","name":"_player","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"distributeReward","inputs":[{"type":"address","name":"_player","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"estimatePotentialReward","inputs":[{"type":"uint256","name":"_amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"tuple[]","name":"","internalType":"struct SuperFirst.Bet[]","components":[{"type":"uint256","name":"blockNumber","internalType":"uint256"},{"type":"uint256","name":"amount","internalType":"uint256"},{"type":"uint256","name":"boxNumber","internalType":"uint256"},{"type":"uint256","name":"salt","internalType":"uint256"},{"type":"address","name":"player","internalType":"address"}]}],"name":"getPlayerBets","inputs":[{"type":"address","name":"_player","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"getPrize","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxBet","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"minBet","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"numberOfBoxes","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"payable","outputs":[],"name":"play","inputs":[{"type":"uint256","name":"_boxNumber","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setBankrollContract","inputs":[{"type":"address","name":"_bankrollContract","internalType":"contract IBankroll"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMaxBet","inputs":[{"type":"uint256","name":"_maxBet","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setMinBet","inputs":[{"type":"uint256","name":"_minBet","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setNumberOfBoxes","inputs":[{"type":"uint256","name":"_numberOfBoxes","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setWinCoefficient","inputs":[{"type":"uint256","name":"_winCoefficient","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"winCoefficient","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdrawFTN","inputs":[{"type":"uint256","name":"_amount","internalType":"uint256"}]},{"type":"receive","stateMutability":"payable"}]
Contract Creation Code
0x608060405234801561001057600080fd5b506040516113c63803806113c683398101604081905261002f91610106565b338061005557604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b61005e816100b6565b5060018055670de0b6b3a7640000600455678ac7230489e800006005908155600781905561008e90606490610136565b600655600280546001600160a01b0319166001600160a01b0392909216919091179055610161565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020828403121561011857600080fd5b81516001600160a01b038116811461012f57600080fd5b9392505050565b808202811582820484141761015b57634e487b7160e01b600052601160045260246000fd5b92915050565b611256806101706000396000f3fe60806040526004361061014f5760003560e01c806388ea41b9116100b6578063c34f6b0d1161006f578063c34f6b0d146103b2578063e17af317146103c7578063e9d5e3ad146103e7578063eaf07c8c146103fd578063f2fde38b1461042a578063fb9213ff1461044a57600080fd5b806388ea41b9146102f55780638da5cb5b1461031557806390e50774146103475780639619367d14610367578063998724421461037d578063b97e707d1461039257600080fd5b806352c759911161010857806352c75991146102575780635a8c8a4a1461027757806365f05d861461028d5780636898f82b146102ad578063715018a6146102c0578063881eff1e146102d557600080fd5b8063092193ab1461015b5780630f69632c1461017d5780632e5b21681461019d57806337fc0904146101c65780633a8aa684146101e65780634a39ec901461020657600080fd5b3661015657005b600080fd5b34801561016757600080fd5b5061017b610176366004611018565b61046a565b005b34801561018957600080fd5b5061017b610198366004611035565b6105e7565b3480156101a957600080fd5b506101b360055481565b6040519081526020015b60405180910390f35b3480156101d257600080fd5b5061017b6101e1366004611018565b61061f565b3480156101f257600080fd5b5061017b610201366004611035565b6106a9565b34801561021257600080fd5b5061022661022136600461104e565b6106be565b6040805195865260208601949094529284019190915260608301526001600160a01b0316608082015260a0016101bd565b34801561026357600080fd5b506101b361027236600461107a565b610715565b34801561028357600080fd5b506101b360065481565b34801561029957600080fd5b506101b36102a8366004611035565b6107bb565b61017b6102bb366004611035565b6107dd565b3480156102cc57600080fd5b5061017b610a14565b3480156102e157600080fd5b5061017b6102f0366004611035565b610a28565b34801561030157600080fd5b5061017b610310366004611035565b610a57565b34801561032157600080fd5b506000546001600160a01b03165b6040516001600160a01b0390911681526020016101bd565b34801561035357600080fd5b5061017b610362366004611035565b610a86565b34801561037357600080fd5b506101b360045481565b34801561038957600080fd5b506101b3606481565b34801561039e57600080fd5b506101b36103ad36600461104e565b610ab5565b3480156103be57600080fd5b5061017b610b46565b3480156103d357600080fd5b5060025461032f906001600160a01b031681565b3480156103f357600080fd5b506101b360075481565b34801561040957600080fd5b5061041d610418366004611018565b610c59565b6040516101bd91906110c7565b34801561043657600080fd5b5061017b610445366004611018565b610d03565b34801561045657600080fd5b506101b3610465366004611018565b610d3e565b6001600160a01b03811660009081526008602052604090205415806104c757506001600160a01b038116600090815260086020526040812080544392906104b3576104b361113e565b906000526020600020906005020160000154145b156104cf5750565b6000805b6001600160a01b03831660009081526008602052604090205481101561051b576104fd8382610ab5565b610507908361116a565b9150806105138161117d565b9150506104d3565b506001600160a01b038216600090815260086020526040812061053d91610fa8565b80156105e357600254604051635961857d60e11b81526001600160a01b038481166004830152602482018490529091169063b2c30afa90604401600060405180830381600087803b15801561059157600080fd5b505af11580156105a5573d6000803e3d6000fd5b505050507f04944120d2e185fc95ba63f3ca24c385ec4c5215a801c8766c96486d7fc4ed8e816040516105da91815260200190565b60405180910390a15b5050565b6105ef610d93565b80600081116106195760405162461bcd60e51b815260040161061090611196565b60405180910390fd5b50600755565b610627610d93565b6001600160a01b0381166106875760405162461bcd60e51b815260206004820152602160248201527f496e76616c69642062616e6b726f6c6c20636f6e7472616374206164647265736044820152607360f81b6064820152608401610610565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6106b1610d93565b6106bb3382610dc0565b50565b600860205281600052604060002081815481106106da57600080fd5b60009182526020909120600590910201805460018201546002830154600384015460049094015492955090935091906001600160a01b031685565b60008060075487858560405160200161075393929190928352602083019190915260601b6bffffffffffffffffffffffff1916604082015260540190565b6040516020818303038152906040528051906020012060001c61077691906111e1565b61078190600161116a565b90508581036107ac5760646006548661079a91906111f5565b6107a4919061120c565b9150506107b2565b60009150505b95945050505050565b60006064600654836107cd91906111f5565b6107d7919061120c565b92915050565b6107e5610e5c565b6064600654346107f591906111f5565b6107ff919061120c565b6002546001600160a01b031631101561084f5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610610565b60008111801561086157506007548111155b6108a45760405162461bcd60e51b815260206004820152601460248201527324b731b7b93932b1ba103132ba10373ab6b132b960611b6044820152606401610610565b60045434101580156108b857506005543411155b6108fb5760405162461bcd60e51b8152602060048201526014602482015273125b98dbdc9c9958dd0818995d08185b5bdd5b9d60621b6044820152606401610610565b600254610911906001600160a01b031634610dc0565b61091a3361046a565b336000818152600860209081526040808320815160a08101835243808252348286018181528386018a815260038054606080880191825260808089018e81528a5460018082018d559b8f529d8d902099516005909e029099019c8d559451988c0198909855915160028b01559051898201559351600490980180546001600160a01b0319166001600160a01b039099169890981790975591548451918252948101919091529182018690528101919091527f935a8686694e2b5cc90f63054b327255f6fb92db3acd6d98c5a707d4987e93e1910160405180910390a260038054906000610a068361117d565b91905055506106bb60018055565b610a1c610d93565b610a266000610e86565b565b610a30610d93565b8060008111610a515760405162461bcd60e51b815260040161061090611196565b50600555565b610a5f610d93565b8060008111610a805760405162461bcd60e51b815260040161061090611196565b50600455565b610a8e610d93565b8060008111610aaf5760405162461bcd60e51b815260040161061090611196565b50600655565b6001600160a01b0382166000908152600860205260408120805482919084908110610ae257610ae261113e565b906000526020600020906005020190506000610b078260000154836003015487610ed6565b905080826002015403610b3b5760646006548360010154610b2891906111f5565b610b32919061120c565b925050506107d7565b506000949350505050565b610b4e610e5c565b6000610b5933610d3e565b905060008111610b9e5760405162461bcd60e51b815260206004820152601060248201526f2cb7ba903430bb32903737ba103bb7b760811b6044820152606401610610565b336000908152600860205260408120610bb691610fa8565b600254604051635961857d60e11b8152336004820152602481018390526001600160a01b039091169063b2c30afa90604401600060405180830381600087803b158015610c0257600080fd5b505af1158015610c16573d6000803e3d6000fd5b50506040518381523392507f95681e512bc0fe659e195e06c283eada494316f3d801213e48e7101af92bf770915060200160405180910390a250610a2660018055565b6001600160a01b0381166000908152600860209081526040808320805482518185028101850190935280835260609492939192909184015b82821015610cf85760008481526020908190206040805160a08101825260058602909201805483526001808201548486015260028201549284019290925260038101546060840152600401546001600160a01b031660808301529083529092019101610c91565b505050509050919050565b610d0b610d93565b6001600160a01b038116610d3557604051631e4fbdf760e01b815260006004820152602401610610565b6106bb81610e86565b60008060005b6001600160a01b038416600090815260086020526040902054811015610d8c57610d6e8482610ab5565b610d78908361116a565b915080610d848161117d565b915050610d44565b5092915050565b6000546001600160a01b03163314610a265760405163118cdaa760e01b8152336004820152602401610610565b80471015610de35760405163cd78605960e01b8152306004820152602401610610565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610e30576040519150601f19603f3d011682016040523d82523d6000602084013e610e35565b606091505b5050905080610e5757604051630a12f52160e11b815260040160405180910390fd5b505050565b600260015403610e7f57604051633ee5aeb560e01b815260040160405180910390fd5b6002600155565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000834311610f275760405162461bcd60e51b815260206004820152601c60248201527f426c6f636b206e756d626572206973206f7574206f662072616e6765000000006044820152606401610610565b43610f338560fa61116a565b1015610f4157506000610fa1565b6007546040805186406020820152908101859052606084811b6bffffffffffffffffffffffff1916908201526074016040516020818303038152906040528051906020012060001c610f9391906111e1565b610f9e90600161116a565b90505b9392505050565b50805460008255600502906000526020600020908101906106bb91905b80821115610fff576000808255600182018190556002820181905560038201556004810180546001600160a01b0319169055600501610fc5565b5090565b6001600160a01b03811681146106bb57600080fd5b60006020828403121561102a57600080fd5b8135610fa181611003565b60006020828403121561104757600080fd5b5035919050565b6000806040838503121561106157600080fd5b823561106c81611003565b946020939093013593505050565b600080600080600060a0868803121561109257600080fd5b8535945060208601359350604086013592506060860135915060808601356110b981611003565b809150509295509295909350565b602080825282518282018190526000919060409081850190868401855b828110156111315781518051855286810151878601528581015186860152606080820151908601526080908101516001600160a01b03169085015260a090930192908501906001016110e4565b5091979650505050505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156107d7576107d7611154565b60006001820161118f5761118f611154565b5060010190565b6020808252818101527f4e756d626572206d7573742062652067726561746572207468616e207a65726f604082015260600190565b634e487b7160e01b600052601260045260246000fd5b6000826111f0576111f06111cb565b500690565b80820281158282048414176107d7576107d7611154565b60008261121b5761121b6111cb565b50049056fea26469706673582212205fae5459c73edadb57b1dc24fb8fdcde1e2f656e18ad7690efb72750a61170c464736f6c63430008140033000000000000000000000000112c37126c035e1de37346f5b6005494ef80506e
Deployed ByteCode
0x60806040526004361061014f5760003560e01c806388ea41b9116100b6578063c34f6b0d1161006f578063c34f6b0d146103b2578063e17af317146103c7578063e9d5e3ad146103e7578063eaf07c8c146103fd578063f2fde38b1461042a578063fb9213ff1461044a57600080fd5b806388ea41b9146102f55780638da5cb5b1461031557806390e50774146103475780639619367d14610367578063998724421461037d578063b97e707d1461039257600080fd5b806352c759911161010857806352c75991146102575780635a8c8a4a1461027757806365f05d861461028d5780636898f82b146102ad578063715018a6146102c0578063881eff1e146102d557600080fd5b8063092193ab1461015b5780630f69632c1461017d5780632e5b21681461019d57806337fc0904146101c65780633a8aa684146101e65780634a39ec901461020657600080fd5b3661015657005b600080fd5b34801561016757600080fd5b5061017b610176366004611018565b61046a565b005b34801561018957600080fd5b5061017b610198366004611035565b6105e7565b3480156101a957600080fd5b506101b360055481565b6040519081526020015b60405180910390f35b3480156101d257600080fd5b5061017b6101e1366004611018565b61061f565b3480156101f257600080fd5b5061017b610201366004611035565b6106a9565b34801561021257600080fd5b5061022661022136600461104e565b6106be565b6040805195865260208601949094529284019190915260608301526001600160a01b0316608082015260a0016101bd565b34801561026357600080fd5b506101b361027236600461107a565b610715565b34801561028357600080fd5b506101b360065481565b34801561029957600080fd5b506101b36102a8366004611035565b6107bb565b61017b6102bb366004611035565b6107dd565b3480156102cc57600080fd5b5061017b610a14565b3480156102e157600080fd5b5061017b6102f0366004611035565b610a28565b34801561030157600080fd5b5061017b610310366004611035565b610a57565b34801561032157600080fd5b506000546001600160a01b03165b6040516001600160a01b0390911681526020016101bd565b34801561035357600080fd5b5061017b610362366004611035565b610a86565b34801561037357600080fd5b506101b360045481565b34801561038957600080fd5b506101b3606481565b34801561039e57600080fd5b506101b36103ad36600461104e565b610ab5565b3480156103be57600080fd5b5061017b610b46565b3480156103d357600080fd5b5060025461032f906001600160a01b031681565b3480156103f357600080fd5b506101b360075481565b34801561040957600080fd5b5061041d610418366004611018565b610c59565b6040516101bd91906110c7565b34801561043657600080fd5b5061017b610445366004611018565b610d03565b34801561045657600080fd5b506101b3610465366004611018565b610d3e565b6001600160a01b03811660009081526008602052604090205415806104c757506001600160a01b038116600090815260086020526040812080544392906104b3576104b361113e565b906000526020600020906005020160000154145b156104cf5750565b6000805b6001600160a01b03831660009081526008602052604090205481101561051b576104fd8382610ab5565b610507908361116a565b9150806105138161117d565b9150506104d3565b506001600160a01b038216600090815260086020526040812061053d91610fa8565b80156105e357600254604051635961857d60e11b81526001600160a01b038481166004830152602482018490529091169063b2c30afa90604401600060405180830381600087803b15801561059157600080fd5b505af11580156105a5573d6000803e3d6000fd5b505050507f04944120d2e185fc95ba63f3ca24c385ec4c5215a801c8766c96486d7fc4ed8e816040516105da91815260200190565b60405180910390a15b5050565b6105ef610d93565b80600081116106195760405162461bcd60e51b815260040161061090611196565b60405180910390fd5b50600755565b610627610d93565b6001600160a01b0381166106875760405162461bcd60e51b815260206004820152602160248201527f496e76616c69642062616e6b726f6c6c20636f6e7472616374206164647265736044820152607360f81b6064820152608401610610565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6106b1610d93565b6106bb3382610dc0565b50565b600860205281600052604060002081815481106106da57600080fd5b60009182526020909120600590910201805460018201546002830154600384015460049094015492955090935091906001600160a01b031685565b60008060075487858560405160200161075393929190928352602083019190915260601b6bffffffffffffffffffffffff1916604082015260540190565b6040516020818303038152906040528051906020012060001c61077691906111e1565b61078190600161116a565b90508581036107ac5760646006548661079a91906111f5565b6107a4919061120c565b9150506107b2565b60009150505b95945050505050565b60006064600654836107cd91906111f5565b6107d7919061120c565b92915050565b6107e5610e5c565b6064600654346107f591906111f5565b6107ff919061120c565b6002546001600160a01b031631101561084f5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610610565b60008111801561086157506007548111155b6108a45760405162461bcd60e51b815260206004820152601460248201527324b731b7b93932b1ba103132ba10373ab6b132b960611b6044820152606401610610565b60045434101580156108b857506005543411155b6108fb5760405162461bcd60e51b8152602060048201526014602482015273125b98dbdc9c9958dd0818995d08185b5bdd5b9d60621b6044820152606401610610565b600254610911906001600160a01b031634610dc0565b61091a3361046a565b336000818152600860209081526040808320815160a08101835243808252348286018181528386018a815260038054606080880191825260808089018e81528a5460018082018d559b8f529d8d902099516005909e029099019c8d559451988c0198909855915160028b01559051898201559351600490980180546001600160a01b0319166001600160a01b039099169890981790975591548451918252948101919091529182018690528101919091527f935a8686694e2b5cc90f63054b327255f6fb92db3acd6d98c5a707d4987e93e1910160405180910390a260038054906000610a068361117d565b91905055506106bb60018055565b610a1c610d93565b610a266000610e86565b565b610a30610d93565b8060008111610a515760405162461bcd60e51b815260040161061090611196565b50600555565b610a5f610d93565b8060008111610a805760405162461bcd60e51b815260040161061090611196565b50600455565b610a8e610d93565b8060008111610aaf5760405162461bcd60e51b815260040161061090611196565b50600655565b6001600160a01b0382166000908152600860205260408120805482919084908110610ae257610ae261113e565b906000526020600020906005020190506000610b078260000154836003015487610ed6565b905080826002015403610b3b5760646006548360010154610b2891906111f5565b610b32919061120c565b925050506107d7565b506000949350505050565b610b4e610e5c565b6000610b5933610d3e565b905060008111610b9e5760405162461bcd60e51b815260206004820152601060248201526f2cb7ba903430bb32903737ba103bb7b760811b6044820152606401610610565b336000908152600860205260408120610bb691610fa8565b600254604051635961857d60e11b8152336004820152602481018390526001600160a01b039091169063b2c30afa90604401600060405180830381600087803b158015610c0257600080fd5b505af1158015610c16573d6000803e3d6000fd5b50506040518381523392507f95681e512bc0fe659e195e06c283eada494316f3d801213e48e7101af92bf770915060200160405180910390a250610a2660018055565b6001600160a01b0381166000908152600860209081526040808320805482518185028101850190935280835260609492939192909184015b82821015610cf85760008481526020908190206040805160a08101825260058602909201805483526001808201548486015260028201549284019290925260038101546060840152600401546001600160a01b031660808301529083529092019101610c91565b505050509050919050565b610d0b610d93565b6001600160a01b038116610d3557604051631e4fbdf760e01b815260006004820152602401610610565b6106bb81610e86565b60008060005b6001600160a01b038416600090815260086020526040902054811015610d8c57610d6e8482610ab5565b610d78908361116a565b915080610d848161117d565b915050610d44565b5092915050565b6000546001600160a01b03163314610a265760405163118cdaa760e01b8152336004820152602401610610565b80471015610de35760405163cd78605960e01b8152306004820152602401610610565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610e30576040519150601f19603f3d011682016040523d82523d6000602084013e610e35565b606091505b5050905080610e5757604051630a12f52160e11b815260040160405180910390fd5b505050565b600260015403610e7f57604051633ee5aeb560e01b815260040160405180910390fd5b6002600155565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000834311610f275760405162461bcd60e51b815260206004820152601c60248201527f426c6f636b206e756d626572206973206f7574206f662072616e6765000000006044820152606401610610565b43610f338560fa61116a565b1015610f4157506000610fa1565b6007546040805186406020820152908101859052606084811b6bffffffffffffffffffffffff1916908201526074016040516020818303038152906040528051906020012060001c610f9391906111e1565b610f9e90600161116a565b90505b9392505050565b50805460008255600502906000526020600020908101906106bb91905b80821115610fff576000808255600182018190556002820181905560038201556004810180546001600160a01b0319169055600501610fc5565b5090565b6001600160a01b03811681146106bb57600080fd5b60006020828403121561102a57600080fd5b8135610fa181611003565b60006020828403121561104757600080fd5b5035919050565b6000806040838503121561106157600080fd5b823561106c81611003565b946020939093013593505050565b600080600080600060a0868803121561109257600080fd5b8535945060208601359350604086013592506060860135915060808601356110b981611003565b809150509295509295909350565b602080825282518282018190526000919060409081850190868401855b828110156111315781518051855286810151878601528581015186860152606080820151908601526080908101516001600160a01b03169085015260a090930192908501906001016110e4565b5091979650505050505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156107d7576107d7611154565b60006001820161118f5761118f611154565b5060010190565b6020808252818101527f4e756d626572206d7573742062652067726561746572207468616e207a65726f604082015260600190565b634e487b7160e01b600052601260045260246000fd5b6000826111f0576111f06111cb565b500690565b80820281158282048414176107d7576107d7611154565b60008261121b5761121b6111cb565b50049056fea26469706673582212205fae5459c73edadb57b1dc24fb8fdcde1e2f656e18ad7690efb72750a61170c464736f6c63430008140033