Overview
S Balance
S Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 5 from a total of 5 transactions
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
Treasury
Compiler Version
v0.8.26+commit.8a97fa7a
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // Made by CodeStag Labs pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/math/Math.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./lib/Babylonian.sol"; import "./owner/Operator.sol"; import "./utils/ContractGuard.sol"; import "./interfaces/IBasisAsset.sol"; import "./interfaces/IOracle.sol"; import "./interfaces/IMasonry.sol"; import "./owner/Operator.sol"; contract Treasury is ContractGuard, Operator { using SafeERC20 for IERC20; using Address for address; using SafeMath for uint256; /* ========= CONSTANT VARIABLES ======== */ uint256 public constant PERIOD = 6 hours; uint256 public constant BASIS_DIVISOR = 100000; // 100% /* ========== STATE VARIABLES ========== */ // flags bool public initialized = false; // epoch uint256 public startTime; uint256 public epoch = 0; uint256 public epochSupplyContractionLeft = 0; //=================================================================// exclusions from total supply address[] public excludedFromTotalSupply = [ address(0x2E585B96A2Ef1661508110E41c005bE86b63fc34) // HogGenesisRewardPool ]; // core components address public hog; address public bhog; address public ghog; address public masonry; address public hogOracle; // price uint256 public hogPriceOne; uint256 public hogPriceCeiling; uint256 public seigniorageSaved; uint256 public maxSupplyExpansionPercent; uint256 public bondDepletionFloorPercent; uint256 public seigniorageExpansionFloorPercent; uint256 public maxSupplyContractionPercent; uint256 public maxDebtRatioPercent; /* =================== Added variables =================== */ uint256 public previousEpochHogPrice; uint256 public maxDiscountRate; // when purchasing bond uint256 public maxPremiumRate; // when redeeming bond uint256 public discountPercent; uint256 public premiumThreshold; uint256 public premiumPercent; uint256 public mintingFactorForPayingDebt; // print extra HOG during debt phase address public daoFund; uint256 public daoFundSharedPercent; //=================================================// address public devFund; uint256 public devFundSharedPercent; address public teamFund; uint256 public teamFundSharedPercent; /* =================== Events =================== */ event Initialized(address indexed executor, uint256 at); event BurnedBonds(address indexed from, uint256 bondAmount); event RedeemedBonds(address indexed from, uint256 hogAmount, uint256 bondAmount); event BoughtBonds(address indexed from, uint256 hogAmount, uint256 bondAmount); event TreasuryFunded(uint256 timestamp, uint256 seigniorage); event MasonryFunded(uint256 timestamp, uint256 seigniorage); event DaoFundFunded(uint256 timestamp, uint256 seigniorage); event DevFundFunded(uint256 timestamp, uint256 seigniorage); event TeamFundFunded(uint256 timestamp, uint256 seigniorage); /* =================== Modifier =================== */ modifier checkCondition { require(block.timestamp >= startTime, "Treasury: not started yet"); _; } modifier checkEpoch { require(block.timestamp >= nextEpochPoint(), "Treasury: not opened yet"); _; epoch = epoch.add(1); epochSupplyContractionLeft = (getHogPrice() > hogPriceCeiling) ? 0 : getHogCirculatingSupply().mul(maxSupplyContractionPercent).div(BASIS_DIVISOR); } modifier checkOperator { require( IBasisAsset(hog).operator() == address(this) && IBasisAsset(bhog).operator() == address(this) && IBasisAsset(ghog).operator() == address(this) && Operator(masonry).operator() == address(this), "Treasury: need more permission" ); _; } modifier notInitialized { require(!initialized, "Treasury: already initialized"); _; } /* ========== VIEW FUNCTIONS ========== */ function isInitialized() public view returns (bool) { return initialized; } // epoch function nextEpochPoint() public view returns (uint256) { return startTime.add(epoch.mul(PERIOD)); } // oracle function getHogPrice() public view returns (uint256 hogPrice) { try IOracle(hogOracle).consult(hog, 1e18) returns (uint256 price) { return uint256(price); } catch { revert("Treasury: failed to consult HOG price from the oracle"); } } function getHogUpdatedPrice() public view returns (uint256 _hogPrice) { try IOracle(hogOracle).twap(hog, 1e18) returns (uint256 price) { return uint256(price); } catch { revert("Treasury: failed to consult HOG price from the oracle"); } } // budget function getReserve() public view returns (uint256) { return seigniorageSaved; } function getBurnableSnakeLeft() public view returns (uint256 _burnableHogLeft) { uint256 _hogPrice = getHogPrice(); if (_hogPrice <= hogPriceOne) { uint256 _hogSupply = getHogCirculatingSupply(); uint256 _bondMaxSupply = _hogSupply.mul(maxDebtRatioPercent).div(BASIS_DIVISOR); uint256 _bondSupply = IERC20(bhog).totalSupply(); if (_bondMaxSupply > _bondSupply) { uint256 _maxMintableBond = _bondMaxSupply.sub(_bondSupply); uint256 _maxBurnableHog = _maxMintableBond.mul(_hogPrice).div(1e18); _burnableHogLeft = Math.min(epochSupplyContractionLeft, _maxBurnableHog); } } } function getRedeemableBonds() public view returns (uint256 _redeemableBonds) { uint256 _hogPrice = getHogPrice(); if (_hogPrice > hogPriceCeiling) { uint256 _totalHog = IERC20(hog).balanceOf(address(this)); uint256 _rate = getBondPremiumRate(); if (_rate > 0) { _redeemableBonds = _totalHog.mul(1e18).div(_rate); } } } function getBondDiscountRate() public view returns (uint256 _rate) { uint256 _hogPrice = getHogPrice(); if (_hogPrice <= hogPriceOne) { if (discountPercent == 0) { // no discount _rate = hogPriceOne; } else { uint256 _bondAmount = hogPriceOne.mul(1e18).div(_hogPrice); // to burn 1 HOG uint256 _discountAmount = _bondAmount.sub(hogPriceOne).mul(discountPercent).div(BASIS_DIVISOR); _rate = hogPriceOne.add(_discountAmount); if (maxDiscountRate > 0 && _rate > maxDiscountRate) { _rate = maxDiscountRate; } } } } function getBondPremiumRate() public view returns (uint256 _rate) { uint256 _hogPrice = getHogPrice(); if (_hogPrice > hogPriceCeiling) { uint256 _hogPricePremiumThreshold = hogPriceOne.mul(premiumThreshold).div(100); if (_hogPrice >= _hogPricePremiumThreshold) { //Price > 1.10 uint256 _premiumAmount = _hogPrice.sub(hogPriceOne).mul(premiumPercent).div(BASIS_DIVISOR); _rate = hogPriceOne.add(_premiumAmount); if (maxPremiumRate > 0 && _rate > maxPremiumRate) { _rate = maxPremiumRate; } } else { // no premium bonus _rate = hogPriceOne; } } } /* ========== GOVERNANCE ========== */ function initialize( address _hog, address _bhog, address _ghog, address _hogOracle, address _masonry, uint256 _startTime ) public notInitialized onlyOperator { hog = _hog; bhog = _bhog; ghog = _ghog; hogOracle = _hogOracle; masonry = _masonry; startTime = _startTime; hogPriceOne = 10 ** 18; // hogPriceCeiling = 1000300000000000000; // 1.003 as its stable pool hogPriceCeiling = hogPriceOne.mul(101).div(100); // even if its stable we aim to get 1.01 maxSupplyExpansionPercent = 150; // 0.15% bondDepletionFloorPercent = 100000; // 100% of Bond supply for depletion floor seigniorageExpansionFloorPercent = 35000; // At least 35% of expansion reserved for masonry maxSupplyContractionPercent = 10000; // Upto 10.0% supply for contraction (to burn HOG and mint bhog) maxDebtRatioPercent = 35000; // Upto 35% supply of bhog to purchase // set seigniorageSaved to it's balance seigniorageSaved = IERC20(hog).balanceOf(address(this)); initialized = true; emit Initialized(msg.sender, block.number); } function setOperator(address _operator) external onlyOperator { transferOperator(_operator); } function renounceOperator() external onlyOperator { _renounceOperator(); } function setMasonry(address _masonry) external onlyOperator { masonry = _masonry; } function setHogOracle(address _hogOracle) external onlyOperator { hogOracle = _hogOracle; } function setHogPriceCeiling(uint256 _hogPriceCeiling) external onlyOperator { require(_hogPriceCeiling >= hogPriceOne && _hogPriceCeiling <= hogPriceOne.mul(120).div(100), "out of range"); // [$1.0, $1.2] hogPriceCeiling = _hogPriceCeiling; } function setMaxSupplyExpansionPercents(uint256 _maxSupplyExpansionPercent) external onlyOperator { require(_maxSupplyExpansionPercent >= 10 && _maxSupplyExpansionPercent <= 10000, "_maxSupplyExpansionPercent: out of range"); // [0.01%, 10%] maxSupplyExpansionPercent = _maxSupplyExpansionPercent; } function setBondDepletionFloorPercent(uint256 _bondDepletionFloorPercent) external onlyOperator { require(_bondDepletionFloorPercent >= 500 && _bondDepletionFloorPercent <= BASIS_DIVISOR, "out of range"); // [0.5%, 100%] bondDepletionFloorPercent = _bondDepletionFloorPercent; } function setMaxSupplyContractionPercent(uint256 _maxSupplyContractionPercent) external onlyOperator { require(_maxSupplyContractionPercent >= 100 && _maxSupplyContractionPercent <= 15000, "out of range"); // [0.1%, 15%] maxSupplyContractionPercent = _maxSupplyContractionPercent; } function setMaxDebtRatioPercent(uint256 _maxDebtRatioPercent) external onlyOperator { require(_maxDebtRatioPercent >= 1000 && _maxDebtRatioPercent <= BASIS_DIVISOR, "out of range"); // [1%, 100%] maxDebtRatioPercent = _maxDebtRatioPercent; } function setExtraFunds( address _daoFund, uint256 _daoFundSharedPercent, address _devFund, uint256 _devFundSharedPercent, address _teamFund, uint256 _teamFundSharedPercent ) external onlyOperator { require(_daoFund != address(0), "zero"); require(_daoFundSharedPercent <= 15000, "out of range"); require(_devFund != address(0), "zero"); require(_devFundSharedPercent <= 3500, "out of range"); require(_teamFund != address(0), "zero"); require(_teamFundSharedPercent <= 5500, "out of range"); daoFund = _daoFund; daoFundSharedPercent = _daoFundSharedPercent; devFund = _devFund; devFundSharedPercent = _devFundSharedPercent; teamFund = _teamFund; teamFundSharedPercent = _teamFundSharedPercent; } function setMaxDiscountRate(uint256 _maxDiscountRate) external onlyOperator { require(_maxDiscountRate <= 200000, "_maxDiscountRate is over 200%"); maxDiscountRate = _maxDiscountRate; } function setMaxPremiumRate(uint256 _maxPremiumRate) external onlyOperator { require(_maxPremiumRate <= 200000, "_maxPremiumRate is over 200%"); maxPremiumRate = _maxPremiumRate; } function setDiscountPercent(uint256 _discountPercent) external onlyOperator { require(_discountPercent <= 200000, "_discountPercent is over 200%"); discountPercent = _discountPercent; } function setPremiumThreshold(uint256 _premiumThreshold) external onlyOperator { require(_premiumThreshold >= hogPriceCeiling, "_premiumThreshold exceeds hogPriceCeiling"); require(_premiumThreshold <= 1500, "_premiumThreshold is higher than 1.5"); premiumThreshold = _premiumThreshold; } function setPremiumPercent(uint256 _premiumPercent) external onlyOperator { require(_premiumPercent <= 200000, "_premiumPercent is over 200%"); premiumPercent = _premiumPercent; } function setMintingFactorForPayingDebt(uint256 _mintingFactorForPayingDebt) external onlyOperator { require(_mintingFactorForPayingDebt >= BASIS_DIVISOR && _mintingFactorForPayingDebt <= 200000, "_mintingFactorForPayingDebt: out of range"); // [100%, 200%] mintingFactorForPayingDebt = _mintingFactorForPayingDebt; } /* ========== MUTABLE FUNCTIONS ========== */ function _updateHogPrice() internal { try IOracle(hogOracle).update() {} catch {} } function getHogCirculatingSupply() public view returns (uint256) { IERC20 hogErc20 = IERC20(hog); uint256 totalSupply = hogErc20.totalSupply(); uint256 balanceExcluded = 0; for (uint8 entryId = 0; entryId < excludedFromTotalSupply.length; ++entryId) { balanceExcluded = balanceExcluded.add(hogErc20.balanceOf(excludedFromTotalSupply[entryId])); } return totalSupply.sub(balanceExcluded); } function buyBonds(uint256 _hogAmount, uint256 targetPrice) external onlyOneBlock checkCondition checkOperator { require(_hogAmount > 0, "Treasury: cannot purchase bonds with zero amount"); uint256 hogPrice = getHogPrice(); require(hogPrice == targetPrice, "Treasury: HOG price moved"); require( hogPrice < hogPriceOne, // price < $1 "Treasury: hogPrice not eligible for bond purchase" ); require(_hogAmount <= epochSupplyContractionLeft, "Treasury: not enough bond left to purchase"); uint256 _rate = getBondDiscountRate(); require(_rate > 0, "Treasury: invalid bond rate"); uint256 _bondAmount = _hogAmount.mul(_rate).div(1e18); uint256 hogSupply = getHogCirculatingSupply(); uint256 newBondSupply = IERC20(bhog).totalSupply().add(_bondAmount); require(newBondSupply <= hogSupply.mul(maxDebtRatioPercent).div(BASIS_DIVISOR), "over max debt ratio"); IBasisAsset(hog).burnFrom(msg.sender, _hogAmount); IBasisAsset(bhog).mint(msg.sender, _bondAmount); epochSupplyContractionLeft = epochSupplyContractionLeft.sub(_hogAmount); _updateHogPrice(); emit BoughtBonds(msg.sender, _hogAmount, _bondAmount); } function redeemBonds(uint256 _bondAmount, uint256 targetPrice) external onlyOneBlock checkCondition checkOperator { require(_bondAmount > 0, "Treasury: cannot redeem bonds with zero amount"); uint256 hogPrice = getHogPrice(); require(hogPrice == targetPrice, "Treasury: HOG price moved"); require( hogPrice > hogPriceCeiling, // price > $1.01 "Treasury: hogPrice not eligible for bond purchase" ); uint256 _rate = getBondPremiumRate(); require(_rate > 0, "Treasury: invalid bond rate"); uint256 _hogAmount = _bondAmount.mul(_rate).div(1e18); require(IERC20(hog).balanceOf(address(this)) >= _hogAmount, "Treasury: treasury has no more budget"); seigniorageSaved = seigniorageSaved.sub(Math.min(seigniorageSaved, _hogAmount)); IBasisAsset(bhog).burnFrom(msg.sender, _bondAmount); IERC20(hog).safeTransfer(msg.sender, _hogAmount); _updateHogPrice(); emit RedeemedBonds(msg.sender, _hogAmount, _bondAmount); } function _sendToMasonry(uint256 _amount) internal { IBasisAsset(hog).mint(address(this), _amount); uint256 _daoFundSharedAmount = 0; if (daoFundSharedPercent > 0) { _daoFundSharedAmount = _amount.mul(daoFundSharedPercent).div(BASIS_DIVISOR); IERC20(hog).transfer(daoFund, _daoFundSharedAmount); emit DaoFundFunded(block.timestamp, _daoFundSharedAmount); } uint256 _devFundSharedAmount = 0; if (devFundSharedPercent > 0) { _devFundSharedAmount = _amount.mul(devFundSharedPercent).div(BASIS_DIVISOR); IERC20(hog).transfer(devFund, _devFundSharedAmount); emit DevFundFunded(block.timestamp, _devFundSharedAmount); } uint256 _teamFundSharedAmount = 0; if (teamFundSharedPercent > 0) { _teamFundSharedAmount = _amount.mul(teamFundSharedPercent).div(BASIS_DIVISOR); IERC20(hog).transfer(teamFund, _teamFundSharedAmount); emit TeamFundFunded(block.timestamp, _teamFundSharedAmount); } _amount = _amount.sub(_daoFundSharedAmount).sub(_devFundSharedAmount).sub(_teamFundSharedAmount); IERC20(hog).safeApprove(masonry, 0); IERC20(hog).safeApprove(masonry, _amount); IMasonry(masonry).allocateSeigniorage(_amount); emit MasonryFunded(block.timestamp, _amount); } function allocateSeigniorage() external onlyOneBlock checkCondition checkEpoch checkOperator { _updateHogPrice(); previousEpochHogPrice = getHogPrice(); uint256 hogSupply = getHogCirculatingSupply().sub(seigniorageSaved); if (previousEpochHogPrice > hogPriceCeiling) { // Expansion ($HOG Price > 1 $OS): there is some seigniorage to be allocated uint256 bondSupply = IERC20(bhog).totalSupply(); uint256 _percentage = previousEpochHogPrice.sub(hogPriceOne); uint256 _savedForBond; uint256 _savedForMasonry; uint256 _mse = maxSupplyExpansionPercent.mul(1e13); _percentage = _mse; if (seigniorageSaved >= bondSupply.mul(bondDepletionFloorPercent).div(BASIS_DIVISOR)) { // saved enough to pay debt, mint as usual rate _savedForMasonry = hogSupply.mul(_percentage).div(1e18); } else { // have not saved enough to pay debt, mint more uint256 _seigniorage = hogSupply.mul(_percentage).div(1e18); _savedForMasonry = _seigniorage.mul(seigniorageExpansionFloorPercent).div(BASIS_DIVISOR); _savedForBond = _seigniorage.sub(_savedForMasonry); if (mintingFactorForPayingDebt > 0) { _savedForBond = _savedForBond.mul(mintingFactorForPayingDebt).div(BASIS_DIVISOR); } } if (_savedForMasonry > 0) { _sendToMasonry(_savedForMasonry); } if (_savedForBond > 0) { seigniorageSaved = seigniorageSaved.add(_savedForBond); IBasisAsset(hog).mint(address(this), _savedForBond); emit TreasuryFunded(block.timestamp, _savedForBond); } } } function governanceRecoverUnsupported( IERC20 _token, uint256 _amount, address _to ) external onlyOperator { // do not allow to drain core tokens require(address(_token) != address(hog), "hog"); require(address(_token) != address(bhog), "bond"); require(address(_token) != address(ghog), "share"); _token.safeTransfer(_to, _amount); } function hogSetOperator(address _operator) external onlyOperator { IBasisAsset(hog).transferOperator(_operator); } function ghogSetOperator(address _operator) external onlyOperator { IBasisAsset(ghog).transferOperator(_operator); } function bhogSetOperator(address _operator) external onlyOperator { IBasisAsset(bhog).transferOperator(_operator); } function masonrySetOperator(address _operator) external onlyOperator { IMasonry(masonry).setOperator(_operator); } function masonrySetLockUp(uint256 _withdrawLockupEpochs, uint256 _rewardLockupEpochs) external onlyOperator { IMasonry(masonry).setLockUp(_withdrawLockupEpochs, _rewardLockupEpochs); } function masonryAllocateSeigniorage(uint256 amount) external onlyOperator { IMasonry(masonry).allocateSeigniorage(amount); } function masonryGovernanceRecoverUnsupported( address _token, uint256 _amount, address _to ) external onlyOperator { IMasonry(masonry).governanceRecoverUnsupported(_token, _amount, _to); } }
// 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) (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.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 (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.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 pragma solidity ^0.8.0; interface IBasisAsset { function mint(address recipient, uint256 amount) external returns (bool); function burn(uint256 amount) external; function burnFrom(address from, uint256 amount) external; function isOperator() external returns (bool); function operator() external view returns (address); function transferOperator(address newOperator_) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IMasonry { function balanceOf(address _andras) external view returns (uint256); function earned(address _andras) external view returns (uint256); function canWithdraw(address _andras) external view returns (bool); function canClaimReward(address _andras) external view returns (bool); function epoch() external view returns (uint256); function nextEpochPoint() external view returns (uint256); function getTombPrice() external view returns (uint256); function setOperator(address _operator) external; function setLockUp(uint256 _withdrawLockupEpochs, uint256 _rewardLockupEpochs) external; function stake(uint256 _amount) external; function withdraw(uint256 _amount) external; function exit() external; function claimReward() external; function allocateSeigniorage(uint256 _amount) external; function governanceRecoverUnsupported(address _token, uint256 _amount, address _to) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IOracle { function update() external; function consult(address _token, uint256 _amountIn) external view returns (uint256 amountOut); function twap(address _token, uint256 _amountIn) external view returns (uint256 _amountOut); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; library Babylonian { function sqrt(uint256 y) internal pure returns (uint256 z) { if (y > 3) { z = y; uint256 x = y / 2 + 1; while (x < z) { z = x; x = (y / x + x) / 2; } } else if (y != 0) { z = 1; } // else z = 0 } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract Operator is Context, Ownable { address private _operator; event OperatorTransferred(address indexed previousOperator, address indexed newOperator); constructor() { _operator = _msgSender(); emit OperatorTransferred(address(0), _operator); } function operator() public view returns (address) { return _operator; } modifier onlyOperator() { require(_operator == msg.sender, "operator: caller is not the operator"); _; } function isOperator() public view returns (bool) { return _msgSender() == _operator; } function transferOperator(address newOperator_) public onlyOwner { _transferOperator(newOperator_); } function _transferOperator(address newOperator_) internal { require(newOperator_ != address(0), "operator: zero address given for new operator"); emit OperatorTransferred(address(0), newOperator_); _operator = newOperator_; } function _renounceOperator() public onlyOwner { emit OperatorTransferred(_operator, address(0)); _operator = address(0); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract ContractGuard { mapping(uint256 => mapping(address => bool)) private _status; function checkSameOriginReentranted() internal view returns (bool) { return _status[block.number][tx.origin]; } function checkSameSenderReentranted() internal view returns (bool) { return _status[block.number][msg.sender]; } modifier onlyOneBlock() { require(!checkSameOriginReentranted(), "ContractGuard: one block, one function"); require(!checkSameSenderReentranted(), "ContractGuard: one block, one function"); _; _status[block.number][tx.origin] = true; _status[block.number][msg.sender] = true; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"hogAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bondAmount","type":"uint256"}],"name":"BoughtBonds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"bondAmount","type":"uint256"}],"name":"BurnedBonds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"seigniorage","type":"uint256"}],"name":"DaoFundFunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"seigniorage","type":"uint256"}],"name":"DevFundFunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"executor","type":"address"},{"indexed":false,"internalType":"uint256","name":"at","type":"uint256"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"seigniorage","type":"uint256"}],"name":"MasonryFunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"hogAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bondAmount","type":"uint256"}],"name":"RedeemedBonds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"seigniorage","type":"uint256"}],"name":"TeamFundFunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"seigniorage","type":"uint256"}],"name":"TreasuryFunded","type":"event"},{"inputs":[],"name":"BASIS_DIVISOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_renounceOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allocateSeigniorage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bhog","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"bhogSetOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bondDepletionFloorPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_hogAmount","type":"uint256"},{"internalType":"uint256","name":"targetPrice","type":"uint256"}],"name":"buyBonds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"daoFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"daoFundSharedPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFundSharedPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"discountPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"epoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"epochSupplyContractionLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"excludedFromTotalSupply","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBondDiscountRate","outputs":[{"internalType":"uint256","name":"_rate","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBondPremiumRate","outputs":[{"internalType":"uint256","name":"_rate","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBurnableSnakeLeft","outputs":[{"internalType":"uint256","name":"_burnableHogLeft","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getHogCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getHogPrice","outputs":[{"internalType":"uint256","name":"hogPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getHogUpdatedPrice","outputs":[{"internalType":"uint256","name":"_hogPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRedeemableBonds","outputs":[{"internalType":"uint256","name":"_redeemableBonds","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ghog","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"ghogSetOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"governanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hog","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hogOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hogPriceCeiling","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hogPriceOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"hogSetOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_hog","type":"address"},{"internalType":"address","name":"_bhog","type":"address"},{"internalType":"address","name":"_ghog","type":"address"},{"internalType":"address","name":"_hogOracle","type":"address"},{"internalType":"address","name":"_masonry","type":"address"},{"internalType":"uint256","name":"_startTime","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isInitialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"masonry","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"masonryAllocateSeigniorage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"masonryGovernanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_withdrawLockupEpochs","type":"uint256"},{"internalType":"uint256","name":"_rewardLockupEpochs","type":"uint256"}],"name":"masonrySetLockUp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"masonrySetOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxDebtRatioPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxDiscountRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPremiumRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyContractionPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyExpansionPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingFactorForPayingDebt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextEpochPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"premiumPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"premiumThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"previousEpochHogPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_bondAmount","type":"uint256"},{"internalType":"uint256","name":"targetPrice","type":"uint256"}],"name":"redeemBonds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"seigniorageExpansionFloorPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"seigniorageSaved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_bondDepletionFloorPercent","type":"uint256"}],"name":"setBondDepletionFloorPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_discountPercent","type":"uint256"}],"name":"setDiscountPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_daoFund","type":"address"},{"internalType":"uint256","name":"_daoFundSharedPercent","type":"uint256"},{"internalType":"address","name":"_devFund","type":"address"},{"internalType":"uint256","name":"_devFundSharedPercent","type":"uint256"},{"internalType":"address","name":"_teamFund","type":"address"},{"internalType":"uint256","name":"_teamFundSharedPercent","type":"uint256"}],"name":"setExtraFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_hogOracle","type":"address"}],"name":"setHogOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_hogPriceCeiling","type":"uint256"}],"name":"setHogPriceCeiling","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_masonry","type":"address"}],"name":"setMasonry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxDebtRatioPercent","type":"uint256"}],"name":"setMaxDebtRatioPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxDiscountRate","type":"uint256"}],"name":"setMaxDiscountRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPremiumRate","type":"uint256"}],"name":"setMaxPremiumRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupplyContractionPercent","type":"uint256"}],"name":"setMaxSupplyContractionPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupplyExpansionPercent","type":"uint256"}],"name":"setMaxSupplyExpansionPercents","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintingFactorForPayingDebt","type":"uint256"}],"name":"setMintingFactorForPayingDebt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"setOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_premiumPercent","type":"uint256"}],"name":"setPremiumPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_premiumThreshold","type":"uint256"}],"name":"setPremiumThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamFundSharedPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOperator_","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6002805460ff60a01b191690556000600481905560055560a0604052732e585b96a2ef1661508110e41c005be86b63fc3460809081526100439060069060016100f1565b5034801561005057600080fd5b5061005a3361009f565b600280546001600160a01b031916339081179091556040516000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a361016b565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054828255906000526020600020908101928215610146579160200282015b8281111561014657825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190610111565b50610152929150610156565b5090565b5b808211156101525760008155600101610157565b613f498061017a6000396000f3fe608060405234801561001057600080fd5b50600436106104695760003560e01c806369638af81161024c5780639a15e01a11610146578063cecce38e116100c3578063e15a90be11610087578063e15a90be146108bd578063e90b2454146108c5578063ed97aa73146108ce578063f2fde38b146108e1578063fcb6f008146108f457600080fd5b8063cecce38e1461087c578063d5d3b26c1461088f578063d98f2495146108a2578063da3ed419146108ab578063dd5efbce146108b457600080fd5b8063b8a878f91161010a578063b8a878f914610846578063be266d541461084f578063c5967c2614610862578063c8412d021461086a578063c8f987f31461087357600080fd5b80639a15e01a146107fc578063a204452b1461080f578063aa2b09e614610822578063b3ab15fb1461082a578063b4d1d7951461083d57600080fd5b806382cad838116101d4578063900cf0cf11610198578063900cf0cf146107a7578063951357d4146107b057806395b6ef0c146107c357806398945b62146107d657806398b762a1146107e957600080fd5b806382cad838146107555780638a27f103146107685780638c664db6146107705780638d934f74146107835780638da5cb5b1461079657600080fd5b8063734f70961161021b578063734f70961461070a57806378e979251461071d5780637db11fd0146107265780637fdedb341461073957806381d11eaf1461074c57600080fd5b806369638af8146106d45780636ef3023c146106e7578063715018a6146106fa57806372c054f91461070257600080fd5b80632e9c7b651161036857806354f04a11116102e557806359bf5d39116102a957806359bf5d39146106955780635a0fc79c1461069d5780635b756179146106a657806362ac58e4146106ae57806363f96cf4146106c157600080fd5b806354f04a111461064d57806355ebdeef14610660578063570ca73514610669578063591663e11461067a57806359a9f2b01461068d57600080fd5b80634456eda21161032c5780634456eda2146105f8578063499f3f191461060b5780634c109ce01461061e57806354575af4146106275780635495699f1461063a57600080fd5b80632e9c7b65146105ae578063392e53cd146105b75780634013a08e146105c957806340af7ba5146105d25780634390d2a8146105e557600080fd5b8063154ec2db116103f6578063282c658b116103ba578063282c658b1461056e578063288968211461057757806329605e771461058a57806329ef19191461059d5780632ab6f8db146105a657600080fd5b8063154ec2db14610511578063158ef93e146105245780631b0fb35f14610548578063200fea3b1461055b57806322f832cd1461056557600080fd5b80630cf601751161043d5780630cf60175146104bb5780630d2d423d146104c35780630db7eb0b146104cb578063118ebbf9146104d357806313484106146104e657600080fd5b80627c5fc71461046e57806303be7e761461048a57806304e5c7b1146104935780630b5bcec7146104a8575b600080fd5b61047760145481565b6040519081526020015b60405180910390f35b610477601e5481565b6104a66104a1366004613a77565b6108fd565b005b6104a66104b6366004613a77565b6109f7565b610477610a96565b610477610b4a565b610477610c34565b6104a66104e1366004613a90565b610cd5565b6009546104f9906001600160a01b031681565b6040516001600160a01b039091168152602001610481565b6104a661051f366004613a77565b6112b3565b60025461053890600160a01b900460ff1681565b6040519015158152602001610481565b6104a6610556366004613ac7565b611335565b610477620186a081565b61047760115481565b610477600c5481565b6008546104f9906001600160a01b031681565b6104a6610598366004613b2e565b611486565b61047760175481565b6104a661149a565b61047760165481565b600254600160a01b900460ff16610538565b610477601a5481565b6104a66105e0366004613a77565b6114ce565b601d546104f9906001600160a01b031681565b6002546001600160a01b03163314610538565b6104a6610619366004613a77565b611550565b61047760205481565b6104a6610635366004613b52565b6115f3565b601f546104f9906001600160a01b031681565b6104a661065b366004613a90565b611707565b610477601c5481565b6002546001600160a01b03166104f9565b6104a6610688366004613a77565b611dc8565b610477611e28565b600e54610477565b610477600e5481565b6104a6611f75565b6104a66106bc366004613b2e565b612560565b600a546104f9906001600160a01b031681565b6007546104f9906001600160a01b031681565b6104a66106f5366004613b2e565b6125ed565b6104a6612639565b61047761264b565b6104a6610718366004613a90565b6126f9565b61047760035481565b6104a6610734366004613b2e565b61278c565b6104a6610747366004613a77565b6127e8565b61047760105481565b6104f9610763366004613a77565b61285f565b6104a6612889565b6104a661077e366004613a77565b6128db565b601b546104f9906001600160a01b031681565b6001546001600160a01b03166104f9565b61047760045481565b6104a66107be366004613b52565b61293b565b6104a66107d1366004613b94565b6129d8565b6104a66107e4366004613b2e565b612bbd565b6104a66107f7366004613a77565b612c19565b6104a661080a366004613b2e565b612c9b565b6104a661081d366004613a77565b612cf7565b610477612d79565b6104a6610838366004613b2e565b612dbb565b61047761546081565b61047760155481565b6104a661085d366004613a77565b612dee565b610477612e49565b61047760195481565b61047760185481565b6104a661088a366004613a77565b612e73565b6104a661089d366004613b2e565b612ed1565b610477600f5481565b61047760135481565b610477600d5481565b610477612f1d565b61047760125481565b600b546104f9906001600160a01b031681565b6104a66108ef366004613b2e565b613022565b61047760055481565b6002546001600160a01b031633146109305760405162461bcd60e51b815260040161092790613bf8565b60405180910390fd5b600d548110156109945760405162461bcd60e51b815260206004820152602960248201527f5f7072656d69756d5468726573686f6c64206578636565647320686f6750726960448201526863654365696c696e6760b81b6064820152608401610927565b6105dc8111156109f25760405162461bcd60e51b8152602060048201526024808201527f5f7072656d69756d5468726573686f6c6420697320686967686572207468616e60448201526320312e3560e01b6064820152608401610927565b601855565b6002546001600160a01b03163314610a215760405162461bcd60e51b815260040161092790613bf8565b600a8110158015610a3457506127108111155b610a915760405162461bcd60e51b815260206004820152602860248201527f5f6d6178537570706c79457870616e73696f6e50657263656e743a206f7574206044820152676f662072616e676560c01b6064820152608401610927565b600f55565b600080610aa1612d79565b9050600c548111610b4657601754600003610abe575050600c5490565b6000610ae782610ae1670de0b6b3a7640000600c5461309890919063ffffffff16565b906130ad565b90506000610b13620186a0610ae1601754610b0d600c54876130b990919063ffffffff16565b90613098565b600c54909150610b2390826130c5565b93506000601554118015610b38575060155484115b15610b435760155493505b50505b5090565b600b54600754604051630d01142560e31b81526000926001600160a01b0390811692636808a12892610b8c9290911690670de0b6b3a764000090600401613c3c565b602060405180830381865afa925050508015610bc5575060408051601f3d908101601f19168201909252610bc291810190613c55565b60015b610c2f5760405162461bcd60e51b815260206004820152603560248201527f54726561737572793a206661696c656420746f20636f6e73756c7420484f472060448201527470726963652066726f6d20746865206f7261636c6560581b6064820152608401610927565b919050565b600080610c3f612d79565b9050600d54811115610b46576000610c696064610ae1601854600c5461309890919063ffffffff16565b9050808210610ccb576000610c96620186a0610ae1601954610b0d600c54886130b990919063ffffffff16565b600c54909150610ca690826130c5565b93506000601654118015610cbb575060165484115b15610b4357601654935050505090565b600c549250505090565b4360009081526020818152604080832032845290915290205460ff1615610d0e5760405162461bcd60e51b815260040161092790613c6e565b4360009081526020818152604080832033845290915290205460ff1615610d475760405162461bcd60e51b815260040161092790613c6e565b600354421015610d695760405162461bcd60e51b815260040161092790613cb4565b6007546040805163570ca73560e01b8152905130926001600160a01b03169163570ca7359160048083019260209291908290030181865afa158015610db2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd69190613ceb565b6001600160a01b0316148015610e5f57506008546040805163570ca73560e01b8152905130926001600160a01b03169163570ca7359160048083019260209291908290030181865afa158015610e30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e549190613ceb565b6001600160a01b0316145b8015610ede57506009546040805163570ca73560e01b8152905130926001600160a01b03169163570ca7359160048083019260209291908290030181865afa158015610eaf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed39190613ceb565b6001600160a01b0316145b8015610f5d5750600a546040805163570ca73560e01b8152905130926001600160a01b03169163570ca7359160048083019260209291908290030181865afa158015610f2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f529190613ceb565b6001600160a01b0316145b610f795760405162461bcd60e51b815260040161092790613d08565b60008211610fe05760405162461bcd60e51b815260206004820152602e60248201527f54726561737572793a2063616e6e6f742072656465656d20626f6e647320776960448201526d1d1a081e995c9bc8185b5bdd5b9d60921b6064820152608401610927565b6000610fea612d79565b90508181146110375760405162461bcd60e51b8152602060048201526019602482015278151c99585cdd5c9e4e881213d1c81c1c9a58d9481b5bdd9959603a1b6044820152606401610927565b600d5481116110585760405162461bcd60e51b815260040161092790613d3f565b6000611062610c34565b9050600081116110b45760405162461bcd60e51b815260206004820152601b60248201527f54726561737572793a20696e76616c696420626f6e64207261746500000000006044820152606401610927565b60006110cc670de0b6b3a7640000610ae18785613098565b6007546040516370a0823160e01b815230600482015291925082916001600160a01b03909116906370a0823190602401602060405180830381865afa158015611119573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113d9190613c55565b10156111995760405162461bcd60e51b815260206004820152602560248201527f54726561737572793a20747265617375727920686173206e6f206d6f726520626044820152641d5919d95d60da1b6064820152608401610927565b6111b16111a8600e54836130d1565b600e54906130b9565b600e5560085460405163079cc67960e41b81526001600160a01b03909116906379cc6790906111e69033908990600401613c3c565b600060405180830381600087803b15801561120057600080fd5b505af1158015611214573d6000803e3d6000fd5b505060075461123092506001600160a01b0316905033836130e7565b61123861313d565b604080518281526020810187905233917f51e0d16595cabc591e64da08e45bb223577e5b9a39cd947b4ddc3472b2dd8878910160405180910390a25050436000908152602081815260408083203284529091528082208054600160ff1991821681179092553384529190922080549091169091179055505050565b6002546001600160a01b031633146112dd5760405162461bcd60e51b815260040161092790613bf8565b62030d408111156113305760405162461bcd60e51b815260206004820152601d60248201527f5f646973636f756e7450657263656e74206973206f76657220323030250000006044820152606401610927565b601755565b6002546001600160a01b0316331461135f5760405162461bcd60e51b815260040161092790613bf8565b6001600160a01b0386166113855760405162461bcd60e51b815260040161092790613d90565b613a988511156113a75760405162461bcd60e51b815260040161092790613dae565b6001600160a01b0384166113cd5760405162461bcd60e51b815260040161092790613d90565b610dac8311156113ef5760405162461bcd60e51b815260040161092790613dae565b6001600160a01b0382166114155760405162461bcd60e51b815260040161092790613d90565b61157c8111156114375760405162461bcd60e51b815260040161092790613dae565b601b80546001600160a01b03199081166001600160a01b0398891617909155601c95909555601d8054861694871694909417909355601e91909155601f80549093169316929092179055602055565b61148e6131a5565b611497816131ff565b50565b6002546001600160a01b031633146114c45760405162461bcd60e51b815260040161092790613bf8565b6114cc612889565b565b6002546001600160a01b031633146114f85760405162461bcd60e51b815260040161092790613bf8565b62030d4081111561154b5760405162461bcd60e51b815260206004820152601c60248201527f5f7072656d69756d50657263656e74206973206f7665722032303025000000006044820152606401610927565b601955565b6002546001600160a01b0316331461157a5760405162461bcd60e51b815260040161092790613bf8565b620186a08110158015611590575062030d408111155b6115ee5760405162461bcd60e51b815260206004820152602960248201527f5f6d696e74696e67466163746f72466f72506179696e67446562743a206f7574604482015268206f662072616e676560b81b6064820152608401610927565b601a55565b6002546001600160a01b0316331461161d5760405162461bcd60e51b815260040161092790613bf8565b6007546001600160a01b03908116908416036116615760405162461bcd60e51b8152602060048201526003602482015262686f6760e81b6044820152606401610927565b6008546001600160a01b03908116908416036116a85760405162461bcd60e51b815260040161092790602080825260049082015263189bdb9960e21b604082015260600190565b6009546001600160a01b03908116908416036116ee5760405162461bcd60e51b8152602060048201526005602482015264736861726560d81b6044820152606401610927565b6117026001600160a01b03841682846130e7565b505050565b4360009081526020818152604080832032845290915290205460ff16156117405760405162461bcd60e51b815260040161092790613c6e565b4360009081526020818152604080832033845290915290205460ff16156117795760405162461bcd60e51b815260040161092790613c6e565b60035442101561179b5760405162461bcd60e51b815260040161092790613cb4565b6007546040805163570ca73560e01b8152905130926001600160a01b03169163570ca7359160048083019260209291908290030181865afa1580156117e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118089190613ceb565b6001600160a01b031614801561189157506008546040805163570ca73560e01b8152905130926001600160a01b03169163570ca7359160048083019260209291908290030181865afa158015611862573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118869190613ceb565b6001600160a01b0316145b801561191057506009546040805163570ca73560e01b8152905130926001600160a01b03169163570ca7359160048083019260209291908290030181865afa1580156118e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119059190613ceb565b6001600160a01b0316145b801561198f5750600a546040805163570ca73560e01b8152905130926001600160a01b03169163570ca7359160048083019260209291908290030181865afa158015611960573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119849190613ceb565b6001600160a01b0316145b6119ab5760405162461bcd60e51b815260040161092790613d08565b60008211611a145760405162461bcd60e51b815260206004820152603060248201527f54726561737572793a2063616e6e6f7420707572636861736520626f6e64732060448201526f1dda5d1a081e995c9bc8185b5bdd5b9d60821b6064820152608401610927565b6000611a1e612d79565b9050818114611a6b5760405162461bcd60e51b8152602060048201526019602482015278151c99585cdd5c9e4e881213d1c81c1c9a58d9481b5bdd9959603a1b6044820152606401610927565b600c548110611a8c5760405162461bcd60e51b815260040161092790613d3f565b600554831115611af15760405162461bcd60e51b815260206004820152602a60248201527f54726561737572793a206e6f7420656e6f75676820626f6e64206c65667420746044820152696f20707572636861736560b01b6064820152608401610927565b6000611afb610a96565b905060008111611b4d5760405162461bcd60e51b815260206004820152601b60248201527f54726561737572793a20696e76616c696420626f6e64207261746500000000006044820152606401610927565b6000611b65670de0b6b3a7640000610ae18785613098565b90506000611b71611e28565b90506000611bf683600860009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bcc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bf09190613c55565b906130c5565b9050611c14620186a0610ae16013548561309890919063ffffffff16565b811115611c595760405162461bcd60e51b81526020600482015260136024820152726f766572206d6178206465627420726174696f60681b6044820152606401610927565b60075460405163079cc67960e41b81526001600160a01b03909116906379cc679090611c8b9033908b90600401613c3c565b600060405180830381600087803b158015611ca557600080fd5b505af1158015611cb9573d6000803e3d6000fd5b50506008546040516340c10f1960e01b81526001600160a01b0390911692506340c10f199150611cef9033908790600401613c3c565b6020604051808303816000875af1158015611d0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d329190613dd4565b50600554611d4090886130b9565b600555611d4b61313d565b604080518881526020810185905233917f73017f1b70789e2e66759eeb3c7ec11f59e6eedb55d921cfaec5410dd42a4799910160405180910390a25050436000908152602081815260408083203284529091528082208054600160ff19918216811790925533845291909220805490911690911790555050505050565b6002546001600160a01b03163314611df25760405162461bcd60e51b815260040161092790613bf8565b6103e88110158015611e075750620186a08111155b611e235760405162461bcd60e51b815260040161092790613dae565b601355565b600754604080516318160ddd60e01b815290516000926001600160a01b031691839183916318160ddd9160048083019260209291908290030181865afa158015611e76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e9a9190613c55565b90506000805b60065460ff82161015611f6257611f50846001600160a01b03166370a0823160068460ff1681548110611ed557611ed5613df6565b60009182526020909120015460405160e083901b6001600160e01b03191681526001600160a01b039091166004820152602401602060405180830381865afa158015611f25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f499190613c55565b83906130c5565b9150611f5b81613e22565b9050611ea0565b50611f6d82826130b9565b935050505090565b4360009081526020818152604080832032845290915290205460ff1615611fae5760405162461bcd60e51b815260040161092790613c6e565b4360009081526020818152604080832033845290915290205460ff1615611fe75760405162461bcd60e51b815260040161092790613c6e565b6003544210156120095760405162461bcd60e51b815260040161092790613cb4565b612011612e49565b4210156120605760405162461bcd60e51b815260206004820152601860248201527f54726561737572793a206e6f74206f70656e65642079657400000000000000006044820152606401610927565b6007546040805163570ca73560e01b8152905130926001600160a01b03169163570ca7359160048083019260209291908290030181865afa1580156120a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120cd9190613ceb565b6001600160a01b031614801561215657506008546040805163570ca73560e01b8152905130926001600160a01b03169163570ca7359160048083019260209291908290030181865afa158015612127573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061214b9190613ceb565b6001600160a01b0316145b80156121d557506009546040805163570ca73560e01b8152905130926001600160a01b03169163570ca7359160048083019260209291908290030181865afa1580156121a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121ca9190613ceb565b6001600160a01b0316145b80156122545750600a546040805163570ca73560e01b8152905130926001600160a01b03169163570ca7359160048083019260209291908290030181865afa158015612225573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122499190613ceb565b6001600160a01b0316145b6122705760405162461bcd60e51b815260040161092790613d08565b61227861313d565b612280612d79565b601455600e5460009061229b90612295611e28565b906130b9565b9050600d5460145411156124e357600854604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd9160048083019260209291908290030181865afa1580156122f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123179190613c55565b90506000612332600c546014546130b990919063ffffffff16565b905060008060006123546509184e72a000600f5461309890919063ffffffff16565b9050809350612375620186a0610ae16010548861309890919063ffffffff16565b600e541061239a57612393670de0b6b3a7640000610ae18887613098565b9150612408565b60006123b2670de0b6b3a7640000610ae18988613098565b90506123d0620186a0610ae16011548461309890919063ffffffff16565b92506123dc81846130b9565b601a549094501561240657612403620186a0610ae1601a548761309890919063ffffffff16565b93505b505b811561241757612417826132c3565b82156124dd57600e5461242a90846130c5565b600e556007546040516340c10f1960e01b81526001600160a01b03909116906340c10f199061245f9030908790600401613c3c565b6020604051808303816000875af115801561247e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124a29190613dd4565b5060408051428152602081018590527ff705142bf09f04297640495ddf7c59b7fd6f51894c5aea9602d631cf05f0efc2910160405180910390a15b50505050505b506004546124f29060016130c5565b600455600d54612500612d79565b1161251f5761251a620186a0610ae1601254610b0d611e28565b612522565b60005b600555436000908152602081815260408083203284529091528082208054600160ff1991821681179092553384529190922080549091169091179055565b6002546001600160a01b0316331461258a5760405162461bcd60e51b815260040161092790613bf8565b600a5460405163b3ab15fb60e01b81526001600160a01b0383811660048301529091169063b3ab15fb906024015b600060405180830381600087803b1580156125d257600080fd5b505af11580156125e6573d6000803e3d6000fd5b5050505050565b6002546001600160a01b031633146126175760405162461bcd60e51b815260040161092790613bf8565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6126416131a5565b6114cc60006136bc565b600080612656612d79565b9050600d54811115610b46576007546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156126ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126cf9190613c55565b905060006126db610c34565b90508015610b4357611f6d81610ae184670de0b6b3a7640000613098565b6002546001600160a01b031633146127235760405162461bcd60e51b815260040161092790613bf8565b600a54604051632ffaaa0960e01b815260048101849052602481018390526001600160a01b0390911690632ffaaa0990604401600060405180830381600087803b15801561277057600080fd5b505af1158015612784573d6000803e3d6000fd5b505050505050565b6002546001600160a01b031633146127b65760405162461bcd60e51b815260040161092790613bf8565b6008546040516329605e7760e01b81526001600160a01b038381166004830152909116906329605e77906024016125b8565b6002546001600160a01b031633146128125760405162461bcd60e51b815260040161092790613bf8565b600c54811015801561283e575061283a6064610ae16078600c5461309890919063ffffffff16565b8111155b61285a5760405162461bcd60e51b815260040161092790613dae565b600d55565b6006818154811061286f57600080fd5b6000918252602090912001546001600160a01b0316905081565b6128916131a5565b6002546040516000916001600160a01b0316907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908390a3600280546001600160a01b0319169055565b6002546001600160a01b031633146129055760405162461bcd60e51b815260040161092790613bf8565b6101f4811015801561291a5750620186a08111155b6129365760405162461bcd60e51b815260040161092790613dae565b601055565b6002546001600160a01b031633146129655760405162461bcd60e51b815260040161092790613bf8565b600a54604051631515d6bd60e21b81526001600160a01b038581166004830152602482018590528381166044830152909116906354575af490606401600060405180830381600087803b1580156129bb57600080fd5b505af11580156129cf573d6000803e3d6000fd5b50505050505050565b600254600160a01b900460ff1615612a325760405162461bcd60e51b815260206004820152601d60248201527f54726561737572793a20616c726561647920696e697469616c697a65640000006044820152606401610927565b6002546001600160a01b03163314612a5c5760405162461bcd60e51b815260040161092790613bf8565b600780546001600160a01b03199081166001600160a01b0389811691909117909255600880548216888416179055600980548216878416179055600b80548216868416179055600a80549091169184169190911790556003819055670de0b6b3a7640000600c819055612ad790606490610ae1906065613098565b600d556096600f55620186a06010556188b860118190556127106012556013556007546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015612b3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b639190613c55565b600e556002805460ff60a01b1916600160a01b17905560405133907f25ff68dd81b34665b5ba7e553ee5511bf6812e12adb4a7e2c0d9e26b3099ce7990612bad9043815260200190565b60405180910390a2505050505050565b6002546001600160a01b03163314612be75760405162461bcd60e51b815260040161092790613bf8565b6009546040516329605e7760e01b81526001600160a01b038381166004830152909116906329605e77906024016125b8565b6002546001600160a01b03163314612c435760405162461bcd60e51b815260040161092790613bf8565b62030d40811115612c965760405162461bcd60e51b815260206004820152601d60248201527f5f6d6178446973636f756e7452617465206973206f76657220323030250000006044820152606401610927565b601555565b6002546001600160a01b03163314612cc55760405162461bcd60e51b815260040161092790613bf8565b6007546040516329605e7760e01b81526001600160a01b038381166004830152909116906329605e77906024016125b8565b6002546001600160a01b03163314612d215760405162461bcd60e51b815260040161092790613bf8565b62030d40811115612d745760405162461bcd60e51b815260206004820152601c60248201527f5f6d61785072656d69756d52617465206973206f7665722032303025000000006044820152606401610927565b601655565b600b54600754604051633ddac95360e01b81526000926001600160a01b0390811692633ddac95392610b8c9290911690670de0b6b3a764000090600401613c3c565b6002546001600160a01b03163314612de55760405162461bcd60e51b815260040161092790613bf8565b61149781611486565b6002546001600160a01b03163314612e185760405162461bcd60e51b815260040161092790613bf8565b600a546040516397ffe1d760e01b8152600481018390526001600160a01b03909116906397ffe1d7906024016125b8565b6000612e6e612e6561546060045461309890919063ffffffff16565b600354906130c5565b905090565b6002546001600160a01b03163314612e9d5760405162461bcd60e51b815260040161092790613bf8565b60648110158015612eb05750613a988111155b612ecc5760405162461bcd60e51b815260040161092790613dae565b601255565b6002546001600160a01b03163314612efb5760405162461bcd60e51b815260040161092790613bf8565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600080612f28612d79565b9050600c548111610b46576000612f3d611e28565b90506000612f5d620186a0610ae16013548561309890919063ffffffff16565b90506000600860009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612fb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fd89190613c55565b90508082111561301b576000612fee83836130b9565b90506000613008670de0b6b3a7640000610ae18489613098565b9050613016600554826130d1565b965050505b5050505090565b61302a6131a5565b6001600160a01b03811661308f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610927565b611497816136bc565b60006130a48284613e41565b90505b92915050565b60006130a48284613e58565b60006130a48284613e7a565b60006130a48284613e8d565b60008183106130e057816130a4565b5090919050565b6117028363a9059cbb60e01b8484604051602401613106929190613c3c565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261370e565b600b60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561318d57600080fd5b505af192505050801561319e575060015b156114cc57565b6001546001600160a01b031633146114cc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610927565b6001600160a01b03811661326b5760405162461bcd60e51b815260206004820152602d60248201527f6f70657261746f723a207a65726f206164647265737320676976656e20666f7260448201526c103732bb9037b832b930ba37b960991b6064820152608401610927565b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600280546001600160a01b0319166001600160a01b0392909216919091179055565b6007546040516340c10f1960e01b81526001600160a01b03909116906340c10f19906132f59030908590600401613c3c565b6020604051808303816000875af1158015613314573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133389190613dd4565b50601c546000901561341657613360620186a0610ae1601c548561309890919063ffffffff16565b600754601b5460405163a9059cbb60e01b81529293506001600160a01b039182169263a9059cbb926133989216908590600401613c3c565b6020604051808303816000875af11580156133b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133db9190613dd4565b5060408051428152602081018390527fcb3f34aaa3445b461e6da5492dc89e5c257a59fa598131f3b6bbc97a3638e409910160405180910390a15b601e54600090156134f35761343d620186a0610ae1601e548661309890919063ffffffff16565b600754601d5460405163a9059cbb60e01b81529293506001600160a01b039182169263a9059cbb926134759216908590600401613c3c565b6020604051808303816000875af1158015613494573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134b89190613dd4565b5060408051428152602081018390527fdc8b715b18523e58b7fd0da53259dfa91efd91df4a854d94b136e3333a3b9395910160405180910390a15b602054600090156135d05761351a620186a0610ae16020548761309890919063ffffffff16565b600754601f5460405163a9059cbb60e01b81529293506001600160a01b039182169263a9059cbb926135529216908590600401613c3c565b6020604051808303816000875af1158015613571573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135959190613dd4565b5060408051428152602081018390527f2dfe5937647c787f9c6bddefedb6b3273b627227b0493e9a83b5441fb11ee00c910160405180910390a15b6135e081612295848188886130b9565b600a54600754919550613601916001600160a01b03908116911660006137e3565b600a5460075461361e916001600160a01b039182169116866137e3565b600a546040516397ffe1d760e01b8152600481018690526001600160a01b03909116906397ffe1d790602401600060405180830381600087803b15801561366457600080fd5b505af1158015613678573d6000803e3d6000fd5b505060408051428152602081018890527fa72fa2f263b243b0f0e1fec5f3d49d33de573d15929b6b730c6b8ab3838c1c4d935001905060405180910390a150505050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000613763826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166138e79092919063ffffffff16565b90508051600014806137845750808060200190518101906137849190613dd4565b6117025760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610927565b80158061385d5750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015613837573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061385b9190613c55565b155b6138c85760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b6064820152608401610927565b6117028363095ea7b360e01b8484604051602401613106929190613c3c565b60606138f684846000856138fe565b949350505050565b60608247101561395f5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610927565b600080866001600160a01b0316858760405161397b9190613ec4565b60006040518083038185875af1925050503d80600081146139b8576040519150601f19603f3d011682016040523d82523d6000602084013e6139bd565b606091505b50915091506139ce878383876139d9565b979650505050505050565b60608315613a48578251600003613a41576001600160a01b0385163b613a415760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610927565b50816138f6565b6138f68383815115613a5d5781518083602001fd5b8060405162461bcd60e51b81526004016109279190613ee0565b600060208284031215613a8957600080fd5b5035919050565b60008060408385031215613aa357600080fd5b50508035926020909101359150565b6001600160a01b038116811461149757600080fd5b60008060008060008060c08789031215613ae057600080fd5b8635613aeb81613ab2565b9550602087013594506040870135613b0281613ab2565b9350606087013592506080870135613b1981613ab2565b9598949750929591949360a090920135925050565b600060208284031215613b4057600080fd5b8135613b4b81613ab2565b9392505050565b600080600060608486031215613b6757600080fd5b8335613b7281613ab2565b9250602084013591506040840135613b8981613ab2565b809150509250925092565b60008060008060008060c08789031215613bad57600080fd5b8635613bb881613ab2565b95506020870135613bc881613ab2565b94506040870135613bd881613ab2565b93506060870135613be881613ab2565b92506080870135613b1981613ab2565b60208082526024908201527f6f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657260408201526330ba37b960e11b606082015260800190565b6001600160a01b03929092168252602082015260400190565b600060208284031215613c6757600080fd5b5051919050565b60208082526026908201527f436f6e747261637447756172643a206f6e6520626c6f636b2c206f6e652066756040820152653731ba34b7b760d11b606082015260800190565b60208082526019908201527f54726561737572793a206e6f7420737461727465642079657400000000000000604082015260600190565b600060208284031215613cfd57600080fd5b8151613b4b81613ab2565b6020808252601e908201527f54726561737572793a206e656564206d6f7265207065726d697373696f6e0000604082015260600190565b60208082526031908201527f54726561737572793a20686f675072696365206e6f7420656c696769626c6520604082015270666f7220626f6e6420707572636861736560781b606082015260800190565b6020808252600490820152637a65726f60e01b604082015260600190565b6020808252600c908201526b6f7574206f662072616e676560a01b604082015260600190565b600060208284031215613de657600080fd5b81518015158114613b4b57600080fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff8103613e3857613e38613e0c565b60010192915050565b80820281158282048414176130a7576130a7613e0c565b600082613e7557634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156130a7576130a7613e0c565b808201808211156130a7576130a7613e0c565b60005b83811015613ebb578181015183820152602001613ea3565b50506000910152565b60008251613ed6818460208701613ea0565b9190910192915050565b6020815260008251806020840152613eff816040850160208701613ea0565b601f01601f1916919091016040019291505056fea26469706673582212202e54c74da05b61832f53e42be7ee5c6aa637eda6c77d03de8a0ba3454b25ebe264736f6c634300081a0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106104695760003560e01c806369638af81161024c5780639a15e01a11610146578063cecce38e116100c3578063e15a90be11610087578063e15a90be146108bd578063e90b2454146108c5578063ed97aa73146108ce578063f2fde38b146108e1578063fcb6f008146108f457600080fd5b8063cecce38e1461087c578063d5d3b26c1461088f578063d98f2495146108a2578063da3ed419146108ab578063dd5efbce146108b457600080fd5b8063b8a878f91161010a578063b8a878f914610846578063be266d541461084f578063c5967c2614610862578063c8412d021461086a578063c8f987f31461087357600080fd5b80639a15e01a146107fc578063a204452b1461080f578063aa2b09e614610822578063b3ab15fb1461082a578063b4d1d7951461083d57600080fd5b806382cad838116101d4578063900cf0cf11610198578063900cf0cf146107a7578063951357d4146107b057806395b6ef0c146107c357806398945b62146107d657806398b762a1146107e957600080fd5b806382cad838146107555780638a27f103146107685780638c664db6146107705780638d934f74146107835780638da5cb5b1461079657600080fd5b8063734f70961161021b578063734f70961461070a57806378e979251461071d5780637db11fd0146107265780637fdedb341461073957806381d11eaf1461074c57600080fd5b806369638af8146106d45780636ef3023c146106e7578063715018a6146106fa57806372c054f91461070257600080fd5b80632e9c7b651161036857806354f04a11116102e557806359bf5d39116102a957806359bf5d39146106955780635a0fc79c1461069d5780635b756179146106a657806362ac58e4146106ae57806363f96cf4146106c157600080fd5b806354f04a111461064d57806355ebdeef14610660578063570ca73514610669578063591663e11461067a57806359a9f2b01461068d57600080fd5b80634456eda21161032c5780634456eda2146105f8578063499f3f191461060b5780634c109ce01461061e57806354575af4146106275780635495699f1461063a57600080fd5b80632e9c7b65146105ae578063392e53cd146105b75780634013a08e146105c957806340af7ba5146105d25780634390d2a8146105e557600080fd5b8063154ec2db116103f6578063282c658b116103ba578063282c658b1461056e578063288968211461057757806329605e771461058a57806329ef19191461059d5780632ab6f8db146105a657600080fd5b8063154ec2db14610511578063158ef93e146105245780631b0fb35f14610548578063200fea3b1461055b57806322f832cd1461056557600080fd5b80630cf601751161043d5780630cf60175146104bb5780630d2d423d146104c35780630db7eb0b146104cb578063118ebbf9146104d357806313484106146104e657600080fd5b80627c5fc71461046e57806303be7e761461048a57806304e5c7b1146104935780630b5bcec7146104a8575b600080fd5b61047760145481565b6040519081526020015b60405180910390f35b610477601e5481565b6104a66104a1366004613a77565b6108fd565b005b6104a66104b6366004613a77565b6109f7565b610477610a96565b610477610b4a565b610477610c34565b6104a66104e1366004613a90565b610cd5565b6009546104f9906001600160a01b031681565b6040516001600160a01b039091168152602001610481565b6104a661051f366004613a77565b6112b3565b60025461053890600160a01b900460ff1681565b6040519015158152602001610481565b6104a6610556366004613ac7565b611335565b610477620186a081565b61047760115481565b610477600c5481565b6008546104f9906001600160a01b031681565b6104a6610598366004613b2e565b611486565b61047760175481565b6104a661149a565b61047760165481565b600254600160a01b900460ff16610538565b610477601a5481565b6104a66105e0366004613a77565b6114ce565b601d546104f9906001600160a01b031681565b6002546001600160a01b03163314610538565b6104a6610619366004613a77565b611550565b61047760205481565b6104a6610635366004613b52565b6115f3565b601f546104f9906001600160a01b031681565b6104a661065b366004613a90565b611707565b610477601c5481565b6002546001600160a01b03166104f9565b6104a6610688366004613a77565b611dc8565b610477611e28565b600e54610477565b610477600e5481565b6104a6611f75565b6104a66106bc366004613b2e565b612560565b600a546104f9906001600160a01b031681565b6007546104f9906001600160a01b031681565b6104a66106f5366004613b2e565b6125ed565b6104a6612639565b61047761264b565b6104a6610718366004613a90565b6126f9565b61047760035481565b6104a6610734366004613b2e565b61278c565b6104a6610747366004613a77565b6127e8565b61047760105481565b6104f9610763366004613a77565b61285f565b6104a6612889565b6104a661077e366004613a77565b6128db565b601b546104f9906001600160a01b031681565b6001546001600160a01b03166104f9565b61047760045481565b6104a66107be366004613b52565b61293b565b6104a66107d1366004613b94565b6129d8565b6104a66107e4366004613b2e565b612bbd565b6104a66107f7366004613a77565b612c19565b6104a661080a366004613b2e565b612c9b565b6104a661081d366004613a77565b612cf7565b610477612d79565b6104a6610838366004613b2e565b612dbb565b61047761546081565b61047760155481565b6104a661085d366004613a77565b612dee565b610477612e49565b61047760195481565b61047760185481565b6104a661088a366004613a77565b612e73565b6104a661089d366004613b2e565b612ed1565b610477600f5481565b61047760135481565b610477600d5481565b610477612f1d565b61047760125481565b600b546104f9906001600160a01b031681565b6104a66108ef366004613b2e565b613022565b61047760055481565b6002546001600160a01b031633146109305760405162461bcd60e51b815260040161092790613bf8565b60405180910390fd5b600d548110156109945760405162461bcd60e51b815260206004820152602960248201527f5f7072656d69756d5468726573686f6c64206578636565647320686f6750726960448201526863654365696c696e6760b81b6064820152608401610927565b6105dc8111156109f25760405162461bcd60e51b8152602060048201526024808201527f5f7072656d69756d5468726573686f6c6420697320686967686572207468616e60448201526320312e3560e01b6064820152608401610927565b601855565b6002546001600160a01b03163314610a215760405162461bcd60e51b815260040161092790613bf8565b600a8110158015610a3457506127108111155b610a915760405162461bcd60e51b815260206004820152602860248201527f5f6d6178537570706c79457870616e73696f6e50657263656e743a206f7574206044820152676f662072616e676560c01b6064820152608401610927565b600f55565b600080610aa1612d79565b9050600c548111610b4657601754600003610abe575050600c5490565b6000610ae782610ae1670de0b6b3a7640000600c5461309890919063ffffffff16565b906130ad565b90506000610b13620186a0610ae1601754610b0d600c54876130b990919063ffffffff16565b90613098565b600c54909150610b2390826130c5565b93506000601554118015610b38575060155484115b15610b435760155493505b50505b5090565b600b54600754604051630d01142560e31b81526000926001600160a01b0390811692636808a12892610b8c9290911690670de0b6b3a764000090600401613c3c565b602060405180830381865afa925050508015610bc5575060408051601f3d908101601f19168201909252610bc291810190613c55565b60015b610c2f5760405162461bcd60e51b815260206004820152603560248201527f54726561737572793a206661696c656420746f20636f6e73756c7420484f472060448201527470726963652066726f6d20746865206f7261636c6560581b6064820152608401610927565b919050565b600080610c3f612d79565b9050600d54811115610b46576000610c696064610ae1601854600c5461309890919063ffffffff16565b9050808210610ccb576000610c96620186a0610ae1601954610b0d600c54886130b990919063ffffffff16565b600c54909150610ca690826130c5565b93506000601654118015610cbb575060165484115b15610b4357601654935050505090565b600c549250505090565b4360009081526020818152604080832032845290915290205460ff1615610d0e5760405162461bcd60e51b815260040161092790613c6e565b4360009081526020818152604080832033845290915290205460ff1615610d475760405162461bcd60e51b815260040161092790613c6e565b600354421015610d695760405162461bcd60e51b815260040161092790613cb4565b6007546040805163570ca73560e01b8152905130926001600160a01b03169163570ca7359160048083019260209291908290030181865afa158015610db2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd69190613ceb565b6001600160a01b0316148015610e5f57506008546040805163570ca73560e01b8152905130926001600160a01b03169163570ca7359160048083019260209291908290030181865afa158015610e30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e549190613ceb565b6001600160a01b0316145b8015610ede57506009546040805163570ca73560e01b8152905130926001600160a01b03169163570ca7359160048083019260209291908290030181865afa158015610eaf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed39190613ceb565b6001600160a01b0316145b8015610f5d5750600a546040805163570ca73560e01b8152905130926001600160a01b03169163570ca7359160048083019260209291908290030181865afa158015610f2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f529190613ceb565b6001600160a01b0316145b610f795760405162461bcd60e51b815260040161092790613d08565b60008211610fe05760405162461bcd60e51b815260206004820152602e60248201527f54726561737572793a2063616e6e6f742072656465656d20626f6e647320776960448201526d1d1a081e995c9bc8185b5bdd5b9d60921b6064820152608401610927565b6000610fea612d79565b90508181146110375760405162461bcd60e51b8152602060048201526019602482015278151c99585cdd5c9e4e881213d1c81c1c9a58d9481b5bdd9959603a1b6044820152606401610927565b600d5481116110585760405162461bcd60e51b815260040161092790613d3f565b6000611062610c34565b9050600081116110b45760405162461bcd60e51b815260206004820152601b60248201527f54726561737572793a20696e76616c696420626f6e64207261746500000000006044820152606401610927565b60006110cc670de0b6b3a7640000610ae18785613098565b6007546040516370a0823160e01b815230600482015291925082916001600160a01b03909116906370a0823190602401602060405180830381865afa158015611119573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113d9190613c55565b10156111995760405162461bcd60e51b815260206004820152602560248201527f54726561737572793a20747265617375727920686173206e6f206d6f726520626044820152641d5919d95d60da1b6064820152608401610927565b6111b16111a8600e54836130d1565b600e54906130b9565b600e5560085460405163079cc67960e41b81526001600160a01b03909116906379cc6790906111e69033908990600401613c3c565b600060405180830381600087803b15801561120057600080fd5b505af1158015611214573d6000803e3d6000fd5b505060075461123092506001600160a01b0316905033836130e7565b61123861313d565b604080518281526020810187905233917f51e0d16595cabc591e64da08e45bb223577e5b9a39cd947b4ddc3472b2dd8878910160405180910390a25050436000908152602081815260408083203284529091528082208054600160ff1991821681179092553384529190922080549091169091179055505050565b6002546001600160a01b031633146112dd5760405162461bcd60e51b815260040161092790613bf8565b62030d408111156113305760405162461bcd60e51b815260206004820152601d60248201527f5f646973636f756e7450657263656e74206973206f76657220323030250000006044820152606401610927565b601755565b6002546001600160a01b0316331461135f5760405162461bcd60e51b815260040161092790613bf8565b6001600160a01b0386166113855760405162461bcd60e51b815260040161092790613d90565b613a988511156113a75760405162461bcd60e51b815260040161092790613dae565b6001600160a01b0384166113cd5760405162461bcd60e51b815260040161092790613d90565b610dac8311156113ef5760405162461bcd60e51b815260040161092790613dae565b6001600160a01b0382166114155760405162461bcd60e51b815260040161092790613d90565b61157c8111156114375760405162461bcd60e51b815260040161092790613dae565b601b80546001600160a01b03199081166001600160a01b0398891617909155601c95909555601d8054861694871694909417909355601e91909155601f80549093169316929092179055602055565b61148e6131a5565b611497816131ff565b50565b6002546001600160a01b031633146114c45760405162461bcd60e51b815260040161092790613bf8565b6114cc612889565b565b6002546001600160a01b031633146114f85760405162461bcd60e51b815260040161092790613bf8565b62030d4081111561154b5760405162461bcd60e51b815260206004820152601c60248201527f5f7072656d69756d50657263656e74206973206f7665722032303025000000006044820152606401610927565b601955565b6002546001600160a01b0316331461157a5760405162461bcd60e51b815260040161092790613bf8565b620186a08110158015611590575062030d408111155b6115ee5760405162461bcd60e51b815260206004820152602960248201527f5f6d696e74696e67466163746f72466f72506179696e67446562743a206f7574604482015268206f662072616e676560b81b6064820152608401610927565b601a55565b6002546001600160a01b0316331461161d5760405162461bcd60e51b815260040161092790613bf8565b6007546001600160a01b03908116908416036116615760405162461bcd60e51b8152602060048201526003602482015262686f6760e81b6044820152606401610927565b6008546001600160a01b03908116908416036116a85760405162461bcd60e51b815260040161092790602080825260049082015263189bdb9960e21b604082015260600190565b6009546001600160a01b03908116908416036116ee5760405162461bcd60e51b8152602060048201526005602482015264736861726560d81b6044820152606401610927565b6117026001600160a01b03841682846130e7565b505050565b4360009081526020818152604080832032845290915290205460ff16156117405760405162461bcd60e51b815260040161092790613c6e565b4360009081526020818152604080832033845290915290205460ff16156117795760405162461bcd60e51b815260040161092790613c6e565b60035442101561179b5760405162461bcd60e51b815260040161092790613cb4565b6007546040805163570ca73560e01b8152905130926001600160a01b03169163570ca7359160048083019260209291908290030181865afa1580156117e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118089190613ceb565b6001600160a01b031614801561189157506008546040805163570ca73560e01b8152905130926001600160a01b03169163570ca7359160048083019260209291908290030181865afa158015611862573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118869190613ceb565b6001600160a01b0316145b801561191057506009546040805163570ca73560e01b8152905130926001600160a01b03169163570ca7359160048083019260209291908290030181865afa1580156118e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119059190613ceb565b6001600160a01b0316145b801561198f5750600a546040805163570ca73560e01b8152905130926001600160a01b03169163570ca7359160048083019260209291908290030181865afa158015611960573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119849190613ceb565b6001600160a01b0316145b6119ab5760405162461bcd60e51b815260040161092790613d08565b60008211611a145760405162461bcd60e51b815260206004820152603060248201527f54726561737572793a2063616e6e6f7420707572636861736520626f6e64732060448201526f1dda5d1a081e995c9bc8185b5bdd5b9d60821b6064820152608401610927565b6000611a1e612d79565b9050818114611a6b5760405162461bcd60e51b8152602060048201526019602482015278151c99585cdd5c9e4e881213d1c81c1c9a58d9481b5bdd9959603a1b6044820152606401610927565b600c548110611a8c5760405162461bcd60e51b815260040161092790613d3f565b600554831115611af15760405162461bcd60e51b815260206004820152602a60248201527f54726561737572793a206e6f7420656e6f75676820626f6e64206c65667420746044820152696f20707572636861736560b01b6064820152608401610927565b6000611afb610a96565b905060008111611b4d5760405162461bcd60e51b815260206004820152601b60248201527f54726561737572793a20696e76616c696420626f6e64207261746500000000006044820152606401610927565b6000611b65670de0b6b3a7640000610ae18785613098565b90506000611b71611e28565b90506000611bf683600860009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bcc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bf09190613c55565b906130c5565b9050611c14620186a0610ae16013548561309890919063ffffffff16565b811115611c595760405162461bcd60e51b81526020600482015260136024820152726f766572206d6178206465627420726174696f60681b6044820152606401610927565b60075460405163079cc67960e41b81526001600160a01b03909116906379cc679090611c8b9033908b90600401613c3c565b600060405180830381600087803b158015611ca557600080fd5b505af1158015611cb9573d6000803e3d6000fd5b50506008546040516340c10f1960e01b81526001600160a01b0390911692506340c10f199150611cef9033908790600401613c3c565b6020604051808303816000875af1158015611d0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d329190613dd4565b50600554611d4090886130b9565b600555611d4b61313d565b604080518881526020810185905233917f73017f1b70789e2e66759eeb3c7ec11f59e6eedb55d921cfaec5410dd42a4799910160405180910390a25050436000908152602081815260408083203284529091528082208054600160ff19918216811790925533845291909220805490911690911790555050505050565b6002546001600160a01b03163314611df25760405162461bcd60e51b815260040161092790613bf8565b6103e88110158015611e075750620186a08111155b611e235760405162461bcd60e51b815260040161092790613dae565b601355565b600754604080516318160ddd60e01b815290516000926001600160a01b031691839183916318160ddd9160048083019260209291908290030181865afa158015611e76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e9a9190613c55565b90506000805b60065460ff82161015611f6257611f50846001600160a01b03166370a0823160068460ff1681548110611ed557611ed5613df6565b60009182526020909120015460405160e083901b6001600160e01b03191681526001600160a01b039091166004820152602401602060405180830381865afa158015611f25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f499190613c55565b83906130c5565b9150611f5b81613e22565b9050611ea0565b50611f6d82826130b9565b935050505090565b4360009081526020818152604080832032845290915290205460ff1615611fae5760405162461bcd60e51b815260040161092790613c6e565b4360009081526020818152604080832033845290915290205460ff1615611fe75760405162461bcd60e51b815260040161092790613c6e565b6003544210156120095760405162461bcd60e51b815260040161092790613cb4565b612011612e49565b4210156120605760405162461bcd60e51b815260206004820152601860248201527f54726561737572793a206e6f74206f70656e65642079657400000000000000006044820152606401610927565b6007546040805163570ca73560e01b8152905130926001600160a01b03169163570ca7359160048083019260209291908290030181865afa1580156120a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120cd9190613ceb565b6001600160a01b031614801561215657506008546040805163570ca73560e01b8152905130926001600160a01b03169163570ca7359160048083019260209291908290030181865afa158015612127573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061214b9190613ceb565b6001600160a01b0316145b80156121d557506009546040805163570ca73560e01b8152905130926001600160a01b03169163570ca7359160048083019260209291908290030181865afa1580156121a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121ca9190613ceb565b6001600160a01b0316145b80156122545750600a546040805163570ca73560e01b8152905130926001600160a01b03169163570ca7359160048083019260209291908290030181865afa158015612225573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122499190613ceb565b6001600160a01b0316145b6122705760405162461bcd60e51b815260040161092790613d08565b61227861313d565b612280612d79565b601455600e5460009061229b90612295611e28565b906130b9565b9050600d5460145411156124e357600854604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd9160048083019260209291908290030181865afa1580156122f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123179190613c55565b90506000612332600c546014546130b990919063ffffffff16565b905060008060006123546509184e72a000600f5461309890919063ffffffff16565b9050809350612375620186a0610ae16010548861309890919063ffffffff16565b600e541061239a57612393670de0b6b3a7640000610ae18887613098565b9150612408565b60006123b2670de0b6b3a7640000610ae18988613098565b90506123d0620186a0610ae16011548461309890919063ffffffff16565b92506123dc81846130b9565b601a549094501561240657612403620186a0610ae1601a548761309890919063ffffffff16565b93505b505b811561241757612417826132c3565b82156124dd57600e5461242a90846130c5565b600e556007546040516340c10f1960e01b81526001600160a01b03909116906340c10f199061245f9030908790600401613c3c565b6020604051808303816000875af115801561247e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124a29190613dd4565b5060408051428152602081018590527ff705142bf09f04297640495ddf7c59b7fd6f51894c5aea9602d631cf05f0efc2910160405180910390a15b50505050505b506004546124f29060016130c5565b600455600d54612500612d79565b1161251f5761251a620186a0610ae1601254610b0d611e28565b612522565b60005b600555436000908152602081815260408083203284529091528082208054600160ff1991821681179092553384529190922080549091169091179055565b6002546001600160a01b0316331461258a5760405162461bcd60e51b815260040161092790613bf8565b600a5460405163b3ab15fb60e01b81526001600160a01b0383811660048301529091169063b3ab15fb906024015b600060405180830381600087803b1580156125d257600080fd5b505af11580156125e6573d6000803e3d6000fd5b5050505050565b6002546001600160a01b031633146126175760405162461bcd60e51b815260040161092790613bf8565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6126416131a5565b6114cc60006136bc565b600080612656612d79565b9050600d54811115610b46576007546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156126ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126cf9190613c55565b905060006126db610c34565b90508015610b4357611f6d81610ae184670de0b6b3a7640000613098565b6002546001600160a01b031633146127235760405162461bcd60e51b815260040161092790613bf8565b600a54604051632ffaaa0960e01b815260048101849052602481018390526001600160a01b0390911690632ffaaa0990604401600060405180830381600087803b15801561277057600080fd5b505af1158015612784573d6000803e3d6000fd5b505050505050565b6002546001600160a01b031633146127b65760405162461bcd60e51b815260040161092790613bf8565b6008546040516329605e7760e01b81526001600160a01b038381166004830152909116906329605e77906024016125b8565b6002546001600160a01b031633146128125760405162461bcd60e51b815260040161092790613bf8565b600c54811015801561283e575061283a6064610ae16078600c5461309890919063ffffffff16565b8111155b61285a5760405162461bcd60e51b815260040161092790613dae565b600d55565b6006818154811061286f57600080fd5b6000918252602090912001546001600160a01b0316905081565b6128916131a5565b6002546040516000916001600160a01b0316907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908390a3600280546001600160a01b0319169055565b6002546001600160a01b031633146129055760405162461bcd60e51b815260040161092790613bf8565b6101f4811015801561291a5750620186a08111155b6129365760405162461bcd60e51b815260040161092790613dae565b601055565b6002546001600160a01b031633146129655760405162461bcd60e51b815260040161092790613bf8565b600a54604051631515d6bd60e21b81526001600160a01b038581166004830152602482018590528381166044830152909116906354575af490606401600060405180830381600087803b1580156129bb57600080fd5b505af11580156129cf573d6000803e3d6000fd5b50505050505050565b600254600160a01b900460ff1615612a325760405162461bcd60e51b815260206004820152601d60248201527f54726561737572793a20616c726561647920696e697469616c697a65640000006044820152606401610927565b6002546001600160a01b03163314612a5c5760405162461bcd60e51b815260040161092790613bf8565b600780546001600160a01b03199081166001600160a01b0389811691909117909255600880548216888416179055600980548216878416179055600b80548216868416179055600a80549091169184169190911790556003819055670de0b6b3a7640000600c819055612ad790606490610ae1906065613098565b600d556096600f55620186a06010556188b860118190556127106012556013556007546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015612b3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b639190613c55565b600e556002805460ff60a01b1916600160a01b17905560405133907f25ff68dd81b34665b5ba7e553ee5511bf6812e12adb4a7e2c0d9e26b3099ce7990612bad9043815260200190565b60405180910390a2505050505050565b6002546001600160a01b03163314612be75760405162461bcd60e51b815260040161092790613bf8565b6009546040516329605e7760e01b81526001600160a01b038381166004830152909116906329605e77906024016125b8565b6002546001600160a01b03163314612c435760405162461bcd60e51b815260040161092790613bf8565b62030d40811115612c965760405162461bcd60e51b815260206004820152601d60248201527f5f6d6178446973636f756e7452617465206973206f76657220323030250000006044820152606401610927565b601555565b6002546001600160a01b03163314612cc55760405162461bcd60e51b815260040161092790613bf8565b6007546040516329605e7760e01b81526001600160a01b038381166004830152909116906329605e77906024016125b8565b6002546001600160a01b03163314612d215760405162461bcd60e51b815260040161092790613bf8565b62030d40811115612d745760405162461bcd60e51b815260206004820152601c60248201527f5f6d61785072656d69756d52617465206973206f7665722032303025000000006044820152606401610927565b601655565b600b54600754604051633ddac95360e01b81526000926001600160a01b0390811692633ddac95392610b8c9290911690670de0b6b3a764000090600401613c3c565b6002546001600160a01b03163314612de55760405162461bcd60e51b815260040161092790613bf8565b61149781611486565b6002546001600160a01b03163314612e185760405162461bcd60e51b815260040161092790613bf8565b600a546040516397ffe1d760e01b8152600481018390526001600160a01b03909116906397ffe1d7906024016125b8565b6000612e6e612e6561546060045461309890919063ffffffff16565b600354906130c5565b905090565b6002546001600160a01b03163314612e9d5760405162461bcd60e51b815260040161092790613bf8565b60648110158015612eb05750613a988111155b612ecc5760405162461bcd60e51b815260040161092790613dae565b601255565b6002546001600160a01b03163314612efb5760405162461bcd60e51b815260040161092790613bf8565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600080612f28612d79565b9050600c548111610b46576000612f3d611e28565b90506000612f5d620186a0610ae16013548561309890919063ffffffff16565b90506000600860009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612fb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fd89190613c55565b90508082111561301b576000612fee83836130b9565b90506000613008670de0b6b3a7640000610ae18489613098565b9050613016600554826130d1565b965050505b5050505090565b61302a6131a5565b6001600160a01b03811661308f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610927565b611497816136bc565b60006130a48284613e41565b90505b92915050565b60006130a48284613e58565b60006130a48284613e7a565b60006130a48284613e8d565b60008183106130e057816130a4565b5090919050565b6117028363a9059cbb60e01b8484604051602401613106929190613c3c565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261370e565b600b60009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561318d57600080fd5b505af192505050801561319e575060015b156114cc57565b6001546001600160a01b031633146114cc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610927565b6001600160a01b03811661326b5760405162461bcd60e51b815260206004820152602d60248201527f6f70657261746f723a207a65726f206164647265737320676976656e20666f7260448201526c103732bb9037b832b930ba37b960991b6064820152608401610927565b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600280546001600160a01b0319166001600160a01b0392909216919091179055565b6007546040516340c10f1960e01b81526001600160a01b03909116906340c10f19906132f59030908590600401613c3c565b6020604051808303816000875af1158015613314573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133389190613dd4565b50601c546000901561341657613360620186a0610ae1601c548561309890919063ffffffff16565b600754601b5460405163a9059cbb60e01b81529293506001600160a01b039182169263a9059cbb926133989216908590600401613c3c565b6020604051808303816000875af11580156133b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133db9190613dd4565b5060408051428152602081018390527fcb3f34aaa3445b461e6da5492dc89e5c257a59fa598131f3b6bbc97a3638e409910160405180910390a15b601e54600090156134f35761343d620186a0610ae1601e548661309890919063ffffffff16565b600754601d5460405163a9059cbb60e01b81529293506001600160a01b039182169263a9059cbb926134759216908590600401613c3c565b6020604051808303816000875af1158015613494573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134b89190613dd4565b5060408051428152602081018390527fdc8b715b18523e58b7fd0da53259dfa91efd91df4a854d94b136e3333a3b9395910160405180910390a15b602054600090156135d05761351a620186a0610ae16020548761309890919063ffffffff16565b600754601f5460405163a9059cbb60e01b81529293506001600160a01b039182169263a9059cbb926135529216908590600401613c3c565b6020604051808303816000875af1158015613571573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135959190613dd4565b5060408051428152602081018390527f2dfe5937647c787f9c6bddefedb6b3273b627227b0493e9a83b5441fb11ee00c910160405180910390a15b6135e081612295848188886130b9565b600a54600754919550613601916001600160a01b03908116911660006137e3565b600a5460075461361e916001600160a01b039182169116866137e3565b600a546040516397ffe1d760e01b8152600481018690526001600160a01b03909116906397ffe1d790602401600060405180830381600087803b15801561366457600080fd5b505af1158015613678573d6000803e3d6000fd5b505060408051428152602081018890527fa72fa2f263b243b0f0e1fec5f3d49d33de573d15929b6b730c6b8ab3838c1c4d935001905060405180910390a150505050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000613763826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166138e79092919063ffffffff16565b90508051600014806137845750808060200190518101906137849190613dd4565b6117025760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610927565b80158061385d5750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015613837573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061385b9190613c55565b155b6138c85760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b6064820152608401610927565b6117028363095ea7b360e01b8484604051602401613106929190613c3c565b60606138f684846000856138fe565b949350505050565b60608247101561395f5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610927565b600080866001600160a01b0316858760405161397b9190613ec4565b60006040518083038185875af1925050503d80600081146139b8576040519150601f19603f3d011682016040523d82523d6000602084013e6139bd565b606091505b50915091506139ce878383876139d9565b979650505050505050565b60608315613a48578251600003613a41576001600160a01b0385163b613a415760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610927565b50816138f6565b6138f68383815115613a5d5781518083602001fd5b8060405162461bcd60e51b81526004016109279190613ee0565b600060208284031215613a8957600080fd5b5035919050565b60008060408385031215613aa357600080fd5b50508035926020909101359150565b6001600160a01b038116811461149757600080fd5b60008060008060008060c08789031215613ae057600080fd5b8635613aeb81613ab2565b9550602087013594506040870135613b0281613ab2565b9350606087013592506080870135613b1981613ab2565b9598949750929591949360a090920135925050565b600060208284031215613b4057600080fd5b8135613b4b81613ab2565b9392505050565b600080600060608486031215613b6757600080fd5b8335613b7281613ab2565b9250602084013591506040840135613b8981613ab2565b809150509250925092565b60008060008060008060c08789031215613bad57600080fd5b8635613bb881613ab2565b95506020870135613bc881613ab2565b94506040870135613bd881613ab2565b93506060870135613be881613ab2565b92506080870135613b1981613ab2565b60208082526024908201527f6f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657260408201526330ba37b960e11b606082015260800190565b6001600160a01b03929092168252602082015260400190565b600060208284031215613c6757600080fd5b5051919050565b60208082526026908201527f436f6e747261637447756172643a206f6e6520626c6f636b2c206f6e652066756040820152653731ba34b7b760d11b606082015260800190565b60208082526019908201527f54726561737572793a206e6f7420737461727465642079657400000000000000604082015260600190565b600060208284031215613cfd57600080fd5b8151613b4b81613ab2565b6020808252601e908201527f54726561737572793a206e656564206d6f7265207065726d697373696f6e0000604082015260600190565b60208082526031908201527f54726561737572793a20686f675072696365206e6f7420656c696769626c6520604082015270666f7220626f6e6420707572636861736560781b606082015260800190565b6020808252600490820152637a65726f60e01b604082015260600190565b6020808252600c908201526b6f7574206f662072616e676560a01b604082015260600190565b600060208284031215613de657600080fd5b81518015158114613b4b57600080fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff8103613e3857613e38613e0c565b60010192915050565b80820281158282048414176130a7576130a7613e0c565b600082613e7557634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156130a7576130a7613e0c565b808201808211156130a7576130a7613e0c565b60005b83811015613ebb578181015183820152602001613ea3565b50506000910152565b60008251613ed6818460208701613ea0565b9190910192915050565b6020815260008251806020840152613eff816040850160208701613ea0565b601f01601f1916919091016040019291505056fea26469706673582212202e54c74da05b61832f53e42be7ee5c6aa637eda6c77d03de8a0ba3454b25ebe264736f6c634300081a0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.