Overview
S Balance
S Value
$0.00More Info
Private Name Tags
ContractCreator
Loading...
Loading
Contract Name:
ZapV3
Compiler Version
v0.8.15+commit.e14f2714
Optimization Enabled:
Yes with 500 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.15; import "./ZapBase.sol"; contract ZapV3 is ZapBase { using SafeMath for uint256; using SafeERC20 for IERC20; event ZapIntoFarm(address indexed _recipient, uint256 indexed _pid, uint256 _amount); event ZapIntoAC(address indexed _recipient, uint256 indexed _pid, uint256 _amount); event ZapIntoBoardroom(address indexed _recipient, address _inputToken, uint256 _amount); event ZapIntoBoardrooms(address indexed _recipient, uint256 _lpAmount, uint256 _ssAmount); /* ========== BANK ========== */ function zapIntoFarmWithToken( address _inputToken, uint256 _amount, address _targetToken, address _farm, uint256 _pid, bool _targetIsNative ) external nonReentrant returns (uint256 amountOut) { //Zap into token. amountOut = _universalZap( _inputToken, //_inputToken _amount, //_amount _targetToken, //_targetToken address(this), //_recipient _targetIsNative ); //Stake in farm. IERC20(_targetToken).safeIncreaseAllowance(_farm, amountOut); IRewardPool(_farm).depositFor(_pid, amountOut, msg.sender); //Emit event. emit ZapIntoFarm(msg.sender, _pid, amountOut); } /* ========== BANK ========== */ function zapIntoFarmWithETH( address _targetToken, address _farm, uint256 _pid ) external payable nonReentrant returns (uint256 amountOut) { //Zap into token. require(msg.value > 0, "Insufficient ETH"); amountOut = _universalZapETH( msg.value, //_amount _targetToken, //_targetToken address(this) //_recipient ); //Stake in farm. IERC20(_targetToken).safeIncreaseAllowance(_farm, amountOut); IRewardPool(_farm).depositFor(_pid, amountOut, msg.sender); //Emit event. emit ZapIntoFarm(msg.sender, _pid, amountOut); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (governance/utils/IVotes.sol) pragma solidity ^0.8.0; /** * @dev Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts. * * _Available since v4.5._ */ interface IVotes { /** * @dev Emitted when an account changes their delegate. */ event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); /** * @dev Emitted when a token transfer or delegate change results in changes to a delegate's number of votes. */ event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance); /** * @dev Returns the current amount of votes that `account` has. */ function getVotes(address account) external view returns (uint256); /** * @dev Returns the amount of votes that `account` had at a specific moment in the past. If the `clock()` is * configured to use block numbers, this will return the value at the end of the corresponding block. */ function getPastVotes(address account, uint256 timepoint) external view returns (uint256); /** * @dev Returns the total supply of votes available at a specific moment in the past. If the `clock()` is * configured to use block numbers, this will return the value at the end of the corresponding block. * * NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes. * Votes that have not been delegated are still part of total supply, even though they would not participate in a * vote. */ function getPastTotalSupply(uint256 timepoint) external view returns (uint256); /** * @dev Returns the delegate that `account` has chosen. */ function delegates(address account) external view returns (address); /** * @dev Delegates votes from the sender to `delegatee`. */ function delegate(address delegatee) external; /** * @dev Delegates votes from signer to `delegatee`. */ function delegateBySig(address delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC5267.sol) pragma solidity ^0.8.0; 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 v4.9.0) (interfaces/IERC5805.sol) pragma solidity ^0.8.0; import "../governance/utils/IVotes.sol"; import "./IERC6372.sol"; interface IERC5805 is IERC6372, IVotes {}
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC6372.sol) pragma solidity ^0.8.0; interface IERC6372 { /** * @dev Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting). */ function clock() external view returns (uint48); /** * @dev Description of the clock */ // solhint-disable-next-line func-name-mixedcase function CLOCK_MODE() external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.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}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * 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. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => 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 override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override 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 `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` 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 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); 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 `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `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. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` 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. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/draft-ERC20Permit.sol) pragma solidity ^0.8.0; // EIP-2612 is Final as of 2022-11-01. This file is deprecated. import "./ERC20Permit.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/ERC20Permit.sol) pragma solidity ^0.8.0; import "./IERC20Permit.sol"; import "../ERC20.sol"; import "../../../utils/cryptography/ECDSA.sol"; import "../../../utils/cryptography/EIP712.sol"; import "../../../utils/Counters.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. * * _Available since v3.4._ */ abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 { using Counters for Counters.Counter; mapping(address => Counters.Counter) private _nonces; // solhint-disable-next-line var-name-mixedcase bytes32 private constant _PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); /** * @dev In previous versions `_PERMIT_TYPEHASH` was declared as `immutable`. * However, to ensure consistency with the upgradeable transpiler, we will continue * to reserve a slot. * @custom:oz-renamed-from _PERMIT_TYPEHASH */ // solhint-disable-next-line var-name-mixedcase bytes32 private _PERMIT_TYPEHASH_DEPRECATED_SLOT; /** * @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 override { require(block.timestamp <= deadline, "ERC20Permit: expired 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); require(signer == owner, "ERC20Permit: invalid signature"); _approve(owner, spender, value); } /** * @inheritdoc IERC20Permit */ function nonces(address owner) public view virtual override returns (uint256) { return _nonces[owner].current(); } /** * @inheritdoc IERC20Permit */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view override returns (bytes32) { return _domainSeparatorV4(); } /** * @dev "Consume a nonce": return the current value and increment. * * _Available since v4.1._ */ function _useNonce(address owner) internal virtual returns (uint256 current) { Counters.Counter storage nonce = _nonces[owner]; current = nonce.current(); nonce.increment(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/ERC20Votes.sol) pragma solidity ^0.8.0; import "./ERC20Permit.sol"; import "../../../interfaces/IERC5805.sol"; import "../../../utils/math/Math.sol"; import "../../../utils/math/SafeCast.sol"; import "../../../utils/cryptography/ECDSA.sol"; /** * @dev Extension of ERC20 to support Compound-like voting and delegation. This version is more generic than Compound's, * and supports token supply up to 2^224^ - 1, while COMP is limited to 2^96^ - 1. * * NOTE: If exact COMP compatibility is required, use the {ERC20VotesComp} variant of this module. * * This extension keeps a history (checkpoints) of each account's vote power. Vote power can be delegated either * by calling the {delegate} function directly, or by providing a signature to be used with {delegateBySig}. Voting * power can be queried through the public accessors {getVotes} and {getPastVotes}. * * By default, token balance does not account for voting power. This makes transfers cheaper. The downside is that it * requires users to delegate to themselves in order to activate checkpoints and have their voting power tracked. * * _Available since v4.2._ */ abstract contract ERC20Votes is ERC20Permit, IERC5805 { struct Checkpoint { uint32 fromBlock; uint224 votes; } bytes32 private constant _DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); mapping(address => address) private _delegates; mapping(address => Checkpoint[]) private _checkpoints; Checkpoint[] private _totalSupplyCheckpoints; /** * @dev Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting). */ function clock() public view virtual override returns (uint48) { return SafeCast.toUint48(block.number); } /** * @dev Description of the clock */ // solhint-disable-next-line func-name-mixedcase function CLOCK_MODE() public view virtual override returns (string memory) { // Check that the clock was not modified require(clock() == block.number, "ERC20Votes: broken clock mode"); return "mode=blocknumber&from=default"; } /** * @dev Get the `pos`-th checkpoint for `account`. */ function checkpoints(address account, uint32 pos) public view virtual returns (Checkpoint memory) { return _checkpoints[account][pos]; } /** * @dev Get number of checkpoints for `account`. */ function numCheckpoints(address account) public view virtual returns (uint32) { return SafeCast.toUint32(_checkpoints[account].length); } /** * @dev Get the address `account` is currently delegating to. */ function delegates(address account) public view virtual override returns (address) { return _delegates[account]; } /** * @dev Gets the current votes balance for `account` */ function getVotes(address account) public view virtual override returns (uint256) { uint256 pos = _checkpoints[account].length; unchecked { return pos == 0 ? 0 : _checkpoints[account][pos - 1].votes; } } /** * @dev Retrieve the number of votes for `account` at the end of `timepoint`. * * Requirements: * * - `timepoint` must be in the past */ function getPastVotes(address account, uint256 timepoint) public view virtual override returns (uint256) { require(timepoint < clock(), "ERC20Votes: future lookup"); return _checkpointsLookup(_checkpoints[account], timepoint); } /** * @dev Retrieve the `totalSupply` at the end of `timepoint`. Note, this value is the sum of all balances. * It is NOT the sum of all the delegated votes! * * Requirements: * * - `timepoint` must be in the past */ function getPastTotalSupply(uint256 timepoint) public view virtual override returns (uint256) { require(timepoint < clock(), "ERC20Votes: future lookup"); return _checkpointsLookup(_totalSupplyCheckpoints, timepoint); } /** * @dev Lookup a value in a list of (sorted) checkpoints. */ function _checkpointsLookup(Checkpoint[] storage ckpts, uint256 timepoint) private view returns (uint256) { // We run a binary search to look for the last (most recent) checkpoint taken before (or at) `timepoint`. // // Initially we check if the block is recent to narrow the search range. // During the loop, the index of the wanted checkpoint remains in the range [low-1, high). // With each iteration, either `low` or `high` is moved towards the middle of the range to maintain the invariant. // - If the middle checkpoint is after `timepoint`, we look in [low, mid) // - If the middle checkpoint is before or equal to `timepoint`, we look in [mid+1, high) // Once we reach a single value (when low == high), we've found the right checkpoint at the index high-1, if not // out of bounds (in which case we're looking too far in the past and the result is 0). // Note that if the latest checkpoint available is exactly for `timepoint`, we end up with an index that is // past the end of the array, so we technically don't find a checkpoint after `timepoint`, but it works out // the same. uint256 length = ckpts.length; uint256 low = 0; uint256 high = length; if (length > 5) { uint256 mid = length - Math.sqrt(length); if (_unsafeAccess(ckpts, mid).fromBlock > timepoint) { high = mid; } else { low = mid + 1; } } while (low < high) { uint256 mid = Math.average(low, high); if (_unsafeAccess(ckpts, mid).fromBlock > timepoint) { high = mid; } else { low = mid + 1; } } unchecked { return high == 0 ? 0 : _unsafeAccess(ckpts, high - 1).votes; } } /** * @dev Delegate votes from the sender to `delegatee`. */ function delegate(address delegatee) public virtual override { _delegate(_msgSender(), delegatee); } /** * @dev Delegates votes from signer to `delegatee` */ function delegateBySig( address delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s ) public virtual override { require(block.timestamp <= expiry, "ERC20Votes: signature expired"); address signer = ECDSA.recover( _hashTypedDataV4(keccak256(abi.encode(_DELEGATION_TYPEHASH, delegatee, nonce, expiry))), v, r, s ); require(nonce == _useNonce(signer), "ERC20Votes: invalid nonce"); _delegate(signer, delegatee); } /** * @dev Maximum token supply. Defaults to `type(uint224).max` (2^224^ - 1). */ function _maxSupply() internal view virtual returns (uint224) { return type(uint224).max; } /** * @dev Snapshots the totalSupply after it has been increased. */ function _mint(address account, uint256 amount) internal virtual override { super._mint(account, amount); require(totalSupply() <= _maxSupply(), "ERC20Votes: total supply risks overflowing votes"); _writeCheckpoint(_totalSupplyCheckpoints, _add, amount); } /** * @dev Snapshots the totalSupply after it has been decreased. */ function _burn(address account, uint256 amount) internal virtual override { super._burn(account, amount); _writeCheckpoint(_totalSupplyCheckpoints, _subtract, amount); } /** * @dev Move voting power when tokens are transferred. * * Emits a {IVotes-DelegateVotesChanged} event. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual override { super._afterTokenTransfer(from, to, amount); _moveVotingPower(delegates(from), delegates(to), amount); } /** * @dev Change delegation for `delegator` to `delegatee`. * * Emits events {IVotes-DelegateChanged} and {IVotes-DelegateVotesChanged}. */ function _delegate(address delegator, address delegatee) internal virtual { address currentDelegate = delegates(delegator); uint256 delegatorBalance = balanceOf(delegator); _delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); _moveVotingPower(currentDelegate, delegatee, delegatorBalance); } function _moveVotingPower(address src, address dst, uint256 amount) private { if (src != dst && amount > 0) { if (src != address(0)) { (uint256 oldWeight, uint256 newWeight) = _writeCheckpoint(_checkpoints[src], _subtract, amount); emit DelegateVotesChanged(src, oldWeight, newWeight); } if (dst != address(0)) { (uint256 oldWeight, uint256 newWeight) = _writeCheckpoint(_checkpoints[dst], _add, amount); emit DelegateVotesChanged(dst, oldWeight, newWeight); } } } function _writeCheckpoint( Checkpoint[] storage ckpts, function(uint256, uint256) view returns (uint256) op, uint256 delta ) private returns (uint256 oldWeight, uint256 newWeight) { uint256 pos = ckpts.length; unchecked { Checkpoint memory oldCkpt = pos == 0 ? Checkpoint(0, 0) : _unsafeAccess(ckpts, pos - 1); oldWeight = oldCkpt.votes; newWeight = op(oldWeight, delta); if (pos > 0 && oldCkpt.fromBlock == clock()) { _unsafeAccess(ckpts, pos - 1).votes = SafeCast.toUint224(newWeight); } else { ckpts.push(Checkpoint({fromBlock: SafeCast.toUint32(clock()), votes: SafeCast.toUint224(newWeight)})); } } } function _add(uint256 a, uint256 b) private pure returns (uint256) { return a + b; } function _subtract(uint256 a, uint256 b) private pure returns (uint256) { return a - b; } /** * @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds. */ function _unsafeAccess(Checkpoint[] storage ckpts, uint256 pos) private pure returns (Checkpoint storage result) { assembly { mstore(0, ckpts.slot) result.slot := add(keccak256(0, 0x20), pos) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ 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 v4.9.4) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @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 v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://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.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) 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(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @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, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode 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 {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] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { 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); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode 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 {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); 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] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); 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. * * _Available since v4.2._ */ function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) { // 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); } // 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); } return (signer, RecoverError.NoError); } /** * @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) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) { // 32 is the length in bytes of hash, // enforced by the type signature above /// @solidity memory-safe-assembly assembly { mstore(0x00, "\x19Ethereum Signed Message:\n32") mstore(0x1c, hash) message := keccak256(0x00, 0x3c) } } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) { /// @solidity memory-safe-assembly assembly { let ptr := mload(0x40) mstore(ptr, "\x19\x01") mstore(add(ptr, 0x02), domainSeparator) mstore(add(ptr, 0x22), structHash) data := keccak256(ptr, 0x42) } } /** * @dev Returns an Ethereum Signed Data with intended validator, created from a * `validator` and `data` according to the version 0 of EIP-191. * * See {recover}. */ function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x00", validator, data)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/EIP712.sol) pragma solidity ^0.8.8; import "./ECDSA.sol"; import "../ShortStrings.sol"; import "../../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 specified in the EIP is very generic, and such a generic 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 their contracts 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. * * _Available since v3.4._ * * @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment */ 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 ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } /** * @dev See {EIP-5267}. * * _Available since v4.9._ */ function eip712Domain() public view virtual override returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ) { return ( hex"0f", // 01111 _name.toStringWithFallback(_nameFallback), _version.toStringWithFallback(_versionFallback), block.chainid, address(this), bytes32(0), new uint256[](0) ); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @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 up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (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; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) 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. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 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. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); 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 (rounding == Rounding.Up && 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 down. * * 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 + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * 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 + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * 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 + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * 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 + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SafeCast.sol) // This file was procedurally generated from scripts/generate/templates/SafeCast.js. pragma solidity ^0.8.0; /** * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow * checks. * * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can * easily result in undesired exploitation or bugs, since developers usually * assume that overflows raise errors. `SafeCast` restores this intuition by * reverting the transaction when such an operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. * * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing * all math on `uint256` and `int256` and then downcasting. */ library SafeCast { /** * @dev Returns the downcasted uint248 from uint256, reverting on * overflow (when the input is greater than largest uint248). * * Counterpart to Solidity's `uint248` operator. * * Requirements: * * - input must fit into 248 bits * * _Available since v4.7._ */ function toUint248(uint256 value) internal pure returns (uint248) { require(value <= type(uint248).max, "SafeCast: value doesn't fit in 248 bits"); return uint248(value); } /** * @dev Returns the downcasted uint240 from uint256, reverting on * overflow (when the input is greater than largest uint240). * * Counterpart to Solidity's `uint240` operator. * * Requirements: * * - input must fit into 240 bits * * _Available since v4.7._ */ function toUint240(uint256 value) internal pure returns (uint240) { require(value <= type(uint240).max, "SafeCast: value doesn't fit in 240 bits"); return uint240(value); } /** * @dev Returns the downcasted uint232 from uint256, reverting on * overflow (when the input is greater than largest uint232). * * Counterpart to Solidity's `uint232` operator. * * Requirements: * * - input must fit into 232 bits * * _Available since v4.7._ */ function toUint232(uint256 value) internal pure returns (uint232) { require(value <= type(uint232).max, "SafeCast: value doesn't fit in 232 bits"); return uint232(value); } /** * @dev Returns the downcasted uint224 from uint256, reverting on * overflow (when the input is greater than largest uint224). * * Counterpart to Solidity's `uint224` operator. * * Requirements: * * - input must fit into 224 bits * * _Available since v4.2._ */ function toUint224(uint256 value) internal pure returns (uint224) { require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits"); return uint224(value); } /** * @dev Returns the downcasted uint216 from uint256, reverting on * overflow (when the input is greater than largest uint216). * * Counterpart to Solidity's `uint216` operator. * * Requirements: * * - input must fit into 216 bits * * _Available since v4.7._ */ function toUint216(uint256 value) internal pure returns (uint216) { require(value <= type(uint216).max, "SafeCast: value doesn't fit in 216 bits"); return uint216(value); } /** * @dev Returns the downcasted uint208 from uint256, reverting on * overflow (when the input is greater than largest uint208). * * Counterpart to Solidity's `uint208` operator. * * Requirements: * * - input must fit into 208 bits * * _Available since v4.7._ */ function toUint208(uint256 value) internal pure returns (uint208) { require(value <= type(uint208).max, "SafeCast: value doesn't fit in 208 bits"); return uint208(value); } /** * @dev Returns the downcasted uint200 from uint256, reverting on * overflow (when the input is greater than largest uint200). * * Counterpart to Solidity's `uint200` operator. * * Requirements: * * - input must fit into 200 bits * * _Available since v4.7._ */ function toUint200(uint256 value) internal pure returns (uint200) { require(value <= type(uint200).max, "SafeCast: value doesn't fit in 200 bits"); return uint200(value); } /** * @dev Returns the downcasted uint192 from uint256, reverting on * overflow (when the input is greater than largest uint192). * * Counterpart to Solidity's `uint192` operator. * * Requirements: * * - input must fit into 192 bits * * _Available since v4.7._ */ function toUint192(uint256 value) internal pure returns (uint192) { require(value <= type(uint192).max, "SafeCast: value doesn't fit in 192 bits"); return uint192(value); } /** * @dev Returns the downcasted uint184 from uint256, reverting on * overflow (when the input is greater than largest uint184). * * Counterpart to Solidity's `uint184` operator. * * Requirements: * * - input must fit into 184 bits * * _Available since v4.7._ */ function toUint184(uint256 value) internal pure returns (uint184) { require(value <= type(uint184).max, "SafeCast: value doesn't fit in 184 bits"); return uint184(value); } /** * @dev Returns the downcasted uint176 from uint256, reverting on * overflow (when the input is greater than largest uint176). * * Counterpart to Solidity's `uint176` operator. * * Requirements: * * - input must fit into 176 bits * * _Available since v4.7._ */ function toUint176(uint256 value) internal pure returns (uint176) { require(value <= type(uint176).max, "SafeCast: value doesn't fit in 176 bits"); return uint176(value); } /** * @dev Returns the downcasted uint168 from uint256, reverting on * overflow (when the input is greater than largest uint168). * * Counterpart to Solidity's `uint168` operator. * * Requirements: * * - input must fit into 168 bits * * _Available since v4.7._ */ function toUint168(uint256 value) internal pure returns (uint168) { require(value <= type(uint168).max, "SafeCast: value doesn't fit in 168 bits"); return uint168(value); } /** * @dev Returns the downcasted uint160 from uint256, reverting on * overflow (when the input is greater than largest uint160). * * Counterpart to Solidity's `uint160` operator. * * Requirements: * * - input must fit into 160 bits * * _Available since v4.7._ */ function toUint160(uint256 value) internal pure returns (uint160) { require(value <= type(uint160).max, "SafeCast: value doesn't fit in 160 bits"); return uint160(value); } /** * @dev Returns the downcasted uint152 from uint256, reverting on * overflow (when the input is greater than largest uint152). * * Counterpart to Solidity's `uint152` operator. * * Requirements: * * - input must fit into 152 bits * * _Available since v4.7._ */ function toUint152(uint256 value) internal pure returns (uint152) { require(value <= type(uint152).max, "SafeCast: value doesn't fit in 152 bits"); return uint152(value); } /** * @dev Returns the downcasted uint144 from uint256, reverting on * overflow (when the input is greater than largest uint144). * * Counterpart to Solidity's `uint144` operator. * * Requirements: * * - input must fit into 144 bits * * _Available since v4.7._ */ function toUint144(uint256 value) internal pure returns (uint144) { require(value <= type(uint144).max, "SafeCast: value doesn't fit in 144 bits"); return uint144(value); } /** * @dev Returns the downcasted uint136 from uint256, reverting on * overflow (when the input is greater than largest uint136). * * Counterpart to Solidity's `uint136` operator. * * Requirements: * * - input must fit into 136 bits * * _Available since v4.7._ */ function toUint136(uint256 value) internal pure returns (uint136) { require(value <= type(uint136).max, "SafeCast: value doesn't fit in 136 bits"); return uint136(value); } /** * @dev Returns the downcasted uint128 from uint256, reverting on * overflow (when the input is greater than largest uint128). * * Counterpart to Solidity's `uint128` operator. * * Requirements: * * - input must fit into 128 bits * * _Available since v2.5._ */ function toUint128(uint256 value) internal pure returns (uint128) { require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits"); return uint128(value); } /** * @dev Returns the downcasted uint120 from uint256, reverting on * overflow (when the input is greater than largest uint120). * * Counterpart to Solidity's `uint120` operator. * * Requirements: * * - input must fit into 120 bits * * _Available since v4.7._ */ function toUint120(uint256 value) internal pure returns (uint120) { require(value <= type(uint120).max, "SafeCast: value doesn't fit in 120 bits"); return uint120(value); } /** * @dev Returns the downcasted uint112 from uint256, reverting on * overflow (when the input is greater than largest uint112). * * Counterpart to Solidity's `uint112` operator. * * Requirements: * * - input must fit into 112 bits * * _Available since v4.7._ */ function toUint112(uint256 value) internal pure returns (uint112) { require(value <= type(uint112).max, "SafeCast: value doesn't fit in 112 bits"); return uint112(value); } /** * @dev Returns the downcasted uint104 from uint256, reverting on * overflow (when the input is greater than largest uint104). * * Counterpart to Solidity's `uint104` operator. * * Requirements: * * - input must fit into 104 bits * * _Available since v4.7._ */ function toUint104(uint256 value) internal pure returns (uint104) { require(value <= type(uint104).max, "SafeCast: value doesn't fit in 104 bits"); return uint104(value); } /** * @dev Returns the downcasted uint96 from uint256, reverting on * overflow (when the input is greater than largest uint96). * * Counterpart to Solidity's `uint96` operator. * * Requirements: * * - input must fit into 96 bits * * _Available since v4.2._ */ function toUint96(uint256 value) internal pure returns (uint96) { require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits"); return uint96(value); } /** * @dev Returns the downcasted uint88 from uint256, reverting on * overflow (when the input is greater than largest uint88). * * Counterpart to Solidity's `uint88` operator. * * Requirements: * * - input must fit into 88 bits * * _Available since v4.7._ */ function toUint88(uint256 value) internal pure returns (uint88) { require(value <= type(uint88).max, "SafeCast: value doesn't fit in 88 bits"); return uint88(value); } /** * @dev Returns the downcasted uint80 from uint256, reverting on * overflow (when the input is greater than largest uint80). * * Counterpart to Solidity's `uint80` operator. * * Requirements: * * - input must fit into 80 bits * * _Available since v4.7._ */ function toUint80(uint256 value) internal pure returns (uint80) { require(value <= type(uint80).max, "SafeCast: value doesn't fit in 80 bits"); return uint80(value); } /** * @dev Returns the downcasted uint72 from uint256, reverting on * overflow (when the input is greater than largest uint72). * * Counterpart to Solidity's `uint72` operator. * * Requirements: * * - input must fit into 72 bits * * _Available since v4.7._ */ function toUint72(uint256 value) internal pure returns (uint72) { require(value <= type(uint72).max, "SafeCast: value doesn't fit in 72 bits"); return uint72(value); } /** * @dev Returns the downcasted uint64 from uint256, reverting on * overflow (when the input is greater than largest uint64). * * Counterpart to Solidity's `uint64` operator. * * Requirements: * * - input must fit into 64 bits * * _Available since v2.5._ */ function toUint64(uint256 value) internal pure returns (uint64) { require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits"); return uint64(value); } /** * @dev Returns the downcasted uint56 from uint256, reverting on * overflow (when the input is greater than largest uint56). * * Counterpart to Solidity's `uint56` operator. * * Requirements: * * - input must fit into 56 bits * * _Available since v4.7._ */ function toUint56(uint256 value) internal pure returns (uint56) { require(value <= type(uint56).max, "SafeCast: value doesn't fit in 56 bits"); return uint56(value); } /** * @dev Returns the downcasted uint48 from uint256, reverting on * overflow (when the input is greater than largest uint48). * * Counterpart to Solidity's `uint48` operator. * * Requirements: * * - input must fit into 48 bits * * _Available since v4.7._ */ function toUint48(uint256 value) internal pure returns (uint48) { require(value <= type(uint48).max, "SafeCast: value doesn't fit in 48 bits"); return uint48(value); } /** * @dev Returns the downcasted uint40 from uint256, reverting on * overflow (when the input is greater than largest uint40). * * Counterpart to Solidity's `uint40` operator. * * Requirements: * * - input must fit into 40 bits * * _Available since v4.7._ */ function toUint40(uint256 value) internal pure returns (uint40) { require(value <= type(uint40).max, "SafeCast: value doesn't fit in 40 bits"); return uint40(value); } /** * @dev Returns the downcasted uint32 from uint256, reverting on * overflow (when the input is greater than largest uint32). * * Counterpart to Solidity's `uint32` operator. * * Requirements: * * - input must fit into 32 bits * * _Available since v2.5._ */ function toUint32(uint256 value) internal pure returns (uint32) { require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits"); return uint32(value); } /** * @dev Returns the downcasted uint24 from uint256, reverting on * overflow (when the input is greater than largest uint24). * * Counterpart to Solidity's `uint24` operator. * * Requirements: * * - input must fit into 24 bits * * _Available since v4.7._ */ function toUint24(uint256 value) internal pure returns (uint24) { require(value <= type(uint24).max, "SafeCast: value doesn't fit in 24 bits"); return uint24(value); } /** * @dev Returns the downcasted uint16 from uint256, reverting on * overflow (when the input is greater than largest uint16). * * Counterpart to Solidity's `uint16` operator. * * Requirements: * * - input must fit into 16 bits * * _Available since v2.5._ */ function toUint16(uint256 value) internal pure returns (uint16) { require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits"); return uint16(value); } /** * @dev Returns the downcasted uint8 from uint256, reverting on * overflow (when the input is greater than largest uint8). * * Counterpart to Solidity's `uint8` operator. * * Requirements: * * - input must fit into 8 bits * * _Available since v2.5._ */ function toUint8(uint256 value) internal pure returns (uint8) { require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits"); return uint8(value); } /** * @dev Converts a signed int256 into an unsigned uint256. * * Requirements: * * - input must be greater than or equal to 0. * * _Available since v3.0._ */ function toUint256(int256 value) internal pure returns (uint256) { require(value >= 0, "SafeCast: value must be positive"); return uint256(value); } /** * @dev Returns the downcasted int248 from int256, reverting on * overflow (when the input is less than smallest int248 or * greater than largest int248). * * Counterpart to Solidity's `int248` operator. * * Requirements: * * - input must fit into 248 bits * * _Available since v4.7._ */ function toInt248(int256 value) internal pure returns (int248 downcasted) { downcasted = int248(value); require(downcasted == value, "SafeCast: value doesn't fit in 248 bits"); } /** * @dev Returns the downcasted int240 from int256, reverting on * overflow (when the input is less than smallest int240 or * greater than largest int240). * * Counterpart to Solidity's `int240` operator. * * Requirements: * * - input must fit into 240 bits * * _Available since v4.7._ */ function toInt240(int256 value) internal pure returns (int240 downcasted) { downcasted = int240(value); require(downcasted == value, "SafeCast: value doesn't fit in 240 bits"); } /** * @dev Returns the downcasted int232 from int256, reverting on * overflow (when the input is less than smallest int232 or * greater than largest int232). * * Counterpart to Solidity's `int232` operator. * * Requirements: * * - input must fit into 232 bits * * _Available since v4.7._ */ function toInt232(int256 value) internal pure returns (int232 downcasted) { downcasted = int232(value); require(downcasted == value, "SafeCast: value doesn't fit in 232 bits"); } /** * @dev Returns the downcasted int224 from int256, reverting on * overflow (when the input is less than smallest int224 or * greater than largest int224). * * Counterpart to Solidity's `int224` operator. * * Requirements: * * - input must fit into 224 bits * * _Available since v4.7._ */ function toInt224(int256 value) internal pure returns (int224 downcasted) { downcasted = int224(value); require(downcasted == value, "SafeCast: value doesn't fit in 224 bits"); } /** * @dev Returns the downcasted int216 from int256, reverting on * overflow (when the input is less than smallest int216 or * greater than largest int216). * * Counterpart to Solidity's `int216` operator. * * Requirements: * * - input must fit into 216 bits * * _Available since v4.7._ */ function toInt216(int256 value) internal pure returns (int216 downcasted) { downcasted = int216(value); require(downcasted == value, "SafeCast: value doesn't fit in 216 bits"); } /** * @dev Returns the downcasted int208 from int256, reverting on * overflow (when the input is less than smallest int208 or * greater than largest int208). * * Counterpart to Solidity's `int208` operator. * * Requirements: * * - input must fit into 208 bits * * _Available since v4.7._ */ function toInt208(int256 value) internal pure returns (int208 downcasted) { downcasted = int208(value); require(downcasted == value, "SafeCast: value doesn't fit in 208 bits"); } /** * @dev Returns the downcasted int200 from int256, reverting on * overflow (when the input is less than smallest int200 or * greater than largest int200). * * Counterpart to Solidity's `int200` operator. * * Requirements: * * - input must fit into 200 bits * * _Available since v4.7._ */ function toInt200(int256 value) internal pure returns (int200 downcasted) { downcasted = int200(value); require(downcasted == value, "SafeCast: value doesn't fit in 200 bits"); } /** * @dev Returns the downcasted int192 from int256, reverting on * overflow (when the input is less than smallest int192 or * greater than largest int192). * * Counterpart to Solidity's `int192` operator. * * Requirements: * * - input must fit into 192 bits * * _Available since v4.7._ */ function toInt192(int256 value) internal pure returns (int192 downcasted) { downcasted = int192(value); require(downcasted == value, "SafeCast: value doesn't fit in 192 bits"); } /** * @dev Returns the downcasted int184 from int256, reverting on * overflow (when the input is less than smallest int184 or * greater than largest int184). * * Counterpart to Solidity's `int184` operator. * * Requirements: * * - input must fit into 184 bits * * _Available since v4.7._ */ function toInt184(int256 value) internal pure returns (int184 downcasted) { downcasted = int184(value); require(downcasted == value, "SafeCast: value doesn't fit in 184 bits"); } /** * @dev Returns the downcasted int176 from int256, reverting on * overflow (when the input is less than smallest int176 or * greater than largest int176). * * Counterpart to Solidity's `int176` operator. * * Requirements: * * - input must fit into 176 bits * * _Available since v4.7._ */ function toInt176(int256 value) internal pure returns (int176 downcasted) { downcasted = int176(value); require(downcasted == value, "SafeCast: value doesn't fit in 176 bits"); } /** * @dev Returns the downcasted int168 from int256, reverting on * overflow (when the input is less than smallest int168 or * greater than largest int168). * * Counterpart to Solidity's `int168` operator. * * Requirements: * * - input must fit into 168 bits * * _Available since v4.7._ */ function toInt168(int256 value) internal pure returns (int168 downcasted) { downcasted = int168(value); require(downcasted == value, "SafeCast: value doesn't fit in 168 bits"); } /** * @dev Returns the downcasted int160 from int256, reverting on * overflow (when the input is less than smallest int160 or * greater than largest int160). * * Counterpart to Solidity's `int160` operator. * * Requirements: * * - input must fit into 160 bits * * _Available since v4.7._ */ function toInt160(int256 value) internal pure returns (int160 downcasted) { downcasted = int160(value); require(downcasted == value, "SafeCast: value doesn't fit in 160 bits"); } /** * @dev Returns the downcasted int152 from int256, reverting on * overflow (when the input is less than smallest int152 or * greater than largest int152). * * Counterpart to Solidity's `int152` operator. * * Requirements: * * - input must fit into 152 bits * * _Available since v4.7._ */ function toInt152(int256 value) internal pure returns (int152 downcasted) { downcasted = int152(value); require(downcasted == value, "SafeCast: value doesn't fit in 152 bits"); } /** * @dev Returns the downcasted int144 from int256, reverting on * overflow (when the input is less than smallest int144 or * greater than largest int144). * * Counterpart to Solidity's `int144` operator. * * Requirements: * * - input must fit into 144 bits * * _Available since v4.7._ */ function toInt144(int256 value) internal pure returns (int144 downcasted) { downcasted = int144(value); require(downcasted == value, "SafeCast: value doesn't fit in 144 bits"); } /** * @dev Returns the downcasted int136 from int256, reverting on * overflow (when the input is less than smallest int136 or * greater than largest int136). * * Counterpart to Solidity's `int136` operator. * * Requirements: * * - input must fit into 136 bits * * _Available since v4.7._ */ function toInt136(int256 value) internal pure returns (int136 downcasted) { downcasted = int136(value); require(downcasted == value, "SafeCast: value doesn't fit in 136 bits"); } /** * @dev Returns the downcasted int128 from int256, reverting on * overflow (when the input is less than smallest int128 or * greater than largest int128). * * Counterpart to Solidity's `int128` operator. * * Requirements: * * - input must fit into 128 bits * * _Available since v3.1._ */ function toInt128(int256 value) internal pure returns (int128 downcasted) { downcasted = int128(value); require(downcasted == value, "SafeCast: value doesn't fit in 128 bits"); } /** * @dev Returns the downcasted int120 from int256, reverting on * overflow (when the input is less than smallest int120 or * greater than largest int120). * * Counterpart to Solidity's `int120` operator. * * Requirements: * * - input must fit into 120 bits * * _Available since v4.7._ */ function toInt120(int256 value) internal pure returns (int120 downcasted) { downcasted = int120(value); require(downcasted == value, "SafeCast: value doesn't fit in 120 bits"); } /** * @dev Returns the downcasted int112 from int256, reverting on * overflow (when the input is less than smallest int112 or * greater than largest int112). * * Counterpart to Solidity's `int112` operator. * * Requirements: * * - input must fit into 112 bits * * _Available since v4.7._ */ function toInt112(int256 value) internal pure returns (int112 downcasted) { downcasted = int112(value); require(downcasted == value, "SafeCast: value doesn't fit in 112 bits"); } /** * @dev Returns the downcasted int104 from int256, reverting on * overflow (when the input is less than smallest int104 or * greater than largest int104). * * Counterpart to Solidity's `int104` operator. * * Requirements: * * - input must fit into 104 bits * * _Available since v4.7._ */ function toInt104(int256 value) internal pure returns (int104 downcasted) { downcasted = int104(value); require(downcasted == value, "SafeCast: value doesn't fit in 104 bits"); } /** * @dev Returns the downcasted int96 from int256, reverting on * overflow (when the input is less than smallest int96 or * greater than largest int96). * * Counterpart to Solidity's `int96` operator. * * Requirements: * * - input must fit into 96 bits * * _Available since v4.7._ */ function toInt96(int256 value) internal pure returns (int96 downcasted) { downcasted = int96(value); require(downcasted == value, "SafeCast: value doesn't fit in 96 bits"); } /** * @dev Returns the downcasted int88 from int256, reverting on * overflow (when the input is less than smallest int88 or * greater than largest int88). * * Counterpart to Solidity's `int88` operator. * * Requirements: * * - input must fit into 88 bits * * _Available since v4.7._ */ function toInt88(int256 value) internal pure returns (int88 downcasted) { downcasted = int88(value); require(downcasted == value, "SafeCast: value doesn't fit in 88 bits"); } /** * @dev Returns the downcasted int80 from int256, reverting on * overflow (when the input is less than smallest int80 or * greater than largest int80). * * Counterpart to Solidity's `int80` operator. * * Requirements: * * - input must fit into 80 bits * * _Available since v4.7._ */ function toInt80(int256 value) internal pure returns (int80 downcasted) { downcasted = int80(value); require(downcasted == value, "SafeCast: value doesn't fit in 80 bits"); } /** * @dev Returns the downcasted int72 from int256, reverting on * overflow (when the input is less than smallest int72 or * greater than largest int72). * * Counterpart to Solidity's `int72` operator. * * Requirements: * * - input must fit into 72 bits * * _Available since v4.7._ */ function toInt72(int256 value) internal pure returns (int72 downcasted) { downcasted = int72(value); require(downcasted == value, "SafeCast: value doesn't fit in 72 bits"); } /** * @dev Returns the downcasted int64 from int256, reverting on * overflow (when the input is less than smallest int64 or * greater than largest int64). * * Counterpart to Solidity's `int64` operator. * * Requirements: * * - input must fit into 64 bits * * _Available since v3.1._ */ function toInt64(int256 value) internal pure returns (int64 downcasted) { downcasted = int64(value); require(downcasted == value, "SafeCast: value doesn't fit in 64 bits"); } /** * @dev Returns the downcasted int56 from int256, reverting on * overflow (when the input is less than smallest int56 or * greater than largest int56). * * Counterpart to Solidity's `int56` operator. * * Requirements: * * - input must fit into 56 bits * * _Available since v4.7._ */ function toInt56(int256 value) internal pure returns (int56 downcasted) { downcasted = int56(value); require(downcasted == value, "SafeCast: value doesn't fit in 56 bits"); } /** * @dev Returns the downcasted int48 from int256, reverting on * overflow (when the input is less than smallest int48 or * greater than largest int48). * * Counterpart to Solidity's `int48` operator. * * Requirements: * * - input must fit into 48 bits * * _Available since v4.7._ */ function toInt48(int256 value) internal pure returns (int48 downcasted) { downcasted = int48(value); require(downcasted == value, "SafeCast: value doesn't fit in 48 bits"); } /** * @dev Returns the downcasted int40 from int256, reverting on * overflow (when the input is less than smallest int40 or * greater than largest int40). * * Counterpart to Solidity's `int40` operator. * * Requirements: * * - input must fit into 40 bits * * _Available since v4.7._ */ function toInt40(int256 value) internal pure returns (int40 downcasted) { downcasted = int40(value); require(downcasted == value, "SafeCast: value doesn't fit in 40 bits"); } /** * @dev Returns the downcasted int32 from int256, reverting on * overflow (when the input is less than smallest int32 or * greater than largest int32). * * Counterpart to Solidity's `int32` operator. * * Requirements: * * - input must fit into 32 bits * * _Available since v3.1._ */ function toInt32(int256 value) internal pure returns (int32 downcasted) { downcasted = int32(value); require(downcasted == value, "SafeCast: value doesn't fit in 32 bits"); } /** * @dev Returns the downcasted int24 from int256, reverting on * overflow (when the input is less than smallest int24 or * greater than largest int24). * * Counterpart to Solidity's `int24` operator. * * Requirements: * * - input must fit into 24 bits * * _Available since v4.7._ */ function toInt24(int256 value) internal pure returns (int24 downcasted) { downcasted = int24(value); require(downcasted == value, "SafeCast: value doesn't fit in 24 bits"); } /** * @dev Returns the downcasted int16 from int256, reverting on * overflow (when the input is less than smallest int16 or * greater than largest int16). * * Counterpart to Solidity's `int16` operator. * * Requirements: * * - input must fit into 16 bits * * _Available since v3.1._ */ function toInt16(int256 value) internal pure returns (int16 downcasted) { downcasted = int16(value); require(downcasted == value, "SafeCast: value doesn't fit in 16 bits"); } /** * @dev Returns the downcasted int8 from int256, reverting on * overflow (when the input is less than smallest int8 or * greater than largest int8). * * Counterpart to Solidity's `int8` operator. * * Requirements: * * - input must fit into 8 bits * * _Available since v3.1._ */ function toInt8(int256 value) internal pure returns (int8 downcasted) { downcasted = int8(value); require(downcasted == value, "SafeCast: value doesn't fit in 8 bits"); } /** * @dev Converts an unsigned uint256 into a signed int256. * * Requirements: * * - input must be less than or equal to maxInt256. * * _Available since v3.0._ */ function toInt256(uint256 value) internal pure returns (int256) { // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256"); return int256(value); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ 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. * * _Available since v3.4._ */ 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. * * _Available since v3.4._ */ 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. * * _Available since v3.4._ */ 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. * * _Available since v3.4._ */ 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 addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @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); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/ShortStrings.sol) pragma solidity ^0.8.8; import "./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 v4.9.0) (utils/StorageSlot.sol) // This file was procedurally generated from scripts/generate/templates/StorageSlot.js. pragma solidity ^0.8.0; /** * @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(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` * * _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._ * _Available since v4.9 for `string`, `bytes`._ */ 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 v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; import "./math/SignedMath.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(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) { 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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); 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 keccak256(bytes(a)) == keccak256(bytes(b)); } }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.15; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./pancakeSwap/interfaces/IPancakeFactory.sol"; import "./pancakeSwap/interfaces/IPancakeRouter02.sol"; contract BOOMToken is ERC20, Ownable, ERC20Permit, ERC20Votes { using SafeMath for uint256; address public admin; address public constant deadAddress = 0x000000000000000000000000000000000000dEaD; uint256 public startTime; uint256 public totalBurned; uint256 public staticTaxRate = 600; uint256 public MAX_TAX_RATE = 1200; uint256 public constant duration = 1 days; mapping(address => bool) public isPair; mapping(address => bool) public proxylist; constructor() ERC20("BOOM BANK", "BOOM") ERC20Permit("BOOM") { admin = msg.sender; // IPancakeRouter02 uniswapV2Router = IPancakeRouter02(_routerAddress); // address WETH = uniswapV2Router.WETH(); // Create a uniswap pair for this new token // address pair = IPancakeFactory(uniswapV2Router.factory()).createPair(address(this), WETH); // isPair[pair] = true; startTime = block.timestamp; admin = msg.sender; } function mint(address to, uint256 amount) external onlyOwner { _mint(to, amount); } function _mint(address to, uint256 amount) internal override(ERC20, ERC20Votes) { super._mint(to, amount); } function getCurrentTaxRate() public view returns (uint256) { for (uint256 i = 0; i < 30; i++) { if (block.timestamp <= startTime + duration * i) { uint256 tax = MAX_TAX_RATE - (i - 1) * 200; return tax < staticTaxRate ? staticTaxRate : tax; } } return staticTaxRate; } function _transfer(address _from, address _to, uint256 _amount) internal override { if (isPair[_to] && !proxylist[_from]) { uint256 taxAmount = (_amount * getCurrentTaxRate()) / 10000; _burn(_from, taxAmount); totalBurned += taxAmount; super._transfer(_from, _to, _amount - taxAmount); } else { super._transfer(_from, _to, _amount); } } function _afterTokenTransfer( address from, address to, uint256 amount ) internal override(ERC20, ERC20Votes) { super._afterTokenTransfer(from, to, amount); } function _burn(address account, uint256 amount) internal override(ERC20, ERC20Votes) { super._transfer(account, deadAddress, amount); } function isContract(address _addr) private view returns (bool) { uint32 size; assembly { size := extcodesize(_addr) } return (size > 0); } function setProxy(address _proxy) public { require(msg.sender == admin, "You are not the admin"); require(isContract(_proxy), "only contracts can be whitelisted"); proxylist[_proxy] = true; } function setPair(address _pair) public { require(msg.sender == admin, "You are not the admin"); require(isContract(_pair), "only contracts can be whitelisted"); isPair[_pair] = true; } function setMaxTaxRate(uint256 _newMaxRate) external onlyOwner { require(_newMaxRate > staticTaxRate, "Invalid Max Tax Rate"); MAX_TAX_RATE = _newMaxRate; } function setStaticTaxRate(uint256 _newStaticRate) external onlyOwner { require(_newStaticRate > 0, "Invalid Static Tax Rate"); staticTaxRate = _newStaticRate; } }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.15; // Part: IRewardPool interface IRewardPool { function depositFor(uint256 _pid, uint256 _amount, address _recipient) external; }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.15; import "@openzeppelin/contracts/access/Ownable.sol"; // Part: MultipleOperator contract MultipleOperator is Context, Ownable { mapping(address => bool) private _operator; event OperatorStatusChanged(address indexed _operator, bool _operatorStatus); constructor() { _operator[_msgSender()] = true; _operator[address(this)] = true; emit OperatorStatusChanged(_msgSender(), true); } modifier onlyOperator() { require( _operator[msg.sender] == true, "operator: caller is not the operator" ); _; } function isOperator() public view returns (bool) { return _operator[_msgSender()]; } function isOperator(address _account) public view returns (bool) { return _operator[_account]; } function setOperatorStatus( address _account, bool _operatorStatus ) public onlyOwner { _setOperatorStatus(_account, _operatorStatus); } function setOperatorStatus( address[] memory _accounts, bool _operatorStatus ) external onlyOperator { for (uint8 idx = 0; idx < _accounts.length; ++idx) { _setOperatorStatus(_accounts[idx], _operatorStatus); } } function setShareTokenWhitelistType( address[] memory _accounts, bool[] memory _operatorStatuses ) external onlyOperator { require( _accounts.length == _operatorStatuses.length, "Error: Account and OperatorStatuses lengths not equal" ); for (uint8 idx = 0; idx < _accounts.length; ++idx) { _setOperatorStatus(_accounts[idx], _operatorStatuses[idx]); } } function _setOperatorStatus(address _account, bool _operatorStatus) internal { _operator[_account] = _operatorStatus; emit OperatorStatusChanged(_account, _operatorStatus); } }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; interface IPancakeFactory { event PairCreated(address indexed token0, address indexed token1, address pair, uint256); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; interface IPancakePair { event Approval(address indexed owner, address indexed spender, uint256 value); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn(address indexed sender, uint256 amount0, uint256 amount1, address indexed to); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; interface IPancakeRouter01 { function factory() external view returns (address); function WETH() external view returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "./IPancakeRouter01.sol"; interface IPancakeRouter02 is IPancakeRouter01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; interface IWETH { function deposit() external payable; function transfer(address to, uint256 value) external returns (bool); function withdraw(uint256) external; }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.15; // helper methods for interacting with ERC20 tokens and sending ETH that do not consistently return true/false library TransferHelper { function safeApprove( address token, address to, uint256 value ) internal { // bytes4(keccak256(bytes('approve(address,uint256)'))); (bool success, bytes memory data) = token.call( abi.encodeWithSelector(0x095ea7b3, to, value) ); require( success && (data.length == 0 || abi.decode(data, (bool))), "TransferHelper::safeApprove: approve failed" ); } function safeTransfer( address token, address to, uint256 value ) internal { // bytes4(keccak256(bytes('transfer(address,uint256)'))); (bool success, bytes memory data) = token.call( abi.encodeWithSelector(0xa9059cbb, to, value) ); require( success && (data.length == 0 || abi.decode(data, (bool))), "TransferHelper::safeTransfer: transfer failed" ); } function safeTransferFrom( address token, address from, address to, uint256 value ) internal { // bytes4(keccak256(bytes('transferFrom(address,address,uint256)'))); (bool success, bytes memory data) = token.call( abi.encodeWithSelector(0x23b872dd, from, to, value) ); require( success && (data.length == 0 || abi.decode(data, (bool))), "TransferHelper::transferFrom: transferFrom failed" ); } function safeTransferETH(address to, uint256 value) internal { (bool success, ) = to.call{value: value}(new bytes(0)); require(success, "TransferHelper::safeTransferETH: ETH transfer failed"); } }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.15; import "./pancakeSwap/interfaces/IPancakeFactory.sol"; import "./pancakeSwap/interfaces/IPancakeRouter02.sol"; import "./pancakeSwap/interfaces/IPancakePair.sol"; import "./pancakeSwap/libraries/TransferHelper.sol"; import "./interfaces/MultipleOperator.sol"; import "./interfaces/IRewardPool.sol"; import "./pancakeSwap/interfaces/IWETH.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./BOOMToken.sol"; // Part: ZapBase contract ZapBase is MultipleOperator, ReentrancyGuard { using SafeMath for uint256; using SafeERC20 for IERC20; /* ========== STATE VARIABLES ========== */ address public WETH; address public mainToken; address public mainTokenLP; address public deadAddress = address(0x000000000000000000000000000000000000dEaD); IPancakeRouter02 private ROUTER; address PancakeSwapFactory; enum TokenType { INVALID, ERC20, LP } mapping(address => TokenType) public tokenType; //Type of token @ corresponding address. mapping(address => mapping(address => address[])) public swapPath; // Paths for swapping 2 given tokens. event TaxPaid(address indexed user, uint256 amount); event AddLiquidity( address tokenA, address tokenB, uint256 amountInA, uint256 amountInB, uint256 amountOut ); event SwapTokens(address tokenA, address tokenB, uint256 amountInA, uint256 amountOut); /* ========== CONSTRUCTOR ========== */ function setCoreValues( address _router, address factory, address _mainToken, address _mainTokenLP, address _weth ) external onlyOwner { mainToken = _mainToken; mainTokenLP = _mainTokenLP; WETH = _weth; PancakeSwapFactory = factory; ROUTER = IPancakeRouter02(_router); tokenType[WETH] = TokenType.ERC20; tokenType[mainToken] = TokenType.ERC20; tokenType[mainTokenLP] = TokenType.LP; } /* * @notice Fallback for WBNB */ receive() external payable {} function sortTokens( address tokenA, address tokenB ) internal pure returns (address token0, address token1) { require(tokenA != tokenB, "Zap: IDENTICAL_ADDRESSES"); (token0, token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA); require(token0 != address(0), "Zap: ZERO_ADDRESS"); } /* ========== EXTERNAL FUNCTIONS ========== */ function zap( address _inputToken, uint256 _amount, address _targetToken, bool _targetIsNative ) external returns (uint256 amountOut) { amountOut = _universalZap( _inputToken, //_inputToken _amount, //_amount _targetToken, //_targetToken msg.sender, //_recipient _targetIsNative ); } /* ========== EXTERNAL FUNCTIONS ========== */ function zapETH(address _targetToken) external payable returns (uint256 amountOut) { require(msg.value > 0, "Insufficient ETH"); amountOut = _universalZapETH( msg.value, //_amount _targetToken, //_targetToken msg.sender //_recipient ); } function addTaxFreeLiquidity( address _tokenA, address _tokenB, uint256 _amountA, uint256 _amountB ) external { IERC20(_tokenA).transferFrom(msg.sender, address(this), _amountA); IERC20(_tokenB).transferFrom(msg.sender, address(this), _amountB); _increaseRouterAllowance(_tokenA, _amountA); _increaseRouterAllowance(_tokenB, _amountB); ROUTER.addLiquidity( _tokenA, _tokenB, _amountA, _amountB, _amountA.mul(95).div(100), _amountB.mul(95).div(100), msg.sender, block.timestamp + 40 ); } function removeTaxFreeLiquidity( address _tokenA, address _tokenB, address _pair, uint256 _amount ) external { IERC20(_pair).transferFrom(msg.sender, address(this), _amount); _increaseRouterAllowance(_pair, _amount); (uint256 _amountA, uint256 _amountB) = ROUTER.removeLiquidity( _tokenA, _tokenB, _amount, 0, 0, address(this), block.timestamp + 40 ); IERC20(_tokenA).transfer(msg.sender, _amountA); IERC20(_tokenB).transfer(msg.sender, _amountB); } /* ========== MAIN ZAP FUNCTION ========== */ function _zapIntoTokenTaxWrapper( address _inputToken, uint256 _amount, address _targetToken, bool _targetIsNative, address _recipient ) internal returns (uint256 amountOut) { //Handle token taxes - Only if not zapping into farm. //Zap into token. if ( (address(_inputToken) == address(mainToken)) && (address(_targetToken) != address(mainToken)) && (address(_targetToken) != address(mainTokenLP)) ) { //Calculate tax variables. uint256 tokenTaxRate = BOOMToken(_inputToken).getCurrentTaxRate(); uint256 taxedAmount = _amount.mul(tokenTaxRate).div(10000); //Halve the taxed amount if the target token is an LP token. if (tokenType[_targetToken] == TokenType.LP) { taxedAmount = taxedAmount.div(2); } //Send taxes to Tax Office and handle accordingly. //Amend the input amount. _amount = _amount.sub(taxedAmount); } if (_targetIsNative == true) { amountOut = _zapIntoETH(_inputToken, _amount, _recipient); } else { amountOut = _zapIntoToken(_inputToken, _amount, _targetToken, _recipient); } } /** @notice Zaps in ERC20 tokens to LP tokens. */ function _zapIntoETH( address _inputToken, uint256 _amount, address _recipient ) internal returns (uint256 amountOut) { require(tokenType[_inputToken] == TokenType.ERC20, "Error: Invalid token type"); //Safely increase the router allowance. _increaseRouterAllowance(_inputToken, _amount); amountOut = _swapTokensForETH( _amount, //_amountIn, _inputToken, //_pathIn, _recipient //_recipient, ); } /** @notice Zaps in ERC20 tokens to LP tokens. */ function _zapIntoToken( address _inputToken, uint256 _amount, address _targetToken, address _recipient ) internal returns (uint256 amountOut) { require(tokenType[_inputToken] == TokenType.ERC20, "Error: Invalid token type"); require(tokenType[_targetToken] != TokenType.INVALID, "Error: Invalid token type"); //Safely increase the router allowance. _increaseRouterAllowance(_inputToken, _amount); //If target token is an LP token. if (tokenType[_targetToken] == TokenType.LP) { //Deconstruct target token. IPancakePair pair = IPancakePair(_targetToken); address token0 = pair.token0(); address token1 = pair.token1(); //Input token is a component of the target LP token then swap half and add liquidity. if (_inputToken == token0 || _inputToken == token1) { //Dictate which is the missing LP token. address missingToken = _inputToken == token0 ? token1 : token0; uint256 altTokenAmount = _amount.div(2); amountOut = _zapIntoLPFromComponentToken( _inputToken, // _componentToken _inputToken, // _altToken _amount.sub(altTokenAmount), //_componentTokenAmount altTokenAmount, //_altTokenAmount missingToken, //_missingToken _recipient //_recipient ); //Otherwise swap the token for ETH and then add the liquidity from there. } else { uint256 ethAmount = _swapTokensForETH( _amount, //_amountIn, _inputToken, //_pathIn, address(this) //_recipient, ); //Truncate eth balance to account for tax. uint256 ethBalance = address(this).balance; ethAmount = ethAmount > ethBalance ? ethBalance : ethAmount; amountOut = _swapETHToLP( _targetToken, //lpToken ethAmount, //amount _recipient //_recipient. ); } //Otherwise swap tokens for tokens. } else { amountOut = _swapTokensForTokens( _amount, //_amountIn _inputToken, //_pathIn _targetToken, //_pathOut _recipient //_recipient ); } } function _zapIntoLPFromComponentToken( address _componentToken, address _altToken, uint256 _componentTokenAmount, uint256 _altTokenAmount, address _missingToken, address _recipient ) internal returns (uint256 amountOut) { //Swap alternative token to missing token. _increaseRouterAllowance(_altToken, _altTokenAmount); uint256 _missingTokenAmount = _swapTokensForTokens( _altTokenAmount, //_amountIn _altToken, //_pathIn _missingToken, //_pathOut address(this) //_recipient ); //Increase router allowances. _increaseRouterAllowance(_componentToken, _componentTokenAmount); _increaseRouterAllowance(_missingToken, _missingTokenAmount); //Add liquidity (, , amountOut) = ROUTER.addLiquidity( _componentToken, _missingToken, _componentTokenAmount, _missingTokenAmount, 0, 0, _recipient, block.timestamp + 40 ); //Emit event - Dont need to truncate as we send straight to recipient from the router. emit AddLiquidity( _componentToken, _missingToken, _componentTokenAmount, _missingTokenAmount, amountOut ); } function _unZapIntoETH( address _inputToken, uint256 _amount, address _recipient ) internal returns (uint256 amountOut) { require(tokenType[_inputToken] == TokenType.LP, "Error: Invalid token type"); //Deconstruct target token. IPancakePair pair = IPancakePair(_inputToken); address tokenA = pair.token0(); address tokenB = pair.token1(); //Remove Liquidity. _increaseRouterAllowance(_inputToken, _amount); (uint256 amountA, uint256 amountB) = ROUTER.removeLiquidity( tokenA, //tokenA tokenB, //tokenB _amount, //liquidity 0, //amountAMin 0, //amountBMin address(this), //recipient block.timestamp + 40 //deadline ); //Swap tokenA to target token if required. if (tokenA != WETH) { amountA = _swapTokensForTokens( amountA, //_amountIn tokenA, //_pathIn WETH, //_pathOut address(this) //_recipient ); IWETH(WETH).withdraw(amountA); TransferHelper.safeTransferETH(_recipient, amountA); } else { IWETH(WETH).withdraw(amountA); TransferHelper.safeTransferETH(_recipient, amountA); } //Swap tokenB to target token if required. if (tokenB != WETH) { amountB = _swapTokensForTokens( amountB, //_amountIn tokenB, //_pathIn WETH, //_pathOut address(this) //_recipient ); IWETH(WETH).withdraw(amountB); TransferHelper.safeTransferETH(_recipient, amountB); } else { IWETH(WETH).withdraw(amountB); TransferHelper.safeTransferETH(_recipient, amountB); } //Add amount out. amountOut = amountA.add(amountB); } function _unZapIntoToken( address _inputToken, uint256 _amount, address _targetToken, address _recipient ) internal returns (uint256 amountOut) { require(tokenType[_inputToken] == TokenType.LP, "Error: Invalid token type"); require(tokenType[_targetToken] == TokenType.ERC20, "Error: Invalid token type"); //Deconstruct target token. IPancakePair pair = IPancakePair(_inputToken); address tokenA = pair.token0(); address tokenB = pair.token1(); //Remove Liquidity. _increaseRouterAllowance(_inputToken, _amount); (uint256 amountA, uint256 amountB) = ROUTER.removeLiquidity( tokenA, //tokenA tokenB, //tokenB _amount, //liquidity 0, //amountAMin 0, //amountBMin address(this), //recipient block.timestamp + 40 //deadline ); //Swap tokenA to target token if required. if (tokenA != _targetToken) { amountA = _swapTokensForTokens( amountA, //_amountIn tokenA, //_pathIn _targetToken, //_pathOut _recipient //_recipient ); } else { IERC20(_targetToken).transfer(_recipient, amountA); } //Swap tokenB to target token if required. if (tokenB != _targetToken) { amountB = _swapTokensForTokens( amountB, //_amountIn tokenB, //_pathIn _targetToken, //_pathOut _recipient //_recipient ); } else { IERC20(_targetToken).transfer(_recipient, amountB); } //Add amount out. amountOut = amountA.add(amountB); } function _unZapIntoLP( address _inputToken, uint256 _amount, address _targetToken, address _recipient ) internal returns (uint256 amountOut) { require(tokenType[_inputToken] == TokenType.LP, "Error: Invalid token type"); require(tokenType[_targetToken] == TokenType.LP, "Error: Invalid token type"); //Deconstruct target token. IPancakePair pair = IPancakePair(_inputToken); address inputTokenA = pair.token0(); address inputTokenB = pair.token1(); //Remove Liquidity. _increaseRouterAllowance(_inputToken, _amount); (uint256 amountA, uint256 amountB) = ROUTER.removeLiquidity( inputTokenA, //tokenA inputTokenB, //tokenB _amount, //liquidity 0, //amountAMin 0, //amountBMin address(this), //recipient block.timestamp + 40 //deadline ); //Get output token components. pair = IPancakePair(_targetToken); address outputTokenA = pair.token0(); address outputTokenB = pair.token1(); //If input token A is already a component. if (inputTokenA == outputTokenA || inputTokenA == outputTokenB) { //Dictate which is the missing LP token. address missingToken = inputTokenA == outputTokenA ? outputTokenB : outputTokenA; amountOut = _zapIntoLPFromComponentToken( inputTokenA, //_componentToken, inputTokenB, //_altToken, amountA, //_componentTokenAmount, amountB, //_altTokenAmount, missingToken, //_missingToken, _recipient ); //If input token A is already a component. } else if (inputTokenB == outputTokenA || inputTokenB == outputTokenB) { //Dictate which is the missing LP token. address missingToken = inputTokenB == outputTokenA ? outputTokenB : outputTokenA; amountOut = _zapIntoLPFromComponentToken( inputTokenB, //_componentToken, inputTokenA, //_altToken, amountB, //_componentTokenAmount, amountA, //_altTokenAmount, missingToken, //_missingToken, _recipient ); //Otherwise swap both tokens to ETH and then convert to LP. } else { //Swap both tokens to ETH. uint256 ethAmountA = _swapTokensForETH( amountA, //_amountIn, inputTokenA, //_pathIn, address(this) //_recipient, ); uint256 ethAmountB = _swapTokensForETH( amountB, //_amountIn, inputTokenB, //_pathIn, address(this) //_recipient, ); //Convert eth to LP. amountOut = _swapETHToLP( _targetToken, //lpToken ethAmountA.add(ethAmountB), //amount _recipient //_recipient. ); } } function universalZapForCompound( address _inputToken, uint256 _amount, address _targetToken, address _recipient ) external returns (uint256 amountOut) { require(tokenType[_targetToken] != TokenType.INVALID, "Error: Invalid token type"); //Transfer token into contract. //Exit early if no zap required. if (_inputToken == _targetToken) { if (_recipient != address(this)) { IERC20(_inputToken).transfer(_recipient, _amount); } return _amount; } IERC20(_inputToken).transferFrom(msg.sender, address(this), _amount); amountOut = _zapIntoTokenTaxWrapper( _inputToken, _amount, _targetToken, false, _recipient ); //Truncate to target token balance. uint256 targetTokenBalance = IERC20(_targetToken).balanceOf(_recipient); amountOut = amountOut > targetTokenBalance ? targetTokenBalance : amountOut; } function _universalZap( address _inputToken, uint256 _amount, address _targetToken, address _recipient, bool _targetIsNative ) internal returns (uint256 amountOut) { require(tokenType[_inputToken] != TokenType.INVALID, "Error: Invalid token type"); require(tokenType[_targetToken] != TokenType.INVALID, "Error: Invalid token type"); //Transfer token into contract. IERC20(_inputToken).transferFrom(msg.sender, address(this), _amount); //Exit early if no zap required. if (_inputToken == _targetToken) { if (_recipient != address(this)) { IERC20(_inputToken).transfer(_recipient, _amount); } return _amount; } //Zap into token. if (tokenType[_inputToken] == TokenType.ERC20) { if (_inputToken == WETH && _targetIsNative == true) { IWETH(WETH).withdraw(_amount); TransferHelper.safeTransferETH(_recipient, _amount); } else { amountOut = _zapIntoTokenTaxWrapper( _inputToken, _amount, _targetToken, _targetIsNative, _recipient ); } } else if (tokenType[_targetToken] == TokenType.ERC20) { if (_targetIsNative) { amountOut = _unZapIntoETH(_inputToken, _amount, _recipient); } else { amountOut = _unZapIntoToken(_inputToken, _amount, _targetToken, _recipient); } } else { amountOut = _unZapIntoLP(_inputToken, _amount, _targetToken, _recipient); } //Truncate to target token balance. uint256 targetTokenBalance = IERC20(_targetToken).balanceOf(_recipient); amountOut = amountOut > targetTokenBalance ? targetTokenBalance : amountOut; } function _universalZapETH( uint256 _amount, address _targetToken, address _recipient ) internal returns (uint256 amountOut) { require(tokenType[_targetToken] != TokenType.INVALID, "Error: Invalid token type"); //Zap into token. if (tokenType[_targetToken] == TokenType.ERC20) { if (_targetToken == WETH) { IWETH(WETH).deposit{value: _amount}(); IERC20(WETH).transfer(_recipient, _amount); } else { amountOut = _swapETHForTokens(_amount, _targetToken, _recipient); } } else { amountOut = _swapETHToLP(_targetToken, _amount, _recipient); } //Truncate to target token balance. uint256 targetTokenBalance = IERC20(_targetToken).balanceOf(_recipient); amountOut = amountOut > targetTokenBalance ? targetTokenBalance : amountOut; } /* ========== Private Functions ========== */ function _swapETHToLP( address _lpToken, uint256 _amount, address _recipient ) internal returns (uint256 amountOut) { //If target token is not an LP then perform single swap. if (tokenType[_lpToken] == TokenType.LP) { //Deconstruct LP token. IPancakePair pair = IPancakePair(_lpToken); address token0 = pair.token0(); address token1 = pair.token1(); //If either of the tokens are WETH then swap half of the EVMOS balance. if (token0 == WETH || token1 == WETH) { address altToken = token0 == WETH ? token1 : token0; uint256 swapValue = _amount.div(2); uint256 altTokenAmount = _swapETHForTokens( swapValue, //_amountIn altToken, //_pathOut address(this) //_recipient ); _increaseRouterAllowance(altToken, altTokenAmount); (, , amountOut) = ROUTER.addLiquidityETH{value: _amount.sub(swapValue)}( altToken, altTokenAmount, 0, 0, _recipient, block.timestamp + 40 ); emit AddLiquidity( WETH, altToken, _amount.sub(swapValue), altTokenAmount, amountOut ); //Otherwise perform 2 swaps & add liquidity. } else { uint256 swapValue = _amount.div(2); uint256 token0Amount = _swapETHForTokens( swapValue, //_amountIn token0, //_pathOut address(this) //_recipient ); uint256 token1Amount = _swapETHForTokens( _amount.sub(swapValue), //_amountIn token1, //_pathOut address(this) //_recipient ); _increaseRouterAllowance(token0, token0Amount); _increaseRouterAllowance(token1, token1Amount); (, , amountOut) = ROUTER.addLiquidity( token0, token1, token0Amount, token1Amount, 0, 0, _recipient, block.timestamp + 40 ); emit AddLiquidity(token0, token1, token0Amount, token1Amount, amountOut); } } } /* ========== SWAP FUNCTIONS ========== */ function _increaseRouterAllowance(address _token, uint256 _amount) private { IERC20(_token).safeIncreaseAllowance(address(ROUTER), _amount); } function _setSwapPath( address _token0, address _token1, address[] memory _path ) internal virtual { require(_path.length > 1, "Error: Path is not long enough."); require( _path[0] == _token0 && _path[_path.length - 1] == _token1, "Error: Endpoints of path are incorrect." ); swapPath[_token0][_token1] = _path; //Set inverse path. uint256 pathLength = _path.length; address[] memory invPath = new address[](pathLength); for (uint256 i = 0; i < pathLength; i++) { invPath[i] = _path[pathLength - 1 - i]; } swapPath[_token1][_token0] = invPath; } function setSwapPath( address _token0, address _token1, address[] calldata _path ) external virtual onlyOwner { _setSwapPath(_token0, _token1, _path); } /** @notice Swaps Tokens for Tokens Safely. - Is public to allow a static call. */ function _swapTokensForTokens( uint256 _amountIn, address _pathIn, address _pathOut, address _recipient ) internal returns (uint256 _outputAmount) { //Extract swap path. address[] memory path = swapPath[_pathIn][_pathOut]; if (path.length == 0) { path = new address[](2); path[0] = _pathIn; path[1] = _pathOut; } //Increase allowance and swap. if (_amountIn > 0) { _increaseRouterAllowance(_pathIn, _amountIn); uint256[] memory amounts = ROUTER.swapExactTokensForTokens( _amountIn, 0, path, _recipient, block.timestamp + 40 ); _outputAmount = amounts[amounts.length - 1]; } emit SwapTokens(_pathIn, _pathOut, _amountIn, _outputAmount); } /** @notice Swaps Tokens for 'ETH' safely. */ function _swapTokensForETH( uint256 _amountIn, address _pathIn, address _recipient ) internal returns (uint256 _outputAmount) { //Set output of the path. address _pathOut = WETH; //Extract swap path. address[] memory path = swapPath[_pathIn][_pathOut]; if (path.length == 0) { path = new address[](2); path[0] = _pathIn; path[1] = _pathOut; } //Increase allowance and swap. if (_amountIn > 0) { _increaseRouterAllowance(_pathIn, _amountIn); uint256[] memory amounts = ROUTER.swapExactTokensForETH( _amountIn, 0, path, _recipient, block.timestamp + 40 ); _outputAmount = amounts[amounts.length - 1]; } emit SwapTokens(_pathIn, _pathOut, _amountIn, _outputAmount); } /** @notice Swaps 'ETH' for Tokens safely. */ function _swapETHForTokens( uint256 _amountIn, address _pathOut, address _recipient ) internal returns (uint256 _outputAmount) { //Set output of the path. address _pathIn = WETH; //Extract swap path. address[] memory path = swapPath[_pathIn][_pathOut]; if (path.length == 0) { path = new address[](2); path[0] = _pathIn; path[1] = _pathOut; } //Increase allowance and swap. if (_amountIn > 0) { uint256[] memory amounts = ROUTER.swapExactETHForTokens{value: _amountIn}( 0, path, _recipient, block.timestamp + 40 ); _outputAmount = amounts[amounts.length - 1]; } emit SwapTokens(_pathIn, _pathOut, _amountIn, _outputAmount); } /* ========== EXTERNAL SWAP FUNCTIONS ========== */ function swapTokensForTokens( uint256 _amountIn, address _pathIn, address _pathOut, address _recipient ) external onlyOperator returns (uint256 _outputAmount) { IERC20(_pathIn).transferFrom(msg.sender, address(this), _amountIn); _outputAmount = _swapTokensForTokens(_amountIn, _pathIn, _pathOut, _recipient); } function swapETHForTokens( uint256 _amountIn, address _pathOut, address _recipient ) external payable onlyOperator returns (uint256 _outputAmount) { require(msg.value > _amountIn, "Zap: Not enough ether sent in for the swap"); _outputAmount = _swapETHForTokens(_amountIn, _pathOut, _recipient); } function swapTokensForETH( uint256 _amountIn, address _pathIn, address _recipient ) external onlyOperator returns (uint256 _outputAmount) { IERC20(_pathIn).transferFrom(msg.sender, address(this), _amountIn); _outputAmount = _swapTokensForETH(_amountIn, _pathIn, _recipient); } /* ========== RESTRICTED FUNCTIONS ========== */ /** @notice Sets the token type of an address. */ function setTokenType(address _token, uint8 _type) public onlyOwner { tokenType[_token] = TokenType(_type); } function setTokensType(address[] memory _tokens, uint8 _type) external onlyOperator { for (uint8 idx = 0; idx < _tokens.length; ++idx) { tokenType[_tokens[idx]] = TokenType(_type); } } function setTokensTypes(address[] memory _tokens, uint8[] memory _types) external onlyOperator { require(_tokens.length == _types.length, "Error: Tokens and Types lengths not equal"); for (uint8 idx = 0; idx < _tokens.length; ++idx) { tokenType[_tokens[idx]] = TokenType(_types[idx]); } } function withdraw(address token) external onlyOwner { if (token == address(0)) { (bool callSuccess, ) = payable(msg.sender).call{value: address(this).balance}(""); require(callSuccess, "Call failed"); } IERC20(token).transfer(owner(), IERC20(token).balanceOf(address(this))); } }
{ "optimizer": { "enabled": true, "runs": 500 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"tokenA","type":"address"},{"indexed":false,"internalType":"address","name":"tokenB","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountInA","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountInB","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountOut","type":"uint256"}],"name":"AddLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_operator","type":"address"},{"indexed":false,"internalType":"bool","name":"_operatorStatus","type":"bool"}],"name":"OperatorStatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"tokenA","type":"address"},{"indexed":false,"internalType":"address","name":"tokenB","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountInA","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountOut","type":"uint256"}],"name":"SwapTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TaxPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_recipient","type":"address"},{"indexed":true,"internalType":"uint256","name":"_pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ZapIntoAC","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_recipient","type":"address"},{"indexed":false,"internalType":"address","name":"_inputToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ZapIntoBoardroom","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"_lpAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_ssAmount","type":"uint256"}],"name":"ZapIntoBoardrooms","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_recipient","type":"address"},{"indexed":true,"internalType":"uint256","name":"_pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ZapIntoFarm","type":"event"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenA","type":"address"},{"internalType":"address","name":"_tokenB","type":"address"},{"internalType":"uint256","name":"_amountA","type":"uint256"},{"internalType":"uint256","name":"_amountB","type":"uint256"}],"name":"addTaxFreeLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainTokenLP","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenA","type":"address"},{"internalType":"address","name":"_tokenB","type":"address"},{"internalType":"address","name":"_pair","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"removeTaxFreeLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_router","type":"address"},{"internalType":"address","name":"factory","type":"address"},{"internalType":"address","name":"_mainToken","type":"address"},{"internalType":"address","name":"_mainTokenLP","type":"address"},{"internalType":"address","name":"_weth","type":"address"}],"name":"setCoreValues","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"},{"internalType":"bool","name":"_operatorStatus","type":"bool"}],"name":"setOperatorStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_operatorStatus","type":"bool"}],"name":"setOperatorStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"},{"internalType":"bool[]","name":"_operatorStatuses","type":"bool[]"}],"name":"setShareTokenWhitelistType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token0","type":"address"},{"internalType":"address","name":"_token1","type":"address"},{"internalType":"address[]","name":"_path","type":"address[]"}],"name":"setSwapPath","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint8","name":"_type","type":"uint8"}],"name":"setTokenType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tokens","type":"address[]"},{"internalType":"uint8","name":"_type","type":"uint8"}],"name":"setTokensType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tokens","type":"address[]"},{"internalType":"uint8[]","name":"_types","type":"uint8[]"}],"name":"setTokensTypes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amountIn","type":"uint256"},{"internalType":"address","name":"_pathOut","type":"address"},{"internalType":"address","name":"_recipient","type":"address"}],"name":"swapETHForTokens","outputs":[{"internalType":"uint256","name":"_outputAmount","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"swapPath","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amountIn","type":"uint256"},{"internalType":"address","name":"_pathIn","type":"address"},{"internalType":"address","name":"_recipient","type":"address"}],"name":"swapTokensForETH","outputs":[{"internalType":"uint256","name":"_outputAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amountIn","type":"uint256"},{"internalType":"address","name":"_pathIn","type":"address"},{"internalType":"address","name":"_pathOut","type":"address"},{"internalType":"address","name":"_recipient","type":"address"}],"name":"swapTokensForTokens","outputs":[{"internalType":"uint256","name":"_outputAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tokenType","outputs":[{"internalType":"enum ZapBase.TokenType","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_inputToken","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_targetToken","type":"address"},{"internalType":"address","name":"_recipient","type":"address"}],"name":"universalZapForCompound","outputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_inputToken","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_targetToken","type":"address"},{"internalType":"bool","name":"_targetIsNative","type":"bool"}],"name":"zap","outputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_targetToken","type":"address"}],"name":"zapETH","outputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_targetToken","type":"address"},{"internalType":"address","name":"_farm","type":"address"},{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"zapIntoFarmWithETH","outputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_inputToken","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_targetToken","type":"address"},{"internalType":"address","name":"_farm","type":"address"},{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"bool","name":"_targetIsNative","type":"bool"}],"name":"zapIntoFarmWithToken","outputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600680546001600160a01b03191661dead1790553480156200002557600080fd5b5062000031336200009c565b336000818152600160208181526040808420805460ff199081168517909155308552938190208054909416831790935591519081527fcac6a33ee3e8243767e0e169d07d40f00bde205839fd5583dba0caae17114cb3910160405180910390a26001600255620000ec565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b614e0a80620000fc6000396000f3fe6080604052600436106101d15760003560e01c80636d70f7ae116100f7578063ad5c464811610095578063dfcf852811610064578063dfcf85281461056a578063e4f6b3121461058a578063f2fde38b146105aa578063fbb152d3146105ca57600080fd5b8063ad5c4648146104ea578063b6211fa61461050a578063cb5fecd21461052a578063d091bc2e1461054a57600080fd5b80637b72cb9d116100d15780637b72cb9d1461047957806387cd7aa0146104995780638da5cb5b146104ac5780639b5e79f3146104ca57600080fd5b80636d70f7ae1461040b5780636fd95d7e14610444578063715018a61461046457600080fd5b8063442c1a061161016f57806351cff8d91161013e57806351cff8d91461038b57806359119a41146103ab57806365bf1653146103cb5780636bf09f10146103eb57600080fd5b8063442c1a06146102ea5780634456eda2146103275780634559c36d14610358578063470e96891461037857600080fd5b806333fec316116101ab57806333fec3161461025c57806337cfcf011461027c5780633fc15f151461029c5780634266965a146102bc57600080fd5b80630ddb88ae146101dd5780631a051746146101ff57806327c8f8351461023c57600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101fd6101f836600461430f565b6105dd565b005b34801561020b57600080fd5b5061021f61021a3660046143a4565b610629565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561024857600080fd5b5060065461021f906001600160a01b031681565b34801561026857600080fd5b506101fd6102773660046144d2565b61066e565b34801561028857600080fd5b506101fd610297366004614596565b610789565b3480156102a857600080fd5b5060045461021f906001600160a01b031681565b3480156102c857600080fd5b506102dc6102d73660046145e8565b610803565b604051908152602001610233565b3480156102f657600080fd5b5061031a61030536600461463b565b60096020526000908152604090205460ff1681565b604051610233919061466e565b34801561033357600080fd5b503360009081526001602052604090205460ff165b6040519015158152602001610233565b34801561036457600080fd5b5060055461021f906001600160a01b031681565b6102dc61038636600461463b565b6108c4565b34801561039757600080fd5b506101fd6103a636600461463b565b610919565b3480156103b757600080fd5b506101fd6103c6366004614696565b610ab3565b3480156103d757600080fd5b506101fd6103e63660046146da565b610ac5565b3480156103f757600080fd5b506102dc610406366004614728565b610b89565b34801561041757600080fd5b5061034861042636600461463b565b6001600160a01b031660009081526001602052604090205460ff1690565b34801561045057600080fd5b506101fd61045f36600461476a565b610c48565b34801561047057600080fd5b506101fd610e3c565b34801561048557600080fd5b506101fd6104943660046147b0565b610e50565b6102dc6104a7366004614728565b610f93565b3480156104b857600080fd5b506000546001600160a01b031661021f565b3480156104d657600080fd5b506102dc6104e5366004614863565b611034565b3480156104f657600080fd5b5060035461021f906001600160a01b031681565b34801561051657600080fd5b506102dc6105253660046148d3565b611113565b34801561053657600080fd5b506101fd61054536600461491b565b611122565b34801561055657600080fd5b506101fd61056536600461496c565b611349565b34801561057657600080fd5b506101fd6105853660046149dd565b6113f3565b34801561059657600080fd5b506102dc6105a5366004614a09565b61144b565b3480156105b657600080fd5b506101fd6105c536600461463b565b611660565b6102dc6105d83660046143a4565b6116d9565b6105e56117f6565b610623848484848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061185092505050565b50505050565b600a602052826000526040600020602052816000526040600020818154811061065157600080fd5b6000918252602090912001546001600160a01b0316925083915050565b3360009081526001602081905260409091205460ff161515146106ac5760405162461bcd60e51b81526004016106a390614a41565b60405180910390fd5b80518251146107235760405162461bcd60e51b815260206004820152603560248201527f4572726f723a204163636f756e7420616e64204f70657261746f72537461747560448201527f736573206c656e67746873206e6f7420657175616c000000000000000000000060648201526084016106a3565b60005b82518160ff16101561078457610774838260ff168151811061074a5761074a614a85565b6020026020010151838360ff168151811061076757610767614a85565b6020026020010151611aa2565b61077d81614ab1565b9050610726565b505050565b3360009081526001602081905260409091205460ff161515146107be5760405162461bcd60e51b81526004016106a390614a41565b60005b82518160ff161015610784576107f3838260ff16815181106107e5576107e5614a85565b602002602001015183611aa2565b6107fc81614ab1565b90506107c1565b33600090815260016020819052604082205460ff161515146108375760405162461bcd60e51b81526004016106a390614a41565b6040516323b872dd60e01b8152336004820152306024820152604481018690526001600160a01b038516906323b872dd906064016020604051808303816000875af115801561088a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ae9190614ad0565b506108bb85858585611b01565b95945050505050565b60008034116109085760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce8408aa8960831b60448201526064016106a3565b610913348333611d33565b92915050565b6109216117f6565b6001600160a01b0381166109b757604051600090339047908381818185875af1925050503d8060008114610971576040519150601f19603f3d011682016040523d82523d6000602084013e610976565b606091505b50509050806109b55760405162461bcd60e51b815260206004820152600b60248201526a10d85b1b0819985a5b195960aa1b60448201526064016106a3565b505b806001600160a01b031663a9059cbb6109d86000546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015610a1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a409190614aed565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610a8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aaf9190614ad0565b5050565b610abb6117f6565b610aaf8282611aa2565b3360009081526001602081905260409091205460ff16151514610afa5760405162461bcd60e51b81526004016106a390614a41565b60005b82518160ff161015610784578160ff166002811115610b1e57610b1e614658565b60096000858460ff1681518110610b3757610b37614a85565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19166001836002811115610b7457610b74614658565b0217905550610b8281614ab1565b9050610afd565b33600090815260016020819052604082205460ff16151514610bbd5760405162461bcd60e51b81526004016106a390614a41565b6040516323b872dd60e01b8152336004820152306024820152604481018590526001600160a01b038416906323b872dd906064016020604051808303816000875af1158015610c10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c349190614ad0565b50610c40848484611f6c565b949350505050565b6040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b038516906323b872dd906064016020604051808303816000875af1158015610c9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cbf9190614ad0565b506040516323b872dd60e01b8152336004820152306024820152604481018290526001600160a01b038416906323b872dd906064016020604051808303816000875af1158015610d13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d379190614ad0565b50610d4284836121a4565b610d4c83826121a4565b6007546001600160a01b031663e8e3370085858585610d776064610d7184605f6121be565b906121ca565b610d876064610d718a605f6121be565b33610d93426028614b06565b60405160e08a901b6001600160e01b03191681526001600160a01b039889166004820152968816602488015260448701959095526064860193909352608485019190915260a484015290921660c482015260e4810191909152610104016060604051808303816000875af1158015610e0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e339190614b1e565b50505050505050565b610e446117f6565b610e4e60006121d6565b565b3360009081526001602081905260409091205460ff16151514610e855760405162461bcd60e51b81526004016106a390614a41565b8051825114610ee85760405162461bcd60e51b815260206004820152602960248201527f4572726f723a20546f6b656e7320616e64205479706573206c656e67746873206044820152681b9bdd08195c5d585b60ba1b60648201526084016106a3565b60005b82518160ff16101561078457818160ff1681518110610f0c57610f0c614a85565b602002602001015160ff166002811115610f2857610f28614658565b60096000858460ff1681518110610f4157610f41614a85565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19166001836002811115610f7e57610f7e614658565b0217905550610f8c81614ab1565b9050610eeb565b33600090815260016020819052604082205460ff16151514610fc75760405162461bcd60e51b81526004016106a390614a41565b8334116110295760405162461bcd60e51b815260206004820152602a60248201527f5a61703a204e6f7420656e6f7567682065746865722073656e7420696e20666f6044820152690722074686520737761760b41b60648201526084016106a3565b610c40848484612226565b600061103e612444565b61104b878787308661249b565b90506110616001600160a01b038616858361284e565b60405163481086bf60e11b815260048101849052602481018290523360448201526001600160a01b038516906390210d7e90606401600060405180830381600087803b1580156110b057600080fd5b505af11580156110c4573d6000803e3d6000fd5b50506040518381528592503391507ff31400f17002dd22e136d94327c2e90535cb947fc556046a876ab815d44f35db9060200160405180910390a36111096001600255565b9695505050505050565b60006108bb858585338661249b565b6040516323b872dd60e01b8152336004820152306024820152604481018290526001600160a01b038316906323b872dd906064016020604051808303816000875af1158015611175573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111999190614ad0565b506111a482826121a4565b60075460009081906001600160a01b031663baa2abde8787868580306111cb426028614b06565b60405160e089901b6001600160e01b03191681526001600160a01b039788166004820152958716602487015260448601949094526064850192909252608484015290921660a482015260c481019190915260e40160408051808303816000875af115801561123d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112619190614b4c565b60405163a9059cbb60e01b81523360048201526024810183905291935091506001600160a01b0387169063a9059cbb906044016020604051808303816000875af11580156112b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d79190614ad0565b5060405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0386169063a9059cbb906044016020604051808303816000875af1158015611325573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e339190614ad0565b6113516117f6565b600480546001600160a01b03199081166001600160a01b039586161782556005805482169486169490941784556003805482169386169384179055600880548216968616969096179095556007805490951695841695909517909355600092835260096020526040808420805460ff19908116600190811790925595548416855281852080548716909117905590549091168252902080549091166002179055565b6113fb6117f6565b8060ff16600281111561141057611410614658565b6001600160a01b0383166000908152600960205260409020805460ff1916600183600281111561144257611442614658565b02179055505050565b6000806001600160a01b03841660009081526009602052604090205460ff16600281111561147b5761147b614658565b036114b65760405162461bcd60e51b81526020600482015260196024820152600080516020614db583398151915260448201526064016106a3565b826001600160a01b0316856001600160a01b03160361155b576001600160a01b03821630146115545760405163a9059cbb60e01b81526001600160a01b0383811660048301526024820186905286169063a9059cbb906044016020604051808303816000875af115801561152e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115529190614ad0565b505b5082610c40565b6040516323b872dd60e01b8152336004820152306024820152604481018590526001600160a01b038616906323b872dd906064016020604051808303816000875af11580156115ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d29190614ad0565b506115e1858585600086612942565b6040516370a0823160e01b81526001600160a01b0384811660048301529192506000918516906370a0823190602401602060405180830381865afa15801561162d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116519190614aed565b90508082116108bb5781611109565b6116686117f6565b6001600160a01b0381166116cd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106a3565b6116d6816121d6565b50565b60006116e3612444565b600034116117265760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce8408aa8960831b60448201526064016106a3565b611731348530611d33565b90506117476001600160a01b038516848361284e565b60405163481086bf60e11b815260048101839052602481018290523360448201526001600160a01b038416906390210d7e90606401600060405180830381600087803b15801561179657600080fd5b505af11580156117aa573d6000803e3d6000fd5b50506040518381528492503391507ff31400f17002dd22e136d94327c2e90535cb947fc556046a876ab815d44f35db9060200160405180910390a36117ef6001600255565b9392505050565b6000546001600160a01b03163314610e4e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106a3565b60018151116118a15760405162461bcd60e51b815260206004820152601f60248201527f4572726f723a2050617468206973206e6f74206c6f6e6720656e6f7567682e0060448201526064016106a3565b826001600160a01b0316816000815181106118be576118be614a85565b60200260200101516001600160a01b03161480156119135750816001600160a01b031681600183516118f09190614b70565b8151811061190057611900614a85565b60200260200101516001600160a01b0316145b61196f5760405162461bcd60e51b815260206004820152602760248201527f4572726f723a20456e64706f696e7473206f6620706174682061726520696e6360448201526637b93932b1ba1760c91b60648201526084016106a3565b6001600160a01b038084166000908152600a60209081526040808320938616835292815291902082516119a492840190614280565b50805160008167ffffffffffffffff8111156119c2576119c26143e5565b6040519080825280602002602001820160405280156119eb578160200160208202803683370190505b50905060005b82811015611a64578381611a06600186614b70565b611a109190614b70565b81518110611a2057611a20614a85565b6020026020010151828281518110611a3a57611a3a614a85565b6001600160a01b039092166020928302919091019091015280611a5c81614b87565b9150506119f1565b506001600160a01b038085166000908152600a6020908152604080832093891683529281529190208251611a9a92840190614280565b505050505050565b6001600160a01b038216600081815260016020908152604091829020805460ff191685151590811790915591519182527fcac6a33ee3e8243767e0e169d07d40f00bde205839fd5583dba0caae17114cb3910160405180910390a25050565b6001600160a01b038084166000908152600a6020908152604080832093861683529281528282208054845181840281018401909552808552929384939092830182828015611b7857602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611b5a575b505050505090508051600003611c115760408051600280825260608201835290916020830190803683370190505090508481600081518110611bbc57611bbc614a85565b60200260200101906001600160a01b031690816001600160a01b0316815250508381600181518110611bf057611bf0614a85565b60200260200101906001600160a01b031690816001600160a01b0316815250505b8515611cd857611c2185876121a4565b6007546000906001600160a01b03166338ed173988838588611c44426028614b06565b6040518663ffffffff1660e01b8152600401611c64959493929190614be4565b6000604051808303816000875af1158015611c83573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611cab9190810190614c20565b90508060018251611cbc9190614b70565b81518110611ccc57611ccc614a85565b60200260200101519250505b604080516001600160a01b03808816825286166020820152908101879052606081018390527f8dfb86999e54ac203a91b7a8882a5b866d915de0b568e6125956fa6416536b219060800160405180910390a150949350505050565b6000806001600160a01b03841660009081526009602052604090205460ff166002811115611d6357611d63614658565b03611d9e5760405162461bcd60e51b81526020600482015260196024820152600080516020614db583398151915260448201526064016106a3565b60016001600160a01b03841660009081526009602052604090205460ff166002811115611dcd57611dcd614658565b03611ee1576003546001600160a01b0390811690841603611ecf57600360009054906101000a90046001600160a01b03166001600160a01b031663d0e30db0856040518263ffffffff1660e01b81526004016000604051808303818588803b158015611e3857600080fd5b505af1158015611e4c573d6000803e3d6000fd5b505060035460405163a9059cbb60e01b81526001600160a01b038781166004830152602482018a9052909116935063a9059cbb925060440190506020604051808303816000875af1158015611ea5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ec99190614ad0565b50611eef565b611eda848484612226565b9050611eef565b611eec838584612a82565b90505b6040516370a0823160e01b81526001600160a01b038381166004830152600091908516906370a0823190602401602060405180830381865afa158015611f39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f5d9190614aed565b9050808211610c4057816108bb565b6003546001600160a01b038381166000908152600a60209081526040808320939094168083529281528382208054855181840281018401909652808652929485939092830182828015611fe857602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611fca575b505050505090508051600003612081576040805160028082526060820183529091602083019080368337019050509050848160008151811061202c5761202c614a85565b60200260200101906001600160a01b031690816001600160a01b031681525050818160018151811061206057612060614a85565b60200260200101906001600160a01b031690816001600160a01b0316815250505b85156121485761209185876121a4565b6007546000906001600160a01b03166318cbafe5888385896120b4426028614b06565b6040518663ffffffff1660e01b81526004016120d4959493929190614be4565b6000604051808303816000875af11580156120f3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261211b9190810190614c20565b9050806001825161212c9190614b70565b8151811061213c5761213c614a85565b60200260200101519350505b604080516001600160a01b03808816825284166020820152908101879052606081018490527f8dfb86999e54ac203a91b7a8882a5b866d915de0b568e6125956fa6416536b21906080015b60405180910390a150509392505050565b600754610aaf906001600160a01b0384811691168361284e565b60006117ef8284614ca6565b60006117ef8284614cc5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6003546001600160a01b039081166000818152600a60209081526040808320948716835293815283822080548551818402810184019096528086529294859390928301828280156122a057602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612282575b50505050509050805160000361233957604080516002808252606082018352909160208301908036833701905050905081816000815181106122e4576122e4614a85565b60200260200101906001600160a01b031690816001600160a01b031681525050848160018151811061231857612318614a85565b60200260200101906001600160a01b031690816001600160a01b0316815250505b85156123f5576007546000906001600160a01b0316637ff36ab588838589612362426028614b06565b6040518663ffffffff1660e01b81526004016123819493929190614ce7565b60006040518083038185885af115801561239f573d6000803e3d6000fd5b50505050506040513d6000823e601f3d908101601f191682016040526123c89190810190614c20565b905080600182516123d99190614b70565b815181106123e9576123e9614a85565b60200260200101519350505b604080516001600160a01b03808516825287166020820152908101879052606081018490527f8dfb86999e54ac203a91b7a8882a5b866d915de0b568e6125956fa6416536b2190608001612193565b60028054036124955760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106a3565b60028055565b6000806001600160a01b03871660009081526009602052604090205460ff1660028111156124cb576124cb614658565b036125065760405162461bcd60e51b81526020600482015260196024820152600080516020614db583398151915260448201526064016106a3565b6001600160a01b03841660009081526009602052604081205460ff16600281111561253357612533614658565b0361256e5760405162461bcd60e51b81526020600482015260196024820152600080516020614db583398151915260448201526064016106a3565b6040516323b872dd60e01b8152336004820152306024820152604481018690526001600160a01b038716906323b872dd906064016020604051808303816000875af11580156125c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125e59190614ad0565b50836001600160a01b0316866001600160a01b03160361268b576001600160a01b03831630146126845760405163a9059cbb60e01b81526001600160a01b0384811660048301526024820187905287169063a9059cbb906044016020604051808303816000875af115801561265e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126829190614ad0565b505b50836108bb565b60016001600160a01b03871660009081526009602052604090205460ff1660028111156126ba576126ba614658565b03612764576003546001600160a01b0387811691161480156126de57506001821515145b1561275057600354604051632e1a7d4d60e01b8152600481018790526001600160a01b0390911690632e1a7d4d90602401600060405180830381600087803b15801561272957600080fd5b505af115801561273d573d6000803e3d6000fd5b5050505061274b8386612eb7565b6127c4565b61275d8686868587612942565b90506127c4565b60016001600160a01b03851660009081526009602052604090205460ff16600281111561279357612793614658565b036127b55781156127a95761275d868685612f9a565b61275d868686866133c4565b6127c186868686613790565b90505b6040516370a0823160e01b81526001600160a01b038481166004830152600091908616906370a0823190602401602060405180830381865afa15801561280e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128329190614aed565b90508082116128415781612843565b805b979650505050505050565b604051636eb1769f60e11b81523060048201526001600160a01b0383811660248301526000919085169063dd62ed3e90604401602060405180830381865afa15801561289e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128c29190614aed565b90506106238463095ea7b360e01b856128db8686614b06565b6040516001600160a01b039092166024830152604482015260640160408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b031990931692909217909152613bf1565b6004546000906001600160a01b03878116911614801561297057506004546001600160a01b03858116911614155b801561298a57506005546001600160a01b03858116911614155b15612a5a576000866001600160a01b03166364f53f2e6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156129cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129f39190614aed565b90506000612a07612710610d7189856121be565b905060026001600160a01b03871660009081526009602052604090205460ff166002811115612a3857612a38614658565b03612a4b57612a488160026121ca565b90505b612a558782613cc6565b965050505b821515600103612a7657612a6f868684613cd2565b90506108bb565b61110986868685613d53565b600060026001600160a01b03851660009081526009602052604090205460ff166002811115612ab357612ab3614658565b036117ef5760008490506000816001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015612afd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b219190614d1c565b90506000826001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b879190614d1c565b6003549091506001600160a01b0383811691161480612bb357506003546001600160a01b038281169116145b15612d3e576003546000906001600160a01b03848116911614612bd65782612bd8565b815b90506000612be78860026121ca565b90506000612bf6828430612226565b9050612c0283826121a4565b6007546001600160a01b031663f305d719612c1d8b85613cc6565b85846000808e612c2e426028614b06565b60405160e089901b6001600160e01b03191681526001600160a01b039687166004820152602481019590955260448501939093526064840191909152909216608482015260a481019190915260c40160606040518083038185885af1158015612c9b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612cc09190614b1e565b6003549099507f2f3289d16dbc3007471d28c4936df3a95222bc938112449400d049637e3309ce92506001600160a01b0316905084612cff8c86613cc6565b604080516001600160a01b03948516815293909216602084015290820152606081018390526080810189905260a00160405180910390a1505050612ead565b6000612d4b8760026121ca565b90506000612d5a828530612226565b90506000612d72612d6b8a85613cc6565b8530612226565b9050612d7e85836121a4565b612d8884826121a4565b6007546001600160a01b031663e8e33700868685856000808f612dac426028614b06565b60405160e08a901b6001600160e01b03191681526001600160a01b039889166004820152968816602488015260448701959095526064860193909352608485019190915260a484015290921660c482015260e4810191909152610104016060604051808303816000875af1158015612e28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e4c9190614b1e565b604080516001600160a01b038a811682528916602082015280820187905260608101869052608081018390529051919a507f2f3289d16dbc3007471d28c4936df3a95222bc938112449400d049637e3309ce935081900360a0019150a15050505b5050509392505050565b604080516000808252602082019092526001600160a01b038416908390604051612ee19190614d65565b60006040518083038185875af1925050503d8060008114612f1e576040519150601f19603f3d011682016040523d82523d6000602084013e612f23565b606091505b50509050806107845760405162461bcd60e51b815260206004820152603460248201527f5472616e7366657248656c7065723a3a736166655472616e736665724554483a60448201527f20455448207472616e73666572206661696c656400000000000000000000000060648201526084016106a3565b600060026001600160a01b03851660009081526009602052604090205460ff166002811115612fcb57612fcb614658565b146130065760405162461bcd60e51b81526020600482015260196024820152600080516020614db583398151915260448201526064016106a3565b60008490506000816001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa15801561304b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061306f9190614d1c565b90506000826001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156130b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130d59190614d1c565b90506130e187876121a4565b60075460009081906001600160a01b031663baa2abde85858b858030613108426028614b06565b60405160e089901b6001600160e01b03191681526001600160a01b039788166004820152958716602487015260448601949094526064850192909252608484015290921660a482015260c481019190915260e40160408051808303816000875af115801561317a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061319e9190614b4c565b60035491935091506001600160a01b03858116911614613240576003546131d290839086906001600160a01b031630611b01565b600354604051632e1a7d4d60e01b8152600481018390529193506001600160a01b031690632e1a7d4d90602401600060405180830381600087803b15801561321957600080fd5b505af115801561322d573d6000803e3d6000fd5b5050505061323b8783612eb7565b6132a8565b600354604051632e1a7d4d60e01b8152600481018490526001600160a01b0390911690632e1a7d4d90602401600060405180830381600087803b15801561328657600080fd5b505af115801561329a573d6000803e3d6000fd5b505050506132a88783612eb7565b6003546001600160a01b03848116911614613345576003546132d790829085906001600160a01b031630611b01565b600354604051632e1a7d4d60e01b8152600481018390529192506001600160a01b031690632e1a7d4d90602401600060405180830381600087803b15801561331e57600080fd5b505af1158015613332573d6000803e3d6000fd5b505050506133408782612eb7565b6133ad565b600354604051632e1a7d4d60e01b8152600481018390526001600160a01b0390911690632e1a7d4d90602401600060405180830381600087803b15801561338b57600080fd5b505af115801561339f573d6000803e3d6000fd5b505050506133ad8782612eb7565b6133b78282614005565b9998505050505050505050565b600060026001600160a01b03861660009081526009602052604090205460ff1660028111156133f5576133f5614658565b146134305760405162461bcd60e51b81526020600482015260196024820152600080516020614db583398151915260448201526064016106a3565b60016001600160a01b03841660009081526009602052604090205460ff16600281111561345f5761345f614658565b1461349a5760405162461bcd60e51b81526020600482015260196024820152600080516020614db583398151915260448201526064016106a3565b60008590506000816001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa1580156134df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135039190614d1c565b90506000826001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613545573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135699190614d1c565b905061357588886121a4565b60075460009081906001600160a01b031663baa2abde85858c85803061359c426028614b06565b60405160e089901b6001600160e01b03191681526001600160a01b039788166004820152958716602487015260448601949094526064850192909252608484015290921660a482015260c481019190915260e40160408051808303816000875af115801561360e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136329190614b4c565b91509150876001600160a01b0316846001600160a01b0316146136625761365b82858a8a611b01565b91506136d7565b60405163a9059cbb60e01b81526001600160a01b0388811660048301526024820184905289169063a9059cbb906044016020604051808303816000875af11580156136b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136d59190614ad0565b505b876001600160a01b0316836001600160a01b031614613703576136fc81848a8a611b01565b9050613778565b60405163a9059cbb60e01b81526001600160a01b0388811660048301526024820183905289169063a9059cbb906044016020604051808303816000875af1158015613752573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137769190614ad0565b505b6137828282614005565b9a9950505050505050505050565b600060026001600160a01b03861660009081526009602052604090205460ff1660028111156137c1576137c1614658565b146137fc5760405162461bcd60e51b81526020600482015260196024820152600080516020614db583398151915260448201526064016106a3565b60026001600160a01b03841660009081526009602052604090205460ff16600281111561382b5761382b614658565b146138665760405162461bcd60e51b81526020600482015260196024820152600080516020614db583398151915260448201526064016106a3565b60008590506000816001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa1580156138ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138cf9190614d1c565b90506000826001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613911573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139359190614d1c565b905061394188886121a4565b60075460009081906001600160a01b031663baa2abde85858c858030613968426028614b06565b60405160e089901b6001600160e01b03191681526001600160a01b039788166004820152958716602487015260448601949094526064850192909252608484015290921660a482015260c481019190915260e40160408051808303816000875af11580156139da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139fe9190614b4c565b915091508794506000856001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a699190614d1c565b90506000866001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613aab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613acf9190614d1c565b9050816001600160a01b0316866001600160a01b03161480613b025750806001600160a01b0316866001600160a01b0316145b15613b42576000826001600160a01b0316876001600160a01b031614613b285782613b2a565b815b9050613b3a87878787858f614011565b985050613be2565b816001600160a01b0316856001600160a01b03161480613b735750806001600160a01b0316856001600160a01b0316145b15613bab576000826001600160a01b0316866001600160a01b031614613b995782613b9b565b815b9050613b3a86888688858f614011565b6000613bb8858830611f6c565b90506000613bc7858830611f6c565b9050613bdd8c613bd78484614005565b8d612a82565b995050505b50505050505050949350505050565b6000613c46826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661416d9092919063ffffffff16565b9050805160001480613c67575080806020019051810190613c679190614ad0565b6107845760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016106a3565b60006117ef8284614b70565b600060016001600160a01b03851660009081526009602052604090205460ff166002811115613d0357613d03614658565b14613d3e5760405162461bcd60e51b81526020600482015260196024820152600080516020614db583398151915260448201526064016106a3565b613d4884846121a4565b610c40838584611f6c565b600060016001600160a01b03861660009081526009602052604090205460ff166002811115613d8457613d84614658565b14613dbf5760405162461bcd60e51b81526020600482015260196024820152600080516020614db583398151915260448201526064016106a3565b6001600160a01b03831660009081526009602052604081205460ff166002811115613dec57613dec614658565b03613e275760405162461bcd60e51b81526020600482015260196024820152600080516020614db583398151915260448201526064016106a3565b613e3185856121a4565b60026001600160a01b03841660009081526009602052604090205460ff166002811115613e6057613e60614658565b03613ff95760008390506000816001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015613eaa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ece9190614d1c565b90506000826001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613f10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f349190614d1c565b9050816001600160a01b0316886001600160a01b03161480613f675750806001600160a01b0316886001600160a01b0316145b15613fc0576000826001600160a01b0316896001600160a01b031614613f8d5782613f8f565b815b90506000613f9e8960026121ca565b9050613fb78a80613faf8c85613cc6565b84868c614011565b95505050613ff1565b6000613fcd888a30611f6c565b905047808211613fdd5781613fdf565b805b9150613fec888389612a82565b955050505b505050610c40565b6108bb84868585611b01565b60006117ef8284614b06565b600061401d86856121a4565b600061402b85888630611b01565b905061403788876121a4565b61404184826121a4565b6007546001600160a01b031663e8e33700898689856000808a614065426028614b06565b60405160e08a901b6001600160e01b03191681526001600160a01b039889166004820152968816602488015260448701959095526064860193909352608485019190915260a484015290921660c482015260e4810191909152610104016060604051808303816000875af11580156140e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141059190614b1e565b604080516001600160a01b038d81168252891660208201528082018b9052606081018690526080810183905290519195507f2f3289d16dbc3007471d28c4936df3a95222bc938112449400d049637e3309ce935081900360a0019150a1509695505050505050565b6060610c40848460008585600080866001600160a01b031685876040516141949190614d65565b60006040518083038185875af1925050503d80600081146141d1576040519150601f19603f3d011682016040523d82523d6000602084013e6141d6565b606091505b5091509150612843878383876060831561425157825160000361424a576001600160a01b0385163b61424a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016106a3565b5081610c40565b610c4083838151156142665781518083602001fd5b8060405162461bcd60e51b81526004016106a39190614d81565b8280548282559060005260206000209081019282156142d5579160200282015b828111156142d557825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906142a0565b506142e19291506142e5565b5090565b5b808211156142e157600081556001016142e6565b6001600160a01b03811681146116d657600080fd5b6000806000806060858703121561432557600080fd5b8435614330816142fa565b93506020850135614340816142fa565b9250604085013567ffffffffffffffff8082111561435d57600080fd5b818701915087601f83011261437157600080fd5b81358181111561438057600080fd5b8860208260051b850101111561439557600080fd5b95989497505060200194505050565b6000806000606084860312156143b957600080fd5b83356143c4816142fa565b925060208401356143d4816142fa565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715614424576144246143e5565b604052919050565b600067ffffffffffffffff821115614446576144466143e5565b5060051b60200190565b600082601f83011261446157600080fd5b813560206144766144718361442c565b6143fb565b82815260059290921b8401810191818101908684111561449557600080fd5b8286015b848110156144b95780356144ac816142fa565b8352918301918301614499565b509695505050505050565b80151581146116d657600080fd5b600080604083850312156144e557600080fd5b823567ffffffffffffffff808211156144fd57600080fd5b61450986838701614450565b935060209150818501358181111561452057600080fd5b85019050601f8101861361453357600080fd5b80356145416144718261442c565b81815260059190911b8201830190838101908883111561456057600080fd5b928401925b82841015614587578335614578816144c4565b82529284019290840190614565565b80955050505050509250929050565b600080604083850312156145a957600080fd5b823567ffffffffffffffff8111156145c057600080fd5b6145cc85828601614450565b92505060208301356145dd816144c4565b809150509250929050565b600080600080608085870312156145fe57600080fd5b843593506020850135614610816142fa565b92506040850135614620816142fa565b91506060850135614630816142fa565b939692955090935050565b60006020828403121561464d57600080fd5b81356117ef816142fa565b634e487b7160e01b600052602160045260246000fd5b602081016003831061469057634e487b7160e01b600052602160045260246000fd5b91905290565b600080604083850312156146a957600080fd5b82356146b4816142fa565b915060208301356145dd816144c4565b803560ff811681146146d557600080fd5b919050565b600080604083850312156146ed57600080fd5b823567ffffffffffffffff81111561470457600080fd5b61471085828601614450565b92505061471f602084016146c4565b90509250929050565b60008060006060848603121561473d57600080fd5b83359250602084013561474f816142fa565b9150604084013561475f816142fa565b809150509250925092565b6000806000806080858703121561478057600080fd5b843561478b816142fa565b9350602085013561479b816142fa565b93969395505050506040820135916060013590565b600080604083850312156147c357600080fd5b823567ffffffffffffffff808211156147db57600080fd5b6147e786838701614450565b93506020915081850135818111156147fe57600080fd5b85019050601f8101861361481157600080fd5b803561481f6144718261442c565b81815260059190911b8201830190838101908883111561483e57600080fd5b928401925b8284101561458757614854846146c4565b82529284019290840190614843565b60008060008060008060c0878903121561487c57600080fd5b8635614887816142fa565b955060208701359450604087013561489e816142fa565b935060608701356148ae816142fa565b92506080870135915060a08701356148c5816144c4565b809150509295509295509295565b600080600080608085870312156148e957600080fd5b84356148f4816142fa565b935060208501359250604085013561490b816142fa565b91506060850135614630816144c4565b6000806000806080858703121561493157600080fd5b843561493c816142fa565b9350602085013561494c816142fa565b9250604085013561495c816142fa565b9396929550929360600135925050565b600080600080600060a0868803121561498457600080fd5b853561498f816142fa565b9450602086013561499f816142fa565b935060408601356149af816142fa565b925060608601356149bf816142fa565b915060808601356149cf816142fa565b809150509295509295909350565b600080604083850312156149f057600080fd5b82356149fb816142fa565b915061471f602084016146c4565b60008060008060808587031215614a1f57600080fd5b8435614a2a816142fa565b9350602085013592506040850135614620816142fa565b60208082526024908201527f6f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657260408201526330ba37b960e11b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff8103614ac757614ac7614a9b565b60010192915050565b600060208284031215614ae257600080fd5b81516117ef816144c4565b600060208284031215614aff57600080fd5b5051919050565b60008219821115614b1957614b19614a9b565b500190565b600080600060608486031215614b3357600080fd5b8351925060208401519150604084015190509250925092565b60008060408385031215614b5f57600080fd5b505080516020909101519092909150565b600082821015614b8257614b82614a9b565b500390565b600060018201614b9957614b99614a9b565b5060010190565b600081518084526020808501945080840160005b83811015614bd95781516001600160a01b031687529582019590820190600101614bb4565b509495945050505050565b85815284602082015260a060408201526000614c0360a0830186614ba0565b6001600160a01b0394909416606083015250608001529392505050565b60006020808385031215614c3357600080fd5b825167ffffffffffffffff811115614c4a57600080fd5b8301601f81018513614c5b57600080fd5b8051614c696144718261442c565b81815260059190911b82018301908381019087831115614c8857600080fd5b928401925b8284101561284357835182529284019290840190614c8d565b6000816000190483118215151615614cc057614cc0614a9b565b500290565b600082614ce257634e487b7160e01b600052601260045260246000fd5b500490565b848152608060208201526000614d006080830186614ba0565b6001600160a01b03949094166040830152506060015292915050565b600060208284031215614d2e57600080fd5b81516117ef816142fa565b60005b83811015614d54578181015183820152602001614d3c565b838111156106235750506000910152565b60008251614d77818460208701614d39565b9190910192915050565b6020815260008251806020840152614da0816040850160208701614d39565b601f01601f1916919091016040019291505056fe4572726f723a20496e76616c696420746f6b656e207479706500000000000000a2646970667358221220e376169af5fdc84117648b6a150b3364ba383768b667b7920f5c0ca7909445f464736f6c634300080f0033
Deployed Bytecode
0x6080604052600436106101d15760003560e01c80636d70f7ae116100f7578063ad5c464811610095578063dfcf852811610064578063dfcf85281461056a578063e4f6b3121461058a578063f2fde38b146105aa578063fbb152d3146105ca57600080fd5b8063ad5c4648146104ea578063b6211fa61461050a578063cb5fecd21461052a578063d091bc2e1461054a57600080fd5b80637b72cb9d116100d15780637b72cb9d1461047957806387cd7aa0146104995780638da5cb5b146104ac5780639b5e79f3146104ca57600080fd5b80636d70f7ae1461040b5780636fd95d7e14610444578063715018a61461046457600080fd5b8063442c1a061161016f57806351cff8d91161013e57806351cff8d91461038b57806359119a41146103ab57806365bf1653146103cb5780636bf09f10146103eb57600080fd5b8063442c1a06146102ea5780634456eda2146103275780634559c36d14610358578063470e96891461037857600080fd5b806333fec316116101ab57806333fec3161461025c57806337cfcf011461027c5780633fc15f151461029c5780634266965a146102bc57600080fd5b80630ddb88ae146101dd5780631a051746146101ff57806327c8f8351461023c57600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101fd6101f836600461430f565b6105dd565b005b34801561020b57600080fd5b5061021f61021a3660046143a4565b610629565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561024857600080fd5b5060065461021f906001600160a01b031681565b34801561026857600080fd5b506101fd6102773660046144d2565b61066e565b34801561028857600080fd5b506101fd610297366004614596565b610789565b3480156102a857600080fd5b5060045461021f906001600160a01b031681565b3480156102c857600080fd5b506102dc6102d73660046145e8565b610803565b604051908152602001610233565b3480156102f657600080fd5b5061031a61030536600461463b565b60096020526000908152604090205460ff1681565b604051610233919061466e565b34801561033357600080fd5b503360009081526001602052604090205460ff165b6040519015158152602001610233565b34801561036457600080fd5b5060055461021f906001600160a01b031681565b6102dc61038636600461463b565b6108c4565b34801561039757600080fd5b506101fd6103a636600461463b565b610919565b3480156103b757600080fd5b506101fd6103c6366004614696565b610ab3565b3480156103d757600080fd5b506101fd6103e63660046146da565b610ac5565b3480156103f757600080fd5b506102dc610406366004614728565b610b89565b34801561041757600080fd5b5061034861042636600461463b565b6001600160a01b031660009081526001602052604090205460ff1690565b34801561045057600080fd5b506101fd61045f36600461476a565b610c48565b34801561047057600080fd5b506101fd610e3c565b34801561048557600080fd5b506101fd6104943660046147b0565b610e50565b6102dc6104a7366004614728565b610f93565b3480156104b857600080fd5b506000546001600160a01b031661021f565b3480156104d657600080fd5b506102dc6104e5366004614863565b611034565b3480156104f657600080fd5b5060035461021f906001600160a01b031681565b34801561051657600080fd5b506102dc6105253660046148d3565b611113565b34801561053657600080fd5b506101fd61054536600461491b565b611122565b34801561055657600080fd5b506101fd61056536600461496c565b611349565b34801561057657600080fd5b506101fd6105853660046149dd565b6113f3565b34801561059657600080fd5b506102dc6105a5366004614a09565b61144b565b3480156105b657600080fd5b506101fd6105c536600461463b565b611660565b6102dc6105d83660046143a4565b6116d9565b6105e56117f6565b610623848484848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061185092505050565b50505050565b600a602052826000526040600020602052816000526040600020818154811061065157600080fd5b6000918252602090912001546001600160a01b0316925083915050565b3360009081526001602081905260409091205460ff161515146106ac5760405162461bcd60e51b81526004016106a390614a41565b60405180910390fd5b80518251146107235760405162461bcd60e51b815260206004820152603560248201527f4572726f723a204163636f756e7420616e64204f70657261746f72537461747560448201527f736573206c656e67746873206e6f7420657175616c000000000000000000000060648201526084016106a3565b60005b82518160ff16101561078457610774838260ff168151811061074a5761074a614a85565b6020026020010151838360ff168151811061076757610767614a85565b6020026020010151611aa2565b61077d81614ab1565b9050610726565b505050565b3360009081526001602081905260409091205460ff161515146107be5760405162461bcd60e51b81526004016106a390614a41565b60005b82518160ff161015610784576107f3838260ff16815181106107e5576107e5614a85565b602002602001015183611aa2565b6107fc81614ab1565b90506107c1565b33600090815260016020819052604082205460ff161515146108375760405162461bcd60e51b81526004016106a390614a41565b6040516323b872dd60e01b8152336004820152306024820152604481018690526001600160a01b038516906323b872dd906064016020604051808303816000875af115801561088a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ae9190614ad0565b506108bb85858585611b01565b95945050505050565b60008034116109085760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce8408aa8960831b60448201526064016106a3565b610913348333611d33565b92915050565b6109216117f6565b6001600160a01b0381166109b757604051600090339047908381818185875af1925050503d8060008114610971576040519150601f19603f3d011682016040523d82523d6000602084013e610976565b606091505b50509050806109b55760405162461bcd60e51b815260206004820152600b60248201526a10d85b1b0819985a5b195960aa1b60448201526064016106a3565b505b806001600160a01b031663a9059cbb6109d86000546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015610a1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a409190614aed565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610a8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aaf9190614ad0565b5050565b610abb6117f6565b610aaf8282611aa2565b3360009081526001602081905260409091205460ff16151514610afa5760405162461bcd60e51b81526004016106a390614a41565b60005b82518160ff161015610784578160ff166002811115610b1e57610b1e614658565b60096000858460ff1681518110610b3757610b37614a85565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19166001836002811115610b7457610b74614658565b0217905550610b8281614ab1565b9050610afd565b33600090815260016020819052604082205460ff16151514610bbd5760405162461bcd60e51b81526004016106a390614a41565b6040516323b872dd60e01b8152336004820152306024820152604481018590526001600160a01b038416906323b872dd906064016020604051808303816000875af1158015610c10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c349190614ad0565b50610c40848484611f6c565b949350505050565b6040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b038516906323b872dd906064016020604051808303816000875af1158015610c9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cbf9190614ad0565b506040516323b872dd60e01b8152336004820152306024820152604481018290526001600160a01b038416906323b872dd906064016020604051808303816000875af1158015610d13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d379190614ad0565b50610d4284836121a4565b610d4c83826121a4565b6007546001600160a01b031663e8e3370085858585610d776064610d7184605f6121be565b906121ca565b610d876064610d718a605f6121be565b33610d93426028614b06565b60405160e08a901b6001600160e01b03191681526001600160a01b039889166004820152968816602488015260448701959095526064860193909352608485019190915260a484015290921660c482015260e4810191909152610104016060604051808303816000875af1158015610e0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e339190614b1e565b50505050505050565b610e446117f6565b610e4e60006121d6565b565b3360009081526001602081905260409091205460ff16151514610e855760405162461bcd60e51b81526004016106a390614a41565b8051825114610ee85760405162461bcd60e51b815260206004820152602960248201527f4572726f723a20546f6b656e7320616e64205479706573206c656e67746873206044820152681b9bdd08195c5d585b60ba1b60648201526084016106a3565b60005b82518160ff16101561078457818160ff1681518110610f0c57610f0c614a85565b602002602001015160ff166002811115610f2857610f28614658565b60096000858460ff1681518110610f4157610f41614a85565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19166001836002811115610f7e57610f7e614658565b0217905550610f8c81614ab1565b9050610eeb565b33600090815260016020819052604082205460ff16151514610fc75760405162461bcd60e51b81526004016106a390614a41565b8334116110295760405162461bcd60e51b815260206004820152602a60248201527f5a61703a204e6f7420656e6f7567682065746865722073656e7420696e20666f6044820152690722074686520737761760b41b60648201526084016106a3565b610c40848484612226565b600061103e612444565b61104b878787308661249b565b90506110616001600160a01b038616858361284e565b60405163481086bf60e11b815260048101849052602481018290523360448201526001600160a01b038516906390210d7e90606401600060405180830381600087803b1580156110b057600080fd5b505af11580156110c4573d6000803e3d6000fd5b50506040518381528592503391507ff31400f17002dd22e136d94327c2e90535cb947fc556046a876ab815d44f35db9060200160405180910390a36111096001600255565b9695505050505050565b60006108bb858585338661249b565b6040516323b872dd60e01b8152336004820152306024820152604481018290526001600160a01b038316906323b872dd906064016020604051808303816000875af1158015611175573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111999190614ad0565b506111a482826121a4565b60075460009081906001600160a01b031663baa2abde8787868580306111cb426028614b06565b60405160e089901b6001600160e01b03191681526001600160a01b039788166004820152958716602487015260448601949094526064850192909252608484015290921660a482015260c481019190915260e40160408051808303816000875af115801561123d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112619190614b4c565b60405163a9059cbb60e01b81523360048201526024810183905291935091506001600160a01b0387169063a9059cbb906044016020604051808303816000875af11580156112b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112d79190614ad0565b5060405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0386169063a9059cbb906044016020604051808303816000875af1158015611325573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e339190614ad0565b6113516117f6565b600480546001600160a01b03199081166001600160a01b039586161782556005805482169486169490941784556003805482169386169384179055600880548216968616969096179095556007805490951695841695909517909355600092835260096020526040808420805460ff19908116600190811790925595548416855281852080548716909117905590549091168252902080549091166002179055565b6113fb6117f6565b8060ff16600281111561141057611410614658565b6001600160a01b0383166000908152600960205260409020805460ff1916600183600281111561144257611442614658565b02179055505050565b6000806001600160a01b03841660009081526009602052604090205460ff16600281111561147b5761147b614658565b036114b65760405162461bcd60e51b81526020600482015260196024820152600080516020614db583398151915260448201526064016106a3565b826001600160a01b0316856001600160a01b03160361155b576001600160a01b03821630146115545760405163a9059cbb60e01b81526001600160a01b0383811660048301526024820186905286169063a9059cbb906044016020604051808303816000875af115801561152e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115529190614ad0565b505b5082610c40565b6040516323b872dd60e01b8152336004820152306024820152604481018590526001600160a01b038616906323b872dd906064016020604051808303816000875af11580156115ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d29190614ad0565b506115e1858585600086612942565b6040516370a0823160e01b81526001600160a01b0384811660048301529192506000918516906370a0823190602401602060405180830381865afa15801561162d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116519190614aed565b90508082116108bb5781611109565b6116686117f6565b6001600160a01b0381166116cd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106a3565b6116d6816121d6565b50565b60006116e3612444565b600034116117265760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce8408aa8960831b60448201526064016106a3565b611731348530611d33565b90506117476001600160a01b038516848361284e565b60405163481086bf60e11b815260048101839052602481018290523360448201526001600160a01b038416906390210d7e90606401600060405180830381600087803b15801561179657600080fd5b505af11580156117aa573d6000803e3d6000fd5b50506040518381528492503391507ff31400f17002dd22e136d94327c2e90535cb947fc556046a876ab815d44f35db9060200160405180910390a36117ef6001600255565b9392505050565b6000546001600160a01b03163314610e4e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106a3565b60018151116118a15760405162461bcd60e51b815260206004820152601f60248201527f4572726f723a2050617468206973206e6f74206c6f6e6720656e6f7567682e0060448201526064016106a3565b826001600160a01b0316816000815181106118be576118be614a85565b60200260200101516001600160a01b03161480156119135750816001600160a01b031681600183516118f09190614b70565b8151811061190057611900614a85565b60200260200101516001600160a01b0316145b61196f5760405162461bcd60e51b815260206004820152602760248201527f4572726f723a20456e64706f696e7473206f6620706174682061726520696e6360448201526637b93932b1ba1760c91b60648201526084016106a3565b6001600160a01b038084166000908152600a60209081526040808320938616835292815291902082516119a492840190614280565b50805160008167ffffffffffffffff8111156119c2576119c26143e5565b6040519080825280602002602001820160405280156119eb578160200160208202803683370190505b50905060005b82811015611a64578381611a06600186614b70565b611a109190614b70565b81518110611a2057611a20614a85565b6020026020010151828281518110611a3a57611a3a614a85565b6001600160a01b039092166020928302919091019091015280611a5c81614b87565b9150506119f1565b506001600160a01b038085166000908152600a6020908152604080832093891683529281529190208251611a9a92840190614280565b505050505050565b6001600160a01b038216600081815260016020908152604091829020805460ff191685151590811790915591519182527fcac6a33ee3e8243767e0e169d07d40f00bde205839fd5583dba0caae17114cb3910160405180910390a25050565b6001600160a01b038084166000908152600a6020908152604080832093861683529281528282208054845181840281018401909552808552929384939092830182828015611b7857602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611b5a575b505050505090508051600003611c115760408051600280825260608201835290916020830190803683370190505090508481600081518110611bbc57611bbc614a85565b60200260200101906001600160a01b031690816001600160a01b0316815250508381600181518110611bf057611bf0614a85565b60200260200101906001600160a01b031690816001600160a01b0316815250505b8515611cd857611c2185876121a4565b6007546000906001600160a01b03166338ed173988838588611c44426028614b06565b6040518663ffffffff1660e01b8152600401611c64959493929190614be4565b6000604051808303816000875af1158015611c83573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611cab9190810190614c20565b90508060018251611cbc9190614b70565b81518110611ccc57611ccc614a85565b60200260200101519250505b604080516001600160a01b03808816825286166020820152908101879052606081018390527f8dfb86999e54ac203a91b7a8882a5b866d915de0b568e6125956fa6416536b219060800160405180910390a150949350505050565b6000806001600160a01b03841660009081526009602052604090205460ff166002811115611d6357611d63614658565b03611d9e5760405162461bcd60e51b81526020600482015260196024820152600080516020614db583398151915260448201526064016106a3565b60016001600160a01b03841660009081526009602052604090205460ff166002811115611dcd57611dcd614658565b03611ee1576003546001600160a01b0390811690841603611ecf57600360009054906101000a90046001600160a01b03166001600160a01b031663d0e30db0856040518263ffffffff1660e01b81526004016000604051808303818588803b158015611e3857600080fd5b505af1158015611e4c573d6000803e3d6000fd5b505060035460405163a9059cbb60e01b81526001600160a01b038781166004830152602482018a9052909116935063a9059cbb925060440190506020604051808303816000875af1158015611ea5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ec99190614ad0565b50611eef565b611eda848484612226565b9050611eef565b611eec838584612a82565b90505b6040516370a0823160e01b81526001600160a01b038381166004830152600091908516906370a0823190602401602060405180830381865afa158015611f39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f5d9190614aed565b9050808211610c4057816108bb565b6003546001600160a01b038381166000908152600a60209081526040808320939094168083529281528382208054855181840281018401909652808652929485939092830182828015611fe857602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611fca575b505050505090508051600003612081576040805160028082526060820183529091602083019080368337019050509050848160008151811061202c5761202c614a85565b60200260200101906001600160a01b031690816001600160a01b031681525050818160018151811061206057612060614a85565b60200260200101906001600160a01b031690816001600160a01b0316815250505b85156121485761209185876121a4565b6007546000906001600160a01b03166318cbafe5888385896120b4426028614b06565b6040518663ffffffff1660e01b81526004016120d4959493929190614be4565b6000604051808303816000875af11580156120f3573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261211b9190810190614c20565b9050806001825161212c9190614b70565b8151811061213c5761213c614a85565b60200260200101519350505b604080516001600160a01b03808816825284166020820152908101879052606081018490527f8dfb86999e54ac203a91b7a8882a5b866d915de0b568e6125956fa6416536b21906080015b60405180910390a150509392505050565b600754610aaf906001600160a01b0384811691168361284e565b60006117ef8284614ca6565b60006117ef8284614cc5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6003546001600160a01b039081166000818152600a60209081526040808320948716835293815283822080548551818402810184019096528086529294859390928301828280156122a057602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311612282575b50505050509050805160000361233957604080516002808252606082018352909160208301908036833701905050905081816000815181106122e4576122e4614a85565b60200260200101906001600160a01b031690816001600160a01b031681525050848160018151811061231857612318614a85565b60200260200101906001600160a01b031690816001600160a01b0316815250505b85156123f5576007546000906001600160a01b0316637ff36ab588838589612362426028614b06565b6040518663ffffffff1660e01b81526004016123819493929190614ce7565b60006040518083038185885af115801561239f573d6000803e3d6000fd5b50505050506040513d6000823e601f3d908101601f191682016040526123c89190810190614c20565b905080600182516123d99190614b70565b815181106123e9576123e9614a85565b60200260200101519350505b604080516001600160a01b03808516825287166020820152908101879052606081018490527f8dfb86999e54ac203a91b7a8882a5b866d915de0b568e6125956fa6416536b2190608001612193565b60028054036124955760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106a3565b60028055565b6000806001600160a01b03871660009081526009602052604090205460ff1660028111156124cb576124cb614658565b036125065760405162461bcd60e51b81526020600482015260196024820152600080516020614db583398151915260448201526064016106a3565b6001600160a01b03841660009081526009602052604081205460ff16600281111561253357612533614658565b0361256e5760405162461bcd60e51b81526020600482015260196024820152600080516020614db583398151915260448201526064016106a3565b6040516323b872dd60e01b8152336004820152306024820152604481018690526001600160a01b038716906323b872dd906064016020604051808303816000875af11580156125c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125e59190614ad0565b50836001600160a01b0316866001600160a01b03160361268b576001600160a01b03831630146126845760405163a9059cbb60e01b81526001600160a01b0384811660048301526024820187905287169063a9059cbb906044016020604051808303816000875af115801561265e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126829190614ad0565b505b50836108bb565b60016001600160a01b03871660009081526009602052604090205460ff1660028111156126ba576126ba614658565b03612764576003546001600160a01b0387811691161480156126de57506001821515145b1561275057600354604051632e1a7d4d60e01b8152600481018790526001600160a01b0390911690632e1a7d4d90602401600060405180830381600087803b15801561272957600080fd5b505af115801561273d573d6000803e3d6000fd5b5050505061274b8386612eb7565b6127c4565b61275d8686868587612942565b90506127c4565b60016001600160a01b03851660009081526009602052604090205460ff16600281111561279357612793614658565b036127b55781156127a95761275d868685612f9a565b61275d868686866133c4565b6127c186868686613790565b90505b6040516370a0823160e01b81526001600160a01b038481166004830152600091908616906370a0823190602401602060405180830381865afa15801561280e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128329190614aed565b90508082116128415781612843565b805b979650505050505050565b604051636eb1769f60e11b81523060048201526001600160a01b0383811660248301526000919085169063dd62ed3e90604401602060405180830381865afa15801561289e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128c29190614aed565b90506106238463095ea7b360e01b856128db8686614b06565b6040516001600160a01b039092166024830152604482015260640160408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b031990931692909217909152613bf1565b6004546000906001600160a01b03878116911614801561297057506004546001600160a01b03858116911614155b801561298a57506005546001600160a01b03858116911614155b15612a5a576000866001600160a01b03166364f53f2e6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156129cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129f39190614aed565b90506000612a07612710610d7189856121be565b905060026001600160a01b03871660009081526009602052604090205460ff166002811115612a3857612a38614658565b03612a4b57612a488160026121ca565b90505b612a558782613cc6565b965050505b821515600103612a7657612a6f868684613cd2565b90506108bb565b61110986868685613d53565b600060026001600160a01b03851660009081526009602052604090205460ff166002811115612ab357612ab3614658565b036117ef5760008490506000816001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015612afd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b219190614d1c565b90506000826001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b879190614d1c565b6003549091506001600160a01b0383811691161480612bb357506003546001600160a01b038281169116145b15612d3e576003546000906001600160a01b03848116911614612bd65782612bd8565b815b90506000612be78860026121ca565b90506000612bf6828430612226565b9050612c0283826121a4565b6007546001600160a01b031663f305d719612c1d8b85613cc6565b85846000808e612c2e426028614b06565b60405160e089901b6001600160e01b03191681526001600160a01b039687166004820152602481019590955260448501939093526064840191909152909216608482015260a481019190915260c40160606040518083038185885af1158015612c9b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612cc09190614b1e565b6003549099507f2f3289d16dbc3007471d28c4936df3a95222bc938112449400d049637e3309ce92506001600160a01b0316905084612cff8c86613cc6565b604080516001600160a01b03948516815293909216602084015290820152606081018390526080810189905260a00160405180910390a1505050612ead565b6000612d4b8760026121ca565b90506000612d5a828530612226565b90506000612d72612d6b8a85613cc6565b8530612226565b9050612d7e85836121a4565b612d8884826121a4565b6007546001600160a01b031663e8e33700868685856000808f612dac426028614b06565b60405160e08a901b6001600160e01b03191681526001600160a01b039889166004820152968816602488015260448701959095526064860193909352608485019190915260a484015290921660c482015260e4810191909152610104016060604051808303816000875af1158015612e28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e4c9190614b1e565b604080516001600160a01b038a811682528916602082015280820187905260608101869052608081018390529051919a507f2f3289d16dbc3007471d28c4936df3a95222bc938112449400d049637e3309ce935081900360a0019150a15050505b5050509392505050565b604080516000808252602082019092526001600160a01b038416908390604051612ee19190614d65565b60006040518083038185875af1925050503d8060008114612f1e576040519150601f19603f3d011682016040523d82523d6000602084013e612f23565b606091505b50509050806107845760405162461bcd60e51b815260206004820152603460248201527f5472616e7366657248656c7065723a3a736166655472616e736665724554483a60448201527f20455448207472616e73666572206661696c656400000000000000000000000060648201526084016106a3565b600060026001600160a01b03851660009081526009602052604090205460ff166002811115612fcb57612fcb614658565b146130065760405162461bcd60e51b81526020600482015260196024820152600080516020614db583398151915260448201526064016106a3565b60008490506000816001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa15801561304b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061306f9190614d1c565b90506000826001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156130b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130d59190614d1c565b90506130e187876121a4565b60075460009081906001600160a01b031663baa2abde85858b858030613108426028614b06565b60405160e089901b6001600160e01b03191681526001600160a01b039788166004820152958716602487015260448601949094526064850192909252608484015290921660a482015260c481019190915260e40160408051808303816000875af115801561317a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061319e9190614b4c565b60035491935091506001600160a01b03858116911614613240576003546131d290839086906001600160a01b031630611b01565b600354604051632e1a7d4d60e01b8152600481018390529193506001600160a01b031690632e1a7d4d90602401600060405180830381600087803b15801561321957600080fd5b505af115801561322d573d6000803e3d6000fd5b5050505061323b8783612eb7565b6132a8565b600354604051632e1a7d4d60e01b8152600481018490526001600160a01b0390911690632e1a7d4d90602401600060405180830381600087803b15801561328657600080fd5b505af115801561329a573d6000803e3d6000fd5b505050506132a88783612eb7565b6003546001600160a01b03848116911614613345576003546132d790829085906001600160a01b031630611b01565b600354604051632e1a7d4d60e01b8152600481018390529192506001600160a01b031690632e1a7d4d90602401600060405180830381600087803b15801561331e57600080fd5b505af1158015613332573d6000803e3d6000fd5b505050506133408782612eb7565b6133ad565b600354604051632e1a7d4d60e01b8152600481018390526001600160a01b0390911690632e1a7d4d90602401600060405180830381600087803b15801561338b57600080fd5b505af115801561339f573d6000803e3d6000fd5b505050506133ad8782612eb7565b6133b78282614005565b9998505050505050505050565b600060026001600160a01b03861660009081526009602052604090205460ff1660028111156133f5576133f5614658565b146134305760405162461bcd60e51b81526020600482015260196024820152600080516020614db583398151915260448201526064016106a3565b60016001600160a01b03841660009081526009602052604090205460ff16600281111561345f5761345f614658565b1461349a5760405162461bcd60e51b81526020600482015260196024820152600080516020614db583398151915260448201526064016106a3565b60008590506000816001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa1580156134df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135039190614d1c565b90506000826001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613545573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135699190614d1c565b905061357588886121a4565b60075460009081906001600160a01b031663baa2abde85858c85803061359c426028614b06565b60405160e089901b6001600160e01b03191681526001600160a01b039788166004820152958716602487015260448601949094526064850192909252608484015290921660a482015260c481019190915260e40160408051808303816000875af115801561360e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136329190614b4c565b91509150876001600160a01b0316846001600160a01b0316146136625761365b82858a8a611b01565b91506136d7565b60405163a9059cbb60e01b81526001600160a01b0388811660048301526024820184905289169063a9059cbb906044016020604051808303816000875af11580156136b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136d59190614ad0565b505b876001600160a01b0316836001600160a01b031614613703576136fc81848a8a611b01565b9050613778565b60405163a9059cbb60e01b81526001600160a01b0388811660048301526024820183905289169063a9059cbb906044016020604051808303816000875af1158015613752573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137769190614ad0565b505b6137828282614005565b9a9950505050505050505050565b600060026001600160a01b03861660009081526009602052604090205460ff1660028111156137c1576137c1614658565b146137fc5760405162461bcd60e51b81526020600482015260196024820152600080516020614db583398151915260448201526064016106a3565b60026001600160a01b03841660009081526009602052604090205460ff16600281111561382b5761382b614658565b146138665760405162461bcd60e51b81526020600482015260196024820152600080516020614db583398151915260448201526064016106a3565b60008590506000816001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa1580156138ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138cf9190614d1c565b90506000826001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613911573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139359190614d1c565b905061394188886121a4565b60075460009081906001600160a01b031663baa2abde85858c858030613968426028614b06565b60405160e089901b6001600160e01b03191681526001600160a01b039788166004820152958716602487015260448601949094526064850192909252608484015290921660a482015260c481019190915260e40160408051808303816000875af11580156139da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139fe9190614b4c565b915091508794506000856001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a699190614d1c565b90506000866001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613aab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613acf9190614d1c565b9050816001600160a01b0316866001600160a01b03161480613b025750806001600160a01b0316866001600160a01b0316145b15613b42576000826001600160a01b0316876001600160a01b031614613b285782613b2a565b815b9050613b3a87878787858f614011565b985050613be2565b816001600160a01b0316856001600160a01b03161480613b735750806001600160a01b0316856001600160a01b0316145b15613bab576000826001600160a01b0316866001600160a01b031614613b995782613b9b565b815b9050613b3a86888688858f614011565b6000613bb8858830611f6c565b90506000613bc7858830611f6c565b9050613bdd8c613bd78484614005565b8d612a82565b995050505b50505050505050949350505050565b6000613c46826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661416d9092919063ffffffff16565b9050805160001480613c67575080806020019051810190613c679190614ad0565b6107845760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016106a3565b60006117ef8284614b70565b600060016001600160a01b03851660009081526009602052604090205460ff166002811115613d0357613d03614658565b14613d3e5760405162461bcd60e51b81526020600482015260196024820152600080516020614db583398151915260448201526064016106a3565b613d4884846121a4565b610c40838584611f6c565b600060016001600160a01b03861660009081526009602052604090205460ff166002811115613d8457613d84614658565b14613dbf5760405162461bcd60e51b81526020600482015260196024820152600080516020614db583398151915260448201526064016106a3565b6001600160a01b03831660009081526009602052604081205460ff166002811115613dec57613dec614658565b03613e275760405162461bcd60e51b81526020600482015260196024820152600080516020614db583398151915260448201526064016106a3565b613e3185856121a4565b60026001600160a01b03841660009081526009602052604090205460ff166002811115613e6057613e60614658565b03613ff95760008390506000816001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015613eaa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ece9190614d1c565b90506000826001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613f10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f349190614d1c565b9050816001600160a01b0316886001600160a01b03161480613f675750806001600160a01b0316886001600160a01b0316145b15613fc0576000826001600160a01b0316896001600160a01b031614613f8d5782613f8f565b815b90506000613f9e8960026121ca565b9050613fb78a80613faf8c85613cc6565b84868c614011565b95505050613ff1565b6000613fcd888a30611f6c565b905047808211613fdd5781613fdf565b805b9150613fec888389612a82565b955050505b505050610c40565b6108bb84868585611b01565b60006117ef8284614b06565b600061401d86856121a4565b600061402b85888630611b01565b905061403788876121a4565b61404184826121a4565b6007546001600160a01b031663e8e33700898689856000808a614065426028614b06565b60405160e08a901b6001600160e01b03191681526001600160a01b039889166004820152968816602488015260448701959095526064860193909352608485019190915260a484015290921660c482015260e4810191909152610104016060604051808303816000875af11580156140e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141059190614b1e565b604080516001600160a01b038d81168252891660208201528082018b9052606081018690526080810183905290519195507f2f3289d16dbc3007471d28c4936df3a95222bc938112449400d049637e3309ce935081900360a0019150a1509695505050505050565b6060610c40848460008585600080866001600160a01b031685876040516141949190614d65565b60006040518083038185875af1925050503d80600081146141d1576040519150601f19603f3d011682016040523d82523d6000602084013e6141d6565b606091505b5091509150612843878383876060831561425157825160000361424a576001600160a01b0385163b61424a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016106a3565b5081610c40565b610c4083838151156142665781518083602001fd5b8060405162461bcd60e51b81526004016106a39190614d81565b8280548282559060005260206000209081019282156142d5579160200282015b828111156142d557825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906142a0565b506142e19291506142e5565b5090565b5b808211156142e157600081556001016142e6565b6001600160a01b03811681146116d657600080fd5b6000806000806060858703121561432557600080fd5b8435614330816142fa565b93506020850135614340816142fa565b9250604085013567ffffffffffffffff8082111561435d57600080fd5b818701915087601f83011261437157600080fd5b81358181111561438057600080fd5b8860208260051b850101111561439557600080fd5b95989497505060200194505050565b6000806000606084860312156143b957600080fd5b83356143c4816142fa565b925060208401356143d4816142fa565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715614424576144246143e5565b604052919050565b600067ffffffffffffffff821115614446576144466143e5565b5060051b60200190565b600082601f83011261446157600080fd5b813560206144766144718361442c565b6143fb565b82815260059290921b8401810191818101908684111561449557600080fd5b8286015b848110156144b95780356144ac816142fa565b8352918301918301614499565b509695505050505050565b80151581146116d657600080fd5b600080604083850312156144e557600080fd5b823567ffffffffffffffff808211156144fd57600080fd5b61450986838701614450565b935060209150818501358181111561452057600080fd5b85019050601f8101861361453357600080fd5b80356145416144718261442c565b81815260059190911b8201830190838101908883111561456057600080fd5b928401925b82841015614587578335614578816144c4565b82529284019290840190614565565b80955050505050509250929050565b600080604083850312156145a957600080fd5b823567ffffffffffffffff8111156145c057600080fd5b6145cc85828601614450565b92505060208301356145dd816144c4565b809150509250929050565b600080600080608085870312156145fe57600080fd5b843593506020850135614610816142fa565b92506040850135614620816142fa565b91506060850135614630816142fa565b939692955090935050565b60006020828403121561464d57600080fd5b81356117ef816142fa565b634e487b7160e01b600052602160045260246000fd5b602081016003831061469057634e487b7160e01b600052602160045260246000fd5b91905290565b600080604083850312156146a957600080fd5b82356146b4816142fa565b915060208301356145dd816144c4565b803560ff811681146146d557600080fd5b919050565b600080604083850312156146ed57600080fd5b823567ffffffffffffffff81111561470457600080fd5b61471085828601614450565b92505061471f602084016146c4565b90509250929050565b60008060006060848603121561473d57600080fd5b83359250602084013561474f816142fa565b9150604084013561475f816142fa565b809150509250925092565b6000806000806080858703121561478057600080fd5b843561478b816142fa565b9350602085013561479b816142fa565b93969395505050506040820135916060013590565b600080604083850312156147c357600080fd5b823567ffffffffffffffff808211156147db57600080fd5b6147e786838701614450565b93506020915081850135818111156147fe57600080fd5b85019050601f8101861361481157600080fd5b803561481f6144718261442c565b81815260059190911b8201830190838101908883111561483e57600080fd5b928401925b8284101561458757614854846146c4565b82529284019290840190614843565b60008060008060008060c0878903121561487c57600080fd5b8635614887816142fa565b955060208701359450604087013561489e816142fa565b935060608701356148ae816142fa565b92506080870135915060a08701356148c5816144c4565b809150509295509295509295565b600080600080608085870312156148e957600080fd5b84356148f4816142fa565b935060208501359250604085013561490b816142fa565b91506060850135614630816144c4565b6000806000806080858703121561493157600080fd5b843561493c816142fa565b9350602085013561494c816142fa565b9250604085013561495c816142fa565b9396929550929360600135925050565b600080600080600060a0868803121561498457600080fd5b853561498f816142fa565b9450602086013561499f816142fa565b935060408601356149af816142fa565b925060608601356149bf816142fa565b915060808601356149cf816142fa565b809150509295509295909350565b600080604083850312156149f057600080fd5b82356149fb816142fa565b915061471f602084016146c4565b60008060008060808587031215614a1f57600080fd5b8435614a2a816142fa565b9350602085013592506040850135614620816142fa565b60208082526024908201527f6f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657260408201526330ba37b960e11b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff8103614ac757614ac7614a9b565b60010192915050565b600060208284031215614ae257600080fd5b81516117ef816144c4565b600060208284031215614aff57600080fd5b5051919050565b60008219821115614b1957614b19614a9b565b500190565b600080600060608486031215614b3357600080fd5b8351925060208401519150604084015190509250925092565b60008060408385031215614b5f57600080fd5b505080516020909101519092909150565b600082821015614b8257614b82614a9b565b500390565b600060018201614b9957614b99614a9b565b5060010190565b600081518084526020808501945080840160005b83811015614bd95781516001600160a01b031687529582019590820190600101614bb4565b509495945050505050565b85815284602082015260a060408201526000614c0360a0830186614ba0565b6001600160a01b0394909416606083015250608001529392505050565b60006020808385031215614c3357600080fd5b825167ffffffffffffffff811115614c4a57600080fd5b8301601f81018513614c5b57600080fd5b8051614c696144718261442c565b81815260059190911b82018301908381019087831115614c8857600080fd5b928401925b8284101561284357835182529284019290840190614c8d565b6000816000190483118215151615614cc057614cc0614a9b565b500290565b600082614ce257634e487b7160e01b600052601260045260246000fd5b500490565b848152608060208201526000614d006080830186614ba0565b6001600160a01b03949094166040830152506060015292915050565b600060208284031215614d2e57600080fd5b81516117ef816142fa565b60005b83811015614d54578181015183820152602001614d3c565b838111156106235750506000910152565b60008251614d77818460208701614d39565b9190910192915050565b6020815260008251806020840152614da0816040850160208701614d39565b601f01601f1916919091016040019291505056fe4572726f723a20496e76616c696420746f6b656e207479706500000000000000a2646970667358221220e376169af5fdc84117648b6a150b3364ba383768b667b7920f5c0ca7909445f464736f6c634300080f0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.