Overview
POL Balance
122.825817664114487046 POL
POL Value
$87.37 (@ $0.71/POL)Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 50,315 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Wager | 57259628 | 196 days ago | IN | 0.03614208 POL | 0.02272818 | ||||
Wager | 57259612 | 196 days ago | IN | 0.03802925 POL | 0.0244726 | ||||
Wager | 57259594 | 196 days ago | IN | 0.04058066 POL | 0.02683018 | ||||
Wager | 57259575 | 196 days ago | IN | 0.04301579 POL | 0.02908106 | ||||
Wager | 57259547 | 196 days ago | IN | 0.04308635 POL | 0.02914627 | ||||
Wager | 57259466 | 196 days ago | IN | 0.031499 POL | 0.01827153 | ||||
Wager | 57259438 | 196 days ago | IN | 0.03218638 POL | 0.01907108 | ||||
Wager | 57259421 | 196 days ago | IN | 0.03447908 POL | 0.02096931 | ||||
Wager | 57259409 | 196 days ago | IN | 0.03528204 POL | 0.0219325 | ||||
Wager | 57259372 | 196 days ago | IN | 0.0273377 POL | 0.01634496 | ||||
Wager | 52901115 | 310 days ago | IN | 0.02291287 POL | 0.01265955 | ||||
Wager | 52901100 | 310 days ago | IN | 0.02291286 POL | 0.01266046 | ||||
Wager | 52901077 | 310 days ago | IN | 0.02291299 POL | 0.01418229 | ||||
Wager | 52749373 | 314 days ago | IN | 0.0274265 POL | 0.01664741 | ||||
Wager | 52749360 | 314 days ago | IN | 0.02898427 POL | 0.01808727 | ||||
Wager | 52213341 | 328 days ago | IN | 0.02225124 POL | 0.01306781 | ||||
Wager | 52093376 | 331 days ago | IN | 0.07206452 POL | 0.05854196 | ||||
Wager | 51606363 | 344 days ago | IN | 0.04210668 POL | 0.03254514 | ||||
Wager | 51606341 | 344 days ago | IN | 0.03991256 POL | 0.03010895 | ||||
Wager | 51606304 | 344 days ago | IN | 0.04180479 POL | 0.03569183 | ||||
Wager | 51444525 | 348 days ago | IN | 0.05408266 POL | 0.03957432 | ||||
Wager | 51443962 | 348 days ago | IN | 0.04917697 POL | 0.03527535 | ||||
Wager | 51443945 | 348 days ago | IN | 0.05276549 POL | 0.03763013 | ||||
Wager | 51443910 | 348 days ago | IN | 0.05454699 POL | 0.03998122 | ||||
Wager | 51443892 | 348 days ago | IN | 0.04977787 POL | 0.03580193 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
35933899 | 743 days ago | 922.81038322 POL | ||||
35342582 | 758 days ago | 0.43657289 POL | ||||
32902528 | 817 days ago | 30.87338589 POL | ||||
32902528 | 817 days ago | 133.09458497 POL | ||||
32891907 | 817 days ago | 1 POL | ||||
32891761 | 817 days ago | 3 POL | ||||
32891726 | 817 days ago | 2 POL | ||||
32891383 | 817 days ago | 2 POL | ||||
32891346 | 817 days ago | 0.03 POL | ||||
32891346 | 817 days ago | 0.97 POL | ||||
32891298 | 817 days ago | 0.09 POL | ||||
32891298 | 817 days ago | 2.91 POL | ||||
32891199 | 817 days ago | 0.045 POL | ||||
32891199 | 817 days ago | 1.455 POL | ||||
32891154 | 817 days ago | 0.03 POL | ||||
32891154 | 817 days ago | 0.97 POL | ||||
32891121 | 817 days ago | 0.06 POL | ||||
32891121 | 817 days ago | 1.94 POL | ||||
32891086 | 817 days ago | 0.045 POL | ||||
32891086 | 817 days ago | 1.455 POL | ||||
32891050 | 817 days ago | 0.06 POL | ||||
32891050 | 817 days ago | 1.94 POL | ||||
32891025 | 817 days ago | 0.06 POL | ||||
32891025 | 817 days ago | 1.94 POL | ||||
32890993 | 817 days ago | 0.03 POL |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
CoinToss
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; import {Game} from "./Game.sol"; /// @title BetSwirl's Coin Toss game /// @notice The game is played with a two-sided coin. The game's goal is to guess whether the lucky coin face will be Heads or Tails. /// @author Romuald Hog (based on Yakitori's Coin Toss) contract CoinToss is Game { /// @notice Full coin toss bet information struct. /// @param bet The Bet struct information. /// @param diceBet The Coin Toss bet struct information. /// @dev Used to package bet information for the front-end. struct FullCoinTossBet { Bet bet; CoinTossBet coinTossBet; } /// @notice Coin Toss bet information struct. /// @param face The chosen coin face. /// @param rolled The rolled coin face. struct CoinTossBet { bool face; bool rolled; } /// @notice Maps bets IDs to chosen and rolled coin faces. /// @dev Coin faces: true = Tails, false = Heads. mapping(uint256 => CoinTossBet) public coinTossBets; /// @notice Emitted after a bet is placed. /// @param id The bet ID. /// @param user Address of the gamer. /// @param token Address of the token. /// @param face The chosen coin face. event PlaceBet( uint256 id, address indexed user, address indexed token, bool face ); /// @notice Emitted after a bet is rolled. /// @param id The bet ID. /// @param user Address of the gamer. /// @param token Address of the token. /// @param amount The bet amount. /// @param face The chosen coin face. /// @param rolled The rolled coin face. /// @param payout The payout amount. event Roll( uint256 id, address indexed user, address indexed token, uint256 amount, bool face, bool rolled, uint256 payout ); /// @notice Initialize the game base contract. /// @param bankAddress The address of the bank. /// @param referralProgramAddress The address of the Referral program. /// @param chainlinkCoordinatorAddress Address of the Chainlink VRF Coordinator. /// @param LINK_ETH_feedAddress Address of the Chainlink LINK/ETH price feed. constructor( address bankAddress, address referralProgramAddress, address chainlinkCoordinatorAddress, address LINK_ETH_feedAddress ) Game( bankAddress, referralProgramAddress, chainlinkCoordinatorAddress, 1, LINK_ETH_feedAddress ) {} /// @notice Sets the game house edge rate for a specific token. /// @param token Address of the token. /// @param _houseEdge House edge rate. function setHouseEdge(address token, uint16 _houseEdge) external onlyOwner { _setHouseEdge(token, _houseEdge); } /// @notice Creates a new bet and stores the chosen coin face. /// @param face The chosen coin face. /// @param token Address of the token. /// @param tokenAmount The number of tokens bet. /// @param referrer Address of the referrer. function wager( bool face, address token, uint256 tokenAmount, address referrer ) external payable whenNotPaused { Bet memory bet = _newBet( token, tokenAmount, getPayout(10000), referrer ); coinTossBets[bet.id].face = face; emit PlaceBet(bet.id, bet.user, bet.token, face); } /// @notice Resolves the bet using the Chainlink randomness. /// @param id The bet ID. /// @param randomWords Random words list. Contains only one for this game. // solhint-disable-next-line private-vars-leading-underscore function fulfillRandomWords(uint256 id, uint256[] memory randomWords) internal override { CoinTossBet storage coinTossBet = coinTossBets[id]; Bet storage bet = bets[id]; uint256 rolled = randomWords[0] % 2; bool[2] memory coinSides = [false, true]; bool rolledCoinSide = coinSides[rolled]; coinTossBet.rolled = rolledCoinSide; uint256 payout = _resolveBet( bet, rolledCoinSide == coinTossBet.face, getPayout(bet.amount) ); emit Roll( bet.id, bet.user, bet.token, bet.amount, coinTossBet.face, rolledCoinSide, payout ); } /// @notice Gets the list of the last user bets. /// @param user Address of the gamer. /// @param dataLength The amount of bets to return. /// @return A list of Coin Toss bet. function getLastUserBets(address user, uint256 dataLength) external view returns (FullCoinTossBet[] memory) { Bet[] memory lastBets = _getLastUserBets(user, dataLength); FullCoinTossBet[] memory lastCoinTossBets = new FullCoinTossBet[]( lastBets.length ); for (uint256 i; i < lastBets.length; i++) { lastCoinTossBets[i] = FullCoinTossBet( lastBets[i], coinTossBets[lastBets[i].id] ); } return lastCoinTossBets; } /// @notice Calculates the target payout amount. /// @param betAmount Bet amount. /// @return The target payout amount. function getPayout(uint256 betAmount) public pure returns (uint256) { return betAmount * 2; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** **************************************************************************** * @notice Interface for contracts using VRF randomness * ***************************************************************************** * @dev PURPOSE * * @dev Reggie the Random Oracle (not his real job) wants to provide randomness * @dev to Vera the verifier in such a way that Vera can be sure he's not * @dev making his output up to suit himself. Reggie provides Vera a public key * @dev to which he knows the secret key. Each time Vera provides a seed to * @dev Reggie, he gives back a value which is computed completely * @dev deterministically from the seed and the secret key. * * @dev Reggie provides a proof by which Vera can verify that the output was * @dev correctly computed once Reggie tells it to her, but without that proof, * @dev the output is indistinguishable to her from a uniform random sample * @dev from the output space. * * @dev The purpose of this contract is to make it easy for unrelated contracts * @dev to talk to Vera the verifier about the work Reggie is doing, to provide * @dev simple access to a verifiable source of randomness. It ensures 2 things: * @dev 1. The fulfillment came from the VRFCoordinator * @dev 2. The consumer contract implements fulfillRandomWords. * ***************************************************************************** * @dev USAGE * * @dev Calling contracts must inherit from VRFConsumerBase, and can * @dev initialize VRFConsumerBase's attributes in their constructor as * @dev shown: * * @dev contract VRFConsumer { * @dev constructor(<other arguments>, address _vrfCoordinator, address _link) * @dev VRFConsumerBase(_vrfCoordinator) public { * @dev <initialization with other arguments goes here> * @dev } * @dev } * * @dev The oracle will have given you an ID for the VRF keypair they have * @dev committed to (let's call it keyHash). Create subscription, fund it * @dev and your consumer contract as a consumer of it (see VRFCoordinatorInterface * @dev subscription management functions). * @dev Call requestRandomWords(keyHash, subId, minimumRequestConfirmations, * @dev callbackGasLimit, numWords), * @dev see (VRFCoordinatorInterface for a description of the arguments). * * @dev Once the VRFCoordinator has received and validated the oracle's response * @dev to your request, it will call your contract's fulfillRandomWords method. * * @dev The randomness argument to fulfillRandomWords is a set of random words * @dev generated from your requestId and the blockHash of the request. * * @dev If your contract could have concurrent requests open, you can use the * @dev requestId returned from requestRandomWords to track which response is associated * @dev with which randomness request. * @dev See "SECURITY CONSIDERATIONS" for principles to keep in mind, * @dev if your contract could have multiple requests in flight simultaneously. * * @dev Colliding `requestId`s are cryptographically impossible as long as seeds * @dev differ. * * ***************************************************************************** * @dev SECURITY CONSIDERATIONS * * @dev A method with the ability to call your fulfillRandomness method directly * @dev could spoof a VRF response with any random value, so it's critical that * @dev it cannot be directly called by anything other than this base contract * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method). * * @dev For your users to trust that your contract's random behavior is free * @dev from malicious interference, it's best if you can write it so that all * @dev behaviors implied by a VRF response are executed *during* your * @dev fulfillRandomness method. If your contract must store the response (or * @dev anything derived from it) and use it later, you must ensure that any * @dev user-significant behavior which depends on that stored value cannot be * @dev manipulated by a subsequent VRF request. * * @dev Similarly, both miners and the VRF oracle itself have some influence * @dev over the order in which VRF responses appear on the blockchain, so if * @dev your contract could have multiple VRF requests in flight simultaneously, * @dev you must ensure that the order in which the VRF responses arrive cannot * @dev be used to manipulate your contract's user-significant behavior. * * @dev Since the block hash of the block which contains the requestRandomness * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful * @dev miner could, in principle, fork the blockchain to evict the block * @dev containing the request, forcing the request to be included in a * @dev different block with a different hash, and therefore a different input * @dev to the VRF. However, such an attack would incur a substantial economic * @dev cost. This cost scales with the number of blocks the VRF oracle waits * @dev until it calls responds to a request. It is for this reason that * @dev that you can signal to an oracle you'd like them to wait longer before * @dev responding to the request (however this is not enforced in the contract * @dev and so remains effective only in the case of unmodified oracle software). */ abstract contract VRFConsumerBaseV2 { error OnlyCoordinatorCanFulfill(address have, address want); address private immutable vrfCoordinator; /** * @param _vrfCoordinator address of VRFCoordinator contract */ constructor(address _vrfCoordinator) { vrfCoordinator = _vrfCoordinator; } /** * @notice fulfillRandomness handles the VRF response. Your contract must * @notice implement it. See "SECURITY CONSIDERATIONS" above for important * @notice principles to keep in mind when implementing your fulfillRandomness * @notice method. * * @dev VRFConsumerBaseV2 expects its subcontracts to have a method with this * @dev signature, and will call it once it has verified the proof * @dev associated with the randomness. (It is triggered via a call to * @dev rawFulfillRandomness, below.) * * @param requestId The Id initially returned by requestRandomness * @param randomWords the VRF output expanded to the requested number of words */ function fulfillRandomWords(uint256 requestId, uint256[] memory randomWords) internal virtual; // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF // proof. rawFulfillRandomness then calls fulfillRandomness, after validating // the origin of the call function rawFulfillRandomWords(uint256 requestId, uint256[] memory randomWords) external { if (msg.sender != vrfCoordinator) { revert OnlyCoordinatorCanFulfill(msg.sender, vrfCoordinator); } fulfillRandomWords(requestId, randomWords); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface AggregatorV3Interface { function decimals() external view returns (uint8); function description() external view returns (string memory); function version() external view returns (uint256); // getRoundData and latestRoundData should both raise "No data present" // if they do not have data to report, instead of returning unset values // which could be misinterpreted as actual reported values. function getRoundData(uint80 _roundId) external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); function latestRoundData() external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface VRFCoordinatorV2Interface { /** * @notice Get configuration relevant for making requests * @return minimumRequestConfirmations global min for request confirmations * @return maxGasLimit global max for request gas limit * @return s_provingKeyHashes list of registered key hashes */ function getRequestConfig() external view returns ( uint16, uint32, bytes32[] memory ); /** * @notice Request a set of random words. * @param keyHash - Corresponds to a particular oracle job which uses * that key for generating the VRF proof. Different keyHash's have different gas price * ceilings, so you can select a specific one to bound your maximum per request cost. * @param subId - The ID of the VRF subscription. Must be funded * with the minimum subscription balance required for the selected keyHash. * @param minimumRequestConfirmations - How many blocks you'd like the * oracle to wait before responding to the request. See SECURITY CONSIDERATIONS * for why you may want to request more. The acceptable range is * [minimumRequestBlockConfirmations, 200]. * @param callbackGasLimit - How much gas you'd like to receive in your * fulfillRandomWords callback. Note that gasleft() inside fulfillRandomWords * may be slightly less than this amount because of gas used calling the function * (argument decoding etc.), so you may need to request slightly more than you expect * to have inside fulfillRandomWords. The acceptable range is * [0, maxGasLimit] * @param numWords - The number of uint256 random values you'd like to receive * in your fulfillRandomWords callback. Note these numbers are expanded in a * secure way by the VRFCoordinator from a single random value supplied by the oracle. * @return requestId - A unique identifier of the request. Can be used to match * a request to a response in fulfillRandomWords. */ function requestRandomWords( bytes32 keyHash, uint64 subId, uint16 minimumRequestConfirmations, uint32 callbackGasLimit, uint32 numWords ) external returns (uint256 requestId); /** * @notice Create a VRF subscription. * @return subId - A unique subscription id. * @dev You can manage the consumer set dynamically with addConsumer/removeConsumer. * @dev Note to fund the subscription, use transferAndCall. For example * @dev LINKTOKEN.transferAndCall( * @dev address(COORDINATOR), * @dev amount, * @dev abi.encode(subId)); */ function createSubscription() external returns (uint64 subId); /** * @notice Get a VRF subscription. * @param subId - ID of the subscription * @return balance - LINK balance of the subscription in juels. * @return reqCount - number of requests for this subscription, determines fee tier. * @return owner - owner of the subscription. * @return consumers - list of consumer address which are able to use this subscription. */ function getSubscription(uint64 subId) external view returns ( uint96 balance, uint64 reqCount, address owner, address[] memory consumers ); /** * @notice Request subscription owner transfer. * @param subId - ID of the subscription * @param newOwner - proposed new owner of the subscription */ function requestSubscriptionOwnerTransfer(uint64 subId, address newOwner) external; /** * @notice Request subscription owner transfer. * @param subId - ID of the subscription * @dev will revert if original owner of subId has * not requested that msg.sender become the new owner. */ function acceptSubscriptionOwnerTransfer(uint64 subId) external; /** * @notice Add a consumer to a VRF subscription. * @param subId - ID of the subscription * @param consumer - New consumer which can use the subscription */ function addConsumer(uint64 subId, address consumer) external; /** * @notice Remove a consumer from a VRF subscription. * @param subId - ID of the subscription * @param consumer - Consumer to remove from the subscription */ function removeConsumer(uint64 subId, address consumer) external; /** * @notice Cancel a subscription * @param subId - ID of the subscription * @param to - Where to send the remaining LINK to */ function cancelSubscription(uint64 subId, address to) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @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, it is bubbled up by this * function (like regular Solidity function calls). * * 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. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @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`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Multicall.sol) pragma solidity ^0.8.0; import "./Address.sol"; /** * @dev Provides a function to batch together multiple calls in a single external call. * * _Available since v4.1._ */ abstract contract Multicall { /** * @dev Receives and executes a batch of function calls on this contract. */ function multicall(bytes[] calldata data) external virtual returns (bytes[] memory results) { results = new bytes[](data.length); for (uint256 i = 0; i < data.length; i++) { results[i] = Address.functionDelegateCall(address(this), data[i]); } return results; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; /// @notice Minimal interface for Bank. /// @author Romuald Hog. interface IBank { /// @notice Gets the token's allow status used on the games smart contracts. /// @param token Address of the token. /// @return Whether the token is enabled for bets. function isAllowedToken(address token) external view returns (bool); /// @notice Payouts a winning bet, and allocate the house edge fee. /// @param user Address of the gamer. /// @param token Address of the token. /// @param profit Number of tokens to be sent to the gamer. /// @param fees Bet amount and bet profit fees amount. function payout( address payable user, address token, uint256 profit, uint256 fees ) external payable; /// @notice Accounts a loss bet, and manage the balance overflow. /// @dev In case of an ERC20, the bet amount should be transfered prior to this tx. /// @dev In case of the gas token, the bet amount is sent along with this tx. /// @param tokenAddress Address of the token. /// @param amount Loss bet amount. function cashIn(address tokenAddress, uint256 amount) external payable; /// @notice Calculates the max bet amount based on the token balance, the balance risk, and the game multiplier. /// @param token Address of the token. /// @param multiplier The bet amount leverage determines the user's profit amount. 10000 = 100% = no profit. /// @return Maximum bet amount for the token. /// @dev The multiplier should be at least 10000. function getMaxBetAmount(address token, uint256 multiplier) external view returns (uint256); /// @notice Harvests tokens dividends. /// @return tokens The list of tokens addresses. /// @return amounts The list of tokens' amounts harvested. function harvestDividends() external returns (address[] memory tokens, uint256[] memory amounts); /// @notice Get the available tokens dividends amounts. /// @return tokens The list of tokens addresses. /// @return amounts The list of tokens' amounts harvested. function getDividends() external view returns (address[] memory tokens, uint256[] memory amounts); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; /// @notice Referral interface /// @author Romuald Hog. interface IReferral { /// @notice Adds an address as referrer. /// @param user The address of the user. /// @param referrer The address would set as referrer of user. function addReferrer(address user, address referrer) external; /// @notice Updates referrer's last active timestamp. /// @param user The address would like to update active time. function updateReferrerActivity(address user) external; /// @notice Calculates and allocate referrer(s) credits to uplines. /// @param user Address of the gamer to find referrer(s). /// @param token The token to allocate. /// @param amount The number of tokens allocated for referrer(s). function payReferral( address user, address token, uint256 amount ) external returns (uint256); /// @notice Utils function for check whether an address has the referrer. /// @param user The address of the user. /// @return Whether user has a referrer. function hasReferrer(address user) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.10; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Multicall.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@chainlink/contracts/src/v0.8/VRFConsumerBaseV2.sol"; import "@chainlink/contracts/src/v0.8/interfaces/VRFCoordinatorV2Interface.sol"; import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol"; import {IBank} from "../bank/IBank.sol"; import {IReferral} from "../bank/IReferral.sol"; // import "hardhat/console.sol"; interface IVRFCoordinatorV2 is VRFCoordinatorV2Interface { function getFeeConfig() external view returns ( uint32, uint32, uint32, uint32, uint32, uint24, uint24, uint24, uint24 ); } /// @title Game base contract /// @author Romuald Hog /// @notice This should be parent contract of each games. /// It defines all the games common functions and state variables. /// @dev All rates are in basis point. Chainlink VRF v2 is used. abstract contract Game is Ownable, Pausable, Multicall, VRFConsumerBaseV2, ReentrancyGuard { using SafeERC20 for IERC20; /// @notice Bet information struct. /// @param resolved Whether the bet has been resolved. /// @param user Address of the gamer. /// @param token Address of the token. /// @param id Bet ID generated by Chainlink VRF. /// @param amount The bet amount. /// @param blockNumber Block number of the bet used to refund in case Chainlink's callback fail. /// @param payout The payout amount. /// @param vrfCost The Chainlink VRF cost paid by player. struct Bet { bool resolved; address payable user; address token; uint256 id; uint256 amount; uint256 blockNumber; uint256 payout; uint256 vrfCost; } /// @notice Chainlink VRF configuration struct. /// @param subId Default subscription ID. /// @param callbackGasLimit How much gas you would like in your callback to do work with the random words provided. /// @param requestConfirmations How many confirmations the Chainlink node should wait before responding. /// @param keyHash Hash of the public key used to verify the VRF proof. struct ChainlinkConfig { uint64 subId; uint32 callbackGasLimit; uint16 requestConfirmations; bytes32 keyHash; } /// @notice Chainlink VRF configuration state. ChainlinkConfig public chainlinkConfig; /// @notice Reference to the VRFCoordinatorV2 deployed contract. IVRFCoordinatorV2 public chainlinkCoordinator; /// @notice How many random words is needed to resolve a game's bet. uint16 private immutable _numRandomWords; /// @notice Chainlink price feed. AggregatorV3Interface public immutable LINK_ETH_feed; /// @notice Maps bets IDs to Bet information. mapping(uint256 => Bet) public bets; /// @notice Maps users addresses to bets IDs mapping(address => uint256[]) internal _userBets; /// @notice Token struct. /// @param houseEdge House edge rate. /// @param VRFSubId Chainlink's VRF subscription ID. /// @param partner Address of the partner to manage the token. /// @param minBetAmount Minimum bet amount. /// @param VRFFees Chainlink's VRF collected fees amount. struct Token { uint16 houseEdge; uint64 VRFSubId; address partner; uint256 minBetAmount; uint256 VRFFees; } /// @notice Maps tokens addresses to token configuration. mapping(address => Token) public tokens; /// @notice The bank that manage to payout a won bet and collect a loss bet, and to interact with Referral program. IBank public bank; /// @notice Referral program contract. IReferral public referralProgram; /// @notice Emitted after the bank is set. /// @param bank Address of the bank contract. event SetBank(address bank); /// @notice Emitted after the referral program is set. /// @param referralProgram The referral program address. event SetReferralProgram(address referralProgram); /// @notice Emitted after the house edge is set for a token. /// @param token Address of the token. /// @param houseEdge House edge rate. event SetHouseEdge(address indexed token, uint16 houseEdge); /// @notice Emitted after the minimum bet amount is set for a token. /// @param token Address of the token. /// @param minBetAmount Minimum bet amount. event SetTokenMinBetAmount(address indexed token, uint256 minBetAmount); /// @notice Emitted after the bet amount transfer to the user failed. /// @param id The bet ID. /// @param amount Number of tokens failed to transfer. /// @param reason The reason provided by the external call. event BetAmountTransferFail(uint256 id, uint256 amount, string reason); /// @notice Emitted after the bet amount fee transfer to the bank failed. /// @param id The bet ID. /// @param amount Number of tokens failed to transfer. /// @param reason The reason provided by the external call. event BetAmountFeeTransferFail(uint256 id, uint256 amount, string reason); /// @notice Emitted after the bet profit transfer to the user failed. /// @param id The bet ID. /// @param amount Number of tokens failed to transfer. /// @param reason The reason provided by the external call. event BetProfitTransferFail(uint256 id, uint256 amount, string reason); /// @notice Emitted after the bet amount transfer to the bank failed. /// @param id The bet ID. /// @param amount Number of tokens failed to transfer. /// @param reason The reason provided by the external call. event BankCashInFail(uint256 id, uint256 amount, string reason); /// @notice Emitted after the bet amount ERC20 transfer to the bank failed. /// @param id The bet ID. /// @param amount Number of tokens failed to transfer. /// @param reason The reason provided by the external call. event BankTransferFail(uint256 id, uint256 amount, string reason); /// @notice Emitted after the bet amount is transfered to the user. /// @param id The bet ID. /// @param user Address of the gamer. /// @param amount Number of tokens refunded. event BetRefunded(uint256 id, address user, uint256 amount); /// @notice Emitted after the bet resolution cost refund to user failed. /// @param id The bet ID. /// @param user Address of the gamer. /// @param chainlinkVRFCost The bet resolution cost amount. event BetCostRefundFail(uint256 id, address user, uint256 chainlinkVRFCost); /// @notice Emitted after the token's VRF fees amount is transfered to the user. /// @param token Address of the token. /// @param amount Number of tokens refunded. event DistributeTokenVRFFees(address indexed token, uint256 amount); /// @notice Emitted after the token's VRF subscription ID is set. /// @param token Address of the token. /// @param subId Subscription ID. event SetTokenVRFSubId(address indexed token, uint64 subId); /// @notice Emitted after a token partner is set. /// @param token Address of the token. /// @param partner Address of the partner. event SetTokenPartner(address indexed token, address partner); /// @notice Insufficient bet amount. /// @param token Bet's token address. /// @param value Bet amount. error UnderMinBetAmount(address token, uint256 value); /// @notice Bet provided doesn't exist or was already resolved. /// @param id Bet ID. error NotPendingBet(uint256 id); /// @notice Bet isn't resolved yet. /// @param id Bet ID. error NotFulfilled(uint256 id); /// @notice House edge is capped at 4%. /// @param houseEdge House edge rate. error ExcessiveHouseEdge(uint16 houseEdge); /// @notice Token is not allowed. /// @param token Bet's token address. error ForbiddenToken(address token); /// @notice Chainlink price feed not working /// @param linkWei LINK/ETH price returned. error InvalidLinkWeiPrice(int256 linkWei); /// @notice The msg.value is not enough to cover Chainlink's fee. error WrongGasValueToCoverFee(); /// @notice Reverting error when sender isn't allowed. error AccessDenied(); /// @notice Modifier that checks that an account is allowed to interact. /// @param token The token address. modifier onlyTokenOwner(address token) { address partner = tokens[token].partner; if ( partner == address(0) ? owner() != msg.sender : msg.sender != partner ) { revert AccessDenied(); } _; } /// @notice Initialize contract's state variables and VRF Consumer. /// @param bankAddress The address of the bank. /// @param chainlinkCoordinatorAddress Address of the Chainlink VRF Coordinator. /// @param numRandomWords How many random words is needed to resolve a game's bet. constructor( address bankAddress, address referralProgramAddress, address chainlinkCoordinatorAddress, uint16 numRandomWords, address LINK_ETH_feedAddress ) VRFConsumerBaseV2(chainlinkCoordinatorAddress) { setBank(IBank(bankAddress)); setReferralProgram(IReferral(referralProgramAddress)); chainlinkCoordinator = IVRFCoordinatorV2(chainlinkCoordinatorAddress); _numRandomWords = numRandomWords; LINK_ETH_feed = AggregatorV3Interface(LINK_ETH_feedAddress); } /// @notice Sets the game house edge rate for a specific token. /// @param token Address of the token. /// @param houseEdge House edge rate. /// @dev The house edge rate couldn't exceed 4%. function _setHouseEdge(address token, uint16 houseEdge) internal onlyOwner { if (houseEdge > 400) { revert ExcessiveHouseEdge(houseEdge); } tokens[token].houseEdge = houseEdge; emit SetHouseEdge(token, houseEdge); } /// @notice Creates a new bet, request randomness to Chainlink, add the referrer, /// transfer the ERC20 tokens to the contract or refund the bet amount overflow if the bet amount exceed the maxBetAmount. /// @param token Address of the token. /// @param tokenAmount The number of tokens bet. /// @param multiplier The bet amount leverage determines the user's profit amount. 10000 = 100% = no profit. /// @param referrer Address of the referrer. /// @return A new Bet struct information. function _newBet( address token, uint256 tokenAmount, uint256 multiplier, address referrer ) internal whenNotPaused nonReentrant returns (Bet memory) { if (bank.isAllowedToken(token) == false) { revert ForbiddenToken(token); } address user = msg.sender; bool isGasToken = token == address(0); uint256 fee = isGasToken ? (msg.value - tokenAmount) : msg.value; uint256 betAmount = isGasToken ? msg.value - fee : tokenAmount; // Charge user for Chainlink VRF fee. { uint256 chainlinkVRFCost = getChainlinkVRFCost(); if (fee < (chainlinkVRFCost - ((10 * chainlinkVRFCost) / 100))) { // 5% slippage. revert WrongGasValueToCoverFee(); } tokens[token].VRFFees += fee; } // Bet amount is capped. { if ( betAmount < 10000 wei || betAmount < tokens[token].minBetAmount ) { revert UnderMinBetAmount(token, betAmount); } uint256 maxBetAmount = bank.getMaxBetAmount(token, multiplier); if (betAmount > maxBetAmount) { if (isGasToken) { Address.sendValue(payable(user), betAmount - maxBetAmount); } betAmount = maxBetAmount; } } // Create bet uint256 id = chainlinkCoordinator.requestRandomWords( chainlinkConfig.keyHash, tokens[token].VRFSubId == 0 ? chainlinkConfig.subId : tokens[token].VRFSubId, chainlinkConfig.requestConfirmations, chainlinkConfig.callbackGasLimit, _numRandomWords ); Bet memory newBet = Bet( false, payable(user), token, id, betAmount, block.number, 0, fee ); _userBets[user].push(id); bets[id] = newBet; // Add referrer if ( referrer != address(0) && _userBets[user].length == 1 && !referralProgram.hasReferrer(user) ) { referralProgram.addReferrer(user, referrer); } else { referralProgram.updateReferrerActivity(user); } // If ERC20, transfer the tokens if (!isGasToken) { IERC20(token).safeTransferFrom(user, address(this), betAmount); } return newBet; } /// @notice Resolves the bet based on the game child contract result. /// In case bet is won, the bet amount minus the house edge is transfered to user from the game contract, and the profit is transfered to the user from the Bank. /// In case bet is lost, the bet amount is transfered to the Bank from the game contract. /// @param bet The Bet struct information. /// @param wins Whether the bet is winning. /// @param payout What should be sent to the user in case of a won bet. Payout = bet amount + profit amount. /// @return The payout amount. /// @dev Should not revert as it resolves the bet with the randomness. function _resolveBet( Bet storage bet, bool wins, uint256 payout ) internal returns (uint256) { address payable user = bet.user; if (bet.resolved == true || user == address(0)) { revert NotPendingBet(bet.id); } address token = bet.token; uint256 betAmount = bet.amount; bool isGasToken = bet.token == address(0); bet.resolved = true; // Check for the result if (wins) { uint256 profit = payout - betAmount; uint256 betAmountFee = _getFees(token, betAmount); uint256 profitFee = _getFees(token, profit); uint256 fee = betAmountFee + profitFee; payout -= fee; uint256 betAmountPayout = betAmount - betAmountFee; uint256 profitPayout = profit - profitFee; // Transfer the bet amount from the contract if (isGasToken) { (bool success, ) = user.call{value: betAmountPayout}(""); if (!success) { emit BetAmountTransferFail( bet.id, betAmount, "Missing gas token funds" ); } } else { try IERC20(token).transfer(user, betAmountPayout) {} catch Error(string memory reason) { emit BetAmountTransferFail(bet.id, betAmountPayout, reason); } try IERC20(token).transfer(address(bank), betAmountFee) {} catch Error(string memory reason) { emit BetAmountFeeTransferFail(bet.id, betAmountFee, reason); } } // Transfer the payout from the bank try bank.payout{value: isGasToken ? betAmountFee : 0}( user, token, profitPayout, fee ) {} catch Error(string memory reason) { emit BetProfitTransferFail(bet.id, profitPayout, reason); } } else { payout = 0; if (!isGasToken) { try IERC20(token).transfer(address(bank), betAmount) {} catch Error(string memory reason) { emit BankTransferFail(bet.id, betAmount, reason); } } try bank.cashIn{value: isGasToken ? betAmount : 0}(token, betAmount) {} catch Error(string memory reason) { emit BankCashInFail(bet.id, betAmount, reason); } } bet.payout = payout; return payout; } /// @notice Gets the list of the last user bets. /// @param user Address of the gamer. /// @param dataLength The amount of bets to return. /// @return A list of Bet. function _getLastUserBets(address user, uint256 dataLength) internal view returns (Bet[] memory) { uint256[] memory userBetsIds = _userBets[user]; uint256 betsLength = userBetsIds.length; if (betsLength < dataLength) { dataLength = betsLength; } Bet[] memory userBets = new Bet[](dataLength); if (dataLength > 0) { uint256 userBetsIndex = 0; for (uint256 i = betsLength; i > betsLength - dataLength; i--) { userBets[userBetsIndex] = bets[userBetsIds[i - 1]]; userBetsIndex++; } } return userBets; } /// @notice Calculates the amount's fee based on the house edge. /// @param token Address of the token. /// @param amount From which the fee amount will be calculated. /// @return The fee amount. function _getFees(address token, uint256 amount) internal view returns (uint256) { return (tokens[token].houseEdge * amount) / 10000; } /// @notice Sets the Bank contract. /// @param _bank Address of the Bank contract. function setBank(IBank _bank) public onlyOwner { bank = _bank; emit SetBank(address(_bank)); } /// @notice Sets the new referral program. /// @param _referralProgram The referral program address. function setReferralProgram(IReferral _referralProgram) public onlyOwner { referralProgram = _referralProgram; emit SetReferralProgram(address(referralProgram)); } /// @notice Pauses the contract to disable new bets. function pause() external onlyOwner { if (paused()) { _unpause(); } else { _pause(); } } /// @notice Sets the Chainlink VRF V2 configuration. /// @param subId Subscription ID. /// @param callbackGasLimit How much gas you would like in your callback to do work with the random words provided. /// @param requestConfirmations How many confirmations the Chainlink node should wait before responding. /// @param keyHash Hash of the public key used to verify the VRF proof. function setChainlinkConfig( uint64 subId, uint32 callbackGasLimit, uint16 requestConfirmations, bytes32 keyHash ) external onlyOwner { chainlinkConfig.subId = subId; chainlinkConfig.callbackGasLimit = callbackGasLimit; chainlinkConfig.requestConfirmations = requestConfirmations; chainlinkConfig.keyHash = keyHash; } /// @notice Withdraws remaining tokens. /// @param token Address of the token. /// @param amount Number of tokens. /// @dev Useful in case some transfers failed during the bet resolution callback. function inCaseTokensGetStuck(address token, uint256 amount) external onlyOwner { if (token == address(0)) { Address.sendValue(payable(msg.sender), amount); } else { IERC20(token).safeTransfer(msg.sender, amount); } } /// @notice Changes the token's partner address. /// @param token Address of the token. /// @param partner Address of the partner. function setTokenPartner(address token, address partner) external onlyTokenOwner(token) { tokens[token].partner = partner; emit SetTokenPartner(token, partner); } /// @notice Sets the minimum bet amount for a specific token. /// @param token Address of the token. /// @param tokenMinBetAmount Minimum bet amount. function setTokenMinBetAmount(address token, uint256 tokenMinBetAmount) external onlyTokenOwner(token) { tokens[token].minBetAmount = tokenMinBetAmount; emit SetTokenMinBetAmount(token, tokenMinBetAmount); } /// @notice Sets the Chainlink VRF subscription ID for a specific token. /// @param token Address of the token. /// @param subId Subscription ID. function setTokenVRFSubId(address token, uint64 subId) external onlyTokenOwner(token) { tokens[token].VRFSubId = subId; emit SetTokenVRFSubId(token, subId); } /// @notice Distributes the token's collected Chainlink fees. /// @param token Address of the token. function withdrawTokensVRFFees(address token) external onlyTokenOwner(token) { uint256 tokenChainlinkFees = tokens[token].VRFFees; if (tokenChainlinkFees != 0) { tokens[token].VRFFees = 0; Address.sendValue(payable(msg.sender), tokenChainlinkFees); emit DistributeTokenVRFFees(token, tokenChainlinkFees); } } /// @notice Refunds the bet to the user if the Chainlink VRF callback failed. /// @param id The Bet ID. function refundBet(uint256 id) external { Bet storage bet = bets[id]; if (bet.resolved == true) { revert NotPendingBet(id); } else if (block.number < bet.blockNumber + 30) { revert NotFulfilled(id); } bet.resolved = true; bet.payout = bet.amount; if (bet.token == address(0)) { Address.sendValue(bet.user, bet.amount); } else { IERC20(bet.token).safeTransfer(bet.user, bet.amount); } emit BetRefunded(id, bet.user, bet.amount); uint256 chainlinkVRFCost = bet.vrfCost; if ( tokens[bet.token].VRFFees >= chainlinkVRFCost && address(this).balance >= chainlinkVRFCost ) { tokens[bet.token].VRFFees -= chainlinkVRFCost; Address.sendValue(bet.user, chainlinkVRFCost); } else { emit BetCostRefundFail(id, bet.user, chainlinkVRFCost); } } /// @notice Returns the amount of ETH that should be passed to the wager transaction /// to cover Chainlink VRF fee. /// @return The bet resolution cost amount. function getChainlinkVRFCost() public view returns (uint256) { (, int256 weiPerUnitLink, , , ) = LINK_ETH_feed.latestRoundData(); if (weiPerUnitLink <= 0) { revert InvalidLinkWeiPrice(weiPerUnitLink); } // Get Chainlink VRF v2 fee amount. ( uint32 fulfillmentFlatFeeLinkPPMTier1, , , , , , , , ) = chainlinkCoordinator.getFeeConfig(); // 115000 gas is the average Verification gas of Chainlink VRF. return (tx.gasprice * (115000 + chainlinkConfig.callbackGasLimit)) + ((1e12 * uint256(fulfillmentFlatFeeLinkPPMTier1) * uint256(weiPerUnitLink)) / 1e18); } }
{ "evmVersion": "london", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 8000 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"bankAddress","type":"address"},{"internalType":"address","name":"referralProgramAddress","type":"address"},{"internalType":"address","name":"chainlinkCoordinatorAddress","type":"address"},{"internalType":"address","name":"LINK_ETH_feedAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessDenied","type":"error"},{"inputs":[{"internalType":"uint16","name":"houseEdge","type":"uint16"}],"name":"ExcessiveHouseEdge","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"ForbiddenToken","type":"error"},{"inputs":[{"internalType":"int256","name":"linkWei","type":"int256"}],"name":"InvalidLinkWeiPrice","type":"error"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"NotFulfilled","type":"error"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"NotPendingBet","type":"error"},{"inputs":[{"internalType":"address","name":"have","type":"address"},{"internalType":"address","name":"want","type":"address"}],"name":"OnlyCoordinatorCanFulfill","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"UnderMinBetAmount","type":"error"},{"inputs":[],"name":"WrongGasValueToCoverFee","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"BankCashInFail","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"BankTransferFail","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"BetAmountFeeTransferFail","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"BetAmountTransferFail","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"chainlinkVRFCost","type":"uint256"}],"name":"BetCostRefundFail","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"string","name":"reason","type":"string"}],"name":"BetProfitTransferFail","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BetRefunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DistributeTokenVRFFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"bool","name":"face","type":"bool"}],"name":"PlaceBet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bool","name":"face","type":"bool"},{"indexed":false,"internalType":"bool","name":"rolled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"payout","type":"uint256"}],"name":"Roll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"bank","type":"address"}],"name":"SetBank","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint16","name":"houseEdge","type":"uint16"}],"name":"SetHouseEdge","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"referralProgram","type":"address"}],"name":"SetReferralProgram","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"minBetAmount","type":"uint256"}],"name":"SetTokenMinBetAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"partner","type":"address"}],"name":"SetTokenPartner","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint64","name":"subId","type":"uint64"}],"name":"SetTokenVRFSubId","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"LINK_ETH_feed","outputs":[{"internalType":"contract AggregatorV3Interface","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bank","outputs":[{"internalType":"contract IBank","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"bets","outputs":[{"internalType":"bool","name":"resolved","type":"bool"},{"internalType":"address payable","name":"user","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"blockNumber","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"vrfCost","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chainlinkConfig","outputs":[{"internalType":"uint64","name":"subId","type":"uint64"},{"internalType":"uint32","name":"callbackGasLimit","type":"uint32"},{"internalType":"uint16","name":"requestConfirmations","type":"uint16"},{"internalType":"bytes32","name":"keyHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chainlinkCoordinator","outputs":[{"internalType":"contract IVRFCoordinatorV2","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"coinTossBets","outputs":[{"internalType":"bool","name":"face","type":"bool"},{"internalType":"bool","name":"rolled","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainlinkVRFCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"dataLength","type":"uint256"}],"name":"getLastUserBets","outputs":[{"components":[{"components":[{"internalType":"bool","name":"resolved","type":"bool"},{"internalType":"address payable","name":"user","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"blockNumber","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"},{"internalType":"uint256","name":"vrfCost","type":"uint256"}],"internalType":"struct Game.Bet","name":"bet","type":"tuple"},{"components":[{"internalType":"bool","name":"face","type":"bool"},{"internalType":"bool","name":"rolled","type":"bool"}],"internalType":"struct CoinToss.CoinTossBet","name":"coinTossBet","type":"tuple"}],"internalType":"struct CoinToss.FullCoinTossBet[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"betAmount","type":"uint256"}],"name":"getPayout","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"inCaseTokensGetStuck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"requestId","type":"uint256"},{"internalType":"uint256[]","name":"randomWords","type":"uint256[]"}],"name":"rawFulfillRandomWords","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"referralProgram","outputs":[{"internalType":"contract IReferral","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"refundBet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IBank","name":"_bank","type":"address"}],"name":"setBank","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"subId","type":"uint64"},{"internalType":"uint32","name":"callbackGasLimit","type":"uint32"},{"internalType":"uint16","name":"requestConfirmations","type":"uint16"},{"internalType":"bytes32","name":"keyHash","type":"bytes32"}],"name":"setChainlinkConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint16","name":"_houseEdge","type":"uint16"}],"name":"setHouseEdge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IReferral","name":"_referralProgram","type":"address"}],"name":"setReferralProgram","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"tokenMinBetAmount","type":"uint256"}],"name":"setTokenMinBetAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"partner","type":"address"}],"name":"setTokenPartner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint64","name":"subId","type":"uint64"}],"name":"setTokenVRFSubId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tokens","outputs":[{"internalType":"uint16","name":"houseEdge","type":"uint16"},{"internalType":"uint64","name":"VRFSubId","type":"uint64"},{"internalType":"address","name":"partner","type":"address"},{"internalType":"uint256","name":"minBetAmount","type":"uint256"},{"internalType":"uint256","name":"VRFFees","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"face","type":"bool"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"internalType":"address","name":"referrer","type":"address"}],"name":"wager","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"withdrawTokensVRFFees","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e06040523480156200001157600080fd5b50604051620042ec380380620042ec83398101604081905262000034916200025b565b838383600184826200004633620000b0565b6000805460ff60a01b191690556001600160a01b0316608052600180556200006e8562000100565b6200007984620001a4565b600480546001600160a01b0319166001600160a01b0394851617905561ffff9190911660a0521660c05250620002b8945050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b031633146200014f5760405162461bcd60e51b81526020600482018190526024820152600080516020620042cc83398151915260448201526064015b60405180910390fd5b600880546001600160a01b0319166001600160a01b0383169081179091556040519081527f10f5824683d64a0712038f2244e046b174a1cc57fbb8556bfda5ffb261244067906020015b60405180910390a150565b6000546001600160a01b03163314620001ef5760405162461bcd60e51b81526020600482018190526024820152600080516020620042cc833981519152604482015260640162000146565b600980546001600160a01b0319166001600160a01b0383169081179091556040519081527f678edf136de423322d705b75c3157ecfde496e1ad82aef725aa6deb9d94d4de29060200162000199565b80516001600160a01b03811681146200025657600080fd5b919050565b600080600080608085870312156200027257600080fd5b6200027d856200023e565b93506200028d602086016200023e565b92506200029d604086016200023e565b9150620002ad606086016200023e565b905092959194509250565b60805160a05160c051613fd6620002f66000396000818161043d01526108da0152600061240501526000818161083f015261089a0152613fd66000f3fe6080604052600436106101c25760003560e01c806376cdb03b116100f7578063c2fb579f11610095578063e1fdb4b411610064578063e1fdb4b41461065c578063e48603391461067c578063e59af73214610728578063f2fde38b1461074857600080fd5b8063c2fb579f1461059f578063c6d758cb146105cc578063cdc42344146105ec578063e051ece91461060c57600080fd5b80638da5cb5b116100d15780638da5cb5b14610521578063a267bf991461053f578063ac9650d814610552578063bc3ec3831461057f57600080fd5b806376cdb03b146104cc57806378bcde22146104ec5780638456cb591461050c57600080fd5b80634297dcbe1161016457806369d2fc6a1161013e57806369d2fc6a1461042b5780636dfa8e5214610477578063707cd55e14610497578063715018a6146104b757600080fd5b80634297dcbe146103495780635c975abb14610369578063653792df146103a457600080fd5b806328c9ea91116101a057806328c9ea91146102c65780633d32753c146102e95780633e32a381146103095780633e56f9f91461032957600080fd5b8063090d23b9146101c75780631fe543e3146101e957806322af00fa14610209575b600080fd5b3480156101d357600080fd5b506101e76101e23660046135df565b610768565b005b3480156101f557600080fd5b506101e7610204366004613658565b610834565b34801561021557600080fd5b5061027861022436600461370b565b6005602081905260009182526040909120805460018201546002830154600384015460048501549585015460069095015460ff8516966101009095046001600160a01b039081169694169492939192919088565b6040805198151589526001600160a01b0397881660208a015295909616948701949094526060860192909252608085015260a084015260c083015260e0820152610100015b60405180910390f35b3480156102d257600080fd5b506102db6108d5565b6040519081526020016102bd565b3480156102f557600080fd5b506101e7610304366004613765565b610a99565b34801561031557600080fd5b506101e76103243660046135df565b610b88565b34801561033557600080fd5b506102db61034436600461370b565b610c48565b34801561035557600080fd5b506101e76103643660046137b2565b610c5b565b34801561037557600080fd5b5060005474010000000000000000000000000000000000000000900460ff1660405190151581526020016102bd565b3480156103b057600080fd5b506002546003546103f29167ffffffffffffffff81169168010000000000000000820463ffffffff16916c01000000000000000000000000900461ffff169084565b6040805167ffffffffffffffff909516855263ffffffff909316602085015261ffff9091169183019190915260608201526080016102bd565b34801561043757600080fd5b5061045f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102bd565b34801561048357600080fd5b506101e76104923660046137de565b610d53565b3480156104a357600080fd5b506101e76104b23660046135df565b610e73565b3480156104c357600080fd5b506101e7610f96565b3480156104d857600080fd5b5060085461045f906001600160a01b031681565b3480156104f857600080fd5b506101e7610507366004613813565b610ffc565b34801561051857600080fd5b506101e7611060565b34801561052d57600080fd5b506000546001600160a01b031661045f565b6101e761054d36600461384d565b6110ed565b34801561055e57600080fd5b5061057261056d3660046138a0565b611210565b6040516102bd919061396d565b34801561058b57600080fd5b506101e761059a3660046139ed565b611305565b3480156105ab57600080fd5b506105bf6105ba3660046137b2565b611424565b6040516102bd9190613a26565b3480156105d857600080fd5b506101e76105e73660046137b2565b6115b2565b3480156105f857600080fd5b5060095461045f906001600160a01b031681565b34801561061857600080fd5b5061064561062736600461370b565b600a6020526000908152604090205460ff8082169161010090041682565b6040805192151583529015156020830152016102bd565b34801561066857600080fd5b506101e761067736600461370b565b611638565b34801561068857600080fd5b506106e46106973660046135df565b60076020526000908152604090208054600182015460029092015461ffff82169262010000830467ffffffffffffffff16926a010000000000000000000090046001600160a01b03169185565b6040805161ffff909616865267ffffffffffffffff90941660208601526001600160a01b03909216928401929092526060830191909152608082015260a0016102bd565b34801561073457600080fd5b5060045461045f906001600160a01b031681565b34801561075457600080fd5b506101e76107633660046135df565b61189b565b6000546001600160a01b031633146107c75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600880547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0383169081179091556040519081527f10f5824683d64a0712038f2244e046b174a1cc57fbb8556bfda5ffb261244067906020015b60405180910390a150565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146108c7576040517f1cf993f40000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001660248201526044016107be565b6108d1828261197d565b5050565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015610936573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095a9190613af6565b5050509150506000811361099d576040517f43d4cf66000000000000000000000000000000000000000000000000000000008152600481018290526024016107be565b6000600460009054906101000a90046001600160a01b03166001600160a01b0316635fbbc0d26040518163ffffffff1660e01b815260040161012060405180830381865afa1580156109f3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a179190613b59565b50505050505050509050670de0b6b3a7640000828263ffffffff1664e8d4a51000610a429190613c3e565b610a4c9190613c3e565b610a569190613caa565b600254610a789068010000000000000000900463ffffffff166201c138613cbe565b610a889063ffffffff163a613c3e565b610a929190613ce6565b9250505090565b6000546001600160a01b03163314610af35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107be565b6002805461ffff9093166c01000000000000000000000000027fffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffff63ffffffff90951668010000000000000000027fffffffffffffffffffffffffffffffffffffffff00000000000000000000000090941667ffffffffffffffff90961695909517929092179290921692909217909155600355565b6000546001600160a01b03163314610be25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107be565b600980547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0383169081179091556040519081527f678edf136de423322d705b75c3157ecfde496e1ad82aef725aa6deb9d94d4de290602001610829565b6000610c55826002613c3e565b92915050565b6001600160a01b0380831660009081526007602052604090205483916a0100000000000000000000909104168015610c9f57336001600160a01b0382161415610cbe565b33610cb26000546001600160a01b031690565b6001600160a01b031614155b15610cf5576040517f4ca8886700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841660008181526007602052604090819020600101859055517f8b4a07860448b613116df3f175c837980eceaca7d1dc5143c46a20ab31ec00f990610d459086815260200190565b60405180910390a250505050565b6001600160a01b0380831660009081526007602052604090205483916a0100000000000000000000909104168015610d9757336001600160a01b0382161415610db6565b33610daa6000546001600160a01b031690565b6001600160a01b031614155b15610ded576040517f4ca8886700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841660008181526007602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffff166201000067ffffffffffffffff89169081029190911790915591519182527fae367543cf47ca7e51a9f3f92711553aa33777847f719f7e2821ea8d846ed0e19101610d45565b6001600160a01b0380821660009081526007602052604090205482916a0100000000000000000000909104168015610eb757336001600160a01b0382161415610ed6565b33610eca6000546001600160a01b031690565b6001600160a01b031614155b15610f0d576040517f4ca8886700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0383166000908152600760205260409020600201548015610f90576001600160a01b038416600090815260076020526040812060020155610f553382611adb565b836001600160a01b03167f1d3f9fc0810d9e182e982399cb91de735f6c415728fb9bc42664b84087c2af5682604051610d4591815260200190565b50505050565b6000546001600160a01b03163314610ff05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107be565b610ffa6000611bf4565b565b6000546001600160a01b031633146110565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107be565b6108d18282611c5c565b6000546001600160a01b031633146110ba5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107be565b60005474010000000000000000000000000000000000000000900460ff16156110e557610ffa611d7b565b610ffa611e4d565b60005474010000000000000000000000000000000000000000900460ff16156111585760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016107be565b6000611170848461116a612710610c48565b85611f1f565b6060810180516000908152600a602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168a1515908117909155828501518286015194518451908152928301919091529394506001600160a01b0393841693909216917f46e4545f5ca1ab0b9a1b652991a6f0c992ce53407f535de6be720618ae33310c910160405180910390a35050505050565b60608167ffffffffffffffff81111561122b5761122b6135fc565b60405190808252806020026020018201604052801561125e57816020015b60608152602001906001900390816112495790505b50905060005b828110156112fe576112ce3085858481811061128257611282613cfe565b90506020028101906112949190613d2d565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506127cf92505050565b8282815181106112e0576112e0613cfe565b602002602001018190525080806112f690613d99565b915050611264565b5092915050565b6001600160a01b0380831660009081526007602052604090205483916a010000000000000000000090910416801561134957336001600160a01b0382161415611368565b3361135c6000546001600160a01b031690565b6001600160a01b031614155b1561139f576040517f4ca8886700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384811660008181526007602090815260409182902080547fffff0000000000000000000000000000000000000000ffffffffffffffffffff166a0100000000000000000000958916958602179055905192835290917fc991529379552af6d0789cc899d5180a270a4bc3b1a3892adcac3d95f93dda1d9101610d45565b6060600061143284846127fb565b90506000815167ffffffffffffffff811115611450576114506135fc565b6040519080825280602002602001820160405280156114e357816020015b60408051610140810182526000818301818152606083018290526080830182905260a0830182905260c0830182905260e08301829052610100830182905261012083018290528252825180840190935280835260208084019190915281019190915281526020019060019003908161146e5790505b50905060005b82518110156115a957604051806040016040528084838151811061150f5761150f613cfe565b60200260200101518152602001600a600086858151811061153257611532613cfe565b60209081029190910181015160600151825281810192909252604090810160002081518083019092525460ff80821615158352610100909104161515918101919091529052825183908390811061158b5761158b613cfe565b602002602001018190525080806115a190613d99565b9150506114e9565b50949350505050565b6000546001600160a01b0316331461160c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107be565b6001600160a01b038216611624576108d13382611adb565b6108d16001600160a01b0383163383612a26565b6000818152600560205260409020805460ff161515600103611689576040517f1a040cf0000000000000000000000000000000000000000000000000000000008152600481018390526024016107be565b600481015461169990601e613ce6565b4310156116d5576040517f283bb6b1000000000000000000000000000000000000000000000000000000008152600481018390526024016107be565b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081178255600382015460058301558101546001600160a01b031661173e57805460038201546117399161010090046001600160a01b031690611adb565b611769565b805460038201546001830154611769926001600160a01b039182169261010090910490911690612a26565b80546003820154604080518581526101009093046001600160a01b031660208401528201527ff22517a5eae9f54be712c3150eca5ba925d233687b223c2ebf89272f12ee08659060600160405180910390a1600681015460018201546001600160a01b031660009081526007602052604090206002015481118015906117ef5750804710155b156118475760018201546001600160a01b031660009081526007602052604081206002018054839290611823908490613dd1565b909155505081546118429061010090046001600160a01b031682611adb565b505050565b8154604080518581526101009092046001600160a01b0316602083015281018290527f5562f3770dc6771b10ced979e143188578972781dc3cb3ad66c125e7d1797c869060600160405180910390a1505050565b6000546001600160a01b031633146118f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107be565b6001600160a01b0381166119715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107be565b61197a81611bf4565b50565b6000828152600a6020908152604080832060059092528220835191929091600290859083906119ae576119ae613cfe565b60200260200101516119c09190613de8565b60408051808201909152600080825260016020830152919250908183600281106119ec576119ec613cfe565b602002015185547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff811661010083151590810291821789556003880154939450600093611a5193899360ff918216911617151590911490611a4c90610c48565b612acf565b60018601548654600288015460038901548a5460408051938452602084019290925260ff161515908201528515156060820152608081018490529293506001600160a01b0391821692610100909104909116907f4a6c40516242d2bc8453081e1746087d26dc596dcc95d61f76381accb74699399060a00160405180910390a35050505050505050565b80471015611b2b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016107be565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611b78576040519150601f19603f3d011682016040523d82523d6000602084013e611b7d565b606091505b50509050806118425760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016107be565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03163314611cb65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107be565b6101908161ffff161115611cfc576040517f461e6e3b00000000000000000000000000000000000000000000000000000000815261ffff821660048201526024016107be565b6001600160a01b03821660008181526007602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00001661ffff861690811790915591519182527f7dfd3ecb8ac83242184c019f85ca408558f2ac0a5a19af6be2a4aee697eac812910160405180910390a25050565b60005474010000000000000000000000000000000000000000900460ff16611de55760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016107be565b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60005474010000000000000000000000000000000000000000900460ff1615611eb85760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016107be565b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e303390565b611f7b60405180610100016040528060001515815260200160006001600160a01b0316815260200160006001600160a01b0316815260200160008152602001600081526020016000815260200160008152602001600081525090565b60005474010000000000000000000000000000000000000000900460ff1615611fe65760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016107be565b6002600154036120385760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107be565b60026001556008546040517fcbe230c30000000000000000000000000000000000000000000000000000000081526001600160a01b0387811660048301529091169063cbe230c390602401602060405180830381865afa1580156120a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120c49190613dfc565b151560000361210a576040517f1e7c09c70000000000000000000000000000000000000000000000000000000081526001600160a01b03861660048201526024016107be565b336001600160a01b03861615600081612123573461212d565b61212d8734613dd1565b905060008261213c5787612146565b6121468234613dd1565b905060006121526108d5565b9050606461216182600a613c3e565b61216b9190613caa565b6121759082613dd1565b8310156121ae576040517f0b56cefe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038a16600090815260076020526040812060020180548592906121d9908490613ce6565b9091555050612710821090508061220a57506001600160a01b03891660009081526007602052604090206001015481105b15612253576040517f8a8802470000000000000000000000000000000000000000000000000000000081526001600160a01b038a166004820152602481018290526044016107be565b6008546040517f278b39de0000000000000000000000000000000000000000000000000000000081526001600160a01b038b81166004830152602482018a9052600092169063278b39de90604401602060405180830381865afa1580156122be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122e29190613e19565b90508082111561230957831561230557612305856123008385613dd1565b611adb565b8091505b506004546003546001600160a01b038b811660009081526007602052604081205490939190911691635d3b1d309162010000900467ffffffffffffffff161561237a576001600160a01b038d1660009081526007602052604090205462010000900467ffffffffffffffff16612388565b60025467ffffffffffffffff165b60025460405160e085901b7fffffffff00000000000000000000000000000000000000000000000000000000168152600481019390935267ffffffffffffffff90911660248301526c01000000000000000000000000810461ffff90811660448401526801000000000000000090910463ffffffff1660648301527f000000000000000000000000000000000000000000000000000000000000000016608482015260a4016020604051808303816000875af115801561244c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124709190613e19565b90506000604051806101000160405280600015158152602001876001600160a01b031681526020018c6001600160a01b031681526020018381526020018481526020014381526020016000815260200185815250905060066000876001600160a01b03166001600160a01b03168152602001908152602001600020829080600181540180825580915050600190039060005260206000200160009091909190915055806005600084815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a8154816001600160a01b0302191690836001600160a01b0316021790555060408201518160010160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550606082015181600201556080820151816003015560a0820151816004015560c0820151816005015560e0820151816006015590505060006001600160a01b0316886001600160a01b03161415801561261057506001600160a01b0386166000908152600660205260409020546001145b80156126a057506009546040517f18452cd80000000000000000000000000000000000000000000000000000000081526001600160a01b038881166004830152909116906318452cd890602401602060405180830381865afa15801561267a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061269e9190613dfc565b155b1561272a576009546040517fb94265b80000000000000000000000000000000000000000000000000000000081526001600160a01b0388811660048301528a811660248301529091169063b94265b890604401600060405180830381600087803b15801561270d57600080fd5b505af1158015612721573d6000803e3d6000fd5b505050506127a3565b6009546040517fce5cae920000000000000000000000000000000000000000000000000000000081526001600160a01b0388811660048301529091169063ce5cae9290602401600060405180830381600087803b15801561278a57600080fd5b505af115801561279e573d6000803e3d6000fd5b505050505b846127bd576127bd6001600160a01b038c168730866131d2565b600180559a9950505050505050505050565b60606127f48383604051806060016040528060278152602001613f7a60279139613223565b9392505050565b6001600160a01b038216600090815260066020908152604080832080548251818502810185019093528083526060949383018282801561285a57602002820191906000526020600020905b815481526020019060010190808311612846575b5050835193945050505083811015612870578093505b60008467ffffffffffffffff81111561288b5761288b6135fc565b60405190808252806020026020018201604052801561291857816020015b61290560405180610100016040528060001515815260200160006001600160a01b0316815260200160006001600160a01b0316815260200160008152602001600081526020016000815260200160008152602001600081525090565b8152602001906001900390816128a95790505b5090508415612a1d576000825b61292f8785613dd1565b811115612a1a576005600086612946600185613dd1565b8151811061295657612956613cfe565b602090810291909101810151825281810192909252604090810160002081516101008082018452825460ff811615158352046001600160a01b03908116948201949094526001820154909316918301919091526002810154606083015260038101546080830152600481015460a0830152600581015460c08301526006015460e082015283518490849081106129ee576129ee613cfe565b60200260200101819052508180612a0490613d99565b9250508080612a1290613e32565b915050612925565b50505b95945050505050565b6040516001600160a01b0383166024820152604481018290526118429084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152613317565b82546000906001600160a01b036101008204169060ff16151560011480612afd57506001600160a01b038116155b15612b3c5784600201546040517f1a040cf00000000000000000000000000000000000000000000000000000000081526004016107be91815260200190565b600180860154600387015487547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690921787556001600160a01b03169081158615612fc2576000612b8e8388613dd1565b90506000612b9c85856133fc565b90506000612baa86846133fc565b90506000612bb88284613ce6565b9050612bc4818b613dd1565b99506000612bd28488613dd1565b90506000612be08487613dd1565b90508615612cbf5760008a6001600160a01b03168360405160006040518083038185875af1925050503d8060008114612c35576040519150601f19603f3d011682016040523d82523d6000602084013e612c3a565b606091505b5050905080612cb95760028f015460408051918252602082018b905260609082018190526017908201527f4d697373696e672067617320746f6b656e2066756e647300000000000000000060808201527f2f47628dd4a5df2cb8dcf9bf22dcb68db93b798e9666e48454fdf5c3488c378d9060a0015b60405180910390a15b50612ead565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b038b81166004830152602482018490528a169063a9059cbb906044016020604051808303816000875af1925050508015612d43575060408051601f3d908101601f19168201909252612d4091810190613dfc565b60015b612dbf57612d4f613e67565b806308c379a003612db35750612d63613e83565b80612d6e5750612db5565b7f2f47628dd4a5df2cb8dcf9bf22dcb68db93b798e9666e48454fdf5c3488c378d8f600201548483604051612da593929190613f2b565b60405180910390a150612dc1565b505b3d6000803e3d6000fd5b505b6008546040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b03918216600482015260248101879052908a169063a9059cbb906044016020604051808303816000875af1925050508015612e49575060408051601f3d908101601f19168201909252612e4691810190613dfc565b60015b612eab57612e55613e67565b806308c379a003612db35750612e69613e83565b80612e745750612db5565b7ffa916ddbcce76584ab5323754780c39d03cd75048d5bfb4361e966a270d482528f600201548783604051612cb093929190613f2b565b505b6008546001600160a01b0316631f61502388612eca576000612ecc565b865b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b03808f1660048301528d16602482015260448101859052606481018790526084016000604051808303818588803b158015612f3957600080fd5b505af193505050508015612f4b575060015b612fb757612f57613e67565b806308c379a003612db35750612f6b613e83565b80612f765750612db5565b7f4faefcbc151a3b06dfca7dd0353fc453e246fee39a129b0dd0f89255b8317a158f600201548383604051612fad93929190613f2b565b60405180910390a1505b5050505050506131c0565b60009550806130c5576008546040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b039182166004820152602481018490529084169063a9059cbb906044016020604051808303816000875af1925050508015613053575060408051601f3d908101601f1916820190925261305091810190613dfc565b60015b6130c35761305f613e67565b806308c379a003612db35750613073613e83565b8061307e5750612db5565b7f6083085f60af3af3b5f0ac3fc19411dc014dff48425ef2707ebcf7059582e452896002015484836040516130b593929190613f2b565b60405180910390a1506130c5565b505b6008546001600160a01b0316633138809d826130e25760006130e4565b835b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b0387166004820152602481018690526044016000604051808303818588803b15801561314257600080fd5b505af193505050508015613154575060015b6131c057613160613e67565b806308c379a003612db35750613174613e83565b8061317f5750612db5565b7fda6ed7532ab456201ccb34e59035ea00254ed76e71e7d47d04b4287b302153a8896002015484836040516131b693929190613f2b565b60405180910390a1505b50505050506005929092018290555090565b6040516001600160a01b0380851660248301528316604482015260648101829052610f909085907f23b872dd0000000000000000000000000000000000000000000000000000000090608401612a6b565b60606001600160a01b0384163b6132a25760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e7472616374000000000000000000000000000000000000000000000000000060648201526084016107be565b600080856001600160a01b0316856040516132bd9190613f4a565b600060405180830381855af49150503d80600081146132f8576040519150601f19603f3d011682016040523d82523d6000602084013e6132fd565b606091505b509150915061330d828286613432565b9695505050505050565b600061336c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661346b9092919063ffffffff16565b805190915015611842578080602001905181019061338a9190613dfc565b6118425760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016107be565b6001600160a01b0382166000908152600760205260408120546127109061342890849061ffff16613c3e565b6127f49190613caa565b606083156134415750816127f4565b8251156134515782518084602001fd5b8160405162461bcd60e51b81526004016107be9190613f66565b606061347a8484600085613482565b949350505050565b6060824710156134fa5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016107be565b6001600160a01b0385163b6135515760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016107be565b600080866001600160a01b0316858760405161356d9190613f4a565b60006040518083038185875af1925050503d80600081146135aa576040519150601f19603f3d011682016040523d82523d6000602084013e6135af565b606091505b50915091506135bf828286613432565b979650505050505050565b6001600160a01b038116811461197a57600080fd5b6000602082840312156135f157600080fd5b81356127f4816135ca565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff82111715613651576136516135fc565b6040525050565b6000806040838503121561366b57600080fd5b8235915060208084013567ffffffffffffffff8082111561368b57600080fd5b818601915086601f83011261369f57600080fd5b8135818111156136b1576136b16135fc565b8060051b91506040516136c68584018261362b565b818152918301840191848101898411156136df57600080fd5b938501935b838510156136fb57843581529385019385016136e4565b5080955050505050509250929050565b60006020828403121561371d57600080fd5b5035919050565b803567ffffffffffffffff8116811461373c57600080fd5b919050565b63ffffffff8116811461197a57600080fd5b803561ffff8116811461373c57600080fd5b6000806000806080858703121561377b57600080fd5b61378485613724565b9350602085013561379481613741565b92506137a260408601613753565b9396929550929360600135925050565b600080604083850312156137c557600080fd5b82356137d0816135ca565b946020939093013593505050565b600080604083850312156137f157600080fd5b82356137fc816135ca565b915061380a60208401613724565b90509250929050565b6000806040838503121561382657600080fd5b8235613831816135ca565b915061380a60208401613753565b801515811461197a57600080fd5b6000806000806080858703121561386357600080fd5b843561386e8161383f565b9350602085013561387e816135ca565b9250604085013591506060850135613895816135ca565b939692955090935050565b600080602083850312156138b357600080fd5b823567ffffffffffffffff808211156138cb57600080fd5b818501915085601f8301126138df57600080fd5b8135818111156138ee57600080fd5b8660208260051b850101111561390357600080fd5b60209290920196919550909350505050565b60005b83811015613930578181015183820152602001613918565b83811115610f905750506000910152565b60008151808452613959816020860160208601613915565b601f01601f19169290920160200192915050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b828110156139e0577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc08886030184526139ce858351613941565b94509285019290850190600101613994565b5092979650505050505050565b60008060408385031215613a0057600080fd5b8235613a0b816135ca565b91506020830135613a1b816135ca565b809150509250929050565b602080825282518282018190526000919060409081850190868401855b82811015613acf5781518051805115158652878101516001600160a01b0390811689880152878201511687870152606080820151908701526080808201519087015260a0808201519087015260c0808201519087015260e09081015190860152860151805115156101008601526020015115156101208501526101409093019290850190600101613a43565b5091979650505050505050565b805169ffffffffffffffffffff8116811461373c57600080fd5b600080600080600060a08688031215613b0e57600080fd5b613b1786613adc565b9450602086015193506040860151925060608601519150613b3a60808701613adc565b90509295509295909350565b805162ffffff8116811461373c57600080fd5b60008060008060008060008060006101208a8c031215613b7857600080fd5b8951613b8381613741565b60208b0151909950613b9481613741565b60408b0151909850613ba581613741565b60608b0151909750613bb681613741565b60808b0151909650613bc781613741565b9450613bd560a08b01613b46565b9350613be360c08b01613b46565b9250613bf160e08b01613b46565b9150613c006101008b01613b46565b90509295985092959850929598565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c7657613c76613c0f565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613cb957613cb9613c7b565b500490565b600063ffffffff808316818516808303821115613cdd57613cdd613c0f565b01949350505050565b60008219821115613cf957613cf9613c0f565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112613d6257600080fd5b83018035915067ffffffffffffffff821115613d7d57600080fd5b602001915036819003821315613d9257600080fd5b9250929050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613dca57613dca613c0f565b5060010190565b600082821015613de357613de3613c0f565b500390565b600082613df757613df7613c7b565b500690565b600060208284031215613e0e57600080fd5b81516127f48161383f565b600060208284031215613e2b57600080fd5b5051919050565b600081613e4157613e41613c0f565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600060033d1115613e805760046000803e5060005160e01c5b90565b600060443d1015613e915790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff8160248401118184111715613edf57505050505090565b8285019150815181811115613ef75750505050505090565b843d8701016020828501011115613f115750505050505090565b613f206020828601018761362b565b509095945050505050565b838152826020820152606060408201526000612a1d6060830184613941565b60008251613f5c818460208701613915565b9190910192915050565b6020815260006127f4602083018461394156fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220a79a0554674ae461d45504752183b873cf7a8965618758fae0dc68d138a5a6c764736f6c634300080e00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65720000000000000000000000001a54574cbae9f8a4f9dd19d56687f2266d0c9d31000000000000000000000000d0b6d4503207588b677f79876cf12724baff70f8000000000000000000000000ae975071be8f8ee67addbc1a82488f1c248580670000000000000000000000005787befdc0ecd210dfa948264631cd53e68f7802
Deployed Bytecode
0x6080604052600436106101c25760003560e01c806376cdb03b116100f7578063c2fb579f11610095578063e1fdb4b411610064578063e1fdb4b41461065c578063e48603391461067c578063e59af73214610728578063f2fde38b1461074857600080fd5b8063c2fb579f1461059f578063c6d758cb146105cc578063cdc42344146105ec578063e051ece91461060c57600080fd5b80638da5cb5b116100d15780638da5cb5b14610521578063a267bf991461053f578063ac9650d814610552578063bc3ec3831461057f57600080fd5b806376cdb03b146104cc57806378bcde22146104ec5780638456cb591461050c57600080fd5b80634297dcbe1161016457806369d2fc6a1161013e57806369d2fc6a1461042b5780636dfa8e5214610477578063707cd55e14610497578063715018a6146104b757600080fd5b80634297dcbe146103495780635c975abb14610369578063653792df146103a457600080fd5b806328c9ea91116101a057806328c9ea91146102c65780633d32753c146102e95780633e32a381146103095780633e56f9f91461032957600080fd5b8063090d23b9146101c75780631fe543e3146101e957806322af00fa14610209575b600080fd5b3480156101d357600080fd5b506101e76101e23660046135df565b610768565b005b3480156101f557600080fd5b506101e7610204366004613658565b610834565b34801561021557600080fd5b5061027861022436600461370b565b6005602081905260009182526040909120805460018201546002830154600384015460048501549585015460069095015460ff8516966101009095046001600160a01b039081169694169492939192919088565b6040805198151589526001600160a01b0397881660208a015295909616948701949094526060860192909252608085015260a084015260c083015260e0820152610100015b60405180910390f35b3480156102d257600080fd5b506102db6108d5565b6040519081526020016102bd565b3480156102f557600080fd5b506101e7610304366004613765565b610a99565b34801561031557600080fd5b506101e76103243660046135df565b610b88565b34801561033557600080fd5b506102db61034436600461370b565b610c48565b34801561035557600080fd5b506101e76103643660046137b2565b610c5b565b34801561037557600080fd5b5060005474010000000000000000000000000000000000000000900460ff1660405190151581526020016102bd565b3480156103b057600080fd5b506002546003546103f29167ffffffffffffffff81169168010000000000000000820463ffffffff16916c01000000000000000000000000900461ffff169084565b6040805167ffffffffffffffff909516855263ffffffff909316602085015261ffff9091169183019190915260608201526080016102bd565b34801561043757600080fd5b5061045f7f0000000000000000000000005787befdc0ecd210dfa948264631cd53e68f780281565b6040516001600160a01b0390911681526020016102bd565b34801561048357600080fd5b506101e76104923660046137de565b610d53565b3480156104a357600080fd5b506101e76104b23660046135df565b610e73565b3480156104c357600080fd5b506101e7610f96565b3480156104d857600080fd5b5060085461045f906001600160a01b031681565b3480156104f857600080fd5b506101e7610507366004613813565b610ffc565b34801561051857600080fd5b506101e7611060565b34801561052d57600080fd5b506000546001600160a01b031661045f565b6101e761054d36600461384d565b6110ed565b34801561055e57600080fd5b5061057261056d3660046138a0565b611210565b6040516102bd919061396d565b34801561058b57600080fd5b506101e761059a3660046139ed565b611305565b3480156105ab57600080fd5b506105bf6105ba3660046137b2565b611424565b6040516102bd9190613a26565b3480156105d857600080fd5b506101e76105e73660046137b2565b6115b2565b3480156105f857600080fd5b5060095461045f906001600160a01b031681565b34801561061857600080fd5b5061064561062736600461370b565b600a6020526000908152604090205460ff8082169161010090041682565b6040805192151583529015156020830152016102bd565b34801561066857600080fd5b506101e761067736600461370b565b611638565b34801561068857600080fd5b506106e46106973660046135df565b60076020526000908152604090208054600182015460029092015461ffff82169262010000830467ffffffffffffffff16926a010000000000000000000090046001600160a01b03169185565b6040805161ffff909616865267ffffffffffffffff90941660208601526001600160a01b03909216928401929092526060830191909152608082015260a0016102bd565b34801561073457600080fd5b5060045461045f906001600160a01b031681565b34801561075457600080fd5b506101e76107633660046135df565b61189b565b6000546001600160a01b031633146107c75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600880547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0383169081179091556040519081527f10f5824683d64a0712038f2244e046b174a1cc57fbb8556bfda5ffb261244067906020015b60405180910390a150565b336001600160a01b037f000000000000000000000000ae975071be8f8ee67addbc1a82488f1c2485806716146108c7576040517f1cf993f40000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b037f000000000000000000000000ae975071be8f8ee67addbc1a82488f1c248580671660248201526044016107be565b6108d1828261197d565b5050565b6000807f0000000000000000000000005787befdc0ecd210dfa948264631cd53e68f78026001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015610936573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095a9190613af6565b5050509150506000811361099d576040517f43d4cf66000000000000000000000000000000000000000000000000000000008152600481018290526024016107be565b6000600460009054906101000a90046001600160a01b03166001600160a01b0316635fbbc0d26040518163ffffffff1660e01b815260040161012060405180830381865afa1580156109f3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a179190613b59565b50505050505050509050670de0b6b3a7640000828263ffffffff1664e8d4a51000610a429190613c3e565b610a4c9190613c3e565b610a569190613caa565b600254610a789068010000000000000000900463ffffffff166201c138613cbe565b610a889063ffffffff163a613c3e565b610a929190613ce6565b9250505090565b6000546001600160a01b03163314610af35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107be565b6002805461ffff9093166c01000000000000000000000000027fffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffffffff63ffffffff90951668010000000000000000027fffffffffffffffffffffffffffffffffffffffff00000000000000000000000090941667ffffffffffffffff90961695909517929092179290921692909217909155600355565b6000546001600160a01b03163314610be25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107be565b600980547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0383169081179091556040519081527f678edf136de423322d705b75c3157ecfde496e1ad82aef725aa6deb9d94d4de290602001610829565b6000610c55826002613c3e565b92915050565b6001600160a01b0380831660009081526007602052604090205483916a0100000000000000000000909104168015610c9f57336001600160a01b0382161415610cbe565b33610cb26000546001600160a01b031690565b6001600160a01b031614155b15610cf5576040517f4ca8886700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841660008181526007602052604090819020600101859055517f8b4a07860448b613116df3f175c837980eceaca7d1dc5143c46a20ab31ec00f990610d459086815260200190565b60405180910390a250505050565b6001600160a01b0380831660009081526007602052604090205483916a0100000000000000000000909104168015610d9757336001600160a01b0382161415610db6565b33610daa6000546001600160a01b031690565b6001600160a01b031614155b15610ded576040517f4ca8886700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841660008181526007602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffff166201000067ffffffffffffffff89169081029190911790915591519182527fae367543cf47ca7e51a9f3f92711553aa33777847f719f7e2821ea8d846ed0e19101610d45565b6001600160a01b0380821660009081526007602052604090205482916a0100000000000000000000909104168015610eb757336001600160a01b0382161415610ed6565b33610eca6000546001600160a01b031690565b6001600160a01b031614155b15610f0d576040517f4ca8886700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0383166000908152600760205260409020600201548015610f90576001600160a01b038416600090815260076020526040812060020155610f553382611adb565b836001600160a01b03167f1d3f9fc0810d9e182e982399cb91de735f6c415728fb9bc42664b84087c2af5682604051610d4591815260200190565b50505050565b6000546001600160a01b03163314610ff05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107be565b610ffa6000611bf4565b565b6000546001600160a01b031633146110565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107be565b6108d18282611c5c565b6000546001600160a01b031633146110ba5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107be565b60005474010000000000000000000000000000000000000000900460ff16156110e557610ffa611d7b565b610ffa611e4d565b60005474010000000000000000000000000000000000000000900460ff16156111585760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016107be565b6000611170848461116a612710610c48565b85611f1f565b6060810180516000908152600a602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168a1515908117909155828501518286015194518451908152928301919091529394506001600160a01b0393841693909216917f46e4545f5ca1ab0b9a1b652991a6f0c992ce53407f535de6be720618ae33310c910160405180910390a35050505050565b60608167ffffffffffffffff81111561122b5761122b6135fc565b60405190808252806020026020018201604052801561125e57816020015b60608152602001906001900390816112495790505b50905060005b828110156112fe576112ce3085858481811061128257611282613cfe565b90506020028101906112949190613d2d565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506127cf92505050565b8282815181106112e0576112e0613cfe565b602002602001018190525080806112f690613d99565b915050611264565b5092915050565b6001600160a01b0380831660009081526007602052604090205483916a010000000000000000000090910416801561134957336001600160a01b0382161415611368565b3361135c6000546001600160a01b031690565b6001600160a01b031614155b1561139f576040517f4ca8886700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384811660008181526007602090815260409182902080547fffff0000000000000000000000000000000000000000ffffffffffffffffffff166a0100000000000000000000958916958602179055905192835290917fc991529379552af6d0789cc899d5180a270a4bc3b1a3892adcac3d95f93dda1d9101610d45565b6060600061143284846127fb565b90506000815167ffffffffffffffff811115611450576114506135fc565b6040519080825280602002602001820160405280156114e357816020015b60408051610140810182526000818301818152606083018290526080830182905260a0830182905260c0830182905260e08301829052610100830182905261012083018290528252825180840190935280835260208084019190915281019190915281526020019060019003908161146e5790505b50905060005b82518110156115a957604051806040016040528084838151811061150f5761150f613cfe565b60200260200101518152602001600a600086858151811061153257611532613cfe565b60209081029190910181015160600151825281810192909252604090810160002081518083019092525460ff80821615158352610100909104161515918101919091529052825183908390811061158b5761158b613cfe565b602002602001018190525080806115a190613d99565b9150506114e9565b50949350505050565b6000546001600160a01b0316331461160c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107be565b6001600160a01b038216611624576108d13382611adb565b6108d16001600160a01b0383163383612a26565b6000818152600560205260409020805460ff161515600103611689576040517f1a040cf0000000000000000000000000000000000000000000000000000000008152600481018390526024016107be565b600481015461169990601e613ce6565b4310156116d5576040517f283bb6b1000000000000000000000000000000000000000000000000000000008152600481018390526024016107be565b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660019081178255600382015460058301558101546001600160a01b031661173e57805460038201546117399161010090046001600160a01b031690611adb565b611769565b805460038201546001830154611769926001600160a01b039182169261010090910490911690612a26565b80546003820154604080518581526101009093046001600160a01b031660208401528201527ff22517a5eae9f54be712c3150eca5ba925d233687b223c2ebf89272f12ee08659060600160405180910390a1600681015460018201546001600160a01b031660009081526007602052604090206002015481118015906117ef5750804710155b156118475760018201546001600160a01b031660009081526007602052604081206002018054839290611823908490613dd1565b909155505081546118429061010090046001600160a01b031682611adb565b505050565b8154604080518581526101009092046001600160a01b0316602083015281018290527f5562f3770dc6771b10ced979e143188578972781dc3cb3ad66c125e7d1797c869060600160405180910390a1505050565b6000546001600160a01b031633146118f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107be565b6001600160a01b0381166119715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107be565b61197a81611bf4565b50565b6000828152600a6020908152604080832060059092528220835191929091600290859083906119ae576119ae613cfe565b60200260200101516119c09190613de8565b60408051808201909152600080825260016020830152919250908183600281106119ec576119ec613cfe565b602002015185547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff811661010083151590810291821789556003880154939450600093611a5193899360ff918216911617151590911490611a4c90610c48565b612acf565b60018601548654600288015460038901548a5460408051938452602084019290925260ff161515908201528515156060820152608081018490529293506001600160a01b0391821692610100909104909116907f4a6c40516242d2bc8453081e1746087d26dc596dcc95d61f76381accb74699399060a00160405180910390a35050505050505050565b80471015611b2b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016107be565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611b78576040519150601f19603f3d011682016040523d82523d6000602084013e611b7d565b606091505b50509050806118425760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016107be565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03163314611cb65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107be565b6101908161ffff161115611cfc576040517f461e6e3b00000000000000000000000000000000000000000000000000000000815261ffff821660048201526024016107be565b6001600160a01b03821660008181526007602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00001661ffff861690811790915591519182527f7dfd3ecb8ac83242184c019f85ca408558f2ac0a5a19af6be2a4aee697eac812910160405180910390a25050565b60005474010000000000000000000000000000000000000000900460ff16611de55760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016107be565b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60005474010000000000000000000000000000000000000000900460ff1615611eb85760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016107be565b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e303390565b611f7b60405180610100016040528060001515815260200160006001600160a01b0316815260200160006001600160a01b0316815260200160008152602001600081526020016000815260200160008152602001600081525090565b60005474010000000000000000000000000000000000000000900460ff1615611fe65760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016107be565b6002600154036120385760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107be565b60026001556008546040517fcbe230c30000000000000000000000000000000000000000000000000000000081526001600160a01b0387811660048301529091169063cbe230c390602401602060405180830381865afa1580156120a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120c49190613dfc565b151560000361210a576040517f1e7c09c70000000000000000000000000000000000000000000000000000000081526001600160a01b03861660048201526024016107be565b336001600160a01b03861615600081612123573461212d565b61212d8734613dd1565b905060008261213c5787612146565b6121468234613dd1565b905060006121526108d5565b9050606461216182600a613c3e565b61216b9190613caa565b6121759082613dd1565b8310156121ae576040517f0b56cefe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038a16600090815260076020526040812060020180548592906121d9908490613ce6565b9091555050612710821090508061220a57506001600160a01b03891660009081526007602052604090206001015481105b15612253576040517f8a8802470000000000000000000000000000000000000000000000000000000081526001600160a01b038a166004820152602481018290526044016107be565b6008546040517f278b39de0000000000000000000000000000000000000000000000000000000081526001600160a01b038b81166004830152602482018a9052600092169063278b39de90604401602060405180830381865afa1580156122be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122e29190613e19565b90508082111561230957831561230557612305856123008385613dd1565b611adb565b8091505b506004546003546001600160a01b038b811660009081526007602052604081205490939190911691635d3b1d309162010000900467ffffffffffffffff161561237a576001600160a01b038d1660009081526007602052604090205462010000900467ffffffffffffffff16612388565b60025467ffffffffffffffff165b60025460405160e085901b7fffffffff00000000000000000000000000000000000000000000000000000000168152600481019390935267ffffffffffffffff90911660248301526c01000000000000000000000000810461ffff90811660448401526801000000000000000090910463ffffffff1660648301527f000000000000000000000000000000000000000000000000000000000000000116608482015260a4016020604051808303816000875af115801561244c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124709190613e19565b90506000604051806101000160405280600015158152602001876001600160a01b031681526020018c6001600160a01b031681526020018381526020018481526020014381526020016000815260200185815250905060066000876001600160a01b03166001600160a01b03168152602001908152602001600020829080600181540180825580915050600190039060005260206000200160009091909190915055806005600084815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a8154816001600160a01b0302191690836001600160a01b0316021790555060408201518160010160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550606082015181600201556080820151816003015560a0820151816004015560c0820151816005015560e0820151816006015590505060006001600160a01b0316886001600160a01b03161415801561261057506001600160a01b0386166000908152600660205260409020546001145b80156126a057506009546040517f18452cd80000000000000000000000000000000000000000000000000000000081526001600160a01b038881166004830152909116906318452cd890602401602060405180830381865afa15801561267a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061269e9190613dfc565b155b1561272a576009546040517fb94265b80000000000000000000000000000000000000000000000000000000081526001600160a01b0388811660048301528a811660248301529091169063b94265b890604401600060405180830381600087803b15801561270d57600080fd5b505af1158015612721573d6000803e3d6000fd5b505050506127a3565b6009546040517fce5cae920000000000000000000000000000000000000000000000000000000081526001600160a01b0388811660048301529091169063ce5cae9290602401600060405180830381600087803b15801561278a57600080fd5b505af115801561279e573d6000803e3d6000fd5b505050505b846127bd576127bd6001600160a01b038c168730866131d2565b600180559a9950505050505050505050565b60606127f48383604051806060016040528060278152602001613f7a60279139613223565b9392505050565b6001600160a01b038216600090815260066020908152604080832080548251818502810185019093528083526060949383018282801561285a57602002820191906000526020600020905b815481526020019060010190808311612846575b5050835193945050505083811015612870578093505b60008467ffffffffffffffff81111561288b5761288b6135fc565b60405190808252806020026020018201604052801561291857816020015b61290560405180610100016040528060001515815260200160006001600160a01b0316815260200160006001600160a01b0316815260200160008152602001600081526020016000815260200160008152602001600081525090565b8152602001906001900390816128a95790505b5090508415612a1d576000825b61292f8785613dd1565b811115612a1a576005600086612946600185613dd1565b8151811061295657612956613cfe565b602090810291909101810151825281810192909252604090810160002081516101008082018452825460ff811615158352046001600160a01b03908116948201949094526001820154909316918301919091526002810154606083015260038101546080830152600481015460a0830152600581015460c08301526006015460e082015283518490849081106129ee576129ee613cfe565b60200260200101819052508180612a0490613d99565b9250508080612a1290613e32565b915050612925565b50505b95945050505050565b6040516001600160a01b0383166024820152604481018290526118429084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152613317565b82546000906001600160a01b036101008204169060ff16151560011480612afd57506001600160a01b038116155b15612b3c5784600201546040517f1a040cf00000000000000000000000000000000000000000000000000000000081526004016107be91815260200190565b600180860154600387015487547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690921787556001600160a01b03169081158615612fc2576000612b8e8388613dd1565b90506000612b9c85856133fc565b90506000612baa86846133fc565b90506000612bb88284613ce6565b9050612bc4818b613dd1565b99506000612bd28488613dd1565b90506000612be08487613dd1565b90508615612cbf5760008a6001600160a01b03168360405160006040518083038185875af1925050503d8060008114612c35576040519150601f19603f3d011682016040523d82523d6000602084013e612c3a565b606091505b5050905080612cb95760028f015460408051918252602082018b905260609082018190526017908201527f4d697373696e672067617320746f6b656e2066756e647300000000000000000060808201527f2f47628dd4a5df2cb8dcf9bf22dcb68db93b798e9666e48454fdf5c3488c378d9060a0015b60405180910390a15b50612ead565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b038b81166004830152602482018490528a169063a9059cbb906044016020604051808303816000875af1925050508015612d43575060408051601f3d908101601f19168201909252612d4091810190613dfc565b60015b612dbf57612d4f613e67565b806308c379a003612db35750612d63613e83565b80612d6e5750612db5565b7f2f47628dd4a5df2cb8dcf9bf22dcb68db93b798e9666e48454fdf5c3488c378d8f600201548483604051612da593929190613f2b565b60405180910390a150612dc1565b505b3d6000803e3d6000fd5b505b6008546040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b03918216600482015260248101879052908a169063a9059cbb906044016020604051808303816000875af1925050508015612e49575060408051601f3d908101601f19168201909252612e4691810190613dfc565b60015b612eab57612e55613e67565b806308c379a003612db35750612e69613e83565b80612e745750612db5565b7ffa916ddbcce76584ab5323754780c39d03cd75048d5bfb4361e966a270d482528f600201548783604051612cb093929190613f2b565b505b6008546001600160a01b0316631f61502388612eca576000612ecc565b865b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b03808f1660048301528d16602482015260448101859052606481018790526084016000604051808303818588803b158015612f3957600080fd5b505af193505050508015612f4b575060015b612fb757612f57613e67565b806308c379a003612db35750612f6b613e83565b80612f765750612db5565b7f4faefcbc151a3b06dfca7dd0353fc453e246fee39a129b0dd0f89255b8317a158f600201548383604051612fad93929190613f2b565b60405180910390a1505b5050505050506131c0565b60009550806130c5576008546040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b039182166004820152602481018490529084169063a9059cbb906044016020604051808303816000875af1925050508015613053575060408051601f3d908101601f1916820190925261305091810190613dfc565b60015b6130c35761305f613e67565b806308c379a003612db35750613073613e83565b8061307e5750612db5565b7f6083085f60af3af3b5f0ac3fc19411dc014dff48425ef2707ebcf7059582e452896002015484836040516130b593929190613f2b565b60405180910390a1506130c5565b505b6008546001600160a01b0316633138809d826130e25760006130e4565b835b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b0387166004820152602481018690526044016000604051808303818588803b15801561314257600080fd5b505af193505050508015613154575060015b6131c057613160613e67565b806308c379a003612db35750613174613e83565b8061317f5750612db5565b7fda6ed7532ab456201ccb34e59035ea00254ed76e71e7d47d04b4287b302153a8896002015484836040516131b693929190613f2b565b60405180910390a1505b50505050506005929092018290555090565b6040516001600160a01b0380851660248301528316604482015260648101829052610f909085907f23b872dd0000000000000000000000000000000000000000000000000000000090608401612a6b565b60606001600160a01b0384163b6132a25760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e7472616374000000000000000000000000000000000000000000000000000060648201526084016107be565b600080856001600160a01b0316856040516132bd9190613f4a565b600060405180830381855af49150503d80600081146132f8576040519150601f19603f3d011682016040523d82523d6000602084013e6132fd565b606091505b509150915061330d828286613432565b9695505050505050565b600061336c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661346b9092919063ffffffff16565b805190915015611842578080602001905181019061338a9190613dfc565b6118425760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016107be565b6001600160a01b0382166000908152600760205260408120546127109061342890849061ffff16613c3e565b6127f49190613caa565b606083156134415750816127f4565b8251156134515782518084602001fd5b8160405162461bcd60e51b81526004016107be9190613f66565b606061347a8484600085613482565b949350505050565b6060824710156134fa5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016107be565b6001600160a01b0385163b6135515760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016107be565b600080866001600160a01b0316858760405161356d9190613f4a565b60006040518083038185875af1925050503d80600081146135aa576040519150601f19603f3d011682016040523d82523d6000602084013e6135af565b606091505b50915091506135bf828286613432565b979650505050505050565b6001600160a01b038116811461197a57600080fd5b6000602082840312156135f157600080fd5b81356127f4816135ca565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff82111715613651576136516135fc565b6040525050565b6000806040838503121561366b57600080fd5b8235915060208084013567ffffffffffffffff8082111561368b57600080fd5b818601915086601f83011261369f57600080fd5b8135818111156136b1576136b16135fc565b8060051b91506040516136c68584018261362b565b818152918301840191848101898411156136df57600080fd5b938501935b838510156136fb57843581529385019385016136e4565b5080955050505050509250929050565b60006020828403121561371d57600080fd5b5035919050565b803567ffffffffffffffff8116811461373c57600080fd5b919050565b63ffffffff8116811461197a57600080fd5b803561ffff8116811461373c57600080fd5b6000806000806080858703121561377b57600080fd5b61378485613724565b9350602085013561379481613741565b92506137a260408601613753565b9396929550929360600135925050565b600080604083850312156137c557600080fd5b82356137d0816135ca565b946020939093013593505050565b600080604083850312156137f157600080fd5b82356137fc816135ca565b915061380a60208401613724565b90509250929050565b6000806040838503121561382657600080fd5b8235613831816135ca565b915061380a60208401613753565b801515811461197a57600080fd5b6000806000806080858703121561386357600080fd5b843561386e8161383f565b9350602085013561387e816135ca565b9250604085013591506060850135613895816135ca565b939692955090935050565b600080602083850312156138b357600080fd5b823567ffffffffffffffff808211156138cb57600080fd5b818501915085601f8301126138df57600080fd5b8135818111156138ee57600080fd5b8660208260051b850101111561390357600080fd5b60209290920196919550909350505050565b60005b83811015613930578181015183820152602001613918565b83811115610f905750506000910152565b60008151808452613959816020860160208601613915565b601f01601f19169290920160200192915050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b828110156139e0577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc08886030184526139ce858351613941565b94509285019290850190600101613994565b5092979650505050505050565b60008060408385031215613a0057600080fd5b8235613a0b816135ca565b91506020830135613a1b816135ca565b809150509250929050565b602080825282518282018190526000919060409081850190868401855b82811015613acf5781518051805115158652878101516001600160a01b0390811689880152878201511687870152606080820151908701526080808201519087015260a0808201519087015260c0808201519087015260e09081015190860152860151805115156101008601526020015115156101208501526101409093019290850190600101613a43565b5091979650505050505050565b805169ffffffffffffffffffff8116811461373c57600080fd5b600080600080600060a08688031215613b0e57600080fd5b613b1786613adc565b9450602086015193506040860151925060608601519150613b3a60808701613adc565b90509295509295909350565b805162ffffff8116811461373c57600080fd5b60008060008060008060008060006101208a8c031215613b7857600080fd5b8951613b8381613741565b60208b0151909950613b9481613741565b60408b0151909850613ba581613741565b60608b0151909750613bb681613741565b60808b0151909650613bc781613741565b9450613bd560a08b01613b46565b9350613be360c08b01613b46565b9250613bf160e08b01613b46565b9150613c006101008b01613b46565b90509295985092959850929598565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c7657613c76613c0f565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613cb957613cb9613c7b565b500490565b600063ffffffff808316818516808303821115613cdd57613cdd613c0f565b01949350505050565b60008219821115613cf957613cf9613c0f565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112613d6257600080fd5b83018035915067ffffffffffffffff821115613d7d57600080fd5b602001915036819003821315613d9257600080fd5b9250929050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613dca57613dca613c0f565b5060010190565b600082821015613de357613de3613c0f565b500390565b600082613df757613df7613c7b565b500690565b600060208284031215613e0e57600080fd5b81516127f48161383f565b600060208284031215613e2b57600080fd5b5051919050565b600081613e4157613e41613c0f565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600060033d1115613e805760046000803e5060005160e01c5b90565b600060443d1015613e915790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff8160248401118184111715613edf57505050505090565b8285019150815181811115613ef75750505050505090565b843d8701016020828501011115613f115750505050505090565b613f206020828601018761362b565b509095945050505050565b838152826020820152606060408201526000612a1d6060830184613941565b60008251613f5c818460208701613915565b9190910192915050565b6020815260006127f4602083018461394156fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220a79a0554674ae461d45504752183b873cf7a8965618758fae0dc68d138a5a6c764736f6c634300080e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001a54574cbae9f8a4f9dd19d56687f2266d0c9d31000000000000000000000000d0b6d4503207588b677f79876cf12724baff70f8000000000000000000000000ae975071be8f8ee67addbc1a82488f1c248580670000000000000000000000005787befdc0ecd210dfa948264631cd53e68f7802
-----Decoded View---------------
Arg [0] : bankAddress (address): 0x1a54574CBAe9f8a4f9dd19d56687F2266d0C9d31
Arg [1] : referralProgramAddress (address): 0xd0B6D4503207588B677F79876cf12724bAFF70f8
Arg [2] : chainlinkCoordinatorAddress (address): 0xAE975071Be8F8eE67addBC1A82488F1C24858067
Arg [3] : LINK_ETH_feedAddress (address): 0x5787BefDc0ECd210Dfa948264631CD53E68F7802
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000001a54574cbae9f8a4f9dd19d56687f2266d0c9d31
Arg [1] : 000000000000000000000000d0b6d4503207588b677f79876cf12724baff70f8
Arg [2] : 000000000000000000000000ae975071be8f8ee67addbc1a82488f1c24858067
Arg [3] : 0000000000000000000000005787befdc0ecd210dfa948264631cd53e68f7802
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
POL | Polygon (POL) | 100.00% | $0.711945 | 122.8258 | $87.45 |
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.