Source Code
Overview
ETH Balance
0 ETH
Multichain Info
N/A
Latest 25 from a total of 32 transactions
| Transaction Hash |
Method
|
Block
|
From
|
To
|
Amount
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 8852900 | 180 days ago | IN | 0 ETH | 0.00007034 | ||||
| Approve | 8573848 | 219 days ago | IN | 0 ETH | 0.00007053 | ||||
| Approve | 8524115 | 226 days ago | IN | 0 ETH | 0.0000006 | ||||
| Approve | 8513848 | 228 days ago | IN | 0 ETH | 0.00000004 | ||||
| Approve | 8507928 | 228 days ago | IN | 0 ETH | 0.00000004 | ||||
| Approve | 8507924 | 228 days ago | IN | 0 ETH | 0.00007053 | ||||
| Approve | 8309992 | 256 days ago | IN | 0 ETH | 0.00007053 | ||||
| Approve | 8309952 | 256 days ago | IN | 0 ETH | 0.00007053 | ||||
| Approve | 8289259 | 259 days ago | IN | 0 ETH | 0.00000005 | ||||
| Approve | 8226464 | 268 days ago | IN | 0 ETH | 0.00041045 | ||||
| Approve | 8226429 | 268 days ago | IN | 0 ETH | 0.00046377 | ||||
| Approve | 8209040 | 271 days ago | IN | 0 ETH | 0.00000008 | ||||
| Approve | 8181789 | 275 days ago | IN | 0 ETH | 0.00007053 | ||||
| Approve | 8180827 | 275 days ago | IN | 0 ETH | 0.0004139 | ||||
| Approve | 8180727 | 275 days ago | IN | 0 ETH | 0.0004946 | ||||
| Approve | 8180657 | 275 days ago | IN | 0 ETH | 0.00092757 | ||||
| Approve | 8174236 | 276 days ago | IN | 0 ETH | 0.00028959 | ||||
| Approve | 8166433 | 277 days ago | IN | 0 ETH | 0.00018929 | ||||
| Approve | 8166018 | 277 days ago | IN | 0 ETH | 0.00013769 | ||||
| Approve | 8166017 | 277 days ago | IN | 0 ETH | 0.00024668 | ||||
| Approve | 8159900 | 278 days ago | IN | 0 ETH | 0.00008383 | ||||
| Approve | 8159586 | 278 days ago | IN | 0 ETH | 0.00013512 | ||||
| Approve | 8159516 | 278 days ago | IN | 0 ETH | 0.00011599 | ||||
| Approve | 8151791 | 279 days ago | IN | 0 ETH | 0.00007053 | ||||
| Approve | 8093850 | 287 days ago | IN | 0 ETH | 0.00007053 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Contract Name:
Stinky
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
shanghai EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin-contracts/utils/Address.sol";
import "@openzeppelin-contracts/token/ERC20/extensions/ERC20Permit.sol";
import "./interfaces/IGHST.sol";
import "./interfaces/ISTNK.sol";
import "./interfaces/IStaking.sol";
contract Stinky is ISTNK, ERC20Permit {
uint256 private constant INITIAL_SHARES_SUPPLY = 5 * 10**15;
uint256 private constant TOTAL_SHARES = type(uint256).max - (type(uint256).max % INITIAL_SHARES_SUPPLY);
uint256 private constant MAX_SUPPLY = type(uint128).max;
uint256 internal immutable _internalIndex;
address internal _initializer;
uint256 private _sharesPerUnit;
uint256 private _totalSupply;
address public staking;
address public ghst;
address public treasury;
Rebase[] public rebases;
mapping(address => uint256) public override debtBalances;
mapping(address => uint256) private _shares;
mapping(address => mapping(address => uint256)) private _allowedValue;
constructor(uint256 usedIndex) ERC20("Stinky", "STNK") ERC20Permit("Stinky") {
_initializer = msg.sender;
_internalIndex = usedIndex;
_totalSupply = INITIAL_SHARES_SUPPLY;
_sharesPerUnit = TOTAL_SHARES / INITIAL_SHARES_SUPPLY;
}
function initialize(
address _staking,
address _treasury,
address _ghst
) external {
if (msg.sender != _initializer) revert NotInitializer();
staking = _staking;
treasury = _treasury;
ghst = _ghst;
_shares[_staking] = TOTAL_SHARES;
_initializer = address(0);
emit Transfer(address(0), _staking, _totalSupply);
emit LogStakingContractUpdated(_staking);
}
function rebase(
uint256 supplyDelta,
uint256 epoch
) public override returns (uint256 newTotalSupply) {
if (msg.sender != staking) revert NotStakingContract();
uint256 previousCirculating = circulatingSupply();
if (supplyDelta == 0) {
newTotalSupply = _totalSupply;
emit LogSupply(epoch, newTotalSupply);
emit LogRebase(epoch, 0, index());
} else {
if (previousCirculating > 0) {
supplyDelta = supplyDelta * _totalSupply / previousCirculating;
}
newTotalSupply = _totalSupply + supplyDelta;
}
if (newTotalSupply > MAX_SUPPLY) {
newTotalSupply = MAX_SUPPLY;
}
_totalSupply = newTotalSupply;
_sharesPerUnit = TOTAL_SHARES / newTotalSupply;
_storeRebase(previousCirculating, newTotalSupply, supplyDelta, epoch);
}
function transfer(
address to,
uint256 value
) public override(IERC20, ERC20) returns (bool) {
_transferInner(msg.sender, to, value);
return true;
}
function transferFrom(
address from,
address to,
uint256 value
) public override(IERC20, ERC20) returns (bool) {
_spendAllowance(from, msg.sender, value);
_transferInner(from, to, value);
return true;
}
function approve(
address spender,
uint256 value
) public override(IERC20, ERC20) returns (bool) {
_approve(msg.sender, spender, value, true);
return true;
}
function increaseAllowance(
address spender,
uint256 imbalance
) public override returns (bool) {
imbalance = imbalance + _allowedValue[msg.sender][spender];
_approve(msg.sender, spender, imbalance, true);
return true;
}
function decreaseAllowance(
address spender,
uint256 imbalance
) public override returns (bool) {
uint256 prevAllowance = _allowedValue[msg.sender][spender];
imbalance = imbalance < prevAllowance ? prevAllowance - imbalance : 0;
_approve(msg.sender, spender, imbalance, true);
return true;
}
function decimals() public pure override returns (uint8) {
return 9;
}
function totalSupply() public view override(IERC20, ERC20) returns (uint256) {
return _totalSupply;
}
function balanceOf(
address who
) public view override(IERC20, ERC20) returns (uint256) {
return _shares[who] / _sharesPerUnit;
}
function allowance(
address owner,
address spender
) public view override(IERC20, ERC20) returns (uint256) {
return _allowedValue[owner][spender];
}
function sharesForBalance(uint256 amount) public view override returns (uint256) {
return amount * _sharesPerUnit;
}
function balanceForShares(uint256 shares) public view override returns (uint256) {
return shares / _sharesPerUnit;
}
function toGhst(uint256 amount) external view override returns (uint256) {
return IGHST(ghst).balanceTo(amount);
}
function fromGhst(uint256 amount) external view override returns (uint256) {
return IGHST(ghst).balanceFrom(amount);
}
function circulatingSupply() public view override returns (uint256) {
return _totalSupply +
IGHST(ghst).balanceFrom(IERC20(ghst).totalSupply()) +
IStaking(staking).supplyInWarmup() -
balanceOf(staking);
}
function index() public view override returns (uint256) {
return balanceForShares(_internalIndex);
}
function getRebase(uint256 idx) public view override returns (Rebase memory) {
return rebases[idx];
}
function changeDebt(
uint256 amount,
address debtor,
bool add
) external override {
if (msg.sender != treasury) revert NotTreasury();
uint256 debtBalance = debtBalances[debtor];
debtBalance = add ? debtBalance + amount : debtBalance - amount;
if (debtBalance > balanceOf(debtor)) revert InsufficientBalance();
debtBalances[debtor] = debtBalance;
}
function _storeRebase(
uint256 previousCirculating,
uint256 newTotalSupply,
uint256 supplyDelta,
uint256 epoch
) internal {
uint256 rebasePercent = previousCirculating > 0
? supplyDelta * 1e18 / previousCirculating
: type(uint256).max;
uint256 newIndex = index();
rebases.push(
Rebase({
epoch: epoch,
rebase: rebasePercent,
totalStakedBefore: previousCirculating,
totalStakedAfter: circulatingSupply(),
amountRebased: supplyDelta,
index: newIndex,
blockNumberOccured: block.number
})
);
emit LogSupply(epoch, newTotalSupply);
emit LogRebase(epoch, rebasePercent, newIndex);
}
function _transferInner(
address from,
address to,
uint256 value
) internal {
uint256 sharesValue = value * _sharesPerUnit;
_shares[from] = _shares[from] - sharesValue;
_shares[to] = _shares[to] + sharesValue;
if (balanceOf(from) < debtBalances[from]) revert DebtExists();
emit Transfer(from, to, value);
}
function _spendAllowance(address owner, address spender, uint256 value) internal override {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(spender, currentAllowance, value);
}
unchecked {
_approve(owner, spender, currentAllowance - value, false);
}
}
}
function _approve(
address owner,
address spender,
uint256 value,
bool emitEvent
) internal override {
if (owner == address(0)) revert ERC20InvalidApprover(address(0));
if (spender == address(0)) revert ERC20InvalidSpender(address(0));
_allowedValue[owner][spender] = value;
if (emitEvent) emit Approval(owner, spender, value);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)
pragma solidity ^0.8.20;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev The ETH balance of the account is not enough to perform the operation.
*/
error AddressInsufficientBalance(address account);
/**
* @dev There's no code at `target` (it is not a contract).
*/
error AddressEmptyCode(address target);
/**
* @dev A call to an address target failed. The target may have reverted.
*/
error FailedInnerCall();
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
if (address(this).balance < amount) {
revert AddressInsufficientBalance(address(this));
}
(bool success, ) = recipient.call{value: amount}("");
if (!success) {
revert FailedInnerCall();
}
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason or custom error, it is bubbled
* up by this function (like regular Solidity function calls). However, if
* the call reverted with no returned reason, this function reverts with a
* {FailedInnerCall} error.
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
if (address(this).balance < value) {
revert AddressInsufficientBalance(address(this));
}
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
* was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
* unsuccessful call.
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata
) internal view returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
// only check if target is a contract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
if (returndata.length == 0 && target.code.length == 0) {
revert AddressEmptyCode(target);
}
return returndata;
}
}
/**
* @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
* revert reason or with a default {FailedInnerCall} error.
*/
function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
return returndata;
}
}
/**
* @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
*/
function _revert(bytes memory returndata) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert FailedInnerCall();
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Permit.sol)
pragma solidity ^0.8.20;
import {IERC20Permit} from "./IERC20Permit.sol";
import {ERC20} from "../ERC20.sol";
import {ECDSA} from "../../../utils/cryptography/ECDSA.sol";
import {EIP712} from "../../../utils/cryptography/EIP712.sol";
import {Nonces} from "../../../utils/Nonces.sol";
/**
* @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712, Nonces {
bytes32 private constant PERMIT_TYPEHASH =
keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
/**
* @dev Permit deadline has expired.
*/
error ERC2612ExpiredSignature(uint256 deadline);
/**
* @dev Mismatched signature.
*/
error ERC2612InvalidSigner(address signer, address owner);
/**
* @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
*
* It's a good idea to use the same `name` that is defined as the ERC20 token name.
*/
constructor(string memory name) EIP712(name, "1") {}
/**
* @inheritdoc IERC20Permit
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) public virtual {
if (block.timestamp > deadline) {
revert ERC2612ExpiredSignature(deadline);
}
bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));
bytes32 hash = _hashTypedDataV4(structHash);
address signer = ECDSA.recover(hash, v, r, s);
if (signer != owner) {
revert ERC2612InvalidSigner(signer, owner);
}
_approve(owner, spender, value);
}
/**
* @inheritdoc IERC20Permit
*/
function nonces(address owner) public view virtual override(IERC20Permit, Nonces) returns (uint256) {
return super.nonces(owner);
}
/**
* @inheritdoc IERC20Permit
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view virtual returns (bytes32) {
return _domainSeparatorV4();
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin-contracts/token/ERC20/IERC20.sol";
interface IGHST is IERC20 {
error NotStakingContract();
function staking() external view returns (address);
function stnk() external view returns (address);
function index() external view returns (uint256);
function balanceTo(uint256 amount) external view returns (uint256);
function balanceFrom(uint256 amount) external view returns (uint256);
function mint(address _to, uint256 _amount) external;
function burn(address _from, uint256 _amount) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin-contracts/token/ERC20/IERC20.sol";
interface ISTNK is IERC20 {
error NotStakingContract();
error NotTreasury();
error InsufficientBalance();
error DebtExists();
error NotInitializer();
event LogSupply(uint256 indexed epoch, uint256 totalSupply);
event LogRebase(uint256 indexed epoch, uint256 rebase, uint256 index);
event LogStakingContractUpdated(address stakingContract);
struct Rebase {
uint256 epoch;
uint256 rebase;
uint256 totalStakedBefore;
uint256 totalStakedAfter;
uint256 amountRebased;
uint256 index;
uint256 blockNumberOccured;
}
function rebase(uint256 profit_, uint256 epoch_) external returns (uint256);
function increaseAllowance(address spender, uint256 imbalance) external returns (bool);
function decreaseAllowance(address spender, uint256 imbalance) external returns (bool);
function circulatingSupply() external view returns (uint256);
function sharesForBalance(uint256 amount) external view returns (uint256);
function balanceForShares(uint256 shares) external view returns (uint256);
function index() external view returns (uint256);
function getRebase(uint256 idx) external view returns (Rebase memory);
function toGhst(uint256 amount) external view returns (uint256);
function fromGhst(uint256 amount) external view returns (uint256);
function debtBalances(address _address) external view returns (uint256);
function changeDebt(
uint256 amount,
address debtor,
bool add
) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
interface IStaking {
error ExternalDepositsLocked();
error ExternalClaimsLocked();
error InsufficientBalance();
event DistributorSet(address distributor);
event WarmupSet(uint256 warmup);
struct Epoch {
uint256 length;
uint256 number;
uint256 end;
uint256 distribute;
}
struct Claim {
uint256 deposit;
uint256 shares;
uint256 expiry;
bool lock;
}
function getEpoch() external view returns (Epoch memory);
function getWarmupInfo(address who) external view returns (Claim memory);
function stake(
uint256 _amount,
address _to,
bool _isRebase,
bool _isClaim
) external returns (uint256);
function claim(address _recipient, bool _rebasing) external returns (uint256);
function forfeit() external returns (uint256);
function toggleLock() external;
function unstake(
uint256 _amount,
address _to,
bool _isTrigger,
bool _isRebase
) external returns (uint256);
function wrap(address _to, uint256 _amount) external returns (uint256 gBalance_);
function unwrap(address _to, uint256 _amount) external returns (uint256 sBalance_);
function rebase() external returns (uint256);
function index() external view returns (uint256);
function supplyInWarmup() external view returns (uint256);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*
* ==== Security Considerations
*
* There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
* expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
* considered as an intention to spend the allowance in any specific way. The second is that because permits have
* built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
* take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
* generally recommended is:
*
* ```solidity
* function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
* try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
* doThing(..., value);
* }
*
* function doThing(..., uint256 value) public {
* token.safeTransferFrom(msg.sender, address(this), value);
* ...
* }
* ```
*
* Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
* `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
* {SafeERC20-safeTransferFrom}).
*
* Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
* contracts should have entry points that don't rely on permit.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*
* CAUTION: See Security Considerations above.
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.20;
import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*/
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `value`.
*/
function transfer(address to, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_transfer(owner, to, value);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, value);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `value`.
* - the caller must have allowance for ``from``'s tokens of at least
* `value`.
*/
function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, value);
_transfer(from, to, value);
return true;
}
/**
* @dev Moves a `value` amount of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _transfer(address from, address to, uint256 value) internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(from, to, value);
}
/**
* @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
* (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
* this function.
*
* Emits a {Transfer} event.
*/
function _update(address from, address to, uint256 value) internal virtual {
if (from == address(0)) {
// Overflow check required: The rest of the code assumes that totalSupply never overflows
_totalSupply += value;
} else {
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
}
}
if (to == address(0)) {
unchecked {
// Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
_totalSupply -= value;
}
} else {
unchecked {
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += value;
}
}
emit Transfer(from, to, value);
}
/**
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
* Relies on the `_update` mechanism
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _mint(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(address(0), account, value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
* Relies on the `_update` mechanism.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead
*/
function _burn(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidSender(address(0));
}
_update(account, address(0), value);
}
/**
* @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address owner, address spender, uint256 value) internal {
_approve(owner, spender, value, true);
}
/**
* @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
*
* By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
* `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
* `Approval` event during `transferFrom` operations.
*
* Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
* true using the following override:
* ```
* function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
* super._approve(owner, spender, value, true);
* }
* ```
*
* Requirements are the same as {_approve}.
*/
function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
if (owner == address(0)) {
revert ERC20InvalidApprover(address(0));
}
if (spender == address(0)) {
revert ERC20InvalidSpender(address(0));
}
_allowances[owner][spender] = value;
if (emitEvent) {
emit Approval(owner, spender, value);
}
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `value`.
*
* Does not update the allowance value in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Does not emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(spender, currentAllowance, value);
}
unchecked {
_approve(owner, spender, currentAllowance - value, false);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/ECDSA.sol)
pragma solidity ^0.8.20;
/**
* @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
*
* These functions can be used to verify that a message was signed by the holder
* of the private keys of a given address.
*/
library ECDSA {
enum RecoverError {
NoError,
InvalidSignature,
InvalidSignatureLength,
InvalidSignatureS
}
/**
* @dev The signature derives the `address(0)`.
*/
error ECDSAInvalidSignature();
/**
* @dev The signature has an invalid length.
*/
error ECDSAInvalidSignatureLength(uint256 length);
/**
* @dev The signature has an S value that is in the upper half order.
*/
error ECDSAInvalidSignatureS(bytes32 s);
/**
* @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not
* return address(0) without also returning an error description. Errors are documented using an enum (error type)
* and a bytes32 providing additional information about the error.
*
* If no error is returned, then the address can be used for verification purposes.
*
* The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.
*
* Documentation for signature generation:
* - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
* - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
*/
function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError, bytes32) {
if (signature.length == 65) {
bytes32 r;
bytes32 s;
uint8 v;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
/// @solidity memory-safe-assembly
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := byte(0, mload(add(signature, 0x60)))
}
return tryRecover(hash, v, r, s);
} else {
return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length));
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature`. This address can then be used for verification purposes.
*
* The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.
*/
function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
(address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature);
_throwError(error, errorArg);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
*
* See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
*/
function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError, bytes32) {
unchecked {
bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
// We do not check for an overflow here since the shift operation results in 0 or 1.
uint8 v = uint8((uint256(vs) >> 255) + 27);
return tryRecover(hash, v, r, s);
}
}
/**
* @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
*/
function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
(address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs);
_throwError(error, errorArg);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `v`,
* `r` and `s` signature fields separately.
*/
function tryRecover(
bytes32 hash,
uint8 v,
bytes32 r,
bytes32 s
) internal pure returns (address, RecoverError, bytes32) {
// EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
// unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
// the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
// signatures from current libraries generate a unique signature with an s-value in the lower half order.
//
// If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
// with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
// vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
// these malleable signatures as well.
if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
return (address(0), RecoverError.InvalidSignatureS, s);
}
// If the signature is valid (and not malleable), return the signer address
address signer = ecrecover(hash, v, r, s);
if (signer == address(0)) {
return (address(0), RecoverError.InvalidSignature, bytes32(0));
}
return (signer, RecoverError.NoError, bytes32(0));
}
/**
* @dev Overload of {ECDSA-recover} that receives the `v`,
* `r` and `s` signature fields separately.
*/
function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
(address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s);
_throwError(error, errorArg);
return recovered;
}
/**
* @dev Optionally reverts with the corresponding custom error according to the `error` argument provided.
*/
function _throwError(RecoverError error, bytes32 errorArg) private pure {
if (error == RecoverError.NoError) {
return; // no error: do nothing
} else if (error == RecoverError.InvalidSignature) {
revert ECDSAInvalidSignature();
} else if (error == RecoverError.InvalidSignatureLength) {
revert ECDSAInvalidSignatureLength(uint256(errorArg));
} else if (error == RecoverError.InvalidSignatureS) {
revert ECDSAInvalidSignatureS(errorArg);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/EIP712.sol)
pragma solidity ^0.8.20;
import {MessageHashUtils} from "./MessageHashUtils.sol";
import {ShortStrings, ShortString} from "../ShortStrings.sol";
import {IERC5267} from "../../interfaces/IERC5267.sol";
/**
* @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
*
* The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose
* encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract
* does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to
* produce the hash of their typed data using a combination of `abi.encode` and `keccak256`.
*
* This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
* scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
* ({_hashTypedDataV4}).
*
* The implementation of the domain separator was designed to be as efficient as possible while still properly updating
* the chain id to protect against replay attacks on an eventual fork of the chain.
*
* NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
* https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
*
* NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain
* separator of the implementation contract. This will cause the {_domainSeparatorV4} function to always rebuild the
* separator from the immutable values, which is cheaper than accessing a cached version in cold storage.
*
* @custom:oz-upgrades-unsafe-allow state-variable-immutable
*/
abstract contract EIP712 is IERC5267 {
using ShortStrings for *;
bytes32 private constant TYPE_HASH =
keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");
// Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
// invalidate the cached domain separator if the chain id changes.
bytes32 private immutable _cachedDomainSeparator;
uint256 private immutable _cachedChainId;
address private immutable _cachedThis;
bytes32 private immutable _hashedName;
bytes32 private immutable _hashedVersion;
ShortString private immutable _name;
ShortString private immutable _version;
string private _nameFallback;
string private _versionFallback;
/**
* @dev Initializes the domain separator and parameter caches.
*
* The meaning of `name` and `version` is specified in
* https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
*
* - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
* - `version`: the current major version of the signing domain.
*
* NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
* contract upgrade].
*/
constructor(string memory name, string memory version) {
_name = name.toShortStringWithFallback(_nameFallback);
_version = version.toShortStringWithFallback(_versionFallback);
_hashedName = keccak256(bytes(name));
_hashedVersion = keccak256(bytes(version));
_cachedChainId = block.chainid;
_cachedDomainSeparator = _buildDomainSeparator();
_cachedThis = address(this);
}
/**
* @dev Returns the domain separator for the current chain.
*/
function _domainSeparatorV4() internal view returns (bytes32) {
if (address(this) == _cachedThis && block.chainid == _cachedChainId) {
return _cachedDomainSeparator;
} else {
return _buildDomainSeparator();
}
}
function _buildDomainSeparator() private view returns (bytes32) {
return keccak256(abi.encode(TYPE_HASH, _hashedName, _hashedVersion, block.chainid, address(this)));
}
/**
* @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
* function returns the hash of the fully encoded EIP712 message for this domain.
*
* This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
*
* ```solidity
* bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
* keccak256("Mail(address to,string contents)"),
* mailTo,
* keccak256(bytes(mailContents))
* )));
* address signer = ECDSA.recover(digest, signature);
* ```
*/
function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
return MessageHashUtils.toTypedDataHash(_domainSeparatorV4(), structHash);
}
/**
* @dev See {IERC-5267}.
*/
function eip712Domain()
public
view
virtual
returns (
bytes1 fields,
string memory name,
string memory version,
uint256 chainId,
address verifyingContract,
bytes32 salt,
uint256[] memory extensions
)
{
return (
hex"0f", // 01111
_EIP712Name(),
_EIP712Version(),
block.chainid,
address(this),
bytes32(0),
new uint256[](0)
);
}
/**
* @dev The name parameter for the EIP712 domain.
*
* NOTE: By default this function reads _name which is an immutable value.
* It only reads from storage if necessary (in case the value is too large to fit in a ShortString).
*/
// solhint-disable-next-line func-name-mixedcase
function _EIP712Name() internal view returns (string memory) {
return _name.toStringWithFallback(_nameFallback);
}
/**
* @dev The version parameter for the EIP712 domain.
*
* NOTE: By default this function reads _version which is an immutable value.
* It only reads from storage if necessary (in case the value is too large to fit in a ShortString).
*/
// solhint-disable-next-line func-name-mixedcase
function _EIP712Version() internal view returns (string memory) {
return _version.toStringWithFallback(_versionFallback);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Nonces.sol)
pragma solidity ^0.8.20;
/**
* @dev Provides tracking nonces for addresses. Nonces will only increment.
*/
abstract contract Nonces {
/**
* @dev The nonce used for an `account` is not the expected current nonce.
*/
error InvalidAccountNonce(address account, uint256 currentNonce);
mapping(address account => uint256) private _nonces;
/**
* @dev Returns the next unused nonce for an address.
*/
function nonces(address owner) public view virtual returns (uint256) {
return _nonces[owner];
}
/**
* @dev Consumes a nonce.
*
* Returns the current value and increments nonce.
*/
function _useNonce(address owner) internal virtual returns (uint256) {
// For each account, the nonce has an initial value of 0, can only be incremented by one, and cannot be
// decremented or reset. This guarantees that the nonce never overflows.
unchecked {
// It is important to do x++ and not ++x here.
return _nonces[owner]++;
}
}
/**
* @dev Same as {_useNonce} but checking that `nonce` is the next valid for `owner`.
*/
function _useCheckedNonce(address owner, uint256 nonce) internal virtual {
uint256 current = _useNonce(owner);
if (nonce != current) {
revert InvalidAccountNonce(owner, current);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the 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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.20;
import {IERC20} from "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard ERC20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @dev Standard ERC721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
* Used in balance queries.
* @param owner Address of the current owner of a token.
*/
error ERC721InvalidOwner(address owner);
/**
* @dev Indicates a `tokenId` whose `owner` is the zero address.
* @param tokenId Identifier number of a token.
*/
error ERC721NonexistentToken(uint256 tokenId);
/**
* @dev Indicates an error related to the ownership over a particular token. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param tokenId Identifier number of a token.
* @param owner Address of the current owner of a token.
*/
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC721InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC721InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param tokenId Identifier number of a token.
*/
error ERC721InsufficientApproval(address operator, uint256 tokenId);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC721InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC721InvalidOperator(address operator);
}
/**
* @dev Standard ERC1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
*/
interface IERC1155Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
* @param tokenId Identifier number of a token.
*/
error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC1155InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC1155InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param owner Address of the current owner of a token.
*/
error ERC1155MissingApprovalForAll(address operator, address owner);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC1155InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC1155InvalidOperator(address operator);
/**
* @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
* Used in batch transfers.
* @param idsLength Length of the array of token identifiers
* @param valuesLength Length of the array of token amounts
*/
error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MessageHashUtils.sol)
pragma solidity ^0.8.20;
import {Strings} from "../Strings.sol";
/**
* @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.
*
* The library provides methods for generating a hash of a message that conforms to the
* https://eips.ethereum.org/EIPS/eip-191[EIP 191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]
* specifications.
*/
library MessageHashUtils {
/**
* @dev Returns the keccak256 digest of an EIP-191 signed data with version
* `0x45` (`personal_sign` messages).
*
* The digest is calculated by prefixing a bytes32 `messageHash` with
* `"\x19Ethereum Signed Message:\n32"` and hashing the result. It corresponds with the
* hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.
*
* NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with
* keccak256, although any bytes32 value can be safely used because the final digest will
* be re-hashed.
*
* See {ECDSA-recover}.
*/
function toEthSignedMessageHash(bytes32 messageHash) internal pure returns (bytes32 digest) {
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, "\x19Ethereum Signed Message:\n32") // 32 is the bytes-length of messageHash
mstore(0x1c, messageHash) // 0x1c (28) is the length of the prefix
digest := keccak256(0x00, 0x3c) // 0x3c is the length of the prefix (0x1c) + messageHash (0x20)
}
}
/**
* @dev Returns the keccak256 digest of an EIP-191 signed data with version
* `0x45` (`personal_sign` messages).
*
* The digest is calculated by prefixing an arbitrary `message` with
* `"\x19Ethereum Signed Message:\n" + len(message)` and hashing the result. It corresponds with the
* hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.
*
* See {ECDSA-recover}.
*/
function toEthSignedMessageHash(bytes memory message) internal pure returns (bytes32) {
return
keccak256(bytes.concat("\x19Ethereum Signed Message:\n", bytes(Strings.toString(message.length)), message));
}
/**
* @dev Returns the keccak256 digest of an EIP-191 signed data with version
* `0x00` (data with intended validator).
*
* The digest is calculated by prefixing an arbitrary `data` with `"\x19\x00"` and the intended
* `validator` address. Then hashing the result.
*
* See {ECDSA-recover}.
*/
function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
return keccak256(abi.encodePacked(hex"19_00", validator, data));
}
/**
* @dev Returns the keccak256 digest of an EIP-712 typed data (EIP-191 version `0x01`).
*
* The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with
* `\x19\x01` and hashing the result. It corresponds to the hash signed by the
* https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712.
*
* See {ECDSA-recover}.
*/
function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 digest) {
/// @solidity memory-safe-assembly
assembly {
let ptr := mload(0x40)
mstore(ptr, hex"19_01")
mstore(add(ptr, 0x02), domainSeparator)
mstore(add(ptr, 0x22), structHash)
digest := keccak256(ptr, 0x42)
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/ShortStrings.sol)
pragma solidity ^0.8.20;
import {StorageSlot} from "./StorageSlot.sol";
// | string | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |
// | length | 0x BB |
type ShortString is bytes32;
/**
* @dev This library provides functions to convert short memory strings
* into a `ShortString` type that can be used as an immutable variable.
*
* Strings of arbitrary length can be optimized using this library if
* they are short enough (up to 31 bytes) by packing them with their
* length (1 byte) in a single EVM word (32 bytes). Additionally, a
* fallback mechanism can be used for every other case.
*
* Usage example:
*
* ```solidity
* contract Named {
* using ShortStrings for *;
*
* ShortString private immutable _name;
* string private _nameFallback;
*
* constructor(string memory contractName) {
* _name = contractName.toShortStringWithFallback(_nameFallback);
* }
*
* function name() external view returns (string memory) {
* return _name.toStringWithFallback(_nameFallback);
* }
* }
* ```
*/
library ShortStrings {
// Used as an identifier for strings longer than 31 bytes.
bytes32 private constant FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF;
error StringTooLong(string str);
error InvalidShortString();
/**
* @dev Encode a string of at most 31 chars into a `ShortString`.
*
* This will trigger a `StringTooLong` error is the input string is too long.
*/
function toShortString(string memory str) internal pure returns (ShortString) {
bytes memory bstr = bytes(str);
if (bstr.length > 31) {
revert StringTooLong(str);
}
return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length));
}
/**
* @dev Decode a `ShortString` back to a "normal" string.
*/
function toString(ShortString sstr) internal pure returns (string memory) {
uint256 len = byteLength(sstr);
// using `new string(len)` would work locally but is not memory safe.
string memory str = new string(32);
/// @solidity memory-safe-assembly
assembly {
mstore(str, len)
mstore(add(str, 0x20), sstr)
}
return str;
}
/**
* @dev Return the length of a `ShortString`.
*/
function byteLength(ShortString sstr) internal pure returns (uint256) {
uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF;
if (result > 31) {
revert InvalidShortString();
}
return result;
}
/**
* @dev Encode a string into a `ShortString`, or write it to storage if it is too long.
*/
function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) {
if (bytes(value).length < 32) {
return toShortString(value);
} else {
StorageSlot.getStringSlot(store).value = value;
return ShortString.wrap(FALLBACK_SENTINEL);
}
}
/**
* @dev Decode a string that was encoded to `ShortString` or written to storage using {setWithFallback}.
*/
function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) {
if (ShortString.unwrap(value) != FALLBACK_SENTINEL) {
return toString(value);
} else {
return store;
}
}
/**
* @dev Return the length of a string that was encoded to `ShortString` or written to storage using
* {setWithFallback}.
*
* WARNING: This will return the "byte length" of the string. This may not reflect the actual length in terms of
* actual characters as the UTF-8 encoding of a single character can span over multiple bytes.
*/
function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) {
if (ShortString.unwrap(value) != FALLBACK_SENTINEL) {
return byteLength(value);
} else {
return bytes(store).length;
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5267.sol)
pragma solidity ^0.8.20;
interface IERC5267 {
/**
* @dev MAY be emitted to signal that the domain could have changed.
*/
event EIP712DomainChanged();
/**
* @dev returns the fields and values that describe the domain separator used by this contract for EIP-712
* signature.
*/
function eip712Domain()
external
view
returns (
bytes1 fields,
string memory name,
string memory version,
uint256 chainId,
address verifyingContract,
bytes32 salt,
uint256[] memory extensions
);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)
pragma solidity ^0.8.20;
import {Math} from "./math/Math.sol";
import {SignedMath} from "./math/SignedMath.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant HEX_DIGITS = "0123456789abcdef";
uint8 private constant ADDRESS_LENGTH = 20;
/**
* @dev The `value` string doesn't fit in the specified `length`.
*/
error StringsInsufficientHexLength(uint256 value, uint256 length);
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `int256` to its ASCII `string` decimal representation.
*/
function toStringSigned(int256 value) internal pure returns (string memory) {
return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
uint256 localValue = value;
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = HEX_DIGITS[localValue & 0xf];
localValue >>= 4;
}
if (localValue != 0) {
revert StringsInsufficientHexLength(value, length);
}
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal
* representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);
}
/**
* @dev Returns true if the two strings are equal.
*/
function equal(string memory a, string memory b) internal pure returns (bool) {
return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.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 ERC1967 implementation slot:
* ```solidity
* contract ERC1967 {
* 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;
* }
* }
* ```
*/
library StorageSlot {
struct AddressSlot {
address value;
}
struct BooleanSlot {
bool value;
}
struct Bytes32Slot {
bytes32 value;
}
struct Uint256Slot {
uint256 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) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `BooleanSlot` with member `value` located at `slot`.
*/
function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
*/
function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `Uint256Slot` with member `value` located at `slot`.
*/
function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `StringSlot` with member `value` located at `slot`.
*/
function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
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) {
/// @solidity memory-safe-assembly
assembly {
r.slot := store.slot
}
}
/**
* @dev Returns an `BytesSlot` with member `value` located at `slot`.
*/
function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
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) {
/// @solidity memory-safe-assembly
assembly {
r.slot := store.slot
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
/**
* @dev Muldiv operation overflow.
*/
error MathOverflowedMulDiv();
enum Rounding {
Floor, // Toward negative infinity
Ceil, // Toward positive infinity
Trunc, // Toward zero
Expand // Away from zero
}
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return 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.
return a / b;
}
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
* denominator == 0.
* @dev 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 {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0 = x * y; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 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 prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
if (denominator <= prod1) {
revert MathOverflowedMulDiv();
}
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, 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 {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
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^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// 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^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice 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) {
uint256 result = mulDiv(x, y, denominator);
if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
* towards zero.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice 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 + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2 of a positive value rounded towards zero.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @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 + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
}
}
/**
* @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 + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
}
}
/**
* @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 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @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 + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
}
}
/**
* @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;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard signed math utilities missing in the Solidity language.
*/
library SignedMath {
/**
* @dev Returns the largest of two signed numbers.
*/
function max(int256 a, int256 b) internal pure returns (int256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two signed numbers.
*/
function min(int256 a, int256 b) internal pure returns (int256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two signed numbers without overflow.
* The result is rounded towards zero.
*/
function average(int256 a, int256 b) internal pure returns (int256) {
// Formula from the book "Hacker's Delight"
int256 x = (a & b) + ((a ^ b) >> 1);
return x + (int256(uint256(x) >> 255) & (a ^ b));
}
/**
* @dev Returns the absolute unsigned value of a signed value.
*/
function abs(int256 n) internal pure returns (uint256) {
unchecked {
// must be unchecked in order to support `n = type(int256).min`
return uint256(n >= 0 ? n : -n);
}
}
}{
"remappings": [
"@openzeppelin-contracts/=dependencies/@openzeppelin-contracts-5.0.2/",
"@uniswap-v2-core/=dependencies/@uniswap-v2-core-1.0.1/contracts/",
"forge-std-1.9.2/=dependencies/forge-std-1.9.2/",
"forge-std/=lib/forge-std/src/"
],
"optimizer": {
"enabled": false,
"runs": 200
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "shanghai",
"viaIR": false,
"libraries": {}
}Contract ABI
API[{"inputs":[{"internalType":"uint256","name":"usedIndex","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"DebtExists","type":"error"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"ERC2612ExpiredSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC2612InvalidSigner","type":"error"},{"inputs":[],"name":"InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[],"name":"NotInitializer","type":"error"},{"inputs":[],"name":"NotStakingContract","type":"error"},{"inputs":[],"name":"NotTreasury","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"epoch","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"rebase","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"}],"name":"LogRebase","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"stakingContract","type":"address"}],"name":"LogStakingContractUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"epoch","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalSupply","type":"uint256"}],"name":"LogSupply","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"balanceForShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"debtor","type":"address"},{"internalType":"bool","name":"add","type":"bool"}],"name":"changeDebt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"debtBalances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"imbalance","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"fromGhst","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"idx","type":"uint256"}],"name":"getRebase","outputs":[{"components":[{"internalType":"uint256","name":"epoch","type":"uint256"},{"internalType":"uint256","name":"rebase","type":"uint256"},{"internalType":"uint256","name":"totalStakedBefore","type":"uint256"},{"internalType":"uint256","name":"totalStakedAfter","type":"uint256"},{"internalType":"uint256","name":"amountRebased","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"blockNumberOccured","type":"uint256"}],"internalType":"struct ISTNK.Rebase","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ghst","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"imbalance","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"index","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_staking","type":"address"},{"internalType":"address","name":"_treasury","type":"address"},{"internalType":"address","name":"_ghst","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supplyDelta","type":"uint256"},{"internalType":"uint256","name":"epoch","type":"uint256"}],"name":"rebase","outputs":[{"internalType":"uint256","name":"newTotalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rebases","outputs":[{"internalType":"uint256","name":"epoch","type":"uint256"},{"internalType":"uint256","name":"rebase","type":"uint256"},{"internalType":"uint256","name":"totalStakedBefore","type":"uint256"},{"internalType":"uint256","name":"totalStakedAfter","type":"uint256"},{"internalType":"uint256","name":"amountRebased","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"blockNumberOccured","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"sharesForBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"staking","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"toGhst","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
61018060405234801562000011575f80fd5b5060405162003b9038038062003b9083398181016040528101906200003791906200041a565b6040518060400160405280600681526020017f5374696e6b790000000000000000000000000000000000000000000000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f5374696e6b7900000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f53544e4b000000000000000000000000000000000000000000000000000000008152508160039081620001219190620006a5565b508060049081620001339190620006a5565b5050506200014c600583620002ba60201b90919060201c565b61012081815250506200016a600682620002ba60201b90919060201c565b6101408181525050818051906020012060e08181525050808051906020012061010081815250504660a08181525050620001a96200030f60201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250505050503360085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508061016081815250506611c37937e08000600a819055506611c37937e08000807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620002749190620007b6565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620002a191906200081a565b620002ad919062000854565b6009819055505062000a9e565b5f602083511015620002df57620002d7836200036b60201b60201c565b905062000309565b82620002f183620003d560201b60201c565b5f019081620003019190620006a5565b5060ff5f1b90505b92915050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60e05161010051463060405160200162000350959493929190620008f9565b60405160208183030381529060405280519060200120905090565b5f80829050601f81511115620003ba57826040517f305a27a9000000000000000000000000000000000000000000000000000000008152600401620003b19190620009de565b60405180910390fd5b805181620003c89062000a2f565b5f1c175f1b915050919050565b5f819050919050565b5f80fd5b5f819050919050565b620003f681620003e2565b811462000401575f80fd5b50565b5f815190506200041481620003eb565b92915050565b5f60208284031215620004325762000431620003de565b5b5f620004418482850162000404565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620004c657607f821691505b602082108103620004dc57620004db62000481565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000503565b6200054c868362000503565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6200058d620005876200058184620003e2565b62000564565b620003e2565b9050919050565b5f819050919050565b620005a8836200056d565b620005c0620005b78262000594565b8484546200050f565b825550505050565b5f90565b620005d6620005c8565b620005e38184846200059d565b505050565b5b818110156200060a57620005fe5f82620005cc565b600181019050620005e9565b5050565b601f82111562000659576200062381620004e2565b6200062e84620004f4565b810160208510156200063e578190505b620006566200064d85620004f4565b830182620005e8565b50505b505050565b5f82821c905092915050565b5f6200067b5f19846008026200065e565b1980831691505092915050565b5f6200069583836200066a565b9150826002028217905092915050565b620006b0826200044a565b67ffffffffffffffff811115620006cc57620006cb62000454565b5b620006d88254620004ae565b620006e58282856200060e565b5f60209050601f8311600181146200071b575f841562000706578287015190505b62000712858262000688565b86555062000781565b601f1984166200072b86620004e2565b5f5b8281101562000754578489015182556001820191506020850194506020810190506200072d565b8683101562000774578489015162000770601f8916826200066a565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f620007c282620003e2565b9150620007cf83620003e2565b925082620007e257620007e162000789565b5b828206905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6200082682620003e2565b91506200083383620003e2565b92508282039050818111156200084e576200084d620007ed565b5b92915050565b5f6200086082620003e2565b91506200086d83620003e2565b92508262000880576200087f62000789565b5b828204905092915050565b5f819050919050565b6200089f816200088b565b82525050565b620008b081620003e2565b82525050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620008e182620008b6565b9050919050565b620008f381620008d5565b82525050565b5f60a0820190506200090e5f83018862000894565b6200091d602083018762000894565b6200092c604083018662000894565b6200093b6060830185620008a5565b6200094a6080830184620008e8565b9695505050505050565b5f82825260208201905092915050565b5f5b838110156200098357808201518184015260208101905062000966565b5f8484015250505050565b5f601f19601f8301169050919050565b5f620009aa826200044a565b620009b6818562000954565b9350620009c881856020860162000964565b620009d3816200098e565b840191505092915050565b5f6020820190508181035f830152620009f881846200099e565b905092915050565b5f81519050919050565b5f819050602082019050919050565b5f62000a2682516200088b565b80915050919050565b5f62000a3b8262000a00565b8262000a478462000a0a565b905062000a548162000a19565b9250602082101562000a975762000a927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8360200360080262000503565b831692505b5050919050565b60805160a05160c05160e0516101005161012051610140516101605161309662000afa5f395f61097f01525f611e9b01525f611e6001525f611fbe01525f611f9d01525f611d5e01525f611db401525f611ddd01526130965ff3fe608060405234801561000f575f80fd5b50600436106101d8575f3560e01c806373c69eb711610102578063a457c2d7116100a0578063c4ef1c4c1161006f578063c4ef1c4c146105ec578063d505accf1461061c578063dd62ed3e14610638578063ef2374f214610668576101d8565b8063a457c2d714610554578063a9059cbb14610584578063ae5c6cd3146105b4578063c0c53b8b146105d0576101d8565b806384af40b9116100dc57806384af40b9146104c457806384b0196e146104f45780639358928b1461051857806395d89b4114610536576101d8565b806373c69eb71461042e578063775646ed146104645780637ecebe0014610494576101d8565b8063313ce5671161017a5780634cf088d9116101495780634cf088d9146103925780635cce3711146103b057806361d027b3146103e057806370a08231146103fe576101d8565b8063313ce567146102f657806335dd0c4d146103145780633644e515146103445780633950935114610362576101d8565b806318160ddd116101b657806318160ddd1461025a5780631b0ee4a61461027857806323b872dd146102a85780632986c0e5146102d8576101d8565b8063058ecdb4146101dc57806306fdde031461020c578063095ea7b31461022a575b5f80fd5b6101f660048036038101906101f19190612471565b610686565b60405161020391906124be565b60405180910390f35b610214610890565b6040516102219190612561565b60405180910390f35b610244600480360381019061023f91906125db565b610920565b6040516102519190612633565b60405180910390f35b610262610938565b60405161026f91906124be565b60405180910390f35b610292600480360381019061028d919061264c565b610941565b60405161029f91906124be565b60405180910390f35b6102c260048036038101906102bd9190612677565b610957565b6040516102cf9190612633565b60405180910390f35b6102e0610979565b6040516102ed91906124be565b60405180910390f35b6102fe6109a8565b60405161030b91906126e2565b60405180910390f35b61032e6004803603810190610329919061264c565b6109b0565b60405161033b91906124be565b60405180910390f35b61034c610a51565b6040516103599190612713565b60405180910390f35b61037c600480360381019061037791906125db565b610a5f565b6040516103899190612633565b60405180910390f35b61039a610afd565b6040516103a7919061273b565b60405180910390f35b6103ca60048036038101906103c5919061264c565b610b22565b6040516103d791906124be565b60405180910390f35b6103e8610bc3565b6040516103f5919061273b565b60405180910390f35b61041860048036038101906104139190612754565b610be8565b60405161042591906124be565b60405180910390f35b6104486004803603810190610443919061264c565b610c3b565b60405161045b979695949392919061277f565b60405180910390f35b61047e6004803603810190610479919061264c565b610c88565b60405161048b91906124be565b60405180910390f35b6104ae60048036038101906104a99190612754565b610c9e565b6040516104bb91906124be565b60405180910390f35b6104de60048036038101906104d9919061264c565b610caf565b6040516104eb9190612887565b60405180910390f35b6104fc610d2e565b60405161050f9796959493929190612982565b60405180910390f35b610520610dd3565b60405161052d91906124be565b60405180910390f35b61053e610fd8565b60405161054b9190612561565b60405180910390f35b61056e600480360381019061056991906125db565b611068565b60405161057b9190612633565b60405180910390f35b61059e600480360381019061059991906125db565b611119565b6040516105ab9190612633565b60405180910390f35b6105ce60048036038101906105c99190612a2e565b61112f565b005b6105ea60048036038101906105e59190612a7e565b6112a5565b005b61060660048036038101906106019190612754565b61156d565b60405161061391906124be565b60405180910390f35b61063660048036038101906106319190612b22565b611582565b005b610652600480360381019061064d9190612bbf565b6116c7565b60405161065f91906124be565b60405180910390f35b610670611749565b60405161067d919061273b565b60405180910390f35b5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461070d576040517f135420fb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f610716610dd3565b90505f84036107a257600a549150827f0417b340e646d4be71f9b2da63b5c3c69bc9cfa069f0e0db4756271886130bf48360405161075491906124be565b60405180910390a2827f6012dbce857565c4a40974aa5de8373a761fc429077ef0c8c8611d1e20d63fb25f610787610979565b604051610795929190612c3f565b60405180910390a26107d7565b5f8111156107c65780600a54856107b99190612c93565b6107c39190612d01565b93505b83600a546107d49190612d31565b91505b6fffffffffffffffffffffffffffffffff8016821115610807576fffffffffffffffffffffffffffffffff801691505b81600a81905550816611c37937e080007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6108429190612d64565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61086d9190612d94565b6108779190612d01565b6009819055506108898183868661176e565b5092915050565b60606003805461089f90612df4565b80601f01602080910402602001604051908101604052809291908181526020018280546108cb90612df4565b80156109165780601f106108ed57610100808354040283529160200191610916565b820191905f5260205f20905b8154815290600101906020018083116108f957829003601f168201915b5050505050905090565b5f61092e33848460016118eb565b6001905092915050565b5f600a54905090565b5f600954826109509190612d01565b9050919050565b5f610963843384611aba565b61096e848484611b4c565b600190509392505050565b5f6109a37f0000000000000000000000000000000000000000000000000000000000000000610941565b905090565b5f6009905090565b5f600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a8248768836040518263ffffffff1660e01b8152600401610a0b91906124be565b602060405180830381865afa158015610a26573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a4a9190612e38565b9050919050565b5f610a5a611d5b565b905090565b5f60115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205482610ae49190612d31565b9150610af333848460016118eb565b6001905092915050565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166366a5236c836040518263ffffffff1660e01b8152600401610b7d91906124be565b602060405180830381865afa158015610b98573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bbc9190612e38565b9050919050565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60095460105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610c349190612d01565b9050919050565b600e8181548110610c4a575f80fd5b905f5260205f2090600702015f91509050805f0154908060010154908060020154908060030154908060040154908060050154908060060154905087565b5f60095482610c979190612c93565b9050919050565b5f610ca882611e11565b9050919050565b610cb7612404565b600e8281548110610ccb57610cca612e63565b5b905f5260205f2090600702016040518060e00160405290815f820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152602001600582015481526020016006820154815250509050919050565b5f6060805f805f6060610d3f611e57565b610d47611e92565b46305f801b5f67ffffffffffffffff811115610d6657610d65612e90565b5b604051908082528060200260200182016040528015610d945781602001602082028036833780820191505090505b507f0f00000000000000000000000000000000000000000000000000000000000000959493929190965096509650965096509650965090919293949596565b5f610dfe600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610be8565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663201386416040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e68573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e8c9190612e38565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a8248768600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f33573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f579190612e38565b6040518263ffffffff1660e01b8152600401610f7391906124be565b602060405180830381865afa158015610f8e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fb29190612e38565b600a54610fbf9190612d31565b610fc99190612d31565b610fd39190612d94565b905090565b606060048054610fe790612df4565b80601f016020809104026020016040519081016040528092919081815260200182805461101390612df4565b801561105e5780601f106110355761010080835404028352916020019161105e565b820191905f5260205f20905b81548152906001019060200180831161104157829003601f168201915b5050505050905090565b5f8060115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508083106110f2575f6110ff565b82816110fe9190612d94565b5b925061110e33858560016118eb565b600191505092915050565b5f611125338484611b4c565b6001905092915050565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111b5576040517fb90cdbb100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508161120c5783816112079190612d94565b611219565b83816112189190612d31565b5b905061122483610be8565b81111561125d576040517ff4d678b800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555050505050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461132b576040517fceeb95b300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506611c37937e080007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61141e9190612d64565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6114499190612d94565b60105f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600a5460405161152991906124be565b60405180910390a37f817c653428858ed536dc085c5d8273734c517b55de44b55f5c5877a75e3373a183604051611560919061273b565b60405180910390a1505050565b600f602052805f5260405f205f915090505481565b834211156115c757836040517f627913020000000000000000000000000000000000000000000000000000000081526004016115be91906124be565b60405180910390fd5b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886115f58c611ecd565b8960405160200161160b96959493929190612ebd565b6040516020818303038152906040528051906020012090505f61162d82611f20565b90505f61163c82878787611f39565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116b057808a6040517f4b800e460000000000000000000000000000000000000000000000000000000081526004016116a7929190612f1c565b60405180910390fd5b6116bb8a8a8a611f67565b50505050505050505050565b5f60115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80851161179c577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6117bc565b84670de0b6b3a7640000846117b19190612c93565b6117bb9190612d01565b5b90505f6117c7610979565b9050600e6040518060e001604052808581526020018481526020018881526020016117f0610dd3565b815260200186815260200183815260200143815250908060018154018082558091505060019003905f5260205f2090600702015f909190919091505f820151815f01556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c082015181600601555050827f0417b340e646d4be71f9b2da63b5c3c69bc9cfa069f0e0db4756271886130bf4866040516118a191906124be565b60405180910390a2827f6012dbce857565c4a40974aa5de8373a761fc429077ef0c8c8611d1e20d63fb283836040516118db929190612f43565b60405180910390a2505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361195b575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611952919061273b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119cb575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016119c2919061273b565b60405180910390fd5b8160115f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611ab4578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611aab91906124be565b60405180910390a35b50505050565b5f611ac584846116c7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611b465781811015611b37578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611b2e93929190612f6a565b60405180910390fd5b611b4584848484035f6118eb565b5b50505050565b5f60095482611b5b9190612c93565b90508060105f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611ba69190612d94565b60105f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508060105f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611c309190612d31565b60105f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611cb885610be8565b1015611cf0576040517f7bd309d000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d4d91906124be565b60405180910390a350505050565b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16148015611dd657507f000000000000000000000000000000000000000000000000000000000000000046145b15611e03577f00000000000000000000000000000000000000000000000000000000000000009050611e0e565b611e0b611f79565b90505b90565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060611e8d60057f000000000000000000000000000000000000000000000000000000000000000061200e90919063ffffffff16565b905090565b6060611ec860067f000000000000000000000000000000000000000000000000000000000000000061200e90919063ffffffff16565b905090565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815480929190600101919050559050919050565b5f611f32611f2c611d5b565b836120bb565b9050919050565b5f805f80611f49888888886120fb565b925092509250611f5982826121e2565b829350505050949350505050565b611f7483838360016118eb565b505050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000004630604051602001611ff3959493929190612f9f565b60405160208183030381529060405280519060200120905090565b606060ff5f1b831461202a5761202383612344565b90506120b5565b81805461203690612df4565b80601f016020809104026020016040519081016040528092919081815260200182805461206290612df4565b80156120ad5780601f10612084576101008083540402835291602001916120ad565b820191905f5260205f20905b81548152906001019060200180831161209057829003601f168201915b505050505090505b92915050565b5f6040517f190100000000000000000000000000000000000000000000000000000000000081528360028201528260228201526042812091505092915050565b5f805f7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0845f1c1115612137575f6003859250925092506121d8565b5f6001888888886040515f815260200160405260405161215a9493929190612ff0565b6020604051602081039080840390855afa15801561217a573d5f803e3d5ffd5b5050506020604051035190505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036121cb575f60015f801b935093509350506121d8565b805f805f1b935093509350505b9450945094915050565b5f60038111156121f5576121f4613033565b5b82600381111561220857612207613033565b5b0315612340576001600381111561222257612221613033565b5b82600381111561223557612234613033565b5b0361226c576040517ff645eedf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600260038111156122805761227f613033565b5b82600381111561229357612292613033565b5b036122d757805f1c6040517ffce698f70000000000000000000000000000000000000000000000000000000081526004016122ce91906124be565b60405180910390fd5b6003808111156122ea576122e9613033565b5b8260038111156122fd576122fc613033565b5b0361233f57806040517fd78bce0c0000000000000000000000000000000000000000000000000000000081526004016123369190612713565b60405180910390fd5b5b5050565b60605f612350836123b6565b90505f602067ffffffffffffffff81111561236e5761236d612e90565b5b6040519080825280601f01601f1916602001820160405280156123a05781602001600182028036833780820191505090505b5090508181528360208201528092505050919050565b5f8060ff835f1c169050601f8111156123fb576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80915050919050565b6040518060e001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b5f80fd5b5f819050919050565b6124508161243e565b811461245a575f80fd5b50565b5f8135905061246b81612447565b92915050565b5f80604083850312156124875761248661243a565b5b5f6124948582860161245d565b92505060206124a58582860161245d565b9150509250929050565b6124b88161243e565b82525050565b5f6020820190506124d15f8301846124af565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561250e5780820151818401526020810190506124f3565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612533826124d7565b61253d81856124e1565b935061254d8185602086016124f1565b61255681612519565b840191505092915050565b5f6020820190508181035f8301526125798184612529565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6125aa82612581565b9050919050565b6125ba816125a0565b81146125c4575f80fd5b50565b5f813590506125d5816125b1565b92915050565b5f80604083850312156125f1576125f061243a565b5b5f6125fe858286016125c7565b925050602061260f8582860161245d565b9150509250929050565b5f8115159050919050565b61262d81612619565b82525050565b5f6020820190506126465f830184612624565b92915050565b5f602082840312156126615761266061243a565b5b5f61266e8482850161245d565b91505092915050565b5f805f6060848603121561268e5761268d61243a565b5b5f61269b868287016125c7565b93505060206126ac868287016125c7565b92505060406126bd8682870161245d565b9150509250925092565b5f60ff82169050919050565b6126dc816126c7565b82525050565b5f6020820190506126f55f8301846126d3565b92915050565b5f819050919050565b61270d816126fb565b82525050565b5f6020820190506127265f830184612704565b92915050565b612735816125a0565b82525050565b5f60208201905061274e5f83018461272c565b92915050565b5f602082840312156127695761276861243a565b5b5f612776848285016125c7565b91505092915050565b5f60e0820190506127925f83018a6124af565b61279f60208301896124af565b6127ac60408301886124af565b6127b960608301876124af565b6127c660808301866124af565b6127d360a08301856124af565b6127e060c08301846124af565b98975050505050505050565b6127f58161243e565b82525050565b60e082015f82015161280f5f8501826127ec565b50602082015161282260208501826127ec565b50604082015161283560408501826127ec565b50606082015161284860608501826127ec565b50608082015161285b60808501826127ec565b5060a082015161286e60a08501826127ec565b5060c082015161288160c08501826127ec565b50505050565b5f60e08201905061289a5f8301846127fb565b92915050565b5f7fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b6128d4816128a0565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b5f61290e83836127ec565b60208301905092915050565b5f602082019050919050565b5f612930826128da565b61293a81856128e4565b9350612945836128f4565b805f5b8381101561297557815161295c8882612903565b97506129678361291a565b925050600181019050612948565b5085935050505092915050565b5f60e0820190506129955f83018a6128cb565b81810360208301526129a78189612529565b905081810360408301526129bb8188612529565b90506129ca60608301876124af565b6129d7608083018661272c565b6129e460a0830185612704565b81810360c08301526129f68184612926565b905098975050505050505050565b612a0d81612619565b8114612a17575f80fd5b50565b5f81359050612a2881612a04565b92915050565b5f805f60608486031215612a4557612a4461243a565b5b5f612a528682870161245d565b9350506020612a63868287016125c7565b9250506040612a7486828701612a1a565b9150509250925092565b5f805f60608486031215612a9557612a9461243a565b5b5f612aa2868287016125c7565b9350506020612ab3868287016125c7565b9250506040612ac4868287016125c7565b9150509250925092565b612ad7816126c7565b8114612ae1575f80fd5b50565b5f81359050612af281612ace565b92915050565b612b01816126fb565b8114612b0b575f80fd5b50565b5f81359050612b1c81612af8565b92915050565b5f805f805f805f60e0888a031215612b3d57612b3c61243a565b5b5f612b4a8a828b016125c7565b9750506020612b5b8a828b016125c7565b9650506040612b6c8a828b0161245d565b9550506060612b7d8a828b0161245d565b9450506080612b8e8a828b01612ae4565b93505060a0612b9f8a828b01612b0e565b92505060c0612bb08a828b01612b0e565b91505092959891949750929550565b5f8060408385031215612bd557612bd461243a565b5b5f612be2858286016125c7565b9250506020612bf3858286016125c7565b9150509250929050565b5f819050919050565b5f819050919050565b5f612c29612c24612c1f84612bfd565b612c06565b61243e565b9050919050565b612c3981612c0f565b82525050565b5f604082019050612c525f830185612c30565b612c5f60208301846124af565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612c9d8261243e565b9150612ca88361243e565b9250828202612cb68161243e565b91508282048414831517612ccd57612ccc612c66565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612d0b8261243e565b9150612d168361243e565b925082612d2657612d25612cd4565b5b828204905092915050565b5f612d3b8261243e565b9150612d468361243e565b9250828201905080821115612d5e57612d5d612c66565b5b92915050565b5f612d6e8261243e565b9150612d798361243e565b925082612d8957612d88612cd4565b5b828206905092915050565b5f612d9e8261243e565b9150612da98361243e565b9250828203905081811115612dc157612dc0612c66565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612e0b57607f821691505b602082108103612e1e57612e1d612dc7565b5b50919050565b5f81519050612e3281612447565b92915050565b5f60208284031215612e4d57612e4c61243a565b5b5f612e5a84828501612e24565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f60c082019050612ed05f830189612704565b612edd602083018861272c565b612eea604083018761272c565b612ef760608301866124af565b612f0460808301856124af565b612f1160a08301846124af565b979650505050505050565b5f604082019050612f2f5f83018561272c565b612f3c602083018461272c565b9392505050565b5f604082019050612f565f8301856124af565b612f6360208301846124af565b9392505050565b5f606082019050612f7d5f83018661272c565b612f8a60208301856124af565b612f9760408301846124af565b949350505050565b5f60a082019050612fb25f830188612704565b612fbf6020830187612704565b612fcc6040830186612704565b612fd960608301856124af565b612fe6608083018461272c565b9695505050505050565b5f6080820190506130035f830187612704565b61301060208301866126d3565b61301d6040830185612704565b61302a6060830184612704565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffdfea2646970667358221220c9fab193d4b30f84965b7617c8e1fa53ff1aeb2308451286b7435b0433a82bb964736f6c634300081400330000035afe535795e90af0f4ca41d811a46d323282334b86e70f6e31dcfb5800
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101d8575f3560e01c806373c69eb711610102578063a457c2d7116100a0578063c4ef1c4c1161006f578063c4ef1c4c146105ec578063d505accf1461061c578063dd62ed3e14610638578063ef2374f214610668576101d8565b8063a457c2d714610554578063a9059cbb14610584578063ae5c6cd3146105b4578063c0c53b8b146105d0576101d8565b806384af40b9116100dc57806384af40b9146104c457806384b0196e146104f45780639358928b1461051857806395d89b4114610536576101d8565b806373c69eb71461042e578063775646ed146104645780637ecebe0014610494576101d8565b8063313ce5671161017a5780634cf088d9116101495780634cf088d9146103925780635cce3711146103b057806361d027b3146103e057806370a08231146103fe576101d8565b8063313ce567146102f657806335dd0c4d146103145780633644e515146103445780633950935114610362576101d8565b806318160ddd116101b657806318160ddd1461025a5780631b0ee4a61461027857806323b872dd146102a85780632986c0e5146102d8576101d8565b8063058ecdb4146101dc57806306fdde031461020c578063095ea7b31461022a575b5f80fd5b6101f660048036038101906101f19190612471565b610686565b60405161020391906124be565b60405180910390f35b610214610890565b6040516102219190612561565b60405180910390f35b610244600480360381019061023f91906125db565b610920565b6040516102519190612633565b60405180910390f35b610262610938565b60405161026f91906124be565b60405180910390f35b610292600480360381019061028d919061264c565b610941565b60405161029f91906124be565b60405180910390f35b6102c260048036038101906102bd9190612677565b610957565b6040516102cf9190612633565b60405180910390f35b6102e0610979565b6040516102ed91906124be565b60405180910390f35b6102fe6109a8565b60405161030b91906126e2565b60405180910390f35b61032e6004803603810190610329919061264c565b6109b0565b60405161033b91906124be565b60405180910390f35b61034c610a51565b6040516103599190612713565b60405180910390f35b61037c600480360381019061037791906125db565b610a5f565b6040516103899190612633565b60405180910390f35b61039a610afd565b6040516103a7919061273b565b60405180910390f35b6103ca60048036038101906103c5919061264c565b610b22565b6040516103d791906124be565b60405180910390f35b6103e8610bc3565b6040516103f5919061273b565b60405180910390f35b61041860048036038101906104139190612754565b610be8565b60405161042591906124be565b60405180910390f35b6104486004803603810190610443919061264c565b610c3b565b60405161045b979695949392919061277f565b60405180910390f35b61047e6004803603810190610479919061264c565b610c88565b60405161048b91906124be565b60405180910390f35b6104ae60048036038101906104a99190612754565b610c9e565b6040516104bb91906124be565b60405180910390f35b6104de60048036038101906104d9919061264c565b610caf565b6040516104eb9190612887565b60405180910390f35b6104fc610d2e565b60405161050f9796959493929190612982565b60405180910390f35b610520610dd3565b60405161052d91906124be565b60405180910390f35b61053e610fd8565b60405161054b9190612561565b60405180910390f35b61056e600480360381019061056991906125db565b611068565b60405161057b9190612633565b60405180910390f35b61059e600480360381019061059991906125db565b611119565b6040516105ab9190612633565b60405180910390f35b6105ce60048036038101906105c99190612a2e565b61112f565b005b6105ea60048036038101906105e59190612a7e565b6112a5565b005b61060660048036038101906106019190612754565b61156d565b60405161061391906124be565b60405180910390f35b61063660048036038101906106319190612b22565b611582565b005b610652600480360381019061064d9190612bbf565b6116c7565b60405161065f91906124be565b60405180910390f35b610670611749565b60405161067d919061273b565b60405180910390f35b5f600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461070d576040517f135420fb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f610716610dd3565b90505f84036107a257600a549150827f0417b340e646d4be71f9b2da63b5c3c69bc9cfa069f0e0db4756271886130bf48360405161075491906124be565b60405180910390a2827f6012dbce857565c4a40974aa5de8373a761fc429077ef0c8c8611d1e20d63fb25f610787610979565b604051610795929190612c3f565b60405180910390a26107d7565b5f8111156107c65780600a54856107b99190612c93565b6107c39190612d01565b93505b83600a546107d49190612d31565b91505b6fffffffffffffffffffffffffffffffff8016821115610807576fffffffffffffffffffffffffffffffff801691505b81600a81905550816611c37937e080007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6108429190612d64565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61086d9190612d94565b6108779190612d01565b6009819055506108898183868661176e565b5092915050565b60606003805461089f90612df4565b80601f01602080910402602001604051908101604052809291908181526020018280546108cb90612df4565b80156109165780601f106108ed57610100808354040283529160200191610916565b820191905f5260205f20905b8154815290600101906020018083116108f957829003601f168201915b5050505050905090565b5f61092e33848460016118eb565b6001905092915050565b5f600a54905090565b5f600954826109509190612d01565b9050919050565b5f610963843384611aba565b61096e848484611b4c565b600190509392505050565b5f6109a37f0000035afe535795e90af0f4ca41d811a46d323282334b86e70f6e31dcfb5800610941565b905090565b5f6009905090565b5f600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a8248768836040518263ffffffff1660e01b8152600401610a0b91906124be565b602060405180830381865afa158015610a26573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a4a9190612e38565b9050919050565b5f610a5a611d5b565b905090565b5f60115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205482610ae49190612d31565b9150610af333848460016118eb565b6001905092915050565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166366a5236c836040518263ffffffff1660e01b8152600401610b7d91906124be565b602060405180830381865afa158015610b98573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bbc9190612e38565b9050919050565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60095460105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610c349190612d01565b9050919050565b600e8181548110610c4a575f80fd5b905f5260205f2090600702015f91509050805f0154908060010154908060020154908060030154908060040154908060050154908060060154905087565b5f60095482610c979190612c93565b9050919050565b5f610ca882611e11565b9050919050565b610cb7612404565b600e8281548110610ccb57610cca612e63565b5b905f5260205f2090600702016040518060e00160405290815f820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152602001600582015481526020016006820154815250509050919050565b5f6060805f805f6060610d3f611e57565b610d47611e92565b46305f801b5f67ffffffffffffffff811115610d6657610d65612e90565b5b604051908082528060200260200182016040528015610d945781602001602082028036833780820191505090505b507f0f00000000000000000000000000000000000000000000000000000000000000959493929190965096509650965096509650965090919293949596565b5f610dfe600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610be8565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663201386416040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e68573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e8c9190612e38565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a8248768600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f33573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f579190612e38565b6040518263ffffffff1660e01b8152600401610f7391906124be565b602060405180830381865afa158015610f8e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fb29190612e38565b600a54610fbf9190612d31565b610fc99190612d31565b610fd39190612d94565b905090565b606060048054610fe790612df4565b80601f016020809104026020016040519081016040528092919081815260200182805461101390612df4565b801561105e5780601f106110355761010080835404028352916020019161105e565b820191905f5260205f20905b81548152906001019060200180831161104157829003601f168201915b5050505050905090565b5f8060115f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508083106110f2575f6110ff565b82816110fe9190612d94565b5b925061110e33858560016118eb565b600191505092915050565b5f611125338484611b4c565b6001905092915050565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111b5576040517fb90cdbb100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508161120c5783816112079190612d94565b611219565b83816112189190612d31565b5b905061122483610be8565b81111561125d576040517ff4d678b800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555050505050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461132b576040517fceeb95b300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506611c37937e080007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61141e9190612d64565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6114499190612d94565b60105f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600a5460405161152991906124be565b60405180910390a37f817c653428858ed536dc085c5d8273734c517b55de44b55f5c5877a75e3373a183604051611560919061273b565b60405180910390a1505050565b600f602052805f5260405f205f915090505481565b834211156115c757836040517f627913020000000000000000000000000000000000000000000000000000000081526004016115be91906124be565b60405180910390fd5b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886115f58c611ecd565b8960405160200161160b96959493929190612ebd565b6040516020818303038152906040528051906020012090505f61162d82611f20565b90505f61163c82878787611f39565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116b057808a6040517f4b800e460000000000000000000000000000000000000000000000000000000081526004016116a7929190612f1c565b60405180910390fd5b6116bb8a8a8a611f67565b50505050505050505050565b5f60115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f80851161179c577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6117bc565b84670de0b6b3a7640000846117b19190612c93565b6117bb9190612d01565b5b90505f6117c7610979565b9050600e6040518060e001604052808581526020018481526020018881526020016117f0610dd3565b815260200186815260200183815260200143815250908060018154018082558091505060019003905f5260205f2090600702015f909190919091505f820151815f01556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c082015181600601555050827f0417b340e646d4be71f9b2da63b5c3c69bc9cfa069f0e0db4756271886130bf4866040516118a191906124be565b60405180910390a2827f6012dbce857565c4a40974aa5de8373a761fc429077ef0c8c8611d1e20d63fb283836040516118db929190612f43565b60405180910390a2505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361195b575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611952919061273b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119cb575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016119c2919061273b565b60405180910390fd5b8160115f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611ab4578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611aab91906124be565b60405180910390a35b50505050565b5f611ac584846116c7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611b465781811015611b37578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611b2e93929190612f6a565b60405180910390fd5b611b4584848484035f6118eb565b5b50505050565b5f60095482611b5b9190612c93565b90508060105f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611ba69190612d94565b60105f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508060105f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611c309190612d31565b60105f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611cb885610be8565b1015611cf0576040517f7bd309d000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d4d91906124be565b60405180910390a350505050565b5f7f00000000000000000000000084060da636f5a83f2668ad238f09f8c667a1ec8b73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16148015611dd657507f0000000000000000000000000000000000000000000000000000000000aa36a746145b15611e03577ffcd059425873f05abc0e57191fb7b5b1d4068d18e32d914a93dba902e21c76f69050611e0e565b611e0b611f79565b90505b90565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060611e8d60057f5374696e6b79000000000000000000000000000000000000000000000000000661200e90919063ffffffff16565b905090565b6060611ec860067f310000000000000000000000000000000000000000000000000000000000000161200e90919063ffffffff16565b905090565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815480929190600101919050559050919050565b5f611f32611f2c611d5b565b836120bb565b9050919050565b5f805f80611f49888888886120fb565b925092509250611f5982826121e2565b829350505050949350505050565b611f7483838360016118eb565b505050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7fc41737f9d0ac0181801635b167f637acc13e66cf5dffbff4f85380fd392457957fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc64630604051602001611ff3959493929190612f9f565b60405160208183030381529060405280519060200120905090565b606060ff5f1b831461202a5761202383612344565b90506120b5565b81805461203690612df4565b80601f016020809104026020016040519081016040528092919081815260200182805461206290612df4565b80156120ad5780601f10612084576101008083540402835291602001916120ad565b820191905f5260205f20905b81548152906001019060200180831161209057829003601f168201915b505050505090505b92915050565b5f6040517f190100000000000000000000000000000000000000000000000000000000000081528360028201528260228201526042812091505092915050565b5f805f7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0845f1c1115612137575f6003859250925092506121d8565b5f6001888888886040515f815260200160405260405161215a9493929190612ff0565b6020604051602081039080840390855afa15801561217a573d5f803e3d5ffd5b5050506020604051035190505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036121cb575f60015f801b935093509350506121d8565b805f805f1b935093509350505b9450945094915050565b5f60038111156121f5576121f4613033565b5b82600381111561220857612207613033565b5b0315612340576001600381111561222257612221613033565b5b82600381111561223557612234613033565b5b0361226c576040517ff645eedf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600260038111156122805761227f613033565b5b82600381111561229357612292613033565b5b036122d757805f1c6040517ffce698f70000000000000000000000000000000000000000000000000000000081526004016122ce91906124be565b60405180910390fd5b6003808111156122ea576122e9613033565b5b8260038111156122fd576122fc613033565b5b0361233f57806040517fd78bce0c0000000000000000000000000000000000000000000000000000000081526004016123369190612713565b60405180910390fd5b5b5050565b60605f612350836123b6565b90505f602067ffffffffffffffff81111561236e5761236d612e90565b5b6040519080825280601f01601f1916602001820160405280156123a05781602001600182028036833780820191505090505b5090508181528360208201528092505050919050565b5f8060ff835f1c169050601f8111156123fb576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80915050919050565b6040518060e001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b5f80fd5b5f819050919050565b6124508161243e565b811461245a575f80fd5b50565b5f8135905061246b81612447565b92915050565b5f80604083850312156124875761248661243a565b5b5f6124948582860161245d565b92505060206124a58582860161245d565b9150509250929050565b6124b88161243e565b82525050565b5f6020820190506124d15f8301846124af565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561250e5780820151818401526020810190506124f3565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612533826124d7565b61253d81856124e1565b935061254d8185602086016124f1565b61255681612519565b840191505092915050565b5f6020820190508181035f8301526125798184612529565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6125aa82612581565b9050919050565b6125ba816125a0565b81146125c4575f80fd5b50565b5f813590506125d5816125b1565b92915050565b5f80604083850312156125f1576125f061243a565b5b5f6125fe858286016125c7565b925050602061260f8582860161245d565b9150509250929050565b5f8115159050919050565b61262d81612619565b82525050565b5f6020820190506126465f830184612624565b92915050565b5f602082840312156126615761266061243a565b5b5f61266e8482850161245d565b91505092915050565b5f805f6060848603121561268e5761268d61243a565b5b5f61269b868287016125c7565b93505060206126ac868287016125c7565b92505060406126bd8682870161245d565b9150509250925092565b5f60ff82169050919050565b6126dc816126c7565b82525050565b5f6020820190506126f55f8301846126d3565b92915050565b5f819050919050565b61270d816126fb565b82525050565b5f6020820190506127265f830184612704565b92915050565b612735816125a0565b82525050565b5f60208201905061274e5f83018461272c565b92915050565b5f602082840312156127695761276861243a565b5b5f612776848285016125c7565b91505092915050565b5f60e0820190506127925f83018a6124af565b61279f60208301896124af565b6127ac60408301886124af565b6127b960608301876124af565b6127c660808301866124af565b6127d360a08301856124af565b6127e060c08301846124af565b98975050505050505050565b6127f58161243e565b82525050565b60e082015f82015161280f5f8501826127ec565b50602082015161282260208501826127ec565b50604082015161283560408501826127ec565b50606082015161284860608501826127ec565b50608082015161285b60808501826127ec565b5060a082015161286e60a08501826127ec565b5060c082015161288160c08501826127ec565b50505050565b5f60e08201905061289a5f8301846127fb565b92915050565b5f7fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b6128d4816128a0565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b5f61290e83836127ec565b60208301905092915050565b5f602082019050919050565b5f612930826128da565b61293a81856128e4565b9350612945836128f4565b805f5b8381101561297557815161295c8882612903565b97506129678361291a565b925050600181019050612948565b5085935050505092915050565b5f60e0820190506129955f83018a6128cb565b81810360208301526129a78189612529565b905081810360408301526129bb8188612529565b90506129ca60608301876124af565b6129d7608083018661272c565b6129e460a0830185612704565b81810360c08301526129f68184612926565b905098975050505050505050565b612a0d81612619565b8114612a17575f80fd5b50565b5f81359050612a2881612a04565b92915050565b5f805f60608486031215612a4557612a4461243a565b5b5f612a528682870161245d565b9350506020612a63868287016125c7565b9250506040612a7486828701612a1a565b9150509250925092565b5f805f60608486031215612a9557612a9461243a565b5b5f612aa2868287016125c7565b9350506020612ab3868287016125c7565b9250506040612ac4868287016125c7565b9150509250925092565b612ad7816126c7565b8114612ae1575f80fd5b50565b5f81359050612af281612ace565b92915050565b612b01816126fb565b8114612b0b575f80fd5b50565b5f81359050612b1c81612af8565b92915050565b5f805f805f805f60e0888a031215612b3d57612b3c61243a565b5b5f612b4a8a828b016125c7565b9750506020612b5b8a828b016125c7565b9650506040612b6c8a828b0161245d565b9550506060612b7d8a828b0161245d565b9450506080612b8e8a828b01612ae4565b93505060a0612b9f8a828b01612b0e565b92505060c0612bb08a828b01612b0e565b91505092959891949750929550565b5f8060408385031215612bd557612bd461243a565b5b5f612be2858286016125c7565b9250506020612bf3858286016125c7565b9150509250929050565b5f819050919050565b5f819050919050565b5f612c29612c24612c1f84612bfd565b612c06565b61243e565b9050919050565b612c3981612c0f565b82525050565b5f604082019050612c525f830185612c30565b612c5f60208301846124af565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612c9d8261243e565b9150612ca88361243e565b9250828202612cb68161243e565b91508282048414831517612ccd57612ccc612c66565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612d0b8261243e565b9150612d168361243e565b925082612d2657612d25612cd4565b5b828204905092915050565b5f612d3b8261243e565b9150612d468361243e565b9250828201905080821115612d5e57612d5d612c66565b5b92915050565b5f612d6e8261243e565b9150612d798361243e565b925082612d8957612d88612cd4565b5b828206905092915050565b5f612d9e8261243e565b9150612da98361243e565b9250828203905081811115612dc157612dc0612c66565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612e0b57607f821691505b602082108103612e1e57612e1d612dc7565b5b50919050565b5f81519050612e3281612447565b92915050565b5f60208284031215612e4d57612e4c61243a565b5b5f612e5a84828501612e24565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f60c082019050612ed05f830189612704565b612edd602083018861272c565b612eea604083018761272c565b612ef760608301866124af565b612f0460808301856124af565b612f1160a08301846124af565b979650505050505050565b5f604082019050612f2f5f83018561272c565b612f3c602083018461272c565b9392505050565b5f604082019050612f565f8301856124af565b612f6360208301846124af565b9392505050565b5f606082019050612f7d5f83018661272c565b612f8a60208301856124af565b612f9760408301846124af565b949350505050565b5f60a082019050612fb25f830188612704565b612fbf6020830187612704565b612fcc6040830186612704565b612fd960608301856124af565b612fe6608083018461272c565b9695505050505050565b5f6080820190506130035f830187612704565b61301060208301866126d3565b61301d6040830185612704565b61302a6060830184612704565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffdfea2646970667358221220c9fab193d4b30f84965b7617c8e1fa53ff1aeb2308451286b7435b0433a82bb964736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000035afe535795e90af0f4ca41d811a46d323282334b86e70f6e31dcfb5800
-----Decoded View---------------
Arg [0] : usedIndex (uint256): 23158417847463239084714197001737581570653996933128112807891516000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000035afe535795e90af0f4ca41d811a46d323282334b86e70f6e31dcfb5800
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.