Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- BrawlExchange
- Optimization enabled
- true
- Compiler version
- v0.8.24+commit.e11b9ed9
- Optimization runs
- 200
- EVM Version
- cancun
- Verified at
- 2025-10-11T18:46:20.048796Z
src/BrawlExchange/BrawlExchange.sol
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; /* ███████╗██╗ ██╗████████╗██████╗ ██████╗ ██╗ ██████╗ ██████╗ █████╗ ██╗ ██╗██╗ ██╔════╝██║ ██║╚══██╔══╝██╔══██╗██╔═══██╗██║ ██╔══██╗██╔══██╗██╔══██╗██║ ██║██║ █████╗ ██║ ██║ ██║ ██████╔╝██║ ██║██║ ██████╔╝██████╔╝███████║██║ █╗ ██║██║ ██╔══╝ ██║ ██║ ██║ ██╔══██╗██║ ██║██║ ██╔══██╗██╔══██╗██╔══██║██║███╗██║██║ ██║ ╚██████╔╝ ██║ ██████╔╝╚██████╔╝███████╗██████╔╝██║ ██║██║ ██║╚███╔███╔╝███████╗ ╚═╝ ╚═════╝ ╚═╝ ╚═════╝ ╚═════╝ ╚══════╝╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚══╝╚══╝ ╚══════╝ F U T B O L B R A W L */ import {Initializable} from "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import {UUPSUpgradeable} from "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol"; import {OwnableUpgradeable} from "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import {PausableUpgradeable} from "@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.sol"; import {ReentrancyGuardUpgradeable} from "@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.sol"; import {Math} from "@openzeppelin/contracts/utils/math/Math.sol"; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import {IBrawlBankMinimal} from "../interfaces/BrawlExchange/IBrawlBankMinimal.sol"; import {IBrawlExchangeErrors} from "../interfaces/BrawlExchange/IBrawlExchangeErrors.sol"; import {IBrawlExchangeEvents} from "../interfaces/BrawlExchange/IBrawlExchangeEvents.sol"; /// @notice Orderbook-like exchange (escrow) for selling CASH (Bank) at fixed price per GOAL, with ticks. /// @dev Price unit is CASH per 1 GOAL, expressed in basis points (bps). OZ v5 upgradeable. contract BrawlExchange is Initializable, UUPSUpgradeable, OwnableUpgradeable, PausableUpgradeable, ReentrancyGuardUpgradeable, IBrawlExchangeErrors, IBrawlExchangeEvents { using Math for uint256; // ───────────────────────────────────────────────────────────────────────────── // Storage // ───────────────────────────────────────────────────────────────────────────── IBrawlBankMinimal public bank; IERC20 public goal; mapping(address => bool) public isAdmin; uint256 public tickSizeBps; uint256 public minPriceBps; uint256 public maxPriceBps; uint256 public maxPositionsPerTick; uint256 public minLiquidityAmount; uint256 public minSwapGoalAmount; uint256 public earlyCloseCooldown; uint256 public earlyCloseFeeBps; bool public listingsPaused; uint256 public maxActiveTicks; uint256 public constant MAX_TICKS_PER_SWAP = 40; uint256 public constant MAX_POSITIONS_PER_TICK_SWEEP = 200; uint256 private constant MAX_EARLY_CLOSE_FEE_BPS = 1000; uint256 private constant BPS = 10_000; uint256 private constant ONE_TO_ONE_BPS = 10_000; struct Position { uint256 id; address owner; uint256 tickBps; uint256 initialCashAmount; uint256 cashAmount; uint64 createdAt; uint64 closedAt; bool active; } uint256 public nextPositionId; mapping(uint256 => Position) public positions; uint256 public openPositionsCount; uint256 public closedPositionsCount; mapping(address => uint256[]) public userOpenPositions; mapping(address => uint256[]) public userClosedPositions; mapping(uint256 => uint256) private _userOpenIndex; mapping(uint256 => uint256) private _userClosedIndex; mapping(uint256 => uint256[]) private _posAtTick; mapping(uint256 => uint256) private _headAtTick; uint256[] private _activeTicks; mapping(uint256 => bool) private _tickActive; // ───────────────────────────────────────────────────────────────────────────── // Modifiers // ───────────────────────────────────────────────────────────────────────────── modifier whenExchangeNotPaused() { if (paused()) revert ExchangePaused(); _; } modifier onlyOwnerOrAdmin() { if (msg.sender != owner() && !isAdmin[msg.sender]) revert NotOwnerOrAdmin(); _; } modifier whenListingsNotPaused() { if (listingsPaused) revert ListingsPaused(); _; } // ───────────────────────────────────────────────────────────────────────────── // Init / Upgrade // ───────────────────────────────────────────────────────────────────────────── function initialize(address bank_, address goal_, uint256 tickSizeBps_, uint256 minPriceBps_, uint256 maxPriceBps_) external initializer { if (bank_ == address(0) || goal_ == address(0)) revert ZeroAddress(); __Ownable_init(msg.sender); __UUPSUpgradeable_init(); __Pausable_init(); __ReentrancyGuard_init(); bank = IBrawlBankMinimal(bank_); goal = IERC20(goal_); if (tickSizeBps_ == 0) revert TickTooSmall(); tickSizeBps = tickSizeBps_; if (minPriceBps_ < ONE_TO_ONE_BPS) minPriceBps_ = ONE_TO_ONE_BPS; minPriceBps = minPriceBps_; maxPriceBps = maxPriceBps_; maxPositionsPerTick = 500; minLiquidityAmount = 1e18; minSwapGoalAmount = 1e16; earlyCloseCooldown = 15 minutes; earlyCloseFeeBps = 0; listingsPaused = false; maxActiveTicks = 200; nextPositionId = 1; } function _authorizeUpgrade(address) internal override onlyOwner {} // ───────────────────────────────────────────────────────────────────────────── // Admin / Admin group // ───────────────────────────────────────────────────────────────────────────── function addAdmin(address admin) external onlyOwner { if (admin == address(0)) revert ZeroAddress(); isAdmin[admin] = true; emit AdminAdded(admin); } function removeAdmin(address admin) external onlyOwner { isAdmin[admin] = false; emit AdminRemoved(admin); } function setListingsPaused(bool paused_) external onlyOwnerOrAdmin { bool prev = listingsPaused; listingsPaused = paused_; if (prev != paused_) emit ListingsPauseUpdated(paused_); } function updateParams( uint256 tickSizeBps_, uint256 minPriceBps_, uint256 maxPriceBps_, uint256 maxPositionsPerTick_, uint256 minLiquidityAmount_, uint256 minSwapGoalAmount_, uint256 earlyCloseCooldown_, uint256 earlyCloseFeeBps_, uint256 maxActiveTicks_, bool listingsPaused_ ) external onlyOwnerOrAdmin { if (tickSizeBps_ == 0) revert TickTooSmall(); if (earlyCloseFeeBps_ > MAX_EARLY_CLOSE_FEE_BPS) revert EarlyCloseFeeTooHigh(); if (minPriceBps_ < ONE_TO_ONE_BPS) minPriceBps_ = ONE_TO_ONE_BPS; if (maxPriceBps_ < minPriceBps_) revert InvalidPriceRange(); tickSizeBps = tickSizeBps_; minPriceBps = minPriceBps_; maxPriceBps = maxPriceBps_; maxPositionsPerTick = maxPositionsPerTick_; minLiquidityAmount = minLiquidityAmount_; minSwapGoalAmount = minSwapGoalAmount_; earlyCloseCooldown = earlyCloseCooldown_; earlyCloseFeeBps = earlyCloseFeeBps_; maxActiveTicks = maxActiveTicks_; listingsPaused = listingsPaused_; emit TickParamsUpdated(tickSizeBps_, minPriceBps_, maxPriceBps_); emit LiquidityParamsUpdated(maxPositionsPerTick_, minLiquidityAmount_, minSwapGoalAmount_); emit EarlyCloseParamsUpdated(earlyCloseCooldown_, earlyCloseFeeBps_); emit ListingsPauseUpdated(listingsPaused_); } function pause() external onlyOwner { _pause(); } function unpause() external onlyOwner { _unpause(); } function updateBankAddress(address newBank) external onlyOwner { if (newBank == address(0)) revert ZeroAddress(); if (newBank.code.length == 0) revert ZeroAddress(); address oldBank = address(bank); bank = IBrawlBankMinimal(newBank); emit BankUpdated(oldBank, newBank); } function updateGoalAddress(address newGoal) external onlyOwner { if (newGoal == address(0)) revert ZeroAddress(); if (newGoal.code.length == 0) revert ZeroAddress(); address oldGoal = address(goal); goal = IERC20(newGoal); emit GoalUpdated(oldGoal, newGoal); } // ───────────────────────────────────────────────────────────────────────────── // Views // ───────────────────────────────────────────────────────────────────────────── function getActiveTicks() external view returns (uint256[] memory) { return _activeTicks; } function getPositionsAtTick(uint256 tickBps) external view returns (uint256 head, uint256[] memory ids) { return (_headAtTick[tickBps], _posAtTick[tickBps]); } function getUserOpenPositions(address user) external view returns (uint256[] memory) { return userOpenPositions[user]; } function getUserClosedPositions(address user) external view returns (uint256[] memory) { return userClosedPositions[user]; } function getPosition(uint256 positionId) external view returns (Position memory) { return positions[positionId]; } // ───────────────────────────────────────────────────────────────────────────── // Core: Liquidity (Listings) // ───────────────────────────────────────────────────────────────────────────── /// @notice Provider deposits CASH from Bank and sets price (CASH/GOAL in bps). function addLiquidity(uint256 cashAmount, uint256 priceBps) external nonReentrant whenExchangeNotPaused whenListingsNotPaused returns (uint256 positionId, uint256 tickBps) { if (cashAmount == 0) revert AmountZero(); if (cashAmount < minLiquidityAmount) revert AmountZero(); tickBps = _quantizePrice(priceBps); if (tickBps < ONE_TO_ONE_BPS) revert PriceOutOfRange(); if (tickBps < minPriceBps || tickBps > maxPriceBps) revert PriceOutOfRange(); bank.transferFrom(msg.sender, address(this), cashAmount); positionId = nextPositionId++; Position storage p = positions[positionId]; p.id = positionId; p.owner = msg.sender; p.tickBps = tickBps; p.initialCashAmount = cashAmount; p.cashAmount = cashAmount; p.createdAt = uint64(block.timestamp); p.active = true; _userOpenIndex[positionId] = userOpenPositions[msg.sender].length; userOpenPositions[msg.sender].push(positionId); uint256[] storage q = _posAtTick[tickBps]; if (q.length - _headAtTick[tickBps] >= maxPositionsPerTick) revert TooManyPositionsAtTick(); q.push(positionId); _activateTickIfNeeded(tickBps); ++openPositionsCount; emit LiquidityAdded(positionId, msg.sender, tickBps, cashAmount); } /// @notice Remove whole position; returns remaining CASH to provider (minus early-close fee if within cooldown). function removeLiquidity(uint256 positionId) external nonReentrant whenExchangeNotPaused { Position storage p = positions[positionId]; if (p.owner != msg.sender) revert NotOwnerOfPosition(); if (!p.active) revert PositionInactive(); _internalClosePosition(positionId, false); } /// @notice Admin/Owner can close any active position without fee (refund 100% to provider). function adminClosePosition(uint256 positionId) external nonReentrant onlyOwnerOrAdmin { Position storage p = positions[positionId]; if (!p.active) revert PositionInactive(); uint256 cashBefore = p.cashAmount; _internalClosePosition(positionId, true); emit AdminClosedPosition(positionId, p.owner, cashBefore); } // ───────────────────────────────────────────────────────────────────────────── // Core: Swap (buyer pays GOAL, receives CASH) // ───────────────────────────────────────────────────────────────────────────── function swap(uint256 goalAmount, uint256 minCashOut) external nonReentrant whenExchangeNotPaused returns (uint256 cashOut, uint256 avgPriceBps) { if (goalAmount == 0 || goalAmount < minSwapGoalAmount) revert AmountZero(); goal.transferFrom(msg.sender, address(this), goalAmount); uint256 remainingGoal = goalAmount; uint256 totalGoalUsed; uint256[] memory ticks = _activeTicks; uint256 ticksProcessed; for (uint256 i = 0; i < ticks.length && remainingGoal > 0 && ticksProcessed < MAX_TICKS_PER_SWAP; ++i) { uint256 t = ticks[i]; uint256 head = _headAtTick[t]; uint256[] storage list = _posAtTick[t]; uint256 sweptInThisTick; while (head < list.length && remainingGoal > 0 && sweptInThisTick < MAX_POSITIONS_PER_TICK_SWEEP) { uint256 posId = list[head]; Position storage p = positions[posId]; if (!p.active || p.cashAmount == 0) { ++head; ++sweptInThisTick; continue; } uint256 goalAll = Math.mulDiv(p.cashAmount, BPS, t); if (goalAll <= remainingGoal) { uint256 cashTake = p.cashAmount; cashOut += cashTake; totalGoalUsed += goalAll; remainingGoal -= goalAll; p.cashAmount = 0; p.active = false; p.closedAt = uint64(block.timestamp); _moveUserOpenToClosed(p.owner, posId); --openPositionsCount; ++closedPositionsCount; emit PositionFullyConsumed(posId, t, block.timestamp); _paySellerOrDelist(posId, p.owner, goalAll, true); ++head; ++sweptInThisTick; } else { uint256 cashPart = Math.mulDiv(remainingGoal, t, BPS); cashOut += cashPart; totalGoalUsed += remainingGoal; p.cashAmount -= cashPart; _safePaySeller(posId, p.owner, remainingGoal); remainingGoal = 0; ++sweptInThisTick; } } if (head != _headAtTick[t]) { _headAtTick[t] = head; _deactivateTickIfEmpty(t); } ++ticksProcessed; } if (cashOut < minCashOut) { if (remainingGoal > 0 && (ticksProcessed >= MAX_TICKS_PER_SWAP)) revert IterationLimit(); revert Slippage(); } bank.internalTransfer(address(this), msg.sender, cashOut); avgPriceBps = (totalGoalUsed == 0) ? 0 : cashOut.mulDiv(BPS, totalGoalUsed); emit Swapped(msg.sender, goalAmount, cashOut, avgPriceBps); } // ───────────────────────────────────────────────────────────────────────────── // Internal helpers // ───────────────────────────────────────────────────────────────────────────── function _internalClosePosition(uint256 positionId, bool byAdmin) internal { Position storage p = positions[positionId]; uint256 t = p.tickBps; uint256 head = _headAtTick[t]; uint256[] storage list = _posAtTick[t]; if (head < list.length && list[head] == positionId) { p.active = false; while (head < list.length) { uint256 id = list[head]; if (positions[id].active && positions[id].cashAmount > 0) break; ++head; } _headAtTick[t] = head; _deactivateTickIfEmpty(t); } else { p.active = false; } p.closedAt = uint64(block.timestamp); uint256 cash = p.cashAmount; p.cashAmount = 0; _moveUserOpenToClosed(p.owner, positionId); --openPositionsCount; ++closedPositionsCount; uint256 fee = 0; bool early = false; if (!byAdmin) { early = block.timestamp < (uint256(p.createdAt) + earlyCloseCooldown); if (early && earlyCloseFeeBps > 0 && cash > 0) { fee = cash.mulDiv(earlyCloseFeeBps, BPS); } } uint256 toSend = cash - fee; if (toSend > 0) bank.internalTransfer(address(this), p.owner, toSend); if (fee > 0) bank.internalTransfer(address(this), owner(), fee); emit LiquidityRemoved(positionId, p.owner, toSend, fee, early); } function _quantizePrice(uint256 priceBps) internal view returns (uint256) { uint256 q = priceBps + tickSizeBps / 2; return (q / tickSizeBps) * tickSizeBps; } function _activateTickIfNeeded(uint256 t) internal { if (!_tickActive[t]) { uint256 n = _activeTicks.length; if (n >= maxActiveTicks) revert TooManyActiveTicks(); _tickActive[t] = true; if (n == 0 || _activeTicks[n - 1] < t) { _activeTicks.push(t); } else { _activeTicks.push(t); for (uint256 i = n; i > 0; --i) { if (_activeTicks[i - 1] <= _activeTicks[i]) break; (_activeTicks[i - 1], _activeTicks[i]) = (_activeTicks[i], _activeTicks[i - 1]); } } emit TickActivated(t); } } function _deactivateTickIfEmpty(uint256 t) internal { if (_tickActive[t]) { if (_headAtTick[t] >= _posAtTick[t].length) { _tickActive[t] = false; uint256 len = _activeTicks.length; for (uint256 i = 0; i < len; ++i) { if (_activeTicks[i] == t) { _activeTicks[i] = _activeTicks[len - 1]; _activeTicks.pop(); break; } } emit TickDeactivated(t); } } } function _moveUserOpenToClosed(address owner_, uint256 positionId) internal { uint256 idx = _userOpenIndex[positionId]; uint256[] storage arr = userOpenPositions[owner_]; uint256 last = arr[arr.length - 1]; arr[idx] = last; _userOpenIndex[last] = idx; arr.pop(); delete _userOpenIndex[positionId]; _userClosedIndex[positionId] = userClosedPositions[owner_].length; userClosedPositions[owner_].push(positionId); } function _safePaySeller(uint256 posId, address seller, uint256 goalAmount) internal { (bool success, bytes memory data) = address(goal).call(abi.encodeWithSelector(IERC20.transfer.selector, seller, goalAmount)); bool ok = success && (data.length == 0 || abi.decode(data, (bool))); if (!ok) { emit PositionPayoutFailed(posId, seller, goalAmount, 0); } else { emit ProviderPaid(posId, seller, goalAmount); } } function _paySellerOrDelist(uint256 posId, address seller, uint256 goalAmount, bool alreadyDelisted) internal { if (!alreadyDelisted) { Position storage p = positions[posId]; if (p.active) { p.active = false; p.closedAt = uint64(block.timestamp); _moveUserOpenToClosed(seller, posId); --openPositionsCount; ++closedPositionsCount; } } (bool success, bytes memory data) = address(goal).call(abi.encodeWithSelector(IERC20.transfer.selector, seller, goalAmount)); bool ok = success && (data.length == 0 || abi.decode(data, (bool))); if (!ok) { Position storage p2 = positions[posId]; uint256 remainingCash = p2.cashAmount; p2.cashAmount = 0; if (remainingCash > 0) { bank.internalTransfer(address(this), seller, remainingCash); } emit PositionPayoutFailed(posId, seller, goalAmount, remainingCash); return; } emit ProviderPaid(posId, seller, goalAmount); } // ───────────────────────────────────────────────────────────────────────────── // Emergency Sweeps // ───────────────────────────────────────────────────────────────────────────── function emergencySweepToken(address token, address to, uint256 amount) external onlyOwnerOrAdmin whenPaused { if (token == address(0) || to == address(0)) revert ZeroAddress(); IERC20(token).transfer(to, amount); emit EmergencySweepToken(token, to, amount); } function emergencySweepCash(address to, uint256 amount) external onlyOwnerOrAdmin whenPaused { if (to == address(0)) revert ZeroAddress(); bank.internalTransfer(address(this), to, amount); emit EmergencySweepCash(to, amount); } function emergencySweepNative(address payable to) external onlyOwnerOrAdmin whenPaused { if (to == address(0)) revert ZeroAddress(); uint256 v = address(this).balance; (bool ok,) = to.call{value: v}(""); require(ok, "native sweep failed"); emit EmergencySweepNative(to, v); } receive() external payable {} uint256[50] private __gap; }
src/interfaces/BrawlExchange/IBrawlExchangeErrors.sol
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; interface IBrawlExchangeErrors { error ZeroAddress(); error AmountZero(); error Slippage(); error NotOwnerOfPosition(); error PositionInactive(); error TickTooSmall(); error PriceOutOfRange(); error TooManyPositionsAtTick(); error TooManyActiveTicks(); error ExchangePaused(); error IterationLimit(); error EarlyCloseFeeTooHigh(); error ListingsPaused(); error NotOwnerOrAdmin(); error InvalidPriceRange(); }
lib/openzeppelin-contracts-upgradeable/contracts/access/OwnableUpgradeable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {ContextUpgradeable} from "../utils/ContextUpgradeable.sol"; import {Initializable} from "../proxy/utils/Initializable.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. * * The initial owner is set to the address provided by the deployer. 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 OwnableUpgradeable is Initializable, ContextUpgradeable { /// @custom:storage-location erc7201:openzeppelin.storage.Ownable struct OwnableStorage { address _owner; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Ownable")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant OwnableStorageLocation = 0x9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300; function _getOwnableStorage() private pure returns (OwnableStorage storage $) { assembly { $.slot := OwnableStorageLocation } } /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ function __Ownable_init(address initialOwner) internal onlyInitializing { __Ownable_init_unchained(initialOwner); } function __Ownable_init_unchained(address initialOwner) internal onlyInitializing { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { OwnableStorage storage $ = _getOwnableStorage(); return $._owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { OwnableStorage storage $ = _getOwnableStorage(); address oldOwner = $._owner; $._owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
lib/openzeppelin-contracts-upgradeable/contracts/proxy/utils/Initializable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.3.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.20; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ```solidity * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Storage of the initializable contract. * * It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions * when using with upgradeable contracts. * * @custom:storage-location erc7201:openzeppelin.storage.Initializable */ struct InitializableStorage { /** * @dev Indicates that the contract has been initialized. */ uint64 _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool _initializing; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Initializable")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00; /** * @dev The contract is already initialized. */ error InvalidInitialization(); /** * @dev The contract is not initializing. */ error NotInitializing(); /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint64 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any * number of times. This behavior in the constructor can be useful during testing and is not expected to be used in * production. * * Emits an {Initialized} event. */ modifier initializer() { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); // Cache values to avoid duplicated sloads bool isTopLevelCall = !$._initializing; uint64 initialized = $._initialized; // Allowed calls: // - initialSetup: the contract is not in the initializing state and no previous version was // initialized // - construction: the contract is initialized at version 1 (no reinitialization) and the // current contract is just being deployed bool initialSetup = initialized == 0 && isTopLevelCall; bool construction = initialized == 1 && address(this).code.length == 0; if (!initialSetup && !construction) { revert InvalidInitialization(); } $._initialized = 1; if (isTopLevelCall) { $._initializing = true; } _; if (isTopLevelCall) { $._initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint64 version) { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); if ($._initializing || $._initialized >= version) { revert InvalidInitialization(); } $._initialized = version; $._initializing = true; _; $._initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { _checkInitializing(); _; } /** * @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}. */ function _checkInitializing() internal view virtual { if (!_isInitializing()) { revert NotInitializing(); } } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); if ($._initializing) { revert InvalidInitialization(); } if ($._initialized != type(uint64).max) { $._initialized = type(uint64).max; emit Initialized(type(uint64).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint64) { return _getInitializableStorage()._initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _getInitializableStorage()._initializing; } /** * @dev Pointer to storage slot. Allows integrators to override it with a custom storage location. * * NOTE: Consider following the ERC-7201 formula to derive storage locations. */ function _initializableStorageSlot() internal pure virtual returns (bytes32) { return INITIALIZABLE_STORAGE; } /** * @dev Returns a pointer to the storage namespace. */ // solhint-disable-next-line var-name-mixedcase function _getInitializableStorage() private pure returns (InitializableStorage storage $) { bytes32 slot = _initializableStorageSlot(); assembly { $.slot := slot } } }
lib/openzeppelin-contracts-upgradeable/contracts/proxy/utils/UUPSUpgradeable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.3.0) (proxy/utils/UUPSUpgradeable.sol) pragma solidity ^0.8.22; import {IERC1822Proxiable} from "@openzeppelin/contracts/interfaces/draft-IERC1822.sol"; import {ERC1967Utils} from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol"; import {Initializable} from "./Initializable.sol"; /** * @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an * {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy. * * A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is * reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing * `UUPSUpgradeable` with a custom implementation of upgrades. * * The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism. */ abstract contract UUPSUpgradeable is Initializable, IERC1822Proxiable { /// @custom:oz-upgrades-unsafe-allow state-variable-immutable address private immutable __self = address(this); /** * @dev The version of the upgrade interface of the contract. If this getter is missing, both `upgradeTo(address)` * and `upgradeToAndCall(address,bytes)` are present, and `upgradeTo` must be used if no function should be called, * while `upgradeToAndCall` will invoke the `receive` function if the second argument is the empty byte string. * If the getter returns `"5.0.0"`, only `upgradeToAndCall(address,bytes)` is present, and the second argument must * be the empty byte string if no function should be called, making it impossible to invoke the `receive` function * during an upgrade. */ string public constant UPGRADE_INTERFACE_VERSION = "5.0.0"; /** * @dev The call is from an unauthorized context. */ error UUPSUnauthorizedCallContext(); /** * @dev The storage `slot` is unsupported as a UUID. */ error UUPSUnsupportedProxiableUUID(bytes32 slot); /** * @dev Check that the execution is being performed through a delegatecall call and that the execution context is * a proxy contract with an implementation (as defined in ERC-1967) pointing to self. This should only be the case * for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a * function through ERC-1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to * fail. */ modifier onlyProxy() { _checkProxy(); _; } /** * @dev Check that the execution is not being performed through a delegate call. This allows a function to be * callable on the implementing contract but not through proxies. */ modifier notDelegated() { _checkNotDelegated(); _; } function __UUPSUpgradeable_init() internal onlyInitializing { } function __UUPSUpgradeable_init_unchained() internal onlyInitializing { } /** * @dev Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the * implementation. It is used to validate the implementation's compatibility when performing an upgrade. * * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this * function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier. */ function proxiableUUID() external view virtual notDelegated returns (bytes32) { return ERC1967Utils.IMPLEMENTATION_SLOT; } /** * @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call * encoded in `data`. * * Calls {_authorizeUpgrade}. * * Emits an {Upgraded} event. * * @custom:oz-upgrades-unsafe-allow-reachable delegatecall */ function upgradeToAndCall(address newImplementation, bytes memory data) public payable virtual onlyProxy { _authorizeUpgrade(newImplementation); _upgradeToAndCallUUPS(newImplementation, data); } /** * @dev Reverts if the execution is not performed via delegatecall or the execution * context is not of a proxy with an ERC-1967 compliant implementation pointing to self. */ function _checkProxy() internal view virtual { if ( address(this) == __self || // Must be called through delegatecall ERC1967Utils.getImplementation() != __self // Must be called through an active proxy ) { revert UUPSUnauthorizedCallContext(); } } /** * @dev Reverts if the execution is performed via delegatecall. * See {notDelegated}. */ function _checkNotDelegated() internal view virtual { if (address(this) != __self) { // Must not be called through delegatecall revert UUPSUnauthorizedCallContext(); } } /** * @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by * {upgradeToAndCall}. * * Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}. * * ```solidity * function _authorizeUpgrade(address) internal onlyOwner {} * ``` */ function _authorizeUpgrade(address newImplementation) internal virtual; /** * @dev Performs an implementation upgrade with a security check for UUPS proxies, and additional setup call. * * As a security check, {proxiableUUID} is invoked in the new implementation, and the return value * is expected to be the implementation slot in ERC-1967. * * Emits an {IERC1967-Upgraded} event. */ function _upgradeToAndCallUUPS(address newImplementation, bytes memory data) private { try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) { if (slot != ERC1967Utils.IMPLEMENTATION_SLOT) { revert UUPSUnsupportedProxiableUUID(slot); } ERC1967Utils.upgradeToAndCall(newImplementation, data); } catch { // The implementation is not UUPS revert ERC1967Utils.ERC1967InvalidImplementation(newImplementation); } } }
lib/openzeppelin-contracts-upgradeable/contracts/utils/ContextUpgradeable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; import {Initializable} from "../proxy/utils/Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
lib/openzeppelin-contracts-upgradeable/contracts/utils/PausableUpgradeable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.3.0) (utils/Pausable.sol) pragma solidity ^0.8.20; import {ContextUpgradeable} from "../utils/ContextUpgradeable.sol"; import {Initializable} from "../proxy/utils/Initializable.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 PausableUpgradeable is Initializable, ContextUpgradeable { /// @custom:storage-location erc7201:openzeppelin.storage.Pausable struct PausableStorage { bool _paused; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Pausable")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant PausableStorageLocation = 0xcd5ed15c6e187e77e9aee88184c21f4f2182ab5827cb3b7e07fbedcd63f03300; function _getPausableStorage() private pure returns (PausableStorage storage $) { assembly { $.slot := PausableStorageLocation } } /** * @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); /** * @dev The operation failed because the contract is paused. */ error EnforcedPause(); /** * @dev The operation failed because the contract is not paused. */ error ExpectedPause(); /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } function __Pausable_init() internal onlyInitializing { } function __Pausable_init_unchained() internal onlyInitializing { } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { PausableStorage storage $ = _getPausableStorage(); return $._paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { if (paused()) { revert EnforcedPause(); } } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { if (!paused()) { revert ExpectedPause(); } } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { PausableStorage storage $ = _getPausableStorage(); $._paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { PausableStorage storage $ = _getPausableStorage(); $._paused = false; emit Unpaused(_msgSender()); } }
lib/openzeppelin-contracts-upgradeable/contracts/utils/ReentrancyGuardUpgradeable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/ReentrancyGuard.sol) pragma solidity ^0.8.20; import {Initializable} from "../proxy/utils/Initializable.sol"; /** * @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 EIP-1153 (transient storage) is available on the chain you're deploying at, * consider using {ReentrancyGuardTransient} instead. * * 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 ReentrancyGuardUpgradeable is Initializable { // 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; /// @custom:storage-location erc7201:openzeppelin.storage.ReentrancyGuard struct ReentrancyGuardStorage { uint256 _status; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.ReentrancyGuard")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant ReentrancyGuardStorageLocation = 0x9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00; function _getReentrancyGuardStorage() private pure returns (ReentrancyGuardStorage storage $) { assembly { $.slot := ReentrancyGuardStorageLocation } } /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); function __ReentrancyGuard_init() internal onlyInitializing { __ReentrancyGuard_init_unchained(); } function __ReentrancyGuard_init_unchained() internal onlyInitializing { ReentrancyGuardStorage storage $ = _getReentrancyGuardStorage(); $._status = NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { ReentrancyGuardStorage storage $ = _getReentrancyGuardStorage(); // On the first call to nonReentrant, _status will be NOT_ENTERED if ($._status == ENTERED) { revert ReentrancyGuardReentrantCall(); } // Any calls to nonReentrant after this point will fail $._status = ENTERED; } function _nonReentrantAfter() private { ReentrancyGuardStorage storage $ = _getReentrancyGuardStorage(); // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) $._status = NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { ReentrancyGuardStorage storage $ = _getReentrancyGuardStorage(); return $._status == ENTERED; } }
lib/openzeppelin-contracts/contracts/interfaces/IERC1967.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC1967.sol) pragma solidity >=0.4.11; /** * @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC. */ interface IERC1967 { /** * @dev Emitted when the implementation is upgraded. */ event Upgraded(address indexed implementation); /** * @dev Emitted when the admin account has changed. */ event AdminChanged(address previousAdmin, address newAdmin); /** * @dev Emitted when the beacon is changed. */ event BeaconUpgraded(address indexed beacon); }
lib/openzeppelin-contracts/contracts/interfaces/draft-IERC1822.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.4.0) (interfaces/draft-IERC1822.sol) pragma solidity >=0.4.16; /** * @dev ERC-1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified * proxy whose upgrades are fully controlled by the current implementation. */ interface IERC1822Proxiable { /** * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation * address. * * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this * function revert if invoked through a proxy. */ function proxiableUUID() external view returns (bytes32); }
lib/openzeppelin-contracts/contracts/proxy/ERC1967/ERC1967Utils.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.4.0) (proxy/ERC1967/ERC1967Utils.sol) pragma solidity ^0.8.21; import {IBeacon} from "../beacon/IBeacon.sol"; import {IERC1967} from "../../interfaces/IERC1967.sol"; import {Address} from "../../utils/Address.sol"; import {StorageSlot} from "../../utils/StorageSlot.sol"; /** * @dev This library provides getters and event emitting update functions for * https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] slots. */ library ERC1967Utils { /** * @dev Storage slot with the address of the current implementation. * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1. */ // solhint-disable-next-line private-vars-leading-underscore bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; /** * @dev The `implementation` of the proxy is invalid. */ error ERC1967InvalidImplementation(address implementation); /** * @dev The `admin` of the proxy is invalid. */ error ERC1967InvalidAdmin(address admin); /** * @dev The `beacon` of the proxy is invalid. */ error ERC1967InvalidBeacon(address beacon); /** * @dev An upgrade function sees `msg.value > 0` that may be lost. */ error ERC1967NonPayable(); /** * @dev Returns the current implementation address. */ function getImplementation() internal view returns (address) { return StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value; } /** * @dev Stores a new address in the ERC-1967 implementation slot. */ function _setImplementation(address newImplementation) private { if (newImplementation.code.length == 0) { revert ERC1967InvalidImplementation(newImplementation); } StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value = newImplementation; } /** * @dev Performs implementation upgrade with additional setup call if data is nonempty. * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected * to avoid stuck value in the contract. * * Emits an {IERC1967-Upgraded} event. */ function upgradeToAndCall(address newImplementation, bytes memory data) internal { _setImplementation(newImplementation); emit IERC1967.Upgraded(newImplementation); if (data.length > 0) { Address.functionDelegateCall(newImplementation, data); } else { _checkNonPayable(); } } /** * @dev Storage slot with the admin of the contract. * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1. */ // solhint-disable-next-line private-vars-leading-underscore bytes32 internal constant ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103; /** * @dev Returns the current admin. * * TIP: To get this value clients can read directly from the storage slot shown below (specified by ERC-1967) using * the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103` */ function getAdmin() internal view returns (address) { return StorageSlot.getAddressSlot(ADMIN_SLOT).value; } /** * @dev Stores a new address in the ERC-1967 admin slot. */ function _setAdmin(address newAdmin) private { if (newAdmin == address(0)) { revert ERC1967InvalidAdmin(address(0)); } StorageSlot.getAddressSlot(ADMIN_SLOT).value = newAdmin; } /** * @dev Changes the admin of the proxy. * * Emits an {IERC1967-AdminChanged} event. */ function changeAdmin(address newAdmin) internal { emit IERC1967.AdminChanged(getAdmin(), newAdmin); _setAdmin(newAdmin); } /** * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. * This is the keccak-256 hash of "eip1967.proxy.beacon" subtracted by 1. */ // solhint-disable-next-line private-vars-leading-underscore bytes32 internal constant BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50; /** * @dev Returns the current beacon. */ function getBeacon() internal view returns (address) { return StorageSlot.getAddressSlot(BEACON_SLOT).value; } /** * @dev Stores a new beacon in the ERC-1967 beacon slot. */ function _setBeacon(address newBeacon) private { if (newBeacon.code.length == 0) { revert ERC1967InvalidBeacon(newBeacon); } StorageSlot.getAddressSlot(BEACON_SLOT).value = newBeacon; address beaconImplementation = IBeacon(newBeacon).implementation(); if (beaconImplementation.code.length == 0) { revert ERC1967InvalidImplementation(beaconImplementation); } } /** * @dev Change the beacon and trigger a setup call if data is nonempty. * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected * to avoid stuck value in the contract. * * Emits an {IERC1967-BeaconUpgraded} event. * * CAUTION: Invoking this function has no effect on an instance of {BeaconProxy} since v5, since * it uses an immutable beacon without looking at the value of the ERC-1967 beacon slot for * efficiency. */ function upgradeBeaconToAndCall(address newBeacon, bytes memory data) internal { _setBeacon(newBeacon); emit IERC1967.BeaconUpgraded(newBeacon); if (data.length > 0) { Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data); } else { _checkNonPayable(); } } /** * @dev Reverts if `msg.value` is not zero. It can be used to avoid `msg.value` stuck in the contract * if an upgrade doesn't perform an initialization call. */ function _checkNonPayable() private { if (msg.value > 0) { revert ERC1967NonPayable(); } } }
lib/openzeppelin-contracts/contracts/proxy/beacon/IBeacon.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.4.0) (proxy/beacon/IBeacon.sol) pragma solidity >=0.4.16; /** * @dev This is the interface that {BeaconProxy} expects of its beacon. */ interface IBeacon { /** * @dev Must return an address that can be used as a delegate call target. * * {UpgradeableBeacon} will check that this address is a contract. */ function implementation() external view returns (address); }
lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/IERC20.sol) pragma solidity >=0.4.16; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
lib/openzeppelin-contracts/contracts/utils/Address.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.4.0) (utils/Address.sol) pragma solidity ^0.8.20; import {Errors} from "./Errors.sol"; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert Errors.InsufficientBalance(address(this).balance, amount); } (bool success, bytes memory returndata) = recipient.call{value: amount}(""); if (!success) { _revert(returndata); } } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {Errors.FailedCall} error. * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert Errors.InsufficientBalance(address(this).balance, value); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case * of an unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {Errors.FailedCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}. */ function _revert(bytes memory returndata) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly ("memory-safe") { revert(add(returndata, 0x20), mload(returndata)) } } else { revert Errors.FailedCall(); } } }
lib/openzeppelin-contracts/contracts/utils/Errors.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/Errors.sol) pragma solidity ^0.8.20; /** * @dev Collection of common custom errors used in multiple contracts * * IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library. * It is recommended to avoid relying on the error API for critical functionality. * * _Available since v5.1._ */ library Errors { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error InsufficientBalance(uint256 balance, uint256 needed); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedCall(); /** * @dev The deployment failed. */ error FailedDeployment(); /** * @dev A necessary precompile is missing. */ error MissingPrecompile(address); }
lib/openzeppelin-contracts/contracts/utils/Panic.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol) pragma solidity ^0.8.20; /** * @dev Helper library for emitting standardized panic codes. * * ```solidity * contract Example { * using Panic for uint256; * * // Use any of the declared internal constants * function foo() { Panic.GENERIC.panic(); } * * // Alternatively * function foo() { Panic.panic(Panic.GENERIC); } * } * ``` * * Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil]. * * _Available since v5.1._ */ // slither-disable-next-line unused-state library Panic { /// @dev generic / unspecified error uint256 internal constant GENERIC = 0x00; /// @dev used by the assert() builtin uint256 internal constant ASSERT = 0x01; /// @dev arithmetic underflow or overflow uint256 internal constant UNDER_OVERFLOW = 0x11; /// @dev division or modulo by zero uint256 internal constant DIVISION_BY_ZERO = 0x12; /// @dev enum conversion error uint256 internal constant ENUM_CONVERSION_ERROR = 0x21; /// @dev invalid encoding in storage uint256 internal constant STORAGE_ENCODING_ERROR = 0x22; /// @dev empty array pop uint256 internal constant EMPTY_ARRAY_POP = 0x31; /// @dev array out of bounds access uint256 internal constant ARRAY_OUT_OF_BOUNDS = 0x32; /// @dev resource error (too large allocation or too large array) uint256 internal constant RESOURCE_ERROR = 0x41; /// @dev calling invalid internal function uint256 internal constant INVALID_INTERNAL_FUNCTION = 0x51; /// @dev Reverts with a panic code. Recommended to use with /// the internal constants with predefined codes. function panic(uint256 code) internal pure { assembly ("memory-safe") { mstore(0x00, 0x4e487b71) mstore(0x20, code) revert(0x1c, 0x24) } } }
lib/openzeppelin-contracts/contracts/utils/StorageSlot.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/StorageSlot.sol) // This file was procedurally generated from scripts/generate/templates/StorageSlot.js. pragma solidity ^0.8.20; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC-1967 implementation slot: * ```solidity * contract ERC1967 { * // Define the slot. Alternatively, use the SlotDerivation library to derive the slot. * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(newImplementation.code.length > 0); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` * * TIP: Consider using this library along with {SlotDerivation}. */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } struct Int256Slot { int256 value; } struct StringSlot { string value; } struct BytesSlot { bytes value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { assembly ("memory-safe") { r.slot := slot } } /** * @dev Returns a `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { assembly ("memory-safe") { r.slot := slot } } /** * @dev Returns a `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { assembly ("memory-safe") { r.slot := slot } } /** * @dev Returns a `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { assembly ("memory-safe") { r.slot := slot } } /** * @dev Returns a `Int256Slot` with member `value` located at `slot`. */ function getInt256Slot(bytes32 slot) internal pure returns (Int256Slot storage r) { assembly ("memory-safe") { r.slot := slot } } /** * @dev Returns a `StringSlot` with member `value` located at `slot`. */ function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) { assembly ("memory-safe") { r.slot := slot } } /** * @dev Returns an `StringSlot` representation of the string storage pointer `store`. */ function getStringSlot(string storage store) internal pure returns (StringSlot storage r) { assembly ("memory-safe") { r.slot := store.slot } } /** * @dev Returns a `BytesSlot` with member `value` located at `slot`. */ function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) { assembly ("memory-safe") { r.slot := slot } } /** * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`. */ function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) { assembly ("memory-safe") { r.slot := store.slot } } }
lib/openzeppelin-contracts/contracts/utils/math/Math.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.3.0) (utils/math/Math.sol) pragma solidity ^0.8.20; import {Panic} from "../Panic.sol"; import {SafeCast} from "./SafeCast.sol"; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Return the 512-bit addition of two uint256. * * The result is stored in two 256 variables such that sum = high * 2²⁵⁶ + low. */ function add512(uint256 a, uint256 b) internal pure returns (uint256 high, uint256 low) { assembly ("memory-safe") { low := add(a, b) high := lt(low, a) } } /** * @dev Return the 512-bit multiplication of two uint256. * * The result is stored in two 256 variables such that product = high * 2²⁵⁶ + low. */ function mul512(uint256 a, uint256 b) internal pure returns (uint256 high, uint256 low) { // 512-bit multiply [high low] = x * y. Compute the product mod 2²⁵⁶ and mod 2²⁵⁶ - 1, then use // the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = high * 2²⁵⁶ + low. assembly ("memory-safe") { let mm := mulmod(a, b, not(0)) low := mul(a, b) high := sub(sub(mm, low), lt(mm, low)) } } /** * @dev Returns the addition of two unsigned integers, with a success flag (no overflow). */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { uint256 c = a + b; success = c >= a; result = c * SafeCast.toUint(success); } } /** * @dev Returns the subtraction of two unsigned integers, with a success flag (no overflow). */ function trySub(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { uint256 c = a - b; success = c <= a; result = c * SafeCast.toUint(success); } } /** * @dev Returns the multiplication of two unsigned integers, with a success flag (no overflow). */ function tryMul(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { uint256 c = a * b; assembly ("memory-safe") { // Only true when the multiplication doesn't overflow // (c / a == b) || (a == 0) success := or(eq(div(c, a), b), iszero(a)) } // equivalent to: success ? c : 0 result = c * SafeCast.toUint(success); } } /** * @dev Returns the division of two unsigned integers, with a success flag (no division by zero). */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { success = b > 0; assembly ("memory-safe") { // The `DIV` opcode returns zero when the denominator is 0. result := div(a, b) } } } /** * @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero). */ function tryMod(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) { unchecked { success = b > 0; assembly ("memory-safe") { // The `MOD` opcode returns zero when the denominator is 0. result := mod(a, b) } } } /** * @dev Unsigned saturating addition, bounds to `2²⁵⁶ - 1` instead of overflowing. */ function saturatingAdd(uint256 a, uint256 b) internal pure returns (uint256) { (bool success, uint256 result) = tryAdd(a, b); return ternary(success, result, type(uint256).max); } /** * @dev Unsigned saturating subtraction, bounds to zero instead of overflowing. */ function saturatingSub(uint256 a, uint256 b) internal pure returns (uint256) { (, uint256 result) = trySub(a, b); return result; } /** * @dev Unsigned saturating multiplication, bounds to `2²⁵⁶ - 1` instead of overflowing. */ function saturatingMul(uint256 a, uint256 b) internal pure returns (uint256) { (bool success, uint256 result) = tryMul(a, b); return ternary(success, result, type(uint256).max); } /** * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant. * * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone. * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute * one branch when needed, making this function more expensive. */ function ternary(bool condition, uint256 a, uint256 b) internal pure returns (uint256) { unchecked { // branchless ternary works because: // b ^ (a ^ b) == a // b ^ 0 == b return b ^ ((a ^ b) * SafeCast.toUint(condition)); } } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return ternary(a > b, a, b); } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return ternary(a < b, a, b); } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. Panic.panic(Panic.DIVISION_BY_ZERO); } // The following calculation ensures accurate ceiling division without overflow. // Since a is non-zero, (a - 1) / b will not overflow. // The largest possible result occurs when (a - 1) / b is type(uint256).max, // but the largest value we can obtain is type(uint256).max - 1, which happens // when a = type(uint256).max and b = 1. unchecked { return SafeCast.toUint(a > 0) * ((a - 1) / b + 1); } } /** * @dev Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * * Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by * Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { (uint256 high, uint256 low) = mul512(x, y); // Handle non-overflow cases, 256 by 256 division. if (high == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return low / denominator; } // Make sure the result is less than 2²⁵⁶. Also prevents denominator == 0. if (denominator <= high) { Panic.panic(ternary(denominator == 0, Panic.DIVISION_BY_ZERO, Panic.UNDER_OVERFLOW)); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [high low]. uint256 remainder; assembly ("memory-safe") { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. high := sub(high, gt(remainder, low)) low := sub(low, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly ("memory-safe") { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [high low] by twos. low := div(low, twos) // Flip twos such that it is 2²⁵⁶ / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from high into low. low |= high * twos; // Invert denominator mod 2²⁵⁶. Now that denominator is an odd number, it has an inverse modulo 2²⁵⁶ such // that denominator * inv ≡ 1 mod 2²⁵⁶. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv ≡ 1 mod 2⁴. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also // works in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2⁸ inverse *= 2 - denominator * inverse; // inverse mod 2¹⁶ inverse *= 2 - denominator * inverse; // inverse mod 2³² inverse *= 2 - denominator * inverse; // inverse mod 2⁶⁴ inverse *= 2 - denominator * inverse; // inverse mod 2¹²⁸ inverse *= 2 - denominator * inverse; // inverse mod 2²⁵⁶ // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2²⁵⁶. Since the preconditions guarantee that the outcome is // less than 2²⁵⁶, this is the final result. We don't need to compute the high bits of the result and high // is no longer required. result = low * inverse; return result; } } /** * @dev Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { return mulDiv(x, y, denominator) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0); } /** * @dev Calculates floor(x * y >> n) with full precision. Throws if result overflows a uint256. */ function mulShr(uint256 x, uint256 y, uint8 n) internal pure returns (uint256 result) { unchecked { (uint256 high, uint256 low) = mul512(x, y); if (high >= 1 << n) { Panic.panic(Panic.UNDER_OVERFLOW); } return (high << (256 - n)) | (low >> n); } } /** * @dev Calculates x * y >> n with full precision, following the selected rounding direction. */ function mulShr(uint256 x, uint256 y, uint8 n, Rounding rounding) internal pure returns (uint256) { return mulShr(x, y, n) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, 1 << n) > 0); } /** * @dev Calculate the modular multiplicative inverse of a number in Z/nZ. * * If n is a prime, then Z/nZ is a field. In that case all elements are inversible, except 0. * If n is not a prime, then Z/nZ is not a field, and some elements might not be inversible. * * If the input value is not inversible, 0 is returned. * * NOTE: If you know for sure that n is (big) a prime, it may be cheaper to use Fermat's little theorem and get the * inverse using `Math.modExp(a, n - 2, n)`. See {invModPrime}. */ function invMod(uint256 a, uint256 n) internal pure returns (uint256) { unchecked { if (n == 0) return 0; // The inverse modulo is calculated using the Extended Euclidean Algorithm (iterative version) // Used to compute integers x and y such that: ax + ny = gcd(a, n). // When the gcd is 1, then the inverse of a modulo n exists and it's x. // ax + ny = 1 // ax = 1 + (-y)n // ax ≡ 1 (mod n) # x is the inverse of a modulo n // If the remainder is 0 the gcd is n right away. uint256 remainder = a % n; uint256 gcd = n; // Therefore the initial coefficients are: // ax + ny = gcd(a, n) = n // 0a + 1n = n int256 x = 0; int256 y = 1; while (remainder != 0) { uint256 quotient = gcd / remainder; (gcd, remainder) = ( // The old remainder is the next gcd to try. remainder, // Compute the next remainder. // Can't overflow given that (a % gcd) * (gcd // (a % gcd)) <= gcd // where gcd is at most n (capped to type(uint256).max) gcd - remainder * quotient ); (x, y) = ( // Increment the coefficient of a. y, // Decrement the coefficient of n. // Can overflow, but the result is casted to uint256 so that the // next value of y is "wrapped around" to a value between 0 and n - 1. x - y * int256(quotient) ); } if (gcd != 1) return 0; // No inverse exists. return ternary(x < 0, n - uint256(-x), uint256(x)); // Wrap the result if it's negative. } } /** * @dev Variant of {invMod}. More efficient, but only works if `p` is known to be a prime greater than `2`. * * From https://en.wikipedia.org/wiki/Fermat%27s_little_theorem[Fermat's little theorem], we know that if p is * prime, then `a**(p-1) ≡ 1 mod p`. As a consequence, we have `a * a**(p-2) ≡ 1 mod p`, which means that * `a**(p-2)` is the modular multiplicative inverse of a in Fp. * * NOTE: this function does NOT check that `p` is a prime greater than `2`. */ function invModPrime(uint256 a, uint256 p) internal view returns (uint256) { unchecked { return Math.modExp(a, p - 2, p); } } /** * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m) * * Requirements: * - modulus can't be zero * - underlying staticcall to precompile must succeed * * IMPORTANT: The result is only valid if the underlying call succeeds. When using this function, make * sure the chain you're using it on supports the precompiled contract for modular exponentiation * at address 0x05 as specified in https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, * the underlying function will succeed given the lack of a revert, but the result may be incorrectly * interpreted as 0. */ function modExp(uint256 b, uint256 e, uint256 m) internal view returns (uint256) { (bool success, uint256 result) = tryModExp(b, e, m); if (!success) { Panic.panic(Panic.DIVISION_BY_ZERO); } return result; } /** * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m). * It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying * to operate modulo 0 or if the underlying precompile reverted. * * IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain * you're using it on supports the precompiled contract for modular exponentiation at address 0x05 as specified in * https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, the underlying function will succeed given the lack * of a revert, but the result may be incorrectly interpreted as 0. */ function tryModExp(uint256 b, uint256 e, uint256 m) internal view returns (bool success, uint256 result) { if (m == 0) return (false, 0); assembly ("memory-safe") { let ptr := mload(0x40) // | Offset | Content | Content (Hex) | // |-----------|------------|--------------------------------------------------------------------| // | 0x00:0x1f | size of b | 0x0000000000000000000000000000000000000000000000000000000000000020 | // | 0x20:0x3f | size of e | 0x0000000000000000000000000000000000000000000000000000000000000020 | // | 0x40:0x5f | size of m | 0x0000000000000000000000000000000000000000000000000000000000000020 | // | 0x60:0x7f | value of b | 0x<.............................................................b> | // | 0x80:0x9f | value of e | 0x<.............................................................e> | // | 0xa0:0xbf | value of m | 0x<.............................................................m> | mstore(ptr, 0x20) mstore(add(ptr, 0x20), 0x20) mstore(add(ptr, 0x40), 0x20) mstore(add(ptr, 0x60), b) mstore(add(ptr, 0x80), e) mstore(add(ptr, 0xa0), m) // Given the result < m, it's guaranteed to fit in 32 bytes, // so we can use the memory scratch space located at offset 0. success := staticcall(gas(), 0x05, ptr, 0xc0, 0x00, 0x20) result := mload(0x00) } } /** * @dev Variant of {modExp} that supports inputs of arbitrary length. */ function modExp(bytes memory b, bytes memory e, bytes memory m) internal view returns (bytes memory) { (bool success, bytes memory result) = tryModExp(b, e, m); if (!success) { Panic.panic(Panic.DIVISION_BY_ZERO); } return result; } /** * @dev Variant of {tryModExp} that supports inputs of arbitrary length. */ function tryModExp( bytes memory b, bytes memory e, bytes memory m ) internal view returns (bool success, bytes memory result) { if (_zeroBytes(m)) return (false, new bytes(0)); uint256 mLen = m.length; // Encode call args in result and move the free memory pointer result = abi.encodePacked(b.length, e.length, mLen, b, e, m); assembly ("memory-safe") { let dataPtr := add(result, 0x20) // Write result on top of args to avoid allocating extra memory. success := staticcall(gas(), 0x05, dataPtr, mload(result), dataPtr, mLen) // Overwrite the length. // result.length > returndatasize() is guaranteed because returndatasize() == m.length mstore(result, mLen) // Set the memory pointer after the returned data. mstore(0x40, add(dataPtr, mLen)) } } /** * @dev Returns whether the provided byte array is zero. */ function _zeroBytes(bytes memory byteArray) private pure returns (bool) { for (uint256 i = 0; i < byteArray.length; ++i) { if (byteArray[i] != 0) { return false; } } return true; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * This method is based on Newton's method for computing square roots; the algorithm is restricted to only * using integer operations. */ function sqrt(uint256 a) internal pure returns (uint256) { unchecked { // Take care of easy edge cases when a == 0 or a == 1 if (a <= 1) { return a; } // In this function, we use Newton's method to get a root of `f(x) := x² - a`. It involves building a // sequence x_n that converges toward sqrt(a). For each iteration x_n, we also define the error between // the current value as `ε_n = | x_n - sqrt(a) |`. // // For our first estimation, we consider `e` the smallest power of 2 which is bigger than the square root // of the target. (i.e. `2**(e-1) ≤ sqrt(a) < 2**e`). We know that `e ≤ 128` because `(2¹²⁸)² = 2²⁵⁶` is // bigger than any uint256. // // By noticing that // `2**(e-1) ≤ sqrt(a) < 2**e → (2**(e-1))² ≤ a < (2**e)² → 2**(2*e-2) ≤ a < 2**(2*e)` // we can deduce that `e - 1` is `log2(a) / 2`. We can thus compute `x_n = 2**(e-1)` using a method similar // to the msb function. uint256 aa = a; uint256 xn = 1; if (aa >= (1 << 128)) { aa >>= 128; xn <<= 64; } if (aa >= (1 << 64)) { aa >>= 64; xn <<= 32; } if (aa >= (1 << 32)) { aa >>= 32; xn <<= 16; } if (aa >= (1 << 16)) { aa >>= 16; xn <<= 8; } if (aa >= (1 << 8)) { aa >>= 8; xn <<= 4; } if (aa >= (1 << 4)) { aa >>= 4; xn <<= 2; } if (aa >= (1 << 2)) { xn <<= 1; } // We now have x_n such that `x_n = 2**(e-1) ≤ sqrt(a) < 2**e = 2 * x_n`. This implies ε_n ≤ 2**(e-1). // // We can refine our estimation by noticing that the middle of that interval minimizes the error. // If we move x_n to equal 2**(e-1) + 2**(e-2), then we reduce the error to ε_n ≤ 2**(e-2). // This is going to be our x_0 (and ε_0) xn = (3 * xn) >> 1; // ε_0 := | x_0 - sqrt(a) | ≤ 2**(e-2) // From here, Newton's method give us: // x_{n+1} = (x_n + a / x_n) / 2 // // One should note that: // x_{n+1}² - a = ((x_n + a / x_n) / 2)² - a // = ((x_n² + a) / (2 * x_n))² - a // = (x_n⁴ + 2 * a * x_n² + a²) / (4 * x_n²) - a // = (x_n⁴ + 2 * a * x_n² + a² - 4 * a * x_n²) / (4 * x_n²) // = (x_n⁴ - 2 * a * x_n² + a²) / (4 * x_n²) // = (x_n² - a)² / (2 * x_n)² // = ((x_n² - a) / (2 * x_n))² // ≥ 0 // Which proves that for all n ≥ 1, sqrt(a) ≤ x_n // // This gives us the proof of quadratic convergence of the sequence: // ε_{n+1} = | x_{n+1} - sqrt(a) | // = | (x_n + a / x_n) / 2 - sqrt(a) | // = | (x_n² + a - 2*x_n*sqrt(a)) / (2 * x_n) | // = | (x_n - sqrt(a))² / (2 * x_n) | // = | ε_n² / (2 * x_n) | // = ε_n² / | (2 * x_n) | // // For the first iteration, we have a special case where x_0 is known: // ε_1 = ε_0² / | (2 * x_0) | // ≤ (2**(e-2))² / (2 * (2**(e-1) + 2**(e-2))) // ≤ 2**(2*e-4) / (3 * 2**(e-1)) // ≤ 2**(e-3) / 3 // ≤ 2**(e-3-log2(3)) // ≤ 2**(e-4.5) // // For the following iterations, we use the fact that, 2**(e-1) ≤ sqrt(a) ≤ x_n: // ε_{n+1} = ε_n² / | (2 * x_n) | // ≤ (2**(e-k))² / (2 * 2**(e-1)) // ≤ 2**(2*e-2*k) / 2**e // ≤ 2**(e-2*k) xn = (xn + a / xn) >> 1; // ε_1 := | x_1 - sqrt(a) | ≤ 2**(e-4.5) -- special case, see above xn = (xn + a / xn) >> 1; // ε_2 := | x_2 - sqrt(a) | ≤ 2**(e-9) -- general case with k = 4.5 xn = (xn + a / xn) >> 1; // ε_3 := | x_3 - sqrt(a) | ≤ 2**(e-18) -- general case with k = 9 xn = (xn + a / xn) >> 1; // ε_4 := | x_4 - sqrt(a) | ≤ 2**(e-36) -- general case with k = 18 xn = (xn + a / xn) >> 1; // ε_5 := | x_5 - sqrt(a) | ≤ 2**(e-72) -- general case with k = 36 xn = (xn + a / xn) >> 1; // ε_6 := | x_6 - sqrt(a) | ≤ 2**(e-144) -- general case with k = 72 // Because e ≤ 128 (as discussed during the first estimation phase), we know have reached a precision // ε_6 ≤ 2**(e-144) < 1. Given we're operating on integers, then we can ensure that xn is now either // sqrt(a) or sqrt(a) + 1. return xn - SafeCast.toUint(xn > a / xn); } } /** * @dev Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + SafeCast.toUint(unsignedRoundsUp(rounding) && result * result < a); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 x) internal pure returns (uint256 r) { // If value has upper 128 bits set, log2 result is at least 128 r = SafeCast.toUint(x > 0xffffffffffffffffffffffffffffffff) << 7; // If upper 64 bits of 128-bit half set, add 64 to result r |= SafeCast.toUint((x >> r) > 0xffffffffffffffff) << 6; // If upper 32 bits of 64-bit half set, add 32 to result r |= SafeCast.toUint((x >> r) > 0xffffffff) << 5; // If upper 16 bits of 32-bit half set, add 16 to result r |= SafeCast.toUint((x >> r) > 0xffff) << 4; // If upper 8 bits of 16-bit half set, add 8 to result r |= SafeCast.toUint((x >> r) > 0xff) << 3; // If upper 4 bits of 8-bit half set, add 4 to result r |= SafeCast.toUint((x >> r) > 0xf) << 2; // Shifts value right by the current result and use it as an index into this lookup table: // // | x (4 bits) | index | table[index] = MSB position | // |------------|---------|-----------------------------| // | 0000 | 0 | table[0] = 0 | // | 0001 | 1 | table[1] = 0 | // | 0010 | 2 | table[2] = 1 | // | 0011 | 3 | table[3] = 1 | // | 0100 | 4 | table[4] = 2 | // | 0101 | 5 | table[5] = 2 | // | 0110 | 6 | table[6] = 2 | // | 0111 | 7 | table[7] = 2 | // | 1000 | 8 | table[8] = 3 | // | 1001 | 9 | table[9] = 3 | // | 1010 | 10 | table[10] = 3 | // | 1011 | 11 | table[11] = 3 | // | 1100 | 12 | table[12] = 3 | // | 1101 | 13 | table[13] = 3 | // | 1110 | 14 | table[14] = 3 | // | 1111 | 15 | table[15] = 3 | // // The lookup table is represented as a 32-byte value with the MSB positions for 0-15 in the last 16 bytes. assembly ("memory-safe") { r := or(r, byte(shr(r, x), 0x0000010102020202030303030303030300000000000000000000000000000000)) } } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << result < value); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 10 ** result < value); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 x) internal pure returns (uint256 r) { // If value has upper 128 bits set, log2 result is at least 128 r = SafeCast.toUint(x > 0xffffffffffffffffffffffffffffffff) << 7; // If upper 64 bits of 128-bit half set, add 64 to result r |= SafeCast.toUint((x >> r) > 0xffffffffffffffff) << 6; // If upper 32 bits of 64-bit half set, add 32 to result r |= SafeCast.toUint((x >> r) > 0xffffffff) << 5; // If upper 16 bits of 32-bit half set, add 16 to result r |= SafeCast.toUint((x >> r) > 0xffff) << 4; // Add 1 if upper 8 bits of 16-bit half set, and divide accumulated result by 8 return (r >> 3) | SafeCast.toUint((x >> r) > 0xff); } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << (result << 3) < value); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } }
lib/openzeppelin-contracts/contracts/utils/math/SafeCast.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol) // This file was procedurally generated from scripts/generate/templates/SafeCast.js. pragma solidity ^0.8.20; /** * @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow * checks. * * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can * easily result in undesired exploitation or bugs, since developers usually * assume that overflows raise errors. `SafeCast` restores this intuition by * reverting the transaction when such an operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeCast { /** * @dev Value doesn't fit in an uint of `bits` size. */ error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value); /** * @dev An int value doesn't fit in an uint of `bits` size. */ error SafeCastOverflowedIntToUint(int256 value); /** * @dev Value doesn't fit in an int of `bits` size. */ error SafeCastOverflowedIntDowncast(uint8 bits, int256 value); /** * @dev An uint value doesn't fit in an int of `bits` size. */ error SafeCastOverflowedUintToInt(uint256 value); /** * @dev Returns the downcasted uint248 from uint256, reverting on * overflow (when the input is greater than largest uint248). * * Counterpart to Solidity's `uint248` operator. * * Requirements: * * - input must fit into 248 bits */ function toUint248(uint256 value) internal pure returns (uint248) { if (value > type(uint248).max) { revert SafeCastOverflowedUintDowncast(248, value); } return uint248(value); } /** * @dev Returns the downcasted uint240 from uint256, reverting on * overflow (when the input is greater than largest uint240). * * Counterpart to Solidity's `uint240` operator. * * Requirements: * * - input must fit into 240 bits */ function toUint240(uint256 value) internal pure returns (uint240) { if (value > type(uint240).max) { revert SafeCastOverflowedUintDowncast(240, value); } return uint240(value); } /** * @dev Returns the downcasted uint232 from uint256, reverting on * overflow (when the input is greater than largest uint232). * * Counterpart to Solidity's `uint232` operator. * * Requirements: * * - input must fit into 232 bits */ function toUint232(uint256 value) internal pure returns (uint232) { if (value > type(uint232).max) { revert SafeCastOverflowedUintDowncast(232, value); } return uint232(value); } /** * @dev Returns the downcasted uint224 from uint256, reverting on * overflow (when the input is greater than largest uint224). * * Counterpart to Solidity's `uint224` operator. * * Requirements: * * - input must fit into 224 bits */ function toUint224(uint256 value) internal pure returns (uint224) { if (value > type(uint224).max) { revert SafeCastOverflowedUintDowncast(224, value); } return uint224(value); } /** * @dev Returns the downcasted uint216 from uint256, reverting on * overflow (when the input is greater than largest uint216). * * Counterpart to Solidity's `uint216` operator. * * Requirements: * * - input must fit into 216 bits */ function toUint216(uint256 value) internal pure returns (uint216) { if (value > type(uint216).max) { revert SafeCastOverflowedUintDowncast(216, value); } return uint216(value); } /** * @dev Returns the downcasted uint208 from uint256, reverting on * overflow (when the input is greater than largest uint208). * * Counterpart to Solidity's `uint208` operator. * * Requirements: * * - input must fit into 208 bits */ function toUint208(uint256 value) internal pure returns (uint208) { if (value > type(uint208).max) { revert SafeCastOverflowedUintDowncast(208, value); } return uint208(value); } /** * @dev Returns the downcasted uint200 from uint256, reverting on * overflow (when the input is greater than largest uint200). * * Counterpart to Solidity's `uint200` operator. * * Requirements: * * - input must fit into 200 bits */ function toUint200(uint256 value) internal pure returns (uint200) { if (value > type(uint200).max) { revert SafeCastOverflowedUintDowncast(200, value); } return uint200(value); } /** * @dev Returns the downcasted uint192 from uint256, reverting on * overflow (when the input is greater than largest uint192). * * Counterpart to Solidity's `uint192` operator. * * Requirements: * * - input must fit into 192 bits */ function toUint192(uint256 value) internal pure returns (uint192) { if (value > type(uint192).max) { revert SafeCastOverflowedUintDowncast(192, value); } return uint192(value); } /** * @dev Returns the downcasted uint184 from uint256, reverting on * overflow (when the input is greater than largest uint184). * * Counterpart to Solidity's `uint184` operator. * * Requirements: * * - input must fit into 184 bits */ function toUint184(uint256 value) internal pure returns (uint184) { if (value > type(uint184).max) { revert SafeCastOverflowedUintDowncast(184, value); } return uint184(value); } /** * @dev Returns the downcasted uint176 from uint256, reverting on * overflow (when the input is greater than largest uint176). * * Counterpart to Solidity's `uint176` operator. * * Requirements: * * - input must fit into 176 bits */ function toUint176(uint256 value) internal pure returns (uint176) { if (value > type(uint176).max) { revert SafeCastOverflowedUintDowncast(176, value); } return uint176(value); } /** * @dev Returns the downcasted uint168 from uint256, reverting on * overflow (when the input is greater than largest uint168). * * Counterpart to Solidity's `uint168` operator. * * Requirements: * * - input must fit into 168 bits */ function toUint168(uint256 value) internal pure returns (uint168) { if (value > type(uint168).max) { revert SafeCastOverflowedUintDowncast(168, value); } return uint168(value); } /** * @dev Returns the downcasted uint160 from uint256, reverting on * overflow (when the input is greater than largest uint160). * * Counterpart to Solidity's `uint160` operator. * * Requirements: * * - input must fit into 160 bits */ function toUint160(uint256 value) internal pure returns (uint160) { if (value > type(uint160).max) { revert SafeCastOverflowedUintDowncast(160, value); } return uint160(value); } /** * @dev Returns the downcasted uint152 from uint256, reverting on * overflow (when the input is greater than largest uint152). * * Counterpart to Solidity's `uint152` operator. * * Requirements: * * - input must fit into 152 bits */ function toUint152(uint256 value) internal pure returns (uint152) { if (value > type(uint152).max) { revert SafeCastOverflowedUintDowncast(152, value); } return uint152(value); } /** * @dev Returns the downcasted uint144 from uint256, reverting on * overflow (when the input is greater than largest uint144). * * Counterpart to Solidity's `uint144` operator. * * Requirements: * * - input must fit into 144 bits */ function toUint144(uint256 value) internal pure returns (uint144) { if (value > type(uint144).max) { revert SafeCastOverflowedUintDowncast(144, value); } return uint144(value); } /** * @dev Returns the downcasted uint136 from uint256, reverting on * overflow (when the input is greater than largest uint136). * * Counterpart to Solidity's `uint136` operator. * * Requirements: * * - input must fit into 136 bits */ function toUint136(uint256 value) internal pure returns (uint136) { if (value > type(uint136).max) { revert SafeCastOverflowedUintDowncast(136, value); } return uint136(value); } /** * @dev Returns the downcasted uint128 from uint256, reverting on * overflow (when the input is greater than largest uint128). * * Counterpart to Solidity's `uint128` operator. * * Requirements: * * - input must fit into 128 bits */ function toUint128(uint256 value) internal pure returns (uint128) { if (value > type(uint128).max) { revert SafeCastOverflowedUintDowncast(128, value); } return uint128(value); } /** * @dev Returns the downcasted uint120 from uint256, reverting on * overflow (when the input is greater than largest uint120). * * Counterpart to Solidity's `uint120` operator. * * Requirements: * * - input must fit into 120 bits */ function toUint120(uint256 value) internal pure returns (uint120) { if (value > type(uint120).max) { revert SafeCastOverflowedUintDowncast(120, value); } return uint120(value); } /** * @dev Returns the downcasted uint112 from uint256, reverting on * overflow (when the input is greater than largest uint112). * * Counterpart to Solidity's `uint112` operator. * * Requirements: * * - input must fit into 112 bits */ function toUint112(uint256 value) internal pure returns (uint112) { if (value > type(uint112).max) { revert SafeCastOverflowedUintDowncast(112, value); } return uint112(value); } /** * @dev Returns the downcasted uint104 from uint256, reverting on * overflow (when the input is greater than largest uint104). * * Counterpart to Solidity's `uint104` operator. * * Requirements: * * - input must fit into 104 bits */ function toUint104(uint256 value) internal pure returns (uint104) { if (value > type(uint104).max) { revert SafeCastOverflowedUintDowncast(104, value); } return uint104(value); } /** * @dev Returns the downcasted uint96 from uint256, reverting on * overflow (when the input is greater than largest uint96). * * Counterpart to Solidity's `uint96` operator. * * Requirements: * * - input must fit into 96 bits */ function toUint96(uint256 value) internal pure returns (uint96) { if (value > type(uint96).max) { revert SafeCastOverflowedUintDowncast(96, value); } return uint96(value); } /** * @dev Returns the downcasted uint88 from uint256, reverting on * overflow (when the input is greater than largest uint88). * * Counterpart to Solidity's `uint88` operator. * * Requirements: * * - input must fit into 88 bits */ function toUint88(uint256 value) internal pure returns (uint88) { if (value > type(uint88).max) { revert SafeCastOverflowedUintDowncast(88, value); } return uint88(value); } /** * @dev Returns the downcasted uint80 from uint256, reverting on * overflow (when the input is greater than largest uint80). * * Counterpart to Solidity's `uint80` operator. * * Requirements: * * - input must fit into 80 bits */ function toUint80(uint256 value) internal pure returns (uint80) { if (value > type(uint80).max) { revert SafeCastOverflowedUintDowncast(80, value); } return uint80(value); } /** * @dev Returns the downcasted uint72 from uint256, reverting on * overflow (when the input is greater than largest uint72). * * Counterpart to Solidity's `uint72` operator. * * Requirements: * * - input must fit into 72 bits */ function toUint72(uint256 value) internal pure returns (uint72) { if (value > type(uint72).max) { revert SafeCastOverflowedUintDowncast(72, value); } return uint72(value); } /** * @dev Returns the downcasted uint64 from uint256, reverting on * overflow (when the input is greater than largest uint64). * * Counterpart to Solidity's `uint64` operator. * * Requirements: * * - input must fit into 64 bits */ function toUint64(uint256 value) internal pure returns (uint64) { if (value > type(uint64).max) { revert SafeCastOverflowedUintDowncast(64, value); } return uint64(value); } /** * @dev Returns the downcasted uint56 from uint256, reverting on * overflow (when the input is greater than largest uint56). * * Counterpart to Solidity's `uint56` operator. * * Requirements: * * - input must fit into 56 bits */ function toUint56(uint256 value) internal pure returns (uint56) { if (value > type(uint56).max) { revert SafeCastOverflowedUintDowncast(56, value); } return uint56(value); } /** * @dev Returns the downcasted uint48 from uint256, reverting on * overflow (when the input is greater than largest uint48). * * Counterpart to Solidity's `uint48` operator. * * Requirements: * * - input must fit into 48 bits */ function toUint48(uint256 value) internal pure returns (uint48) { if (value > type(uint48).max) { revert SafeCastOverflowedUintDowncast(48, value); } return uint48(value); } /** * @dev Returns the downcasted uint40 from uint256, reverting on * overflow (when the input is greater than largest uint40). * * Counterpart to Solidity's `uint40` operator. * * Requirements: * * - input must fit into 40 bits */ function toUint40(uint256 value) internal pure returns (uint40) { if (value > type(uint40).max) { revert SafeCastOverflowedUintDowncast(40, value); } return uint40(value); } /** * @dev Returns the downcasted uint32 from uint256, reverting on * overflow (when the input is greater than largest uint32). * * Counterpart to Solidity's `uint32` operator. * * Requirements: * * - input must fit into 32 bits */ function toUint32(uint256 value) internal pure returns (uint32) { if (value > type(uint32).max) { revert SafeCastOverflowedUintDowncast(32, value); } return uint32(value); } /** * @dev Returns the downcasted uint24 from uint256, reverting on * overflow (when the input is greater than largest uint24). * * Counterpart to Solidity's `uint24` operator. * * Requirements: * * - input must fit into 24 bits */ function toUint24(uint256 value) internal pure returns (uint24) { if (value > type(uint24).max) { revert SafeCastOverflowedUintDowncast(24, value); } return uint24(value); } /** * @dev Returns the downcasted uint16 from uint256, reverting on * overflow (when the input is greater than largest uint16). * * Counterpart to Solidity's `uint16` operator. * * Requirements: * * - input must fit into 16 bits */ function toUint16(uint256 value) internal pure returns (uint16) { if (value > type(uint16).max) { revert SafeCastOverflowedUintDowncast(16, value); } return uint16(value); } /** * @dev Returns the downcasted uint8 from uint256, reverting on * overflow (when the input is greater than largest uint8). * * Counterpart to Solidity's `uint8` operator. * * Requirements: * * - input must fit into 8 bits */ function toUint8(uint256 value) internal pure returns (uint8) { if (value > type(uint8).max) { revert SafeCastOverflowedUintDowncast(8, value); } return uint8(value); } /** * @dev Converts a signed int256 into an unsigned uint256. * * Requirements: * * - input must be greater than or equal to 0. */ function toUint256(int256 value) internal pure returns (uint256) { if (value < 0) { revert SafeCastOverflowedIntToUint(value); } return uint256(value); } /** * @dev Returns the downcasted int248 from int256, reverting on * overflow (when the input is less than smallest int248 or * greater than largest int248). * * Counterpart to Solidity's `int248` operator. * * Requirements: * * - input must fit into 248 bits */ function toInt248(int256 value) internal pure returns (int248 downcasted) { downcasted = int248(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(248, value); } } /** * @dev Returns the downcasted int240 from int256, reverting on * overflow (when the input is less than smallest int240 or * greater than largest int240). * * Counterpart to Solidity's `int240` operator. * * Requirements: * * - input must fit into 240 bits */ function toInt240(int256 value) internal pure returns (int240 downcasted) { downcasted = int240(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(240, value); } } /** * @dev Returns the downcasted int232 from int256, reverting on * overflow (when the input is less than smallest int232 or * greater than largest int232). * * Counterpart to Solidity's `int232` operator. * * Requirements: * * - input must fit into 232 bits */ function toInt232(int256 value) internal pure returns (int232 downcasted) { downcasted = int232(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(232, value); } } /** * @dev Returns the downcasted int224 from int256, reverting on * overflow (when the input is less than smallest int224 or * greater than largest int224). * * Counterpart to Solidity's `int224` operator. * * Requirements: * * - input must fit into 224 bits */ function toInt224(int256 value) internal pure returns (int224 downcasted) { downcasted = int224(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(224, value); } } /** * @dev Returns the downcasted int216 from int256, reverting on * overflow (when the input is less than smallest int216 or * greater than largest int216). * * Counterpart to Solidity's `int216` operator. * * Requirements: * * - input must fit into 216 bits */ function toInt216(int256 value) internal pure returns (int216 downcasted) { downcasted = int216(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(216, value); } } /** * @dev Returns the downcasted int208 from int256, reverting on * overflow (when the input is less than smallest int208 or * greater than largest int208). * * Counterpart to Solidity's `int208` operator. * * Requirements: * * - input must fit into 208 bits */ function toInt208(int256 value) internal pure returns (int208 downcasted) { downcasted = int208(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(208, value); } } /** * @dev Returns the downcasted int200 from int256, reverting on * overflow (when the input is less than smallest int200 or * greater than largest int200). * * Counterpart to Solidity's `int200` operator. * * Requirements: * * - input must fit into 200 bits */ function toInt200(int256 value) internal pure returns (int200 downcasted) { downcasted = int200(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(200, value); } } /** * @dev Returns the downcasted int192 from int256, reverting on * overflow (when the input is less than smallest int192 or * greater than largest int192). * * Counterpart to Solidity's `int192` operator. * * Requirements: * * - input must fit into 192 bits */ function toInt192(int256 value) internal pure returns (int192 downcasted) { downcasted = int192(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(192, value); } } /** * @dev Returns the downcasted int184 from int256, reverting on * overflow (when the input is less than smallest int184 or * greater than largest int184). * * Counterpart to Solidity's `int184` operator. * * Requirements: * * - input must fit into 184 bits */ function toInt184(int256 value) internal pure returns (int184 downcasted) { downcasted = int184(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(184, value); } } /** * @dev Returns the downcasted int176 from int256, reverting on * overflow (when the input is less than smallest int176 or * greater than largest int176). * * Counterpart to Solidity's `int176` operator. * * Requirements: * * - input must fit into 176 bits */ function toInt176(int256 value) internal pure returns (int176 downcasted) { downcasted = int176(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(176, value); } } /** * @dev Returns the downcasted int168 from int256, reverting on * overflow (when the input is less than smallest int168 or * greater than largest int168). * * Counterpart to Solidity's `int168` operator. * * Requirements: * * - input must fit into 168 bits */ function toInt168(int256 value) internal pure returns (int168 downcasted) { downcasted = int168(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(168, value); } } /** * @dev Returns the downcasted int160 from int256, reverting on * overflow (when the input is less than smallest int160 or * greater than largest int160). * * Counterpart to Solidity's `int160` operator. * * Requirements: * * - input must fit into 160 bits */ function toInt160(int256 value) internal pure returns (int160 downcasted) { downcasted = int160(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(160, value); } } /** * @dev Returns the downcasted int152 from int256, reverting on * overflow (when the input is less than smallest int152 or * greater than largest int152). * * Counterpart to Solidity's `int152` operator. * * Requirements: * * - input must fit into 152 bits */ function toInt152(int256 value) internal pure returns (int152 downcasted) { downcasted = int152(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(152, value); } } /** * @dev Returns the downcasted int144 from int256, reverting on * overflow (when the input is less than smallest int144 or * greater than largest int144). * * Counterpart to Solidity's `int144` operator. * * Requirements: * * - input must fit into 144 bits */ function toInt144(int256 value) internal pure returns (int144 downcasted) { downcasted = int144(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(144, value); } } /** * @dev Returns the downcasted int136 from int256, reverting on * overflow (when the input is less than smallest int136 or * greater than largest int136). * * Counterpart to Solidity's `int136` operator. * * Requirements: * * - input must fit into 136 bits */ function toInt136(int256 value) internal pure returns (int136 downcasted) { downcasted = int136(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(136, value); } } /** * @dev Returns the downcasted int128 from int256, reverting on * overflow (when the input is less than smallest int128 or * greater than largest int128). * * Counterpart to Solidity's `int128` operator. * * Requirements: * * - input must fit into 128 bits */ function toInt128(int256 value) internal pure returns (int128 downcasted) { downcasted = int128(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(128, value); } } /** * @dev Returns the downcasted int120 from int256, reverting on * overflow (when the input is less than smallest int120 or * greater than largest int120). * * Counterpart to Solidity's `int120` operator. * * Requirements: * * - input must fit into 120 bits */ function toInt120(int256 value) internal pure returns (int120 downcasted) { downcasted = int120(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(120, value); } } /** * @dev Returns the downcasted int112 from int256, reverting on * overflow (when the input is less than smallest int112 or * greater than largest int112). * * Counterpart to Solidity's `int112` operator. * * Requirements: * * - input must fit into 112 bits */ function toInt112(int256 value) internal pure returns (int112 downcasted) { downcasted = int112(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(112, value); } } /** * @dev Returns the downcasted int104 from int256, reverting on * overflow (when the input is less than smallest int104 or * greater than largest int104). * * Counterpart to Solidity's `int104` operator. * * Requirements: * * - input must fit into 104 bits */ function toInt104(int256 value) internal pure returns (int104 downcasted) { downcasted = int104(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(104, value); } } /** * @dev Returns the downcasted int96 from int256, reverting on * overflow (when the input is less than smallest int96 or * greater than largest int96). * * Counterpart to Solidity's `int96` operator. * * Requirements: * * - input must fit into 96 bits */ function toInt96(int256 value) internal pure returns (int96 downcasted) { downcasted = int96(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(96, value); } } /** * @dev Returns the downcasted int88 from int256, reverting on * overflow (when the input is less than smallest int88 or * greater than largest int88). * * Counterpart to Solidity's `int88` operator. * * Requirements: * * - input must fit into 88 bits */ function toInt88(int256 value) internal pure returns (int88 downcasted) { downcasted = int88(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(88, value); } } /** * @dev Returns the downcasted int80 from int256, reverting on * overflow (when the input is less than smallest int80 or * greater than largest int80). * * Counterpart to Solidity's `int80` operator. * * Requirements: * * - input must fit into 80 bits */ function toInt80(int256 value) internal pure returns (int80 downcasted) { downcasted = int80(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(80, value); } } /** * @dev Returns the downcasted int72 from int256, reverting on * overflow (when the input is less than smallest int72 or * greater than largest int72). * * Counterpart to Solidity's `int72` operator. * * Requirements: * * - input must fit into 72 bits */ function toInt72(int256 value) internal pure returns (int72 downcasted) { downcasted = int72(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(72, value); } } /** * @dev Returns the downcasted int64 from int256, reverting on * overflow (when the input is less than smallest int64 or * greater than largest int64). * * Counterpart to Solidity's `int64` operator. * * Requirements: * * - input must fit into 64 bits */ function toInt64(int256 value) internal pure returns (int64 downcasted) { downcasted = int64(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(64, value); } } /** * @dev Returns the downcasted int56 from int256, reverting on * overflow (when the input is less than smallest int56 or * greater than largest int56). * * Counterpart to Solidity's `int56` operator. * * Requirements: * * - input must fit into 56 bits */ function toInt56(int256 value) internal pure returns (int56 downcasted) { downcasted = int56(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(56, value); } } /** * @dev Returns the downcasted int48 from int256, reverting on * overflow (when the input is less than smallest int48 or * greater than largest int48). * * Counterpart to Solidity's `int48` operator. * * Requirements: * * - input must fit into 48 bits */ function toInt48(int256 value) internal pure returns (int48 downcasted) { downcasted = int48(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(48, value); } } /** * @dev Returns the downcasted int40 from int256, reverting on * overflow (when the input is less than smallest int40 or * greater than largest int40). * * Counterpart to Solidity's `int40` operator. * * Requirements: * * - input must fit into 40 bits */ function toInt40(int256 value) internal pure returns (int40 downcasted) { downcasted = int40(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(40, value); } } /** * @dev Returns the downcasted int32 from int256, reverting on * overflow (when the input is less than smallest int32 or * greater than largest int32). * * Counterpart to Solidity's `int32` operator. * * Requirements: * * - input must fit into 32 bits */ function toInt32(int256 value) internal pure returns (int32 downcasted) { downcasted = int32(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(32, value); } } /** * @dev Returns the downcasted int24 from int256, reverting on * overflow (when the input is less than smallest int24 or * greater than largest int24). * * Counterpart to Solidity's `int24` operator. * * Requirements: * * - input must fit into 24 bits */ function toInt24(int256 value) internal pure returns (int24 downcasted) { downcasted = int24(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(24, value); } } /** * @dev Returns the downcasted int16 from int256, reverting on * overflow (when the input is less than smallest int16 or * greater than largest int16). * * Counterpart to Solidity's `int16` operator. * * Requirements: * * - input must fit into 16 bits */ function toInt16(int256 value) internal pure returns (int16 downcasted) { downcasted = int16(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(16, value); } } /** * @dev Returns the downcasted int8 from int256, reverting on * overflow (when the input is less than smallest int8 or * greater than largest int8). * * Counterpart to Solidity's `int8` operator. * * Requirements: * * - input must fit into 8 bits */ function toInt8(int256 value) internal pure returns (int8 downcasted) { downcasted = int8(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(8, value); } } /** * @dev Converts an unsigned uint256 into a signed int256. * * Requirements: * * - input must be less than or equal to maxInt256. */ function toInt256(uint256 value) internal pure returns (int256) { // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive if (value > uint256(type(int256).max)) { revert SafeCastOverflowedUintToInt(value); } return int256(value); } /** * @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump. */ function toUint(bool b) internal pure returns (uint256 u) { assembly ("memory-safe") { u := iszero(iszero(b)) } } }
src/interfaces/BrawlExchange/IBrawlBankMinimal.sol
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; interface IBrawlBankMinimal { function internalTransfer(address from, address to, uint256 amount) external; function transferFrom(address from, address to, uint256 amount) external; // onlyAuthorized in Bank }
src/interfaces/BrawlExchange/IBrawlExchangeEvents.sol
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; interface IBrawlExchangeEvents { event LiquidityAdded(uint256 indexed positionId, address indexed provider, uint256 tickBps, uint256 cashAmount); event LiquidityRemoved( uint256 indexed positionId, address indexed provider, uint256 cashReturned, uint256 feeTaken, bool early ); event PositionFullyConsumed(uint256 indexed positionId, uint256 tickBps, uint256 timestamp); event ProviderPaid(uint256 indexed positionId, address indexed provider, uint256 goalPaid); event PositionPayoutFailed( uint256 indexed positionId, address indexed provider, uint256 goalAmount, uint256 cashRefunded ); event Swapped(address indexed trader, uint256 goalIn, uint256 cashOut, uint256 avgPriceBps); event TickActivated(uint256 tickBps); event TickDeactivated(uint256 tickBps); event TickParamsUpdated(uint256 tickSizeBps, uint256 minPriceBps, uint256 maxPriceBps); event LiquidityParamsUpdated(uint256 maxPositionsPerTick, uint256 minLiquidityAmount, uint256 minSwapGoalAmount); event EarlyCloseParamsUpdated(uint256 earlyCloseCooldown, uint256 earlyCloseFeeBps); event EmergencySweepToken(address indexed token, address indexed to, uint256 amount); event EmergencySweepCash(address indexed to, uint256 amount); event EmergencySweepNative(address indexed to, uint256 amount); event AdminAdded(address indexed admin); event AdminRemoved(address indexed admin); event AdminClosedPosition(uint256 indexed positionId, address indexed provider, uint256 cashReturned); event ListingsPauseUpdated(bool paused); event BankUpdated(address indexed oldBank, address indexed newBank); event GoalUpdated(address indexed oldGoal, address indexed newGoal); }
Compiler Settings
{"viaIR":false,"remappings":["@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/","@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/","erc4626-tests/=lib/openzeppelin-contracts-upgradeable/lib/erc4626-tests/","forge-std/=lib/forge-std/src/","halmos-cheatcodes/=lib/openzeppelin-contracts-upgradeable/lib/halmos-cheatcodes/src/","openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/","openzeppelin-contracts/=lib/openzeppelin-contracts/","pancake-swap-core/=lib/pancake-swap-core/contracts/","pancake-swap-periphery/=lib/pancake-swap-periphery/contracts/"],"outputSelection":{"*":{"*":["*"],"":["*"]}},"optimizer":{"runs":200,"enabled":true},"metadata":{"useLiteralContent":false,"bytecodeHash":"ipfs","appendCBOR":true},"libraries":{},"evmVersion":"cancun"}
Contract ABI
[{"type":"error","name":"AddressEmptyCode","inputs":[{"type":"address","name":"target","internalType":"address"}]},{"type":"error","name":"AmountZero","inputs":[]},{"type":"error","name":"ERC1967InvalidImplementation","inputs":[{"type":"address","name":"implementation","internalType":"address"}]},{"type":"error","name":"ERC1967NonPayable","inputs":[]},{"type":"error","name":"EarlyCloseFeeTooHigh","inputs":[]},{"type":"error","name":"EnforcedPause","inputs":[]},{"type":"error","name":"ExchangePaused","inputs":[]},{"type":"error","name":"ExpectedPause","inputs":[]},{"type":"error","name":"FailedCall","inputs":[]},{"type":"error","name":"InvalidInitialization","inputs":[]},{"type":"error","name":"InvalidPriceRange","inputs":[]},{"type":"error","name":"IterationLimit","inputs":[]},{"type":"error","name":"ListingsPaused","inputs":[]},{"type":"error","name":"NotInitializing","inputs":[]},{"type":"error","name":"NotOwnerOfPosition","inputs":[]},{"type":"error","name":"NotOwnerOrAdmin","inputs":[]},{"type":"error","name":"OwnableInvalidOwner","inputs":[{"type":"address","name":"owner","internalType":"address"}]},{"type":"error","name":"OwnableUnauthorizedAccount","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"error","name":"PositionInactive","inputs":[]},{"type":"error","name":"PriceOutOfRange","inputs":[]},{"type":"error","name":"ReentrancyGuardReentrantCall","inputs":[]},{"type":"error","name":"Slippage","inputs":[]},{"type":"error","name":"TickTooSmall","inputs":[]},{"type":"error","name":"TooManyActiveTicks","inputs":[]},{"type":"error","name":"TooManyPositionsAtTick","inputs":[]},{"type":"error","name":"UUPSUnauthorizedCallContext","inputs":[]},{"type":"error","name":"UUPSUnsupportedProxiableUUID","inputs":[{"type":"bytes32","name":"slot","internalType":"bytes32"}]},{"type":"error","name":"ZeroAddress","inputs":[]},{"type":"event","name":"AdminAdded","inputs":[{"type":"address","name":"admin","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"AdminClosedPosition","inputs":[{"type":"uint256","name":"positionId","internalType":"uint256","indexed":true},{"type":"address","name":"provider","internalType":"address","indexed":true},{"type":"uint256","name":"cashReturned","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"AdminRemoved","inputs":[{"type":"address","name":"admin","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"BankUpdated","inputs":[{"type":"address","name":"oldBank","internalType":"address","indexed":true},{"type":"address","name":"newBank","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"EarlyCloseParamsUpdated","inputs":[{"type":"uint256","name":"earlyCloseCooldown","internalType":"uint256","indexed":false},{"type":"uint256","name":"earlyCloseFeeBps","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"EmergencySweepCash","inputs":[{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"EmergencySweepNative","inputs":[{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"EmergencySweepToken","inputs":[{"type":"address","name":"token","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"GoalUpdated","inputs":[{"type":"address","name":"oldGoal","internalType":"address","indexed":true},{"type":"address","name":"newGoal","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Initialized","inputs":[{"type":"uint64","name":"version","internalType":"uint64","indexed":false}],"anonymous":false},{"type":"event","name":"LiquidityAdded","inputs":[{"type":"uint256","name":"positionId","internalType":"uint256","indexed":true},{"type":"address","name":"provider","internalType":"address","indexed":true},{"type":"uint256","name":"tickBps","internalType":"uint256","indexed":false},{"type":"uint256","name":"cashAmount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"LiquidityParamsUpdated","inputs":[{"type":"uint256","name":"maxPositionsPerTick","internalType":"uint256","indexed":false},{"type":"uint256","name":"minLiquidityAmount","internalType":"uint256","indexed":false},{"type":"uint256","name":"minSwapGoalAmount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"LiquidityRemoved","inputs":[{"type":"uint256","name":"positionId","internalType":"uint256","indexed":true},{"type":"address","name":"provider","internalType":"address","indexed":true},{"type":"uint256","name":"cashReturned","internalType":"uint256","indexed":false},{"type":"uint256","name":"feeTaken","internalType":"uint256","indexed":false},{"type":"bool","name":"early","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"ListingsPauseUpdated","inputs":[{"type":"bool","name":"paused","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Paused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"PositionFullyConsumed","inputs":[{"type":"uint256","name":"positionId","internalType":"uint256","indexed":true},{"type":"uint256","name":"tickBps","internalType":"uint256","indexed":false},{"type":"uint256","name":"timestamp","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"PositionPayoutFailed","inputs":[{"type":"uint256","name":"positionId","internalType":"uint256","indexed":true},{"type":"address","name":"provider","internalType":"address","indexed":true},{"type":"uint256","name":"goalAmount","internalType":"uint256","indexed":false},{"type":"uint256","name":"cashRefunded","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"ProviderPaid","inputs":[{"type":"uint256","name":"positionId","internalType":"uint256","indexed":true},{"type":"address","name":"provider","internalType":"address","indexed":true},{"type":"uint256","name":"goalPaid","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Swapped","inputs":[{"type":"address","name":"trader","internalType":"address","indexed":true},{"type":"uint256","name":"goalIn","internalType":"uint256","indexed":false},{"type":"uint256","name":"cashOut","internalType":"uint256","indexed":false},{"type":"uint256","name":"avgPriceBps","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"TickActivated","inputs":[{"type":"uint256","name":"tickBps","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"TickDeactivated","inputs":[{"type":"uint256","name":"tickBps","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"TickParamsUpdated","inputs":[{"type":"uint256","name":"tickSizeBps","internalType":"uint256","indexed":false},{"type":"uint256","name":"minPriceBps","internalType":"uint256","indexed":false},{"type":"uint256","name":"maxPriceBps","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Unpaused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"Upgraded","inputs":[{"type":"address","name":"implementation","internalType":"address","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"MAX_POSITIONS_PER_TICK_SWEEP","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"MAX_TICKS_PER_SWAP","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"UPGRADE_INTERFACE_VERSION","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addAdmin","inputs":[{"type":"address","name":"admin","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256","name":"positionId","internalType":"uint256"},{"type":"uint256","name":"tickBps","internalType":"uint256"}],"name":"addLiquidity","inputs":[{"type":"uint256","name":"cashAmount","internalType":"uint256"},{"type":"uint256","name":"priceBps","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"adminClosePosition","inputs":[{"type":"uint256","name":"positionId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IBrawlBankMinimal"}],"name":"bank","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"closedPositionsCount","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"earlyCloseCooldown","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"earlyCloseFeeBps","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"emergencySweepCash","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"emergencySweepNative","inputs":[{"type":"address","name":"to","internalType":"address payable"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"emergencySweepToken","inputs":[{"type":"address","name":"token","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256[]","name":"","internalType":"uint256[]"}],"name":"getActiveTicks","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"tuple","name":"","internalType":"struct BrawlExchange.Position","components":[{"type":"uint256","name":"id","internalType":"uint256"},{"type":"address","name":"owner","internalType":"address"},{"type":"uint256","name":"tickBps","internalType":"uint256"},{"type":"uint256","name":"initialCashAmount","internalType":"uint256"},{"type":"uint256","name":"cashAmount","internalType":"uint256"},{"type":"uint64","name":"createdAt","internalType":"uint64"},{"type":"uint64","name":"closedAt","internalType":"uint64"},{"type":"bool","name":"active","internalType":"bool"}]}],"name":"getPosition","inputs":[{"type":"uint256","name":"positionId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"head","internalType":"uint256"},{"type":"uint256[]","name":"ids","internalType":"uint256[]"}],"name":"getPositionsAtTick","inputs":[{"type":"uint256","name":"tickBps","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256[]","name":"","internalType":"uint256[]"}],"name":"getUserClosedPositions","inputs":[{"type":"address","name":"user","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256[]","name":"","internalType":"uint256[]"}],"name":"getUserOpenPositions","inputs":[{"type":"address","name":"user","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IERC20"}],"name":"goal","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"initialize","inputs":[{"type":"address","name":"bank_","internalType":"address"},{"type":"address","name":"goal_","internalType":"address"},{"type":"uint256","name":"tickSizeBps_","internalType":"uint256"},{"type":"uint256","name":"minPriceBps_","internalType":"uint256"},{"type":"uint256","name":"maxPriceBps_","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isAdmin","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"listingsPaused","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxActiveTicks","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxPositionsPerTick","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxPriceBps","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"minLiquidityAmount","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"minPriceBps","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"minSwapGoalAmount","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"nextPositionId","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"openPositionsCount","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"pause","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"paused","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"id","internalType":"uint256"},{"type":"address","name":"owner","internalType":"address"},{"type":"uint256","name":"tickBps","internalType":"uint256"},{"type":"uint256","name":"initialCashAmount","internalType":"uint256"},{"type":"uint256","name":"cashAmount","internalType":"uint256"},{"type":"uint64","name":"createdAt","internalType":"uint64"},{"type":"uint64","name":"closedAt","internalType":"uint64"},{"type":"bool","name":"active","internalType":"bool"}],"name":"positions","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"proxiableUUID","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"removeAdmin","inputs":[{"type":"address","name":"admin","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"removeLiquidity","inputs":[{"type":"uint256","name":"positionId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setListingsPaused","inputs":[{"type":"bool","name":"paused_","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint256","name":"cashOut","internalType":"uint256"},{"type":"uint256","name":"avgPriceBps","internalType":"uint256"}],"name":"swap","inputs":[{"type":"uint256","name":"goalAmount","internalType":"uint256"},{"type":"uint256","name":"minCashOut","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tickSizeBps","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"unpause","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateBankAddress","inputs":[{"type":"address","name":"newBank","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateGoalAddress","inputs":[{"type":"address","name":"newGoal","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateParams","inputs":[{"type":"uint256","name":"tickSizeBps_","internalType":"uint256"},{"type":"uint256","name":"minPriceBps_","internalType":"uint256"},{"type":"uint256","name":"maxPriceBps_","internalType":"uint256"},{"type":"uint256","name":"maxPositionsPerTick_","internalType":"uint256"},{"type":"uint256","name":"minLiquidityAmount_","internalType":"uint256"},{"type":"uint256","name":"minSwapGoalAmount_","internalType":"uint256"},{"type":"uint256","name":"earlyCloseCooldown_","internalType":"uint256"},{"type":"uint256","name":"earlyCloseFeeBps_","internalType":"uint256"},{"type":"uint256","name":"maxActiveTicks_","internalType":"uint256"},{"type":"bool","name":"listingsPaused_","internalType":"bool"}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"upgradeToAndCall","inputs":[{"type":"address","name":"newImplementation","internalType":"address"},{"type":"bytes","name":"data","internalType":"bytes"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"userClosedPositions","inputs":[{"type":"address","name":"","internalType":"address"},{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"userOpenPositions","inputs":[{"type":"address","name":"","internalType":"address"},{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"receive","stateMutability":"payable"}]
Contract Creation Code
0x60a060405230608052348015610013575f80fd5b506080516138fa61003a5f395f818161220e01528181612237015261272001526138fa5ff3fe6080604052600436106102a8575f3560e01c80637859d7021161016f578063aeadbccf116100d8578063d41b2a0d11610092578063eb02c3011161006d578063eb02c30114610898578063f2fde38b146109f8578063f3ae183614610a17578063f5a62a5214610a36575f80fd5b8063d41b2a0d14610845578063d96073cf1461085a578063de86202314610879575f80fd5b8063aeadbccf1461079c578063aebbeaeb146107b1578063b4d498d0146107c5578063c0466631146107e4578063c34eb59b14610811578063d13f90b414610826575f80fd5b806391591d571161012957806391591d5714610602578063966d0d901461062157806399fbab88146106405780639c8f9f231461070c5780639cd441da1461072b578063ad3cb1cc1461075f575f80fd5b80637859d7021461057d5780637f7bf34314610591578063825b9a25146105a65780638456cb59146105c5578063899346c7146105d95780638da5cb5b146105ee575f80fd5b80634d9e9e09116102115780635c975abb116101cb5780635c975abb146104df57806367c1c6c7146105025780636b23c8ac14610517578063704802751461052c578063715018a61461054b57806376cdb03b1461055f575f80fd5b80634d9e9e09146104505780634ec64e6e146104655780634f1ef2861461047a57806350905b3e1461048d578063517fc59d146104ac57806352d1902d146104cb575f80fd5b8063346ac01f11610262578063346ac01f1461039b5780633f4ba83a146103bc57806340193883146103d05780634441aacb1461040757806346ba4e1914610426578063474273a21461043b575f80fd5b806315908c24146102b35780631785f53c146102d45780631e29e32f146102f357806324d7806c146103255780632efff47f14610363578063316ee0541461037c575f80fd5b366102af57005b5f80fd5b3480156102be575f80fd5b506102d26102cd3660046133d9565b610a4b565b005b3480156102df575f80fd5b506102d26102ee366004613408565b610af9565b3480156102fe575f80fd5b5061031261030d366004613423565b610b49565b6040519081526020015b60405180910390f35b348015610330575f80fd5b5061035361033f366004613408565b60026020525f908152604090205460ff1681565b604051901515815260200161031c565b34801561036e575f80fd5b50600b546103539060ff1681565b348015610387575f80fd5b506102d2610396366004613408565b610b74565b3480156103a6575f80fd5b506103af610c1e565b60405161031c9190613487565b3480156103c7575f80fd5b506102d2610c74565b3480156103db575f80fd5b506001546103ef906001600160a01b031681565b6040516001600160a01b03909116815260200161031c565b348015610412575f80fd5b506103af610421366004613408565b610c86565b348015610431575f80fd5b5061031260045481565b348015610446575f80fd5b50610312600c5481565b34801561045b575f80fd5b5061031260075481565b348015610470575f80fd5b5061031260085481565b6102d26104883660046134ad565b610cef565b348015610498575f80fd5b506102d26104a7366004613408565b610d0a565b3480156104b7575f80fd5b506102d26104c636600461356b565b610e72565b3480156104d6575f80fd5b50610312610f7a565b3480156104ea575f80fd5b505f805160206138858339815191525460ff16610353565b34801561050d575f80fd5b5061031260055481565b348015610522575f80fd5b5061031260065481565b348015610537575f80fd5b506102d2610546366004613408565b610f95565b348015610556575f80fd5b506102d261100f565b34801561056a575f80fd5b505f546103ef906001600160a01b031681565b348015610588575f80fd5b50610312602881565b34801561059c575f80fd5b50610312600a5481565b3480156105b1575f80fd5b506102d26105c0366004613582565b611020565b3480156105d0575f80fd5b506102d2611222565b3480156105e4575f80fd5b50610312600d5481565b3480156105f9575f80fd5b506103ef611232565b34801561060d575f80fd5b506102d261061c3660046135fb565b611260565b34801561062c575f80fd5b506102d261063b366004613408565b6113bc565b34801561064b575f80fd5b506106ba61065a36600461356b565b600e6020525f908152604090208054600182015460028301546003840154600485015460059095015493946001600160a01b03909316939192909167ffffffffffffffff80821691600160401b810490911690600160801b900460ff1688565b604080519889526001600160a01b039097166020890152958701949094526060860192909252608085015267ffffffffffffffff90811660a08501521660c0830152151560e08201526101000161031c565b348015610717575f80fd5b506102d261072636600461356b565b611464565b348015610736575f80fd5b5061074a610745366004613639565b611523565b6040805192835260208301919091520161031c565b34801561076a575f80fd5b5061078f604051806040016040528060058152602001640352e302e360dc1b81525081565b60405161031c919061367b565b3480156107a7575f80fd5b5061031260105481565b3480156107bc575f80fd5b5061031260c881565b3480156107d0575f80fd5b506103126107df366004613423565b6117fb565b3480156107ef575f80fd5b506108036107fe36600461356b565b611814565b60405161031c9291906136ad565b34801561081c575f80fd5b5061031260035481565b348015610831575f80fd5b506102d26108403660046136cd565b611884565b348015610850575f80fd5b5061031260095481565b348015610865575f80fd5b5061074a610874366004613639565b611a75565b348015610884575f80fd5b506103af610893366004613408565b611fa5565b3480156108a3575f80fd5b5061097e6108b236600461356b565b60408051610100810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e0810191909152505f908152600e60209081526040918290208251610100810184528154815260018201546001600160a01b031692810192909252600281015492820192909252600382015460608201526004820154608082015260059091015467ffffffffffffffff80821660a0840152600160401b82041660c0830152600160801b900460ff16151560e082015290565b60405161031c91905f610100820190508251825260018060a01b03602084015116602083015260408301516040830152606083015160608301526080830151608083015260a083015167ffffffffffffffff80821660a08501528060c08601511660c0850152505060e0830151151560e083015292915050565b348015610a03575f80fd5b506102d2610a12366004613408565b61200c565b348015610a22575f80fd5b506102d2610a31366004613423565b612046565b348015610a41575f80fd5b50610312600f5481565b610a53611232565b6001600160a01b0316336001600160a01b031614158015610a835750335f9081526002602052604090205460ff16155b15610aa15760405163dce3812560e01b815260040160405180910390fd5b600b805482151560ff198216811790925560ff169081151514610af55760405182151581527fa635e8e27f0bba0061954d70d779b727d451faa4ed915a46f27975c221f9f37d906020015b60405180910390a15b5050565b610b01612172565b6001600160a01b0381165f81815260026020526040808220805460ff19169055517fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f9190a250565b6012602052815f5260405f208181548110610b62575f80fd5b905f5260205f20015f91509150505481565b610b7c612172565b6001600160a01b038116610ba35760405163d92e233d60e01b815260040160405180910390fd5b806001600160a01b03163b5f03610bcd5760405163d92e233d60e01b815260040160405180910390fd5b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907fb74f1aa6f42e6c62f157c06a6e9c7819d11a4bb23e838915a7383f52442257dc905f90a35050565b60606017805480602002602001604051908101604052809291908181526020018280548015610c6a57602002820191905f5260205f20905b815481526020019060010190808311610c56575b5050505050905090565b610c7c612172565b610c846121a4565b565b6001600160a01b0381165f90815260116020908152604091829020805483518184028101840190945280845260609392830182828015610ce357602002820191905f5260205f20905b815481526020019060010190808311610ccf575b50505050509050919050565b610cf7612203565b610d00826122a7565b610af582826122af565b610d12611232565b6001600160a01b0316336001600160a01b031614158015610d425750335f9081526002602052604090205460ff16155b15610d605760405163dce3812560e01b815260040160405180910390fd5b610d68612370565b6001600160a01b038116610d8f5760405163d92e233d60e01b815260040160405180910390fd5b60405147905f906001600160a01b0384169083908381818185875af1925050503d805f8114610dd9576040519150601f19603f3d011682016040523d82523d5f602084013e610dde565b606091505b5050905080610e2a5760405162461bcd60e51b81526020600482015260136024820152721b985d1a5d99481cddd9595c0819985a5b1959606a1b60448201526064015b60405180910390fd5b826001600160a01b03167fe82d1b9e6e8119a5bb502e0f2116bfa8db85eab82570af7840f0f022c4172b4283604051610e6591815260200190565b60405180910390a2505050565b610e7a61239f565b610e82611232565b6001600160a01b0316336001600160a01b031614158015610eb25750335f9081526002602052604090205460ff16155b15610ed05760405163dce3812560e01b815260040160405180910390fd5b5f818152600e602052604090206005810154600160801b900460ff16610f09576040516305f2629f60e11b815260040160405180910390fd5b6004810154610f198360016123d6565b60018201546040518281526001600160a01b039091169084907f8fa76118e0168268be18eb49d684e36c0ecbbaaa557aabbe6df2f697607fccf09060200160405180910390a35050610f7760015f805160206138a583398151915255565b50565b5f610f83612715565b505f8051602061386583398151915290565b610f9d612172565b6001600160a01b038116610fc45760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b0381165f81815260026020526040808220805460ff19166001179055517f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e3399190a250565b611017612172565b610c845f61275e565b611028611232565b6001600160a01b0316336001600160a01b0316141580156110585750335f9081526002602052604090205460ff16155b156110765760405163dce3812560e01b815260040160405180910390fd5b895f036110965760405163f0ae061d60e01b815260040160405180910390fd5b6103e88311156110b95760405163e2cffa0960e01b815260040160405180910390fd5b6127108910156110c95761271098505b888810156110ea576040516323f5f0b960e11b815260040160405180910390fd5b60038a9055600489905560058890556006879055600786905560088590556009849055600a839055600c829055600b805460ff1916821515179055604080518b8152602081018b90529081018990527f05185bd3098dc2a519c03a95d9b78e2e758ba3ec9ab1c86c5c9f674cd9dae5bd9060600160405180910390a160408051888152602081018890529081018690527fb2fa6c96c8331e3a68ebc472c2fbd5e2d1259047b0405bd04da95ad2bfd65f899060600160405180910390a160408051858152602081018590527fa882c88f56503bed59d4131b73cf4c927aeaa61902355572357f00176f9f6683910160405180910390a160405181151581527fa635e8e27f0bba0061954d70d779b727d451faa4ed915a46f27975c221f9f37d906020015b60405180910390a150505050505050505050565b61122a612172565b610c846127ce565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b611268611232565b6001600160a01b0316336001600160a01b0316141580156112985750335f9081526002602052604090205460ff16155b156112b65760405163dce3812560e01b815260040160405180910390fd5b6112be612370565b6001600160a01b03831615806112db57506001600160a01b038216155b156112f95760405163d92e233d60e01b815260040160405180910390fd5b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb906044016020604051808303815f875af1158015611345573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611369919061371a565b50816001600160a01b0316836001600160a01b03167f50e0600697e53f5c99d202daf9de89bb0866c7b081a095a30de0f185499440ff836040516113af91815260200190565b60405180910390a3505050565b6113c4612172565b6001600160a01b0381166113eb5760405163d92e233d60e01b815260040160405180910390fd5b806001600160a01b03163b5f036114155760405163d92e233d60e01b815260040160405180910390fd5b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f6b13d0b6d0f96f25f42864a97c7a29b23b8b2ee5b36a253eabfb1eb7ffaae8579190a35050565b61146c61239f565b5f805160206138858339815191525460ff161561149c57604051630815eb4560e11b815260040160405180910390fd5b5f818152600e6020526040902060018101546001600160a01b031633146114d657604051630aff6f5d60e01b815260040160405180910390fd5b6005810154600160801b900460ff16611502576040516305f2629f60e11b815260040160405180910390fd5b61150c825f6123d6565b50610f7760015f805160206138a583398151915255565b5f8061152d61239f565b5f805160206138858339815191525460ff161561155d57604051630815eb4560e11b815260040160405180910390fd5b600b5460ff161561158157604051630607736d60e21b815260040160405180910390fd5b835f036115a1576040516365e52d5160e11b815260040160405180910390fd5b6007548410156115c4576040516365e52d5160e11b815260040160405180910390fd5b6115cd83612816565b90506127108110156115f257604051630df22a0f60e21b815260040160405180910390fd5b600454811080611603575060055481115b1561162157604051630df22a0f60e21b815260040160405180910390fd5b5f546040516323b872dd60e01b81526001600160a01b03909116906323b872dd9061165490339030908990600401613735565b5f604051808303815f87803b15801561166b575f80fd5b505af115801561167d573d5f803e3d5ffd5b5050600d8054925090505f6116918361376d565b909155505f818152600e60209081526040808320848155600180820180546001600160a01b0319163390811790915560028301889055600383018b9055600483018b905560058301805470ff0000000000000000ffffffffffffffff191667ffffffffffffffff421617600160801b1790558552601184528285208054878752601386528487208190559182018155855283852001859055858452601583528184206006546016909452919093205481549496509293909261175291613785565b1061177057604051631df6a0e360e31b815260040160405180910390fd5b80546001810182555f828152602090200184905561178d83612852565b600f5f815461179b9061376d565b909155506040805184815260208101889052339186917f4f523f2d8e587b404d27e399464f42a7ffc415da39a6130a6e0e6d3be9128326910160405180910390a350506117f460015f805160206138a583398151915255565b9250929050565b6011602052815f5260405f208181548110610b62575f80fd5b5f818152601660209081526040808320546015835281842080548351818602810186019094528084526060949293919283919083018282801561187457602002820191905f5260205f20905b815481526020019060010190808311611860575b5050505050905091509150915091565b5f61188d612a6d565b805490915060ff600160401b820416159067ffffffffffffffff165f811580156118b45750825b90505f8267ffffffffffffffff1660011480156118d05750303b155b9050811580156118de575080155b156118fc5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561192657845460ff60401b1916600160401b1785555b6001600160a01b038a16158061194357506001600160a01b038916155b156119615760405163d92e233d60e01b815260040160405180910390fd5b61196a33612a97565b611972612aa8565b61197a612aa8565b611982612ab0565b5f80546001600160a01b03808d166001600160a01b031992831617835560018054918d16919092161790558890036119cd5760405163f0ae061d60e01b815260040160405180910390fd5b60038890556127108710156119e25761271096505b600487905560058690556101f4600655670de0b6b3a7640000600755662386f26fc100006008556103846009555f600a55600b805460ff1916905560c8600c556001600d558315611a6957845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161120e565b50505050505050505050565b5f80611a7f61239f565b5f805160206138858339815191525460ff1615611aaf57604051630815eb4560e11b815260040160405180910390fd5b831580611abd575060085484105b15611adb576040516365e52d5160e11b815260040160405180910390fd5b6001546040516323b872dd60e01b81526001600160a01b03909116906323b872dd90611b0f90339030908990600401613735565b6020604051808303815f875af1158015611b2b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b4f919061371a565b50601780546040805160208084028201810190925282815287935f938493830182828015611b9a57602002820191905f5260205f20905b815481526020019060010190808311611b86575b505050505090505f805f90505b825181108015611bb657505f85115b8015611bc25750602882105b15611e7a575f838281518110611bda57611bda613798565b6020908102919091018101515f81815260168352604080822054601590945281209193505b815483108015611c0e57505f89115b8015611c1a575060c881105b15611e2d575f828481548110611c3257611c32613798565b5f918252602080832090910154808352600e909152604090912060058101549192509060ff600160801b909104161580611c6e57506004810154155b15611c9057611c7c8561376d565b9450611c878361376d565b92505050611bff565b5f611ca2826004015461271089612ac0565b90508b8111611db9575f82600401549050808f611cbf91906137ac565b9e50611ccb828d6137ac565b9b50611cd7828e613785565b5f600485015560058401805468ffffffffffffffffff60401b1916600160401b4267ffffffffffffffff16021790556001840154909d50611d21906001600160a01b031685612b70565b600f5f8154611d2f906137bf565b90915550601080545f90611d429061376d565b909155506040805189815242602082015285917f75566af622a98acb758ffba40e855a54a13f78def44c46538bdff59c525e5e0e910160405180910390a2600180840154611d9d9186916001600160a01b0316908590612c6b565b611da68761376d565b9650611db18561376d565b945050611e25565b5f611dc78d89612710612ac0565b9050808f611dd591906137ac565b9e50611de18d8d6137ac565b9b5080836004015f828254611df69190613785565b90915550506001830154611e159085906001600160a01b03168f612ed3565b5f9c50611e218561376d565b9450505b505050611bff565b5f848152601660205260409020548314611e5a575f848152601660205260409020839055611e5a84613035565b611e638661376d565b95505050505080611e739061376d565b9050611ba7565b5086861015611eca575f84118015611e93575060288110155b15611eb15760405163172b33e760e01b815260040160405180910390fd5b6040516307dd37f760e41b815260040160405180910390fd5b5f546040516359e026f760e01b81526001600160a01b03909116906359e026f790611efd90309033908b90600401613735565b5f604051808303815f87803b158015611f14575f80fd5b505af1158015611f26573d5f803e3d5ffd5b50505050825f14611f4357611f3e8661271085612ac0565b611f45565b5f5b604080518a81526020810189905290810182905290955033907f36a39cf3f9b8206db312650e7d954482535a2e33fb0b54e1030f149ed213823a9060600160405180910390a2505050506117f460015f805160206138a583398151915255565b6001600160a01b0381165f90815260126020908152604091829020805483518184028101840190945280845260609392830182828015610ce357602002820191905f5260205f2090815481526020019060010190808311610ccf5750505050509050919050565b612014612172565b6001600160a01b03811661203d57604051631e4fbdf760e01b81525f6004820152602401610e21565b610f778161275e565b61204e611232565b6001600160a01b0316336001600160a01b03161415801561207e5750335f9081526002602052604090205460ff16155b1561209c5760405163dce3812560e01b815260040160405180910390fd5b6120a4612370565b6001600160a01b0382166120cb5760405163d92e233d60e01b815260040160405180910390fd5b5f546040516359e026f760e01b81526001600160a01b03909116906359e026f7906120fe90309086908690600401613735565b5f604051808303815f87803b158015612115575f80fd5b505af1158015612127573d5f803e3d5ffd5b50505050816001600160a01b03167f51da6c44e44be20dd88bef8bd0b452f51c61a18d788dc2beffa89d4abf8da27a8260405161216691815260200190565b60405180910390a25050565b3361217b611232565b6001600160a01b031614610c845760405163118cdaa760e01b8152336004820152602401610e21565b6121ac612370565b5f80516020613885833981519152805460ff191681557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a150565b306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148061228957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031661227d5f80516020613865833981519152546001600160a01b031690565b6001600160a01b031614155b15610c845760405163703e46dd60e11b815260040160405180910390fd5b610f77612172565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015612309575060408051601f3d908101601f19168201909252612306918101906137d4565b60015b61233157604051634c9c8ce360e01b81526001600160a01b0383166004820152602401610e21565b5f80516020613865833981519152811461236157604051632a87526960e21b815260048101829052602401610e21565b61236b8383613154565b505050565b5f805160206138858339815191525460ff16610c8457604051638dfc202b60e01b815260040160405180910390fd5b5f805160206138a58339815191528054600119016123d057604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b5f828152600e602090815260408083206002810154808552601684528285205460159094529190932080549192918210801561242b57508581838154811061242057612420613798565b905f5260205f200154145b156124dd5760058401805460ff60801b191690555b80548210156124bf575f81838154811061245c5761245c613798565b5f918252602080832090910154808352600e90915260409091206005015490915060ff600160801b9091041680156124a357505f818152600e602052604090206004015415155b156124ae57506124bf565b6124b78361376d565b925050612440565b5f8381526016602052604090208290556124d883613035565b6124ed565b60058401805460ff60801b191690555b6005840180546fffffffffffffffff00000000000000001916600160401b4267ffffffffffffffff16021790556004840180545f909155600185015461253c906001600160a01b031688612b70565b600f5f815461254a906137bf565b90915550601080545f9061255d9061376d565b909155505f80876125ba576009546005880154612584919067ffffffffffffffff166137ac565b4210905080801561259657505f600a54115b80156125a157505f83115b156125ba57600a546125b7908490612710612ac0565b91505b5f6125c58385613785565b90508015612635575f5460018901546040516359e026f760e01b81526001600160a01b03928316926359e026f792612607923092909116908690600401613735565b5f604051808303815f87803b15801561261e575f80fd5b505af1158015612630573d5f803e3d5ffd5b505050505b82156126a1575f546001600160a01b03166359e026f730612654611232565b866040518463ffffffff1660e01b815260040161267393929190613735565b5f604051808303815f87803b15801561268a575f80fd5b505af115801561269c573d5f803e3d5ffd5b505050505b600188015460408051838152602081018690528415158183015290516001600160a01b03909216918c917f65466b8a580e4c2ec03285cd2786fa29a3548e05a4de10d6129bd2500cebc1c1919081900360600190a350505050505050505050565b60015f805160206138a583398151915255565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610c845760405163703e46dd60e11b815260040160405180910390fd5b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b6127d66131a9565b5f80516020613885833981519152805460ff191660011781557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258336121e5565b5f80600260035461282791906137ff565b61283190846137ac565b60035490915061284181836137ff565b61284b919061381e565b9392505050565b5f8181526018602052604090205460ff16610f7757601754600c54811061288c576040516364683ae360e01b815260040160405180910390fd5b5f828152601860205260409020805460ff191660011790558015806128d557508160176128ba600184613785565b815481106128ca576128ca613798565b905f5260205f200154105b1561291357601780546001810182555f919091527fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c1501829055612a3d565b601780546001810182555f919091527fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c1501829055805b8015612a3b576017818154811061296257612962613798565b905f5260205f200154601760018361297a9190613785565b8154811061298a5761298a613798565b905f5260205f2001541115612a3b57601781815481106129ac576129ac613798565b905f5260205f20015460176001836129c49190613785565b815481106129d4576129d4613798565b905f5260205f20015460176001846129ec9190613785565b815481106129fc576129fc613798565b905f5260205f20015f60178581548110612a1857612a18613798565b5f918252602090912001929092559190915550612a34816137bf565b9050612949565b505b6040518281527f718bee8e94efd77d020573a992acb18a989bf9832beee3e9daf29a48b6ccf99090602001610aec565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005b92915050565b612a9f6131d9565b610f77816131fe565b610c846131d9565b612ab86131d9565b610c84613206565b5f805f612acd868661320e565b91509150815f03612af157838181612ae757612ae76137eb565b049250505061284b565b818411612b0857612b08600385150260111861322a565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150509392505050565b5f818152601360209081526040808320546001600160a01b0386168452601190925282208054919290918290612ba890600190613785565b81548110612bb857612bb8613798565b905f5260205f200154905080828481548110612bd657612bd6613798565b5f9182526020808320909101929092558281526013909152604090208390558154829080612c0657612c06613835565b5f828152602080822083015f199081018390559092019092558582526013815260408083208390556001600160a01b03909716825260128082528783208054888552601484529884208990559082526001880181558252902090940192909255505050565b80612cec575f848152600e602052604090206005810154600160801b900460ff1615612cea5760058101805468ffffffffffffffffff60401b1916600160401b4267ffffffffffffffff1602179055612cc48486612b70565b600f5f8154612cd2906137bf565b90915550601080545f90612ce59061376d565b909155505b505b600154604080516001600160a01b038681166024830152604480830187905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b17905291515f9384931691612d4791613849565b5f604051808303815f865af19150503d805f8114612d80576040519150601f19603f3d011682016040523d82523d5f602084013e612d85565b606091505b50915091505f828015612db0575081511580612db0575081806020019051810190612db0919061371a565b905080612e85575f878152600e60205260408120600481018054929055908015612e35575f546040516359e026f760e01b81526001600160a01b03909116906359e026f790612e079030908c908690600401613735565b5f604051808303815f87803b158015612e1e575f80fd5b505af1158015612e30573d5f803e3d5ffd5b505050505b60408051888152602081018390526001600160a01b038a16918b917f7cdb841684facd36fce1362c3e33c14a57b8861e669c671c3d204ea457ee236f910160405180910390a35050505050612ecd565b856001600160a01b0316877f419de2faea3105a98590c3cf748b61bf5dd9fa1a9bd059fc6ed4c9ff7c45c3aa87604051612ec191815260200190565b60405180910390a35050505b50505050565b600154604080516001600160a01b038581166024830152604480830186905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b17905291515f9384931691612f2e91613849565b5f604051808303815f865af19150503d805f8114612f67576040519150601f19603f3d011682016040523d82523d5f602084013e612f6c565b606091505b50915091505f828015612f97575081511580612f97575081806020019051810190612f97919061371a565b905080612fe857604080518581525f60208201526001600160a01b0387169188917f7cdb841684facd36fce1362c3e33c14a57b8861e669c671c3d204ea457ee236f910160405180910390a361302d565b846001600160a01b0316867f419de2faea3105a98590c3cf748b61bf5dd9fa1a9bd059fc6ed4c9ff7c45c3aa8660405161302491815260200190565b60405180910390a35b505050505050565b5f8181526018602052604090205460ff1615610f77575f8181526015602090815260408083205460169092529091205410610f77575f818152601860205260408120805460ff19169055601754905b818110156131235782601782815481106130a0576130a0613798565b905f5260205f2001540361311b5760176130bb600184613785565b815481106130cb576130cb613798565b905f5260205f200154601782815481106130e7576130e7613798565b5f91825260209091200155601780548061310357613103613835565b600190038181905f5260205f20015f90559055613123565b600101613084565b506040518281527f15f90bfb464c8128b31fa366685b03649d64accf261b8c5e02c9736d159d194490602001610aec565b61315d8261323b565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156131a15761236b828261329e565b610af5613310565b5f805160206138858339815191525460ff1615610c845760405163d93c066560e01b815260040160405180910390fd5b6131e161332f565b610c8457604051631afcd79f60e31b815260040160405180910390fd5b6120146131d9565b6127026131d9565b5f805f1983850993909202808410938190039390930393915050565b634e487b715f52806020526024601cfd5b806001600160a01b03163b5f0361327057604051634c9c8ce360e01b81526001600160a01b0382166004820152602401610e21565b5f8051602061386583398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f80846001600160a01b0316846040516132ba9190613849565b5f60405180830381855af49150503d805f81146132f2576040519150601f19603f3d011682016040523d82523d5f602084013e6132f7565b606091505b5091509150613307858383613348565b95945050505050565b3415610c845760405163b398979f60e01b815260040160405180910390fd5b5f613338612a6d565b54600160401b900460ff16919050565b60608261335d57613358826133a4565b61284b565b815115801561337457506001600160a01b0384163b155b1561339d57604051639996b31560e01b81526001600160a01b0385166004820152602401610e21565b508061284b565b8051156133b357805160208201fd5b60405163d6bda27560e01b815260040160405180910390fd5b8015158114610f77575f80fd5b5f602082840312156133e9575f80fd5b813561284b816133cc565b6001600160a01b0381168114610f77575f80fd5b5f60208284031215613418575f80fd5b813561284b816133f4565b5f8060408385031215613434575f80fd5b823561343f816133f4565b946020939093013593505050565b5f815180845260208085019450602084015f5b8381101561347c57815187529582019590820190600101613460565b509495945050505050565b602081525f61284b602083018461344d565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156134be575f80fd5b82356134c9816133f4565b9150602083013567ffffffffffffffff808211156134e5575f80fd5b818501915085601f8301126134f8575f80fd5b81358181111561350a5761350a613499565b604051601f8201601f19908116603f0116810190838211818310171561353257613532613499565b8160405282815288602084870101111561354a575f80fd5b826020860160208301375f6020848301015280955050505050509250929050565b5f6020828403121561357b575f80fd5b5035919050565b5f805f805f805f805f806101408b8d03121561359c575f80fd5b8a35995060208b0135985060408b0135975060608b0135965060808b0135955060a08b0135945060c08b0135935060e08b013592506101008b013591506101208b01356135e8816133cc565b809150509295989b9194979a5092959850565b5f805f6060848603121561360d575f80fd5b8335613618816133f4565b92506020840135613628816133f4565b929592945050506040919091013590565b5f806040838503121561364a575f80fd5b50508035926020909101359150565b5f5b8381101561367357818101518382015260200161365b565b50505f910152565b602081525f8251806020840152613699816040850160208701613659565b601f01601f19169190910160400192915050565b828152604060208201525f6136c5604083018461344d565b949350505050565b5f805f805f60a086880312156136e1575f80fd5b85356136ec816133f4565b945060208601356136fc816133f4565b94979496505050506040830135926060810135926080909101359150565b5f6020828403121561372a575f80fd5b815161284b816133cc565b6001600160a01b039384168152919092166020820152604081019190915260600190565b634e487b7160e01b5f52601160045260245ffd5b5f6001820161377e5761377e613759565b5060010190565b81810381811115612a9157612a91613759565b634e487b7160e01b5f52603260045260245ffd5b80820180821115612a9157612a91613759565b5f816137cd576137cd613759565b505f190190565b5f602082840312156137e4575f80fd5b5051919050565b634e487b7160e01b5f52601260045260245ffd5b5f8261381957634e487b7160e01b5f52601260045260245ffd5b500490565b8082028115828204841417612a9157612a91613759565b634e487b7160e01b5f52603160045260245ffd5b5f825161385a818460208701613659565b919091019291505056fe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbccd5ed15c6e187e77e9aee88184c21f4f2182ab5827cb3b7e07fbedcd63f033009b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00a264697066735822122091f3e7ce1d1f30fd799effe1e92f40eeadac2ae08f4a6907100be470a98db2f064736f6c63430008180033
Deployed ByteCode
0x6080604052600436106102a8575f3560e01c80637859d7021161016f578063aeadbccf116100d8578063d41b2a0d11610092578063eb02c3011161006d578063eb02c30114610898578063f2fde38b146109f8578063f3ae183614610a17578063f5a62a5214610a36575f80fd5b8063d41b2a0d14610845578063d96073cf1461085a578063de86202314610879575f80fd5b8063aeadbccf1461079c578063aebbeaeb146107b1578063b4d498d0146107c5578063c0466631146107e4578063c34eb59b14610811578063d13f90b414610826575f80fd5b806391591d571161012957806391591d5714610602578063966d0d901461062157806399fbab88146106405780639c8f9f231461070c5780639cd441da1461072b578063ad3cb1cc1461075f575f80fd5b80637859d7021461057d5780637f7bf34314610591578063825b9a25146105a65780638456cb59146105c5578063899346c7146105d95780638da5cb5b146105ee575f80fd5b80634d9e9e09116102115780635c975abb116101cb5780635c975abb146104df57806367c1c6c7146105025780636b23c8ac14610517578063704802751461052c578063715018a61461054b57806376cdb03b1461055f575f80fd5b80634d9e9e09146104505780634ec64e6e146104655780634f1ef2861461047a57806350905b3e1461048d578063517fc59d146104ac57806352d1902d146104cb575f80fd5b8063346ac01f11610262578063346ac01f1461039b5780633f4ba83a146103bc57806340193883146103d05780634441aacb1461040757806346ba4e1914610426578063474273a21461043b575f80fd5b806315908c24146102b35780631785f53c146102d45780631e29e32f146102f357806324d7806c146103255780632efff47f14610363578063316ee0541461037c575f80fd5b366102af57005b5f80fd5b3480156102be575f80fd5b506102d26102cd3660046133d9565b610a4b565b005b3480156102df575f80fd5b506102d26102ee366004613408565b610af9565b3480156102fe575f80fd5b5061031261030d366004613423565b610b49565b6040519081526020015b60405180910390f35b348015610330575f80fd5b5061035361033f366004613408565b60026020525f908152604090205460ff1681565b604051901515815260200161031c565b34801561036e575f80fd5b50600b546103539060ff1681565b348015610387575f80fd5b506102d2610396366004613408565b610b74565b3480156103a6575f80fd5b506103af610c1e565b60405161031c9190613487565b3480156103c7575f80fd5b506102d2610c74565b3480156103db575f80fd5b506001546103ef906001600160a01b031681565b6040516001600160a01b03909116815260200161031c565b348015610412575f80fd5b506103af610421366004613408565b610c86565b348015610431575f80fd5b5061031260045481565b348015610446575f80fd5b50610312600c5481565b34801561045b575f80fd5b5061031260075481565b348015610470575f80fd5b5061031260085481565b6102d26104883660046134ad565b610cef565b348015610498575f80fd5b506102d26104a7366004613408565b610d0a565b3480156104b7575f80fd5b506102d26104c636600461356b565b610e72565b3480156104d6575f80fd5b50610312610f7a565b3480156104ea575f80fd5b505f805160206138858339815191525460ff16610353565b34801561050d575f80fd5b5061031260055481565b348015610522575f80fd5b5061031260065481565b348015610537575f80fd5b506102d2610546366004613408565b610f95565b348015610556575f80fd5b506102d261100f565b34801561056a575f80fd5b505f546103ef906001600160a01b031681565b348015610588575f80fd5b50610312602881565b34801561059c575f80fd5b50610312600a5481565b3480156105b1575f80fd5b506102d26105c0366004613582565b611020565b3480156105d0575f80fd5b506102d2611222565b3480156105e4575f80fd5b50610312600d5481565b3480156105f9575f80fd5b506103ef611232565b34801561060d575f80fd5b506102d261061c3660046135fb565b611260565b34801561062c575f80fd5b506102d261063b366004613408565b6113bc565b34801561064b575f80fd5b506106ba61065a36600461356b565b600e6020525f908152604090208054600182015460028301546003840154600485015460059095015493946001600160a01b03909316939192909167ffffffffffffffff80821691600160401b810490911690600160801b900460ff1688565b604080519889526001600160a01b039097166020890152958701949094526060860192909252608085015267ffffffffffffffff90811660a08501521660c0830152151560e08201526101000161031c565b348015610717575f80fd5b506102d261072636600461356b565b611464565b348015610736575f80fd5b5061074a610745366004613639565b611523565b6040805192835260208301919091520161031c565b34801561076a575f80fd5b5061078f604051806040016040528060058152602001640352e302e360dc1b81525081565b60405161031c919061367b565b3480156107a7575f80fd5b5061031260105481565b3480156107bc575f80fd5b5061031260c881565b3480156107d0575f80fd5b506103126107df366004613423565b6117fb565b3480156107ef575f80fd5b506108036107fe36600461356b565b611814565b60405161031c9291906136ad565b34801561081c575f80fd5b5061031260035481565b348015610831575f80fd5b506102d26108403660046136cd565b611884565b348015610850575f80fd5b5061031260095481565b348015610865575f80fd5b5061074a610874366004613639565b611a75565b348015610884575f80fd5b506103af610893366004613408565b611fa5565b3480156108a3575f80fd5b5061097e6108b236600461356b565b60408051610100810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e0810191909152505f908152600e60209081526040918290208251610100810184528154815260018201546001600160a01b031692810192909252600281015492820192909252600382015460608201526004820154608082015260059091015467ffffffffffffffff80821660a0840152600160401b82041660c0830152600160801b900460ff16151560e082015290565b60405161031c91905f610100820190508251825260018060a01b03602084015116602083015260408301516040830152606083015160608301526080830151608083015260a083015167ffffffffffffffff80821660a08501528060c08601511660c0850152505060e0830151151560e083015292915050565b348015610a03575f80fd5b506102d2610a12366004613408565b61200c565b348015610a22575f80fd5b506102d2610a31366004613423565b612046565b348015610a41575f80fd5b50610312600f5481565b610a53611232565b6001600160a01b0316336001600160a01b031614158015610a835750335f9081526002602052604090205460ff16155b15610aa15760405163dce3812560e01b815260040160405180910390fd5b600b805482151560ff198216811790925560ff169081151514610af55760405182151581527fa635e8e27f0bba0061954d70d779b727d451faa4ed915a46f27975c221f9f37d906020015b60405180910390a15b5050565b610b01612172565b6001600160a01b0381165f81815260026020526040808220805460ff19169055517fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f9190a250565b6012602052815f5260405f208181548110610b62575f80fd5b905f5260205f20015f91509150505481565b610b7c612172565b6001600160a01b038116610ba35760405163d92e233d60e01b815260040160405180910390fd5b806001600160a01b03163b5f03610bcd5760405163d92e233d60e01b815260040160405180910390fd5b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907fb74f1aa6f42e6c62f157c06a6e9c7819d11a4bb23e838915a7383f52442257dc905f90a35050565b60606017805480602002602001604051908101604052809291908181526020018280548015610c6a57602002820191905f5260205f20905b815481526020019060010190808311610c56575b5050505050905090565b610c7c612172565b610c846121a4565b565b6001600160a01b0381165f90815260116020908152604091829020805483518184028101840190945280845260609392830182828015610ce357602002820191905f5260205f20905b815481526020019060010190808311610ccf575b50505050509050919050565b610cf7612203565b610d00826122a7565b610af582826122af565b610d12611232565b6001600160a01b0316336001600160a01b031614158015610d425750335f9081526002602052604090205460ff16155b15610d605760405163dce3812560e01b815260040160405180910390fd5b610d68612370565b6001600160a01b038116610d8f5760405163d92e233d60e01b815260040160405180910390fd5b60405147905f906001600160a01b0384169083908381818185875af1925050503d805f8114610dd9576040519150601f19603f3d011682016040523d82523d5f602084013e610dde565b606091505b5050905080610e2a5760405162461bcd60e51b81526020600482015260136024820152721b985d1a5d99481cddd9595c0819985a5b1959606a1b60448201526064015b60405180910390fd5b826001600160a01b03167fe82d1b9e6e8119a5bb502e0f2116bfa8db85eab82570af7840f0f022c4172b4283604051610e6591815260200190565b60405180910390a2505050565b610e7a61239f565b610e82611232565b6001600160a01b0316336001600160a01b031614158015610eb25750335f9081526002602052604090205460ff16155b15610ed05760405163dce3812560e01b815260040160405180910390fd5b5f818152600e602052604090206005810154600160801b900460ff16610f09576040516305f2629f60e11b815260040160405180910390fd5b6004810154610f198360016123d6565b60018201546040518281526001600160a01b039091169084907f8fa76118e0168268be18eb49d684e36c0ecbbaaa557aabbe6df2f697607fccf09060200160405180910390a35050610f7760015f805160206138a583398151915255565b50565b5f610f83612715565b505f8051602061386583398151915290565b610f9d612172565b6001600160a01b038116610fc45760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b0381165f81815260026020526040808220805460ff19166001179055517f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e3399190a250565b611017612172565b610c845f61275e565b611028611232565b6001600160a01b0316336001600160a01b0316141580156110585750335f9081526002602052604090205460ff16155b156110765760405163dce3812560e01b815260040160405180910390fd5b895f036110965760405163f0ae061d60e01b815260040160405180910390fd5b6103e88311156110b95760405163e2cffa0960e01b815260040160405180910390fd5b6127108910156110c95761271098505b888810156110ea576040516323f5f0b960e11b815260040160405180910390fd5b60038a9055600489905560058890556006879055600786905560088590556009849055600a839055600c829055600b805460ff1916821515179055604080518b8152602081018b90529081018990527f05185bd3098dc2a519c03a95d9b78e2e758ba3ec9ab1c86c5c9f674cd9dae5bd9060600160405180910390a160408051888152602081018890529081018690527fb2fa6c96c8331e3a68ebc472c2fbd5e2d1259047b0405bd04da95ad2bfd65f899060600160405180910390a160408051858152602081018590527fa882c88f56503bed59d4131b73cf4c927aeaa61902355572357f00176f9f6683910160405180910390a160405181151581527fa635e8e27f0bba0061954d70d779b727d451faa4ed915a46f27975c221f9f37d906020015b60405180910390a150505050505050505050565b61122a612172565b610c846127ce565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b611268611232565b6001600160a01b0316336001600160a01b0316141580156112985750335f9081526002602052604090205460ff16155b156112b65760405163dce3812560e01b815260040160405180910390fd5b6112be612370565b6001600160a01b03831615806112db57506001600160a01b038216155b156112f95760405163d92e233d60e01b815260040160405180910390fd5b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb906044016020604051808303815f875af1158015611345573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611369919061371a565b50816001600160a01b0316836001600160a01b03167f50e0600697e53f5c99d202daf9de89bb0866c7b081a095a30de0f185499440ff836040516113af91815260200190565b60405180910390a3505050565b6113c4612172565b6001600160a01b0381166113eb5760405163d92e233d60e01b815260040160405180910390fd5b806001600160a01b03163b5f036114155760405163d92e233d60e01b815260040160405180910390fd5b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f6b13d0b6d0f96f25f42864a97c7a29b23b8b2ee5b36a253eabfb1eb7ffaae8579190a35050565b61146c61239f565b5f805160206138858339815191525460ff161561149c57604051630815eb4560e11b815260040160405180910390fd5b5f818152600e6020526040902060018101546001600160a01b031633146114d657604051630aff6f5d60e01b815260040160405180910390fd5b6005810154600160801b900460ff16611502576040516305f2629f60e11b815260040160405180910390fd5b61150c825f6123d6565b50610f7760015f805160206138a583398151915255565b5f8061152d61239f565b5f805160206138858339815191525460ff161561155d57604051630815eb4560e11b815260040160405180910390fd5b600b5460ff161561158157604051630607736d60e21b815260040160405180910390fd5b835f036115a1576040516365e52d5160e11b815260040160405180910390fd5b6007548410156115c4576040516365e52d5160e11b815260040160405180910390fd5b6115cd83612816565b90506127108110156115f257604051630df22a0f60e21b815260040160405180910390fd5b600454811080611603575060055481115b1561162157604051630df22a0f60e21b815260040160405180910390fd5b5f546040516323b872dd60e01b81526001600160a01b03909116906323b872dd9061165490339030908990600401613735565b5f604051808303815f87803b15801561166b575f80fd5b505af115801561167d573d5f803e3d5ffd5b5050600d8054925090505f6116918361376d565b909155505f818152600e60209081526040808320848155600180820180546001600160a01b0319163390811790915560028301889055600383018b9055600483018b905560058301805470ff0000000000000000ffffffffffffffff191667ffffffffffffffff421617600160801b1790558552601184528285208054878752601386528487208190559182018155855283852001859055858452601583528184206006546016909452919093205481549496509293909261175291613785565b1061177057604051631df6a0e360e31b815260040160405180910390fd5b80546001810182555f828152602090200184905561178d83612852565b600f5f815461179b9061376d565b909155506040805184815260208101889052339186917f4f523f2d8e587b404d27e399464f42a7ffc415da39a6130a6e0e6d3be9128326910160405180910390a350506117f460015f805160206138a583398151915255565b9250929050565b6011602052815f5260405f208181548110610b62575f80fd5b5f818152601660209081526040808320546015835281842080548351818602810186019094528084526060949293919283919083018282801561187457602002820191905f5260205f20905b815481526020019060010190808311611860575b5050505050905091509150915091565b5f61188d612a6d565b805490915060ff600160401b820416159067ffffffffffffffff165f811580156118b45750825b90505f8267ffffffffffffffff1660011480156118d05750303b155b9050811580156118de575080155b156118fc5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561192657845460ff60401b1916600160401b1785555b6001600160a01b038a16158061194357506001600160a01b038916155b156119615760405163d92e233d60e01b815260040160405180910390fd5b61196a33612a97565b611972612aa8565b61197a612aa8565b611982612ab0565b5f80546001600160a01b03808d166001600160a01b031992831617835560018054918d16919092161790558890036119cd5760405163f0ae061d60e01b815260040160405180910390fd5b60038890556127108710156119e25761271096505b600487905560058690556101f4600655670de0b6b3a7640000600755662386f26fc100006008556103846009555f600a55600b805460ff1916905560c8600c556001600d558315611a6957845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200161120e565b50505050505050505050565b5f80611a7f61239f565b5f805160206138858339815191525460ff1615611aaf57604051630815eb4560e11b815260040160405180910390fd5b831580611abd575060085484105b15611adb576040516365e52d5160e11b815260040160405180910390fd5b6001546040516323b872dd60e01b81526001600160a01b03909116906323b872dd90611b0f90339030908990600401613735565b6020604051808303815f875af1158015611b2b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b4f919061371a565b50601780546040805160208084028201810190925282815287935f938493830182828015611b9a57602002820191905f5260205f20905b815481526020019060010190808311611b86575b505050505090505f805f90505b825181108015611bb657505f85115b8015611bc25750602882105b15611e7a575f838281518110611bda57611bda613798565b6020908102919091018101515f81815260168352604080822054601590945281209193505b815483108015611c0e57505f89115b8015611c1a575060c881105b15611e2d575f828481548110611c3257611c32613798565b5f918252602080832090910154808352600e909152604090912060058101549192509060ff600160801b909104161580611c6e57506004810154155b15611c9057611c7c8561376d565b9450611c878361376d565b92505050611bff565b5f611ca2826004015461271089612ac0565b90508b8111611db9575f82600401549050808f611cbf91906137ac565b9e50611ccb828d6137ac565b9b50611cd7828e613785565b5f600485015560058401805468ffffffffffffffffff60401b1916600160401b4267ffffffffffffffff16021790556001840154909d50611d21906001600160a01b031685612b70565b600f5f8154611d2f906137bf565b90915550601080545f90611d429061376d565b909155506040805189815242602082015285917f75566af622a98acb758ffba40e855a54a13f78def44c46538bdff59c525e5e0e910160405180910390a2600180840154611d9d9186916001600160a01b0316908590612c6b565b611da68761376d565b9650611db18561376d565b945050611e25565b5f611dc78d89612710612ac0565b9050808f611dd591906137ac565b9e50611de18d8d6137ac565b9b5080836004015f828254611df69190613785565b90915550506001830154611e159085906001600160a01b03168f612ed3565b5f9c50611e218561376d565b9450505b505050611bff565b5f848152601660205260409020548314611e5a575f848152601660205260409020839055611e5a84613035565b611e638661376d565b95505050505080611e739061376d565b9050611ba7565b5086861015611eca575f84118015611e93575060288110155b15611eb15760405163172b33e760e01b815260040160405180910390fd5b6040516307dd37f760e41b815260040160405180910390fd5b5f546040516359e026f760e01b81526001600160a01b03909116906359e026f790611efd90309033908b90600401613735565b5f604051808303815f87803b158015611f14575f80fd5b505af1158015611f26573d5f803e3d5ffd5b50505050825f14611f4357611f3e8661271085612ac0565b611f45565b5f5b604080518a81526020810189905290810182905290955033907f36a39cf3f9b8206db312650e7d954482535a2e33fb0b54e1030f149ed213823a9060600160405180910390a2505050506117f460015f805160206138a583398151915255565b6001600160a01b0381165f90815260126020908152604091829020805483518184028101840190945280845260609392830182828015610ce357602002820191905f5260205f2090815481526020019060010190808311610ccf5750505050509050919050565b612014612172565b6001600160a01b03811661203d57604051631e4fbdf760e01b81525f6004820152602401610e21565b610f778161275e565b61204e611232565b6001600160a01b0316336001600160a01b03161415801561207e5750335f9081526002602052604090205460ff16155b1561209c5760405163dce3812560e01b815260040160405180910390fd5b6120a4612370565b6001600160a01b0382166120cb5760405163d92e233d60e01b815260040160405180910390fd5b5f546040516359e026f760e01b81526001600160a01b03909116906359e026f7906120fe90309086908690600401613735565b5f604051808303815f87803b158015612115575f80fd5b505af1158015612127573d5f803e3d5ffd5b50505050816001600160a01b03167f51da6c44e44be20dd88bef8bd0b452f51c61a18d788dc2beffa89d4abf8da27a8260405161216691815260200190565b60405180910390a25050565b3361217b611232565b6001600160a01b031614610c845760405163118cdaa760e01b8152336004820152602401610e21565b6121ac612370565b5f80516020613885833981519152805460ff191681557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a150565b306001600160a01b037f000000000000000000000000fba0868f35f8008512e9f452d549ee264de7915816148061228957507f000000000000000000000000fba0868f35f8008512e9f452d549ee264de791586001600160a01b031661227d5f80516020613865833981519152546001600160a01b031690565b6001600160a01b031614155b15610c845760405163703e46dd60e11b815260040160405180910390fd5b610f77612172565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015612309575060408051601f3d908101601f19168201909252612306918101906137d4565b60015b61233157604051634c9c8ce360e01b81526001600160a01b0383166004820152602401610e21565b5f80516020613865833981519152811461236157604051632a87526960e21b815260048101829052602401610e21565b61236b8383613154565b505050565b5f805160206138858339815191525460ff16610c8457604051638dfc202b60e01b815260040160405180910390fd5b5f805160206138a58339815191528054600119016123d057604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b5f828152600e602090815260408083206002810154808552601684528285205460159094529190932080549192918210801561242b57508581838154811061242057612420613798565b905f5260205f200154145b156124dd5760058401805460ff60801b191690555b80548210156124bf575f81838154811061245c5761245c613798565b5f918252602080832090910154808352600e90915260409091206005015490915060ff600160801b9091041680156124a357505f818152600e602052604090206004015415155b156124ae57506124bf565b6124b78361376d565b925050612440565b5f8381526016602052604090208290556124d883613035565b6124ed565b60058401805460ff60801b191690555b6005840180546fffffffffffffffff00000000000000001916600160401b4267ffffffffffffffff16021790556004840180545f909155600185015461253c906001600160a01b031688612b70565b600f5f815461254a906137bf565b90915550601080545f9061255d9061376d565b909155505f80876125ba576009546005880154612584919067ffffffffffffffff166137ac565b4210905080801561259657505f600a54115b80156125a157505f83115b156125ba57600a546125b7908490612710612ac0565b91505b5f6125c58385613785565b90508015612635575f5460018901546040516359e026f760e01b81526001600160a01b03928316926359e026f792612607923092909116908690600401613735565b5f604051808303815f87803b15801561261e575f80fd5b505af1158015612630573d5f803e3d5ffd5b505050505b82156126a1575f546001600160a01b03166359e026f730612654611232565b866040518463ffffffff1660e01b815260040161267393929190613735565b5f604051808303815f87803b15801561268a575f80fd5b505af115801561269c573d5f803e3d5ffd5b505050505b600188015460408051838152602081018690528415158183015290516001600160a01b03909216918c917f65466b8a580e4c2ec03285cd2786fa29a3548e05a4de10d6129bd2500cebc1c1919081900360600190a350505050505050505050565b60015f805160206138a583398151915255565b306001600160a01b037f000000000000000000000000fba0868f35f8008512e9f452d549ee264de791581614610c845760405163703e46dd60e11b815260040160405180910390fd5b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3505050565b6127d66131a9565b5f80516020613885833981519152805460ff191660011781557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258336121e5565b5f80600260035461282791906137ff565b61283190846137ac565b60035490915061284181836137ff565b61284b919061381e565b9392505050565b5f8181526018602052604090205460ff16610f7757601754600c54811061288c576040516364683ae360e01b815260040160405180910390fd5b5f828152601860205260409020805460ff191660011790558015806128d557508160176128ba600184613785565b815481106128ca576128ca613798565b905f5260205f200154105b1561291357601780546001810182555f919091527fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c1501829055612a3d565b601780546001810182555f919091527fc624b66cc0138b8fabc209247f72d758e1cf3343756d543badbf24212bed8c1501829055805b8015612a3b576017818154811061296257612962613798565b905f5260205f200154601760018361297a9190613785565b8154811061298a5761298a613798565b905f5260205f2001541115612a3b57601781815481106129ac576129ac613798565b905f5260205f20015460176001836129c49190613785565b815481106129d4576129d4613798565b905f5260205f20015460176001846129ec9190613785565b815481106129fc576129fc613798565b905f5260205f20015f60178581548110612a1857612a18613798565b5f918252602090912001929092559190915550612a34816137bf565b9050612949565b505b6040518281527f718bee8e94efd77d020573a992acb18a989bf9832beee3e9daf29a48b6ccf99090602001610aec565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005b92915050565b612a9f6131d9565b610f77816131fe565b610c846131d9565b612ab86131d9565b610c84613206565b5f805f612acd868661320e565b91509150815f03612af157838181612ae757612ae76137eb565b049250505061284b565b818411612b0857612b08600385150260111861322a565b5f848688095f868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010185841190960395909502919093039390930492909217029150509392505050565b5f818152601360209081526040808320546001600160a01b0386168452601190925282208054919290918290612ba890600190613785565b81548110612bb857612bb8613798565b905f5260205f200154905080828481548110612bd657612bd6613798565b5f9182526020808320909101929092558281526013909152604090208390558154829080612c0657612c06613835565b5f828152602080822083015f199081018390559092019092558582526013815260408083208390556001600160a01b03909716825260128082528783208054888552601484529884208990559082526001880181558252902090940192909255505050565b80612cec575f848152600e602052604090206005810154600160801b900460ff1615612cea5760058101805468ffffffffffffffffff60401b1916600160401b4267ffffffffffffffff1602179055612cc48486612b70565b600f5f8154612cd2906137bf565b90915550601080545f90612ce59061376d565b909155505b505b600154604080516001600160a01b038681166024830152604480830187905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b17905291515f9384931691612d4791613849565b5f604051808303815f865af19150503d805f8114612d80576040519150601f19603f3d011682016040523d82523d5f602084013e612d85565b606091505b50915091505f828015612db0575081511580612db0575081806020019051810190612db0919061371a565b905080612e85575f878152600e60205260408120600481018054929055908015612e35575f546040516359e026f760e01b81526001600160a01b03909116906359e026f790612e079030908c908690600401613735565b5f604051808303815f87803b158015612e1e575f80fd5b505af1158015612e30573d5f803e3d5ffd5b505050505b60408051888152602081018390526001600160a01b038a16918b917f7cdb841684facd36fce1362c3e33c14a57b8861e669c671c3d204ea457ee236f910160405180910390a35050505050612ecd565b856001600160a01b0316877f419de2faea3105a98590c3cf748b61bf5dd9fa1a9bd059fc6ed4c9ff7c45c3aa87604051612ec191815260200190565b60405180910390a35050505b50505050565b600154604080516001600160a01b038581166024830152604480830186905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b17905291515f9384931691612f2e91613849565b5f604051808303815f865af19150503d805f8114612f67576040519150601f19603f3d011682016040523d82523d5f602084013e612f6c565b606091505b50915091505f828015612f97575081511580612f97575081806020019051810190612f97919061371a565b905080612fe857604080518581525f60208201526001600160a01b0387169188917f7cdb841684facd36fce1362c3e33c14a57b8861e669c671c3d204ea457ee236f910160405180910390a361302d565b846001600160a01b0316867f419de2faea3105a98590c3cf748b61bf5dd9fa1a9bd059fc6ed4c9ff7c45c3aa8660405161302491815260200190565b60405180910390a35b505050505050565b5f8181526018602052604090205460ff1615610f77575f8181526015602090815260408083205460169092529091205410610f77575f818152601860205260408120805460ff19169055601754905b818110156131235782601782815481106130a0576130a0613798565b905f5260205f2001540361311b5760176130bb600184613785565b815481106130cb576130cb613798565b905f5260205f200154601782815481106130e7576130e7613798565b5f91825260209091200155601780548061310357613103613835565b600190038181905f5260205f20015f90559055613123565b600101613084565b506040518281527f15f90bfb464c8128b31fa366685b03649d64accf261b8c5e02c9736d159d194490602001610aec565b61315d8261323b565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a28051156131a15761236b828261329e565b610af5613310565b5f805160206138858339815191525460ff1615610c845760405163d93c066560e01b815260040160405180910390fd5b6131e161332f565b610c8457604051631afcd79f60e31b815260040160405180910390fd5b6120146131d9565b6127026131d9565b5f805f1983850993909202808410938190039390930393915050565b634e487b715f52806020526024601cfd5b806001600160a01b03163b5f0361327057604051634c9c8ce360e01b81526001600160a01b0382166004820152602401610e21565b5f8051602061386583398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b60605f80846001600160a01b0316846040516132ba9190613849565b5f60405180830381855af49150503d805f81146132f2576040519150601f19603f3d011682016040523d82523d5f602084013e6132f7565b606091505b5091509150613307858383613348565b95945050505050565b3415610c845760405163b398979f60e01b815260040160405180910390fd5b5f613338612a6d565b54600160401b900460ff16919050565b60608261335d57613358826133a4565b61284b565b815115801561337457506001600160a01b0384163b155b1561339d57604051639996b31560e01b81526001600160a01b0385166004820152602401610e21565b508061284b565b8051156133b357805160208201fd5b60405163d6bda27560e01b815260040160405180910390fd5b8015158114610f77575f80fd5b5f602082840312156133e9575f80fd5b813561284b816133cc565b6001600160a01b0381168114610f77575f80fd5b5f60208284031215613418575f80fd5b813561284b816133f4565b5f8060408385031215613434575f80fd5b823561343f816133f4565b946020939093013593505050565b5f815180845260208085019450602084015f5b8381101561347c57815187529582019590820190600101613460565b509495945050505050565b602081525f61284b602083018461344d565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156134be575f80fd5b82356134c9816133f4565b9150602083013567ffffffffffffffff808211156134e5575f80fd5b818501915085601f8301126134f8575f80fd5b81358181111561350a5761350a613499565b604051601f8201601f19908116603f0116810190838211818310171561353257613532613499565b8160405282815288602084870101111561354a575f80fd5b826020860160208301375f6020848301015280955050505050509250929050565b5f6020828403121561357b575f80fd5b5035919050565b5f805f805f805f805f806101408b8d03121561359c575f80fd5b8a35995060208b0135985060408b0135975060608b0135965060808b0135955060a08b0135945060c08b0135935060e08b013592506101008b013591506101208b01356135e8816133cc565b809150509295989b9194979a5092959850565b5f805f6060848603121561360d575f80fd5b8335613618816133f4565b92506020840135613628816133f4565b929592945050506040919091013590565b5f806040838503121561364a575f80fd5b50508035926020909101359150565b5f5b8381101561367357818101518382015260200161365b565b50505f910152565b602081525f8251806020840152613699816040850160208701613659565b601f01601f19169190910160400192915050565b828152604060208201525f6136c5604083018461344d565b949350505050565b5f805f805f60a086880312156136e1575f80fd5b85356136ec816133f4565b945060208601356136fc816133f4565b94979496505050506040830135926060810135926080909101359150565b5f6020828403121561372a575f80fd5b815161284b816133cc565b6001600160a01b039384168152919092166020820152604081019190915260600190565b634e487b7160e01b5f52601160045260245ffd5b5f6001820161377e5761377e613759565b5060010190565b81810381811115612a9157612a91613759565b634e487b7160e01b5f52603260045260245ffd5b80820180821115612a9157612a91613759565b5f816137cd576137cd613759565b505f190190565b5f602082840312156137e4575f80fd5b5051919050565b634e487b7160e01b5f52601260045260245ffd5b5f8261381957634e487b7160e01b5f52601260045260245ffd5b500490565b8082028115828204841417612a9157612a91613759565b634e487b7160e01b5f52603160045260245ffd5b5f825161385a818460208701613659565b919091019291505056fe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbccd5ed15c6e187e77e9aee88184c21f4f2182ab5827cb3b7e07fbedcd63f033009b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00a264697066735822122091f3e7ce1d1f30fd799effe1e92f40eeadac2ae08f4a6907100be470a98db2f064736f6c63430008180033