Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 24 from a total of 24 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Increase Bid Siz... | 17424863 | 535 days ago | IN | 0 ETH | 0.00330372 | ||||
Increase Bid Siz... | 15678717 | 780 days ago | IN | 0 ETH | 0.00173338 | ||||
Increase Bid Siz... | 15678686 | 780 days ago | IN | 0 ETH | 0.00159624 | ||||
Settle Auction | 14960056 | 893 days ago | IN | 0 ETH | 0.00839816 | ||||
Increase Bid Siz... | 14959698 | 893 days ago | IN | 0 ETH | 0.00454052 | ||||
Increase Bid Siz... | 14959626 | 893 days ago | IN | 0 ETH | 0.00982784 | ||||
Increase Bid Siz... | 14954897 | 894 days ago | IN | 0 ETH | 0.00991445 | ||||
Increase Bid Siz... | 14947821 | 895 days ago | IN | 0 ETH | 0.01008429 | ||||
Increase Bid Siz... | 14943652 | 896 days ago | IN | 0 ETH | 0.00268983 | ||||
Increase Bid Siz... | 14763197 | 926 days ago | IN | 0 ETH | 0.00947454 | ||||
Increase Bid Siz... | 14762680 | 926 days ago | IN | 0 ETH | 0.01330075 | ||||
Increase Bid Siz... | 14762155 | 926 days ago | IN | 0 ETH | 0.01462927 | ||||
Increase Bid Siz... | 14760012 | 926 days ago | IN | 0 ETH | 0.04135465 | ||||
Increase Bid Siz... | 14759974 | 926 days ago | IN | 0 ETH | 0.04292492 | ||||
Increase Bid Siz... | 14759899 | 926 days ago | IN | 0 ETH | 0.02216261 | ||||
Increase Bid Siz... | 14759896 | 926 days ago | IN | 0 ETH | 0.06251827 | ||||
Increase Bid Siz... | 14759506 | 926 days ago | IN | 0 ETH | 0.03818401 | ||||
Increase Bid Siz... | 14753419 | 927 days ago | IN | 0 ETH | 0.00982854 | ||||
Increase Bid Siz... | 14753116 | 927 days ago | IN | 0 ETH | 0.00404012 | ||||
Increase Bid Siz... | 14737893 | 930 days ago | IN | 0 ETH | 0.00264914 | ||||
Increase Bid Siz... | 14737858 | 930 days ago | IN | 0 ETH | 0.00250836 | ||||
Increase Bid Siz... | 14737552 | 930 days ago | IN | 0 ETH | 0.00290716 | ||||
Add Authorizatio... | 13993999 | 1045 days ago | IN | 0 ETH | 0.00733082 | ||||
0x60806040 | 13993785 | 1045 days ago | IN | 0 ETH | 0.27308337 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
MixedStratSurplusAuctionHouse
Compiler Version
v0.6.7+commit.b8d736ae
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-12 */ /// SurplusAuctionHouse.sol // Copyright (C) 2018 Rain <[email protected]> // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Affero General Public License for more details. // // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <https://www.gnu.org/licenses/>. pragma solidity 0.6.7; abstract contract SAFEEngineLike { function transferInternalCoins(address,address,uint256) virtual external; function coinBalance(address) virtual external view returns (uint256); function approveSAFEModification(address) virtual external; function denySAFEModification(address) virtual external; } abstract contract TokenLike { function approve(address, uint256) virtual public returns (bool); function balanceOf(address) virtual public view returns (uint256); function move(address,address,uint256) virtual external; function burn(address,uint256) virtual external; } // This thing lets you auction surplus for protocol tokens. 50% of the protocol tokens are sent to another address and the rest are burned contract MixedStratSurplusAuctionHouse { // --- Auth --- mapping (address => uint256) public authorizedAccounts; /** * @notice Add auth to an account * @param account Account to add auth to */ function addAuthorization(address account) external isAuthorized { authorizedAccounts[account] = 1; emit AddAuthorization(account); } /** * @notice Remove auth from an account * @param account Account to remove auth from */ function removeAuthorization(address account) external isAuthorized { authorizedAccounts[account] = 0; emit RemoveAuthorization(account); } /** * @notice Checks whether msg.sender can call an authed function **/ modifier isAuthorized { require(authorizedAccounts[msg.sender] == 1, "MixedStratSurplusAuctionHouse/account-not-authorized"); _; } // --- Data --- struct Bid { // Bid size (how many protocol tokens are offered per system coins sold) uint256 bidAmount; // [wad] // How many system coins are sold in an auction uint256 amountToSell; // [rad] // Who the high bidder is address highBidder; // When the latest bid expires and the auction can be settled uint48 bidExpiry; // [unix epoch time] // Hard deadline for the auction after which no more bids can be placed uint48 auctionDeadline; // [unix epoch time] } // Bid data for each separate auction mapping (uint256 => Bid) public bids; // SAFE database SAFEEngineLike public safeEngine; // Protocol token address TokenLike public protocolToken; // Receiver of protocol tokens address public protocolTokenBidReceiver; uint256 constant ONE = 1.00E18; // [wad] // Minimum bid increase compared to the last bid in order to take the new one in consideration uint256 public bidIncrease = 1.05E18; // [wad] // How long the auction lasts after a new bid is submitted uint48 public bidDuration = 3 hours; // [seconds] // Total length of the auction uint48 public totalAuctionLength = 2 days; // [seconds] // Number of auctions started up until now uint256 public auctionsStarted = 0; // Whether the contract is settled or not uint256 public contractEnabled; bytes32 public constant AUCTION_HOUSE_TYPE = bytes32("SURPLUS"); bytes32 public constant SURPLUS_AUCTION_TYPE = bytes32("MIXED-STRAT"); // --- Events --- event AddAuthorization(address account); event RemoveAuthorization(address account); event ModifyParameters(bytes32 parameter, uint256 data); event ModifyParameters(bytes32 parameter, address addr); event RestartAuction(uint256 id, uint256 auctionDeadline); event IncreaseBidSize(uint256 id, address highBidder, uint256 amountToBuy, uint256 bid, uint256 bidExpiry); event StartAuction( uint256 indexed id, uint256 auctionsStarted, uint256 amountToSell, uint256 initialBid, uint256 auctionDeadline ); event SettleAuction(uint256 indexed id); event DisableContract(); event TerminateAuctionPrematurely(uint256 indexed id, address sender, address highBidder, uint256 bidAmount); // --- Init --- constructor(address safeEngine_, address protocolToken_) public { authorizedAccounts[msg.sender] = 1; safeEngine = SAFEEngineLike(safeEngine_); protocolToken = TokenLike(protocolToken_); contractEnabled = 1; emit AddAuthorization(msg.sender); } // --- Math --- uint256 public constant FIFTY = 50; uint256 public constant HUNDRED = 100; function addUint48(uint48 x, uint48 y) internal pure returns (uint48 z) { require((z = x + y) >= x, "MixedStratSurplusAuctionHouse/add-uint48-overflow"); } function subtract(uint256 x, uint256 y) internal pure returns (uint256 z) { require((z = x - y) <= x, "MixedStratSurplusAuctionHouse/sub-underflow"); } function multiply(uint256 x, uint256 y) internal pure returns (uint256 z) { require(y == 0 || (z = x * y) / y == x, "MixedStratSurplusAuctionHouse/mul-overflow"); } // --- Admin --- /** * @notice Modify uint256 parameters * @param parameter The name of the parameter modified * @param data New value for the parameter */ function modifyParameters(bytes32 parameter, uint256 data) external isAuthorized { if (parameter == "bidIncrease") bidIncrease = data; else if (parameter == "bidDuration") bidDuration = uint48(data); else if (parameter == "totalAuctionLength") totalAuctionLength = uint48(data); else revert("MixedStratSurplusAuctionHouse/modify-unrecognized-param"); emit ModifyParameters(parameter, data); } /** * @notice Modify address parameters * @param parameter The name of the parameter modified * @param addr New address value */ function modifyParameters(bytes32 parameter, address addr) external isAuthorized { require(addr != address(0), "MixedStratSurplusAuctionHouse/invalid-address"); if (parameter == "protocolTokenBidReceiver") protocolTokenBidReceiver = addr; else revert("MixedStratSurplusAuctionHouse/modify-unrecognized-param"); emit ModifyParameters(parameter, addr); } // --- Auction --- /** * @notice Start a new surplus auction * @param amountToSell Total amount of system coins to sell (rad) * @param initialBid Initial protocol token bid (wad) */ function startAuction(uint256 amountToSell, uint256 initialBid) external isAuthorized returns (uint256 id) { require(contractEnabled == 1, "MixedStratSurplusAuctionHouse/contract-not-enabled"); require(auctionsStarted < uint256(-1), "MixedStratSurplusAuctionHouse/overflow"); require(protocolTokenBidReceiver != address(0), "MixedStratSurplusAuctionHouse/null-prot-token-receiver"); id = ++auctionsStarted; bids[id].bidAmount = initialBid; bids[id].amountToSell = amountToSell; bids[id].highBidder = msg.sender; bids[id].auctionDeadline = addUint48(uint48(now), totalAuctionLength); safeEngine.transferInternalCoins(msg.sender, address(this), amountToSell); emit StartAuction(id, auctionsStarted, amountToSell, initialBid, bids[id].auctionDeadline); } /** * @notice Restart an auction if no bids were submitted for it * @param id ID of the auction to restart */ function restartAuction(uint256 id) external { require(bids[id].auctionDeadline < now, "MixedStratSurplusAuctionHouse/not-finished"); require(bids[id].bidExpiry == 0, "MixedStratSurplusAuctionHouse/bid-already-placed"); bids[id].auctionDeadline = addUint48(uint48(now), totalAuctionLength); emit RestartAuction(id, bids[id].auctionDeadline); } /** * @notice Submit a higher protocol token bid for the same amount of system coins * @param id ID of the auction you want to submit the bid for * @param amountToBuy Amount of system coins to buy (rad) * @param bid New bid submitted (wad) */ function increaseBidSize(uint256 id, uint256 amountToBuy, uint256 bid) external { require(contractEnabled == 1, "MixedStratSurplusAuctionHouse/contract-not-enabled"); require(bids[id].highBidder != address(0), "MixedStratSurplusAuctionHouse/high-bidder-not-set"); require(bids[id].bidExpiry > now || bids[id].bidExpiry == 0, "MixedStratSurplusAuctionHouse/bid-already-expired"); require(bids[id].auctionDeadline > now, "MixedStratSurplusAuctionHouse/auction-already-expired"); require(amountToBuy == bids[id].amountToSell, "MixedStratSurplusAuctionHouse/amounts-not-matching"); require(bid > bids[id].bidAmount, "MixedStratSurplusAuctionHouse/bid-not-higher"); require(multiply(bid, ONE) >= multiply(bidIncrease, bids[id].bidAmount), "MixedStratSurplusAuctionHouse/insufficient-increase"); if (msg.sender != bids[id].highBidder) { protocolToken.move(msg.sender, bids[id].highBidder, bids[id].bidAmount); bids[id].highBidder = msg.sender; } protocolToken.move(msg.sender, address(this), bid - bids[id].bidAmount); bids[id].bidAmount = bid; bids[id].bidExpiry = addUint48(uint48(now), bidDuration); emit IncreaseBidSize(id, msg.sender, amountToBuy, bid, bids[id].bidExpiry); } /** * @notice Settle/finish an auction * @param id ID of the auction to settle */ function settleAuction(uint256 id) external { require(contractEnabled == 1, "MixedStratSurplusAuctionHouse/contract-not-enabled"); require(bids[id].bidExpiry != 0 && (bids[id].bidExpiry < now || bids[id].auctionDeadline < now), "MixedStratSurplusAuctionHouse/not-finished"); safeEngine.transferInternalCoins(address(this), bids[id].highBidder, bids[id].amountToSell); uint256 amountToSend = multiply(bids[id].bidAmount, FIFTY) / HUNDRED; if (amountToSend > 0) { protocolToken.move(address(this), protocolTokenBidReceiver, amountToSend); } uint256 amountToBurn = subtract(bids[id].bidAmount, amountToSend); if (amountToBurn > 0) { protocolToken.burn(address(this), amountToBurn); } delete bids[id]; emit SettleAuction(id); } /** * @notice Disable the auction house (usually called by AccountingEngine) **/ function disableContract() external isAuthorized { contractEnabled = 0; safeEngine.transferInternalCoins(address(this), msg.sender, safeEngine.coinBalance(address(this))); emit DisableContract(); } /** * @notice Terminate an auction prematurely. * @param id ID of the auction to settle/terminate */ function terminateAuctionPrematurely(uint256 id) external { require(contractEnabled == 0, "MixedStratSurplusAuctionHouse/contract-still-enabled"); require(bids[id].highBidder != address(0), "MixedStratSurplusAuctionHouse/high-bidder-not-set"); protocolToken.move(address(this), bids[id].highBidder, bids[id].bidAmount); emit TerminateAuctionPrematurely(id, msg.sender, bids[id].highBidder, bids[id].bidAmount); delete bids[id]; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"safeEngine_","type":"address"},{"internalType":"address","name":"protocolToken_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"AddAuthorization","type":"event"},{"anonymous":false,"inputs":[],"name":"DisableContract","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"address","name":"highBidder","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountToBuy","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bidExpiry","type":"uint256"}],"name":"IncreaseBidSize","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"parameter","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"data","type":"uint256"}],"name":"ModifyParameters","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"parameter","type":"bytes32"},{"indexed":false,"internalType":"address","name":"addr","type":"address"}],"name":"ModifyParameters","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"RemoveAuthorization","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"auctionDeadline","type":"uint256"}],"name":"RestartAuction","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"SettleAuction","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"auctionsStarted","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountToSell","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"initialBid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"auctionDeadline","type":"uint256"}],"name":"StartAuction","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"address","name":"highBidder","type":"address"},{"indexed":false,"internalType":"uint256","name":"bidAmount","type":"uint256"}],"name":"TerminateAuctionPrematurely","type":"event"},{"inputs":[],"name":"AUCTION_HOUSE_TYPE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FIFTY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"HUNDRED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SURPLUS_AUCTION_TYPE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addAuthorization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"auctionsStarted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"authorizedAccounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bidDuration","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bidIncrease","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"bids","outputs":[{"internalType":"uint256","name":"bidAmount","type":"uint256"},{"internalType":"uint256","name":"amountToSell","type":"uint256"},{"internalType":"address","name":"highBidder","type":"address"},{"internalType":"uint48","name":"bidExpiry","type":"uint48"},{"internalType":"uint48","name":"auctionDeadline","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractEnabled","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amountToBuy","type":"uint256"},{"internalType":"uint256","name":"bid","type":"uint256"}],"name":"increaseBidSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"parameter","type":"bytes32"},{"internalType":"address","name":"addr","type":"address"}],"name":"modifyParameters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"parameter","type":"bytes32"},{"internalType":"uint256","name":"data","type":"uint256"}],"name":"modifyParameters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"protocolToken","outputs":[{"internalType":"contract TokenLike","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"protocolTokenBidReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeAuthorization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"restartAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"safeEngine","outputs":[{"internalType":"contract SAFEEngineLike","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"settleAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToSell","type":"uint256"},{"internalType":"uint256","name":"initialBid","type":"uint256"}],"name":"startAuction","outputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"terminateAuctionPrematurely","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalAuctionLength","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052670e92596fd629000060055560068054612a3065ffffffffffff199091161765ffffffffffff60301b19166802a300000000000000179055600060075534801561004d57600080fd5b50604051611c56380380611c568339818101604052604081101561007057600080fd5b508051602091820151336000818152808552604090819020600190819055600280546001600160a01b038088166001600160a01b0319928316179092556003805492871692909116919091179055600855805191825251929391927f599a298163e1678bb1c676052a8930bf0b8a1261ed6e01b8a2391e55f7000102929181900390910190a15050611b4f806101076000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80636614f010116100c3578063ad57f9f11161007c578063ad57f9f11461036f578063d25ccf5314610377578063f0ed4db014610394578063f6b45eb71461039c578063f85fc0ab146103a4578063fe4f5890146103ac57610158565b80636614f010146102cd57806367aea313146102f957806373c0a36714610301578063894ba83314610324578063933f76081461032c57806394f3f81d1461034957610158565b806341b3a0d91161011557806341b3a0d91461020e5780634423c5f1146102165780634fee13fc14610271578063551cb3b1146102945780635a93f0311461029c578063619ed1f8146102c557610158565b80630ac239e51461015d5780631266fb94146101775780631a465fe11461017f57806324ba5884146101a35780632e993611146101c957806335b28153146101e8575b600080fd5b6101656103cf565b60408051918252519081900360200190f35b6101656103d5565b6101876103e3565b604080516001600160a01b039092168252519081900360200190f35b610165600480360360208110156101b957600080fd5b50356001600160a01b03166103f2565b6101e6600480360360208110156101df57600080fd5b5035610404565b005b6101e6600480360360208110156101fe57600080fd5b50356001600160a01b0316610704565b6101656107a4565b6102336004803603602081101561022c57600080fd5b50356107aa565b6040805195865260208601949094526001600160a01b039092168484015265ffffffffffff9081166060850152166080830152519081900360a00190f35b6101656004803603604081101561028757600080fd5b50803590602001356107ee565b610165610a72565b6101e6600480360360608110156102b257600080fd5b5080359060208101359060400135610a78565b610165610ef9565b6101e6600480360360408110156102e357600080fd5b50803590602001356001600160a01b0316610f0b565b610187611064565b610309611073565b6040805165ffffffffffff9092168252519081900360200190f35b6101e6611088565b6101e66004803603602081101561034257600080fd5b50356111f6565b6101e66004803603602081101561035f57600080fd5b50356001600160a01b0316611393565b610165611432565b6101e66004803603602081101561038d57600080fd5b5035611437565b610187611586565b610309611595565b6101656115a3565b6101e6600480360360408110156103c257600080fd5b50803590602001356115a8565b60055481565b66535552504c555360c81b81565b6003546001600160a01b031681565b60006020819052908152604090205481565b6008546001146104455760405162461bcd60e51b81526004018080602001828103825260328152602001806119eb6032913960400191505060405180910390fd5b600081815260016020526040902060020154600160a01b900465ffffffffffff16158015906104be575060008181526001602052604090206002015442600160a01b90910465ffffffffffff1610806104be575060008181526001602052604090206002015442600160d01b90910465ffffffffffff16105b6104f95760405162461bcd60e51b815260040180806020018281038252602a8152602001806119c1602a913960400191505060405180910390fd5b6002805460008381526001602081905260408083209485015494909101548151633beaf2b760e21b81523060048201526001600160a01b03958616602482015260448101919091529051939092169263efabcadc92606480820193929182900301818387803b15801561056b57600080fd5b505af115801561057f573d6000803e3d6000fd5b5050506000828152600160205260408120549091506064906105a29060326116cc565b816105a957fe5b049050801561062a57600354600480546040805163bb35783b60e01b815230938101939093526001600160a01b039182166024840152604483018590525192169163bb35783b9160648082019260009290919082900301818387803b15801561061157600080fd5b505af1158015610625573d6000803e3d6000fd5b505050505b6000828152600160205260408120546106439083611728565b905080156106b75760035460408051632770a7eb60e21b81523060048201526024810184905290516001600160a01b0390921691639dc29fac9160448082019260009290919082900301818387803b15801561069e57600080fd5b505af11580156106b2573d6000803e3d6000fd5b505050505b600083815260016020819052604080832083815591820183905560029091018290555184917f03af424b0e12d91ea31fe7f2c199fc02c9ede38f9aa1bdc019a8087b41445f7a91a2505050565b336000908152602081905260409020546001146107525760405162461bcd60e51b81526004018080602001828103825260348152602001806118666034913960400191505060405180910390fd5b6001600160a01b0381166000818152602081815260409182902060019055815192835290517f599a298163e1678bb1c676052a8930bf0b8a1261ed6e01b8a2391e55f70001029281900390910190a150565b60085481565b60016020819052600091825260409091208054918101546002909101546001600160a01b0381169065ffffffffffff600160a01b8204811691600160d01b90041685565b3360009081526020819052604081205460011461083c5760405162461bcd60e51b81526004018080602001828103825260348152602001806118666034913960400191505060405180910390fd5b60085460011461087d5760405162461bcd60e51b81526004018080602001828103825260328152602001806119eb6032913960400191505060405180910390fd5b600019600754106108bf5760405162461bcd60e51b81526004018080602001828103825260268152602001806117e96026913960400191505060405180910390fd5b6004546001600160a01b03166109065760405162461bcd60e51b8152600401808060200182810382526036815260200180611a7d6036913960400191505060405180910390fd5b5060078054600190810191829055600082815260208290526040902083815590810184905560020180546001600160a01b0319163317905560065461095c90429065ffffffffffff600160301b9091041661176a565b6000828152600160205260408082206002908101805465ffffffffffff95909516600160d01b026001600160d01b039095169490941790935591548251633beaf2b760e21b81523360048201523060248201526044810187905292516001600160a01b039091169263efabcadc92606480830193919282900301818387803b1580156109e757600080fd5b505af11580156109fb573d6000803e3d6000fd5b505060075460008481526001602090815260409182902060020154825193845290830188905282820187905265ffffffffffff600160d01b909104166060830152518493507fa4863af70e77aecfe2769e0569806782ba7c6f86fc9a307290a3816fb8a563e592509081900360800190a292915050565b60075481565b600854600114610ab95760405162461bcd60e51b81526004018080602001828103825260328152602001806119eb6032913960400191505060405180910390fd5b6000838152600160205260409020600201546001600160a01b0316610b0f5760405162461bcd60e51b81526004018080602001828103825260318152602001806119296031913960400191505060405180910390fd5b60008381526001602052604090206002015442600160a01b90910465ffffffffffff161180610b5c5750600083815260016020526040902060020154600160a01b900465ffffffffffff16155b610b975760405162461bcd60e51b81526004018080602001828103825260318152602001806117b86031913960400191505060405180910390fd5b60008381526001602052604090206002015442600160d01b90910465ffffffffffff1611610bf65760405162461bcd60e51b815260040180806020018281038252603581526020018061198c6035913960400191505060405180910390fd5b600083815260016020819052604090912001548214610c465760405162461bcd60e51b815260040180806020018281038252603281526020018061195a6032913960400191505060405180910390fd5b6000838152600160205260409020548111610c925760405162461bcd60e51b815260040180806020018281038252602c81526020018061183a602c913960400191505060405180910390fd5b600554600084815260016020526040902054610cae91906116cc565b610cc082670de0b6b3a76400006116cc565b1015610cfd5760405162461bcd60e51b8152600401808060200182810382526033815260200180611a1d6033913960400191505060405180910390fd5b6000838152600160205260409020600201546001600160a01b03163314610dc45760035460008481526001602052604080822060028101549054825163bb35783b60e01b81523360048201526001600160a01b0392831660248201526044810191909152915193169263bb35783b9260648084019391929182900301818387803b158015610d8a57600080fd5b505af1158015610d9e573d6000803e3d6000fd5b505050600084815260016020526040902060020180546001600160a01b03191633179055505b60035460008481526001602052604080822054815163bb35783b60e01b8152336004820152306024820152908503604482015290516001600160a01b039093169263bb35783b9260648084019391929182900301818387803b158015610e2957600080fd5b505af1158015610e3d573d6000803e3d6000fd5b505050600084815260016020526040902082905550600654610e6890429065ffffffffffff1661176a565b600084815260016020908152604091829020600201805465ffffffffffff60a01b1916600160a01b65ffffffffffff95861681029190911791829055835188815233938101939093528284018790526060830186905290049092166080830152517fd87c815d5a67c2e130ad04b714d87a6fb69d5a6df0dbb0f1639cd9fe292201f99160a0908290030190a1505050565b6a13525611510b54d514905560aa1b81565b33600090815260208190526040902054600114610f595760405162461bcd60e51b81526004018080602001828103825260348152602001806118666034913960400191505060405180910390fd5b6001600160a01b038116610f9e5760405162461bcd60e51b815260040180806020018281038252602d815260200180611a50602d913960400191505060405180910390fd5b817f70726f746f636f6c546f6b656e426964526563656976657200000000000000001415610fe657600480546001600160a01b0319166001600160a01b03831617905561101d565b60405162461bcd60e51b8152600401808060200182810382526037815260200180611ae36037913960400191505060405180910390fd5b604080518381526001600160a01b038316602082015281517fd91f38cf03346b5dc15fb60f9076f866295231ad3c3841a1051f8443f25170d1929181900390910190a15050565b6002546001600160a01b031681565b600654600160301b900465ffffffffffff1681565b336000908152602081905260409020546001146110d65760405162461bcd60e51b81526004018080602001828103825260348152602001806118666034913960400191505060405180910390fd5b600060085560025460408051633eaf7a0360e21b8152306004820181905291516001600160a01b039093169263efabcadc92913391859163fabde80c916024808301926020929190829003018186803b15801561113257600080fd5b505afa158015611146573d6000803e3d6000fd5b505050506040513d602081101561115c57600080fd5b5051604080516001600160e01b031960e087901b1681526001600160a01b03948516600482015292909316602483015260448201529051606480830192600092919082900301818387803b1580156111b357600080fd5b505af11580156111c7573d6000803e3d6000fd5b50506040517f2d4b4ecff7bd7503135271925520a2f6c0d98c9473ffc1a1e72c92502f51b25e925060009150a1565b600854156112355760405162461bcd60e51b815260040180806020018281038252603481526020018061189a6034913960400191505060405180910390fd5b6000818152600160205260409020600201546001600160a01b031661128b5760405162461bcd60e51b81526004018080602001828103825260318152602001806119296031913960400191505060405180910390fd5b60035460008281526001602052604080822060028101549054825163bb35783b60e01b81523060048201526001600160a01b0392831660248201526044810191909152915193169263bb35783b9260648084019391929182900301818387803b1580156112f757600080fd5b505af115801561130b573d6000803e3d6000fd5b5050506000828152600160209081526040918290206002810154905483513381526001600160a01b03909216928201929092528083019190915290518392507f723f56b5ac5fb3399765203804e790344f427477918842dbef525d795af4bcca9181900360600190a26000908152600160208190526040822082815590810182905560020155565b336000908152602081905260409020546001146113e15760405162461bcd60e51b81526004018080602001828103825260348152602001806118666034913960400191505060405180910390fd5b6001600160a01b03811660008181526020818152604080832092909255815192835290517f8834a87e641e9716be4f34527af5d23e11624f1ddeefede6ad75a9acfc31b9039281900390910190a150565b603281565b60008181526001602052604090206002015442600160d01b90910465ffffffffffff16106114965760405162461bcd60e51b815260040180806020018281038252602a8152602001806119c1602a913960400191505060405180910390fd5b600081815260016020526040902060020154600160a01b900465ffffffffffff16156114f35760405162461bcd60e51b8152600401808060200182810382526030815260200180611ab36030913960400191505060405180910390fd5b600654611510904290600160301b900465ffffffffffff1661176a565b60008281526001602090815260409182902060020180546001600160d01b0316600160d01b65ffffffffffff95861681029190911791829055835186815291049093169083015280517f10a109258779eb298071adf16637b95f8d7cf00e49595711da10eeb90e6e8e949281900390910190a150565b6004546001600160a01b031681565b60065465ffffffffffff1681565b606481565b336000908152602081905260409020546001146115f65760405162461bcd60e51b81526004018080602001828103825260348152602001806118666034913960400191505060405180910390fd5b816a626964496e63726561736560a81b141561161657600581905561168d565b816a3134b2223ab930ba34b7b760a91b141561164a576006805465ffffffffffff191665ffffffffffff831617905561168d565b81710e8dee8c2d882eac6e8d2dedc98cadccee8d60731b1415610fe657600680546bffffffffffff0000000000001916600160301b65ffffffffffff8416021790555b604080518381526020810183905281517fac7c5c1afaef770ec56ac6268cd3f2fbb1035858ead2601d6553157c33036c3a929181900390910190a15050565b60008115806116e7575050808202828282816116e457fe5b04145b6117225760405162461bcd60e51b815260040180806020018281038252602a8152602001806118ff602a913960400191505060405180910390fd5b92915050565b808203828111156117225760405162461bcd60e51b815260040180806020018281038252602b81526020018061180f602b913960400191505060405180910390fd5b80820165ffffffffffff80841690821610156117225760405162461bcd60e51b81526004018080602001828103825260318152602001806118ce6031913960400191505060405180910390fdfe4d697865645374726174537572706c757341756374696f6e486f7573652f6269642d616c72656164792d657870697265644d697865645374726174537572706c757341756374696f6e486f7573652f6f766572666c6f774d697865645374726174537572706c757341756374696f6e486f7573652f7375622d756e646572666c6f774d697865645374726174537572706c757341756374696f6e486f7573652f6269642d6e6f742d6869676865724d697865645374726174537572706c757341756374696f6e486f7573652f6163636f756e742d6e6f742d617574686f72697a65644d697865645374726174537572706c757341756374696f6e486f7573652f636f6e74726163742d7374696c6c2d656e61626c65644d697865645374726174537572706c757341756374696f6e486f7573652f6164642d75696e7434382d6f766572666c6f774d697865645374726174537572706c757341756374696f6e486f7573652f6d756c2d6f766572666c6f774d697865645374726174537572706c757341756374696f6e486f7573652f686967682d6269646465722d6e6f742d7365744d697865645374726174537572706c757341756374696f6e486f7573652f616d6f756e74732d6e6f742d6d61746368696e674d697865645374726174537572706c757341756374696f6e486f7573652f61756374696f6e2d616c72656164792d657870697265644d697865645374726174537572706c757341756374696f6e486f7573652f6e6f742d66696e69736865644d697865645374726174537572706c757341756374696f6e486f7573652f636f6e74726163742d6e6f742d656e61626c65644d697865645374726174537572706c757341756374696f6e486f7573652f696e73756666696369656e742d696e6372656173654d697865645374726174537572706c757341756374696f6e486f7573652f696e76616c69642d616464726573734d697865645374726174537572706c757341756374696f6e486f7573652f6e756c6c2d70726f742d746f6b656e2d72656365697665724d697865645374726174537572706c757341756374696f6e486f7573652f6269642d616c72656164792d706c616365644d697865645374726174537572706c757341756374696f6e486f7573652f6d6f646966792d756e7265636f676e697a65642d706172616da2646970667358221220e0af757406c2b3b775f4c6afb58a9812d8925d504b35d7f77d5eed010bbc802d64736f6c63430006070033000000000000000000000000cc88a9d330da1133df3a7bd823b95e52511a69620000000000000000000000006243d8cea23066d098a15582d81a598b4e8391f4
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c80636614f010116100c3578063ad57f9f11161007c578063ad57f9f11461036f578063d25ccf5314610377578063f0ed4db014610394578063f6b45eb71461039c578063f85fc0ab146103a4578063fe4f5890146103ac57610158565b80636614f010146102cd57806367aea313146102f957806373c0a36714610301578063894ba83314610324578063933f76081461032c57806394f3f81d1461034957610158565b806341b3a0d91161011557806341b3a0d91461020e5780634423c5f1146102165780634fee13fc14610271578063551cb3b1146102945780635a93f0311461029c578063619ed1f8146102c557610158565b80630ac239e51461015d5780631266fb94146101775780631a465fe11461017f57806324ba5884146101a35780632e993611146101c957806335b28153146101e8575b600080fd5b6101656103cf565b60408051918252519081900360200190f35b6101656103d5565b6101876103e3565b604080516001600160a01b039092168252519081900360200190f35b610165600480360360208110156101b957600080fd5b50356001600160a01b03166103f2565b6101e6600480360360208110156101df57600080fd5b5035610404565b005b6101e6600480360360208110156101fe57600080fd5b50356001600160a01b0316610704565b6101656107a4565b6102336004803603602081101561022c57600080fd5b50356107aa565b6040805195865260208601949094526001600160a01b039092168484015265ffffffffffff9081166060850152166080830152519081900360a00190f35b6101656004803603604081101561028757600080fd5b50803590602001356107ee565b610165610a72565b6101e6600480360360608110156102b257600080fd5b5080359060208101359060400135610a78565b610165610ef9565b6101e6600480360360408110156102e357600080fd5b50803590602001356001600160a01b0316610f0b565b610187611064565b610309611073565b6040805165ffffffffffff9092168252519081900360200190f35b6101e6611088565b6101e66004803603602081101561034257600080fd5b50356111f6565b6101e66004803603602081101561035f57600080fd5b50356001600160a01b0316611393565b610165611432565b6101e66004803603602081101561038d57600080fd5b5035611437565b610187611586565b610309611595565b6101656115a3565b6101e6600480360360408110156103c257600080fd5b50803590602001356115a8565b60055481565b66535552504c555360c81b81565b6003546001600160a01b031681565b60006020819052908152604090205481565b6008546001146104455760405162461bcd60e51b81526004018080602001828103825260328152602001806119eb6032913960400191505060405180910390fd5b600081815260016020526040902060020154600160a01b900465ffffffffffff16158015906104be575060008181526001602052604090206002015442600160a01b90910465ffffffffffff1610806104be575060008181526001602052604090206002015442600160d01b90910465ffffffffffff16105b6104f95760405162461bcd60e51b815260040180806020018281038252602a8152602001806119c1602a913960400191505060405180910390fd5b6002805460008381526001602081905260408083209485015494909101548151633beaf2b760e21b81523060048201526001600160a01b03958616602482015260448101919091529051939092169263efabcadc92606480820193929182900301818387803b15801561056b57600080fd5b505af115801561057f573d6000803e3d6000fd5b5050506000828152600160205260408120549091506064906105a29060326116cc565b816105a957fe5b049050801561062a57600354600480546040805163bb35783b60e01b815230938101939093526001600160a01b039182166024840152604483018590525192169163bb35783b9160648082019260009290919082900301818387803b15801561061157600080fd5b505af1158015610625573d6000803e3d6000fd5b505050505b6000828152600160205260408120546106439083611728565b905080156106b75760035460408051632770a7eb60e21b81523060048201526024810184905290516001600160a01b0390921691639dc29fac9160448082019260009290919082900301818387803b15801561069e57600080fd5b505af11580156106b2573d6000803e3d6000fd5b505050505b600083815260016020819052604080832083815591820183905560029091018290555184917f03af424b0e12d91ea31fe7f2c199fc02c9ede38f9aa1bdc019a8087b41445f7a91a2505050565b336000908152602081905260409020546001146107525760405162461bcd60e51b81526004018080602001828103825260348152602001806118666034913960400191505060405180910390fd5b6001600160a01b0381166000818152602081815260409182902060019055815192835290517f599a298163e1678bb1c676052a8930bf0b8a1261ed6e01b8a2391e55f70001029281900390910190a150565b60085481565b60016020819052600091825260409091208054918101546002909101546001600160a01b0381169065ffffffffffff600160a01b8204811691600160d01b90041685565b3360009081526020819052604081205460011461083c5760405162461bcd60e51b81526004018080602001828103825260348152602001806118666034913960400191505060405180910390fd5b60085460011461087d5760405162461bcd60e51b81526004018080602001828103825260328152602001806119eb6032913960400191505060405180910390fd5b600019600754106108bf5760405162461bcd60e51b81526004018080602001828103825260268152602001806117e96026913960400191505060405180910390fd5b6004546001600160a01b03166109065760405162461bcd60e51b8152600401808060200182810382526036815260200180611a7d6036913960400191505060405180910390fd5b5060078054600190810191829055600082815260208290526040902083815590810184905560020180546001600160a01b0319163317905560065461095c90429065ffffffffffff600160301b9091041661176a565b6000828152600160205260408082206002908101805465ffffffffffff95909516600160d01b026001600160d01b039095169490941790935591548251633beaf2b760e21b81523360048201523060248201526044810187905292516001600160a01b039091169263efabcadc92606480830193919282900301818387803b1580156109e757600080fd5b505af11580156109fb573d6000803e3d6000fd5b505060075460008481526001602090815260409182902060020154825193845290830188905282820187905265ffffffffffff600160d01b909104166060830152518493507fa4863af70e77aecfe2769e0569806782ba7c6f86fc9a307290a3816fb8a563e592509081900360800190a292915050565b60075481565b600854600114610ab95760405162461bcd60e51b81526004018080602001828103825260328152602001806119eb6032913960400191505060405180910390fd5b6000838152600160205260409020600201546001600160a01b0316610b0f5760405162461bcd60e51b81526004018080602001828103825260318152602001806119296031913960400191505060405180910390fd5b60008381526001602052604090206002015442600160a01b90910465ffffffffffff161180610b5c5750600083815260016020526040902060020154600160a01b900465ffffffffffff16155b610b975760405162461bcd60e51b81526004018080602001828103825260318152602001806117b86031913960400191505060405180910390fd5b60008381526001602052604090206002015442600160d01b90910465ffffffffffff1611610bf65760405162461bcd60e51b815260040180806020018281038252603581526020018061198c6035913960400191505060405180910390fd5b600083815260016020819052604090912001548214610c465760405162461bcd60e51b815260040180806020018281038252603281526020018061195a6032913960400191505060405180910390fd5b6000838152600160205260409020548111610c925760405162461bcd60e51b815260040180806020018281038252602c81526020018061183a602c913960400191505060405180910390fd5b600554600084815260016020526040902054610cae91906116cc565b610cc082670de0b6b3a76400006116cc565b1015610cfd5760405162461bcd60e51b8152600401808060200182810382526033815260200180611a1d6033913960400191505060405180910390fd5b6000838152600160205260409020600201546001600160a01b03163314610dc45760035460008481526001602052604080822060028101549054825163bb35783b60e01b81523360048201526001600160a01b0392831660248201526044810191909152915193169263bb35783b9260648084019391929182900301818387803b158015610d8a57600080fd5b505af1158015610d9e573d6000803e3d6000fd5b505050600084815260016020526040902060020180546001600160a01b03191633179055505b60035460008481526001602052604080822054815163bb35783b60e01b8152336004820152306024820152908503604482015290516001600160a01b039093169263bb35783b9260648084019391929182900301818387803b158015610e2957600080fd5b505af1158015610e3d573d6000803e3d6000fd5b505050600084815260016020526040902082905550600654610e6890429065ffffffffffff1661176a565b600084815260016020908152604091829020600201805465ffffffffffff60a01b1916600160a01b65ffffffffffff95861681029190911791829055835188815233938101939093528284018790526060830186905290049092166080830152517fd87c815d5a67c2e130ad04b714d87a6fb69d5a6df0dbb0f1639cd9fe292201f99160a0908290030190a1505050565b6a13525611510b54d514905560aa1b81565b33600090815260208190526040902054600114610f595760405162461bcd60e51b81526004018080602001828103825260348152602001806118666034913960400191505060405180910390fd5b6001600160a01b038116610f9e5760405162461bcd60e51b815260040180806020018281038252602d815260200180611a50602d913960400191505060405180910390fd5b817f70726f746f636f6c546f6b656e426964526563656976657200000000000000001415610fe657600480546001600160a01b0319166001600160a01b03831617905561101d565b60405162461bcd60e51b8152600401808060200182810382526037815260200180611ae36037913960400191505060405180910390fd5b604080518381526001600160a01b038316602082015281517fd91f38cf03346b5dc15fb60f9076f866295231ad3c3841a1051f8443f25170d1929181900390910190a15050565b6002546001600160a01b031681565b600654600160301b900465ffffffffffff1681565b336000908152602081905260409020546001146110d65760405162461bcd60e51b81526004018080602001828103825260348152602001806118666034913960400191505060405180910390fd5b600060085560025460408051633eaf7a0360e21b8152306004820181905291516001600160a01b039093169263efabcadc92913391859163fabde80c916024808301926020929190829003018186803b15801561113257600080fd5b505afa158015611146573d6000803e3d6000fd5b505050506040513d602081101561115c57600080fd5b5051604080516001600160e01b031960e087901b1681526001600160a01b03948516600482015292909316602483015260448201529051606480830192600092919082900301818387803b1580156111b357600080fd5b505af11580156111c7573d6000803e3d6000fd5b50506040517f2d4b4ecff7bd7503135271925520a2f6c0d98c9473ffc1a1e72c92502f51b25e925060009150a1565b600854156112355760405162461bcd60e51b815260040180806020018281038252603481526020018061189a6034913960400191505060405180910390fd5b6000818152600160205260409020600201546001600160a01b031661128b5760405162461bcd60e51b81526004018080602001828103825260318152602001806119296031913960400191505060405180910390fd5b60035460008281526001602052604080822060028101549054825163bb35783b60e01b81523060048201526001600160a01b0392831660248201526044810191909152915193169263bb35783b9260648084019391929182900301818387803b1580156112f757600080fd5b505af115801561130b573d6000803e3d6000fd5b5050506000828152600160209081526040918290206002810154905483513381526001600160a01b03909216928201929092528083019190915290518392507f723f56b5ac5fb3399765203804e790344f427477918842dbef525d795af4bcca9181900360600190a26000908152600160208190526040822082815590810182905560020155565b336000908152602081905260409020546001146113e15760405162461bcd60e51b81526004018080602001828103825260348152602001806118666034913960400191505060405180910390fd5b6001600160a01b03811660008181526020818152604080832092909255815192835290517f8834a87e641e9716be4f34527af5d23e11624f1ddeefede6ad75a9acfc31b9039281900390910190a150565b603281565b60008181526001602052604090206002015442600160d01b90910465ffffffffffff16106114965760405162461bcd60e51b815260040180806020018281038252602a8152602001806119c1602a913960400191505060405180910390fd5b600081815260016020526040902060020154600160a01b900465ffffffffffff16156114f35760405162461bcd60e51b8152600401808060200182810382526030815260200180611ab36030913960400191505060405180910390fd5b600654611510904290600160301b900465ffffffffffff1661176a565b60008281526001602090815260409182902060020180546001600160d01b0316600160d01b65ffffffffffff95861681029190911791829055835186815291049093169083015280517f10a109258779eb298071adf16637b95f8d7cf00e49595711da10eeb90e6e8e949281900390910190a150565b6004546001600160a01b031681565b60065465ffffffffffff1681565b606481565b336000908152602081905260409020546001146115f65760405162461bcd60e51b81526004018080602001828103825260348152602001806118666034913960400191505060405180910390fd5b816a626964496e63726561736560a81b141561161657600581905561168d565b816a3134b2223ab930ba34b7b760a91b141561164a576006805465ffffffffffff191665ffffffffffff831617905561168d565b81710e8dee8c2d882eac6e8d2dedc98cadccee8d60731b1415610fe657600680546bffffffffffff0000000000001916600160301b65ffffffffffff8416021790555b604080518381526020810183905281517fac7c5c1afaef770ec56ac6268cd3f2fbb1035858ead2601d6553157c33036c3a929181900390910190a15050565b60008115806116e7575050808202828282816116e457fe5b04145b6117225760405162461bcd60e51b815260040180806020018281038252602a8152602001806118ff602a913960400191505060405180910390fd5b92915050565b808203828111156117225760405162461bcd60e51b815260040180806020018281038252602b81526020018061180f602b913960400191505060405180910390fd5b80820165ffffffffffff80841690821610156117225760405162461bcd60e51b81526004018080602001828103825260318152602001806118ce6031913960400191505060405180910390fdfe4d697865645374726174537572706c757341756374696f6e486f7573652f6269642d616c72656164792d657870697265644d697865645374726174537572706c757341756374696f6e486f7573652f6f766572666c6f774d697865645374726174537572706c757341756374696f6e486f7573652f7375622d756e646572666c6f774d697865645374726174537572706c757341756374696f6e486f7573652f6269642d6e6f742d6869676865724d697865645374726174537572706c757341756374696f6e486f7573652f6163636f756e742d6e6f742d617574686f72697a65644d697865645374726174537572706c757341756374696f6e486f7573652f636f6e74726163742d7374696c6c2d656e61626c65644d697865645374726174537572706c757341756374696f6e486f7573652f6164642d75696e7434382d6f766572666c6f774d697865645374726174537572706c757341756374696f6e486f7573652f6d756c2d6f766572666c6f774d697865645374726174537572706c757341756374696f6e486f7573652f686967682d6269646465722d6e6f742d7365744d697865645374726174537572706c757341756374696f6e486f7573652f616d6f756e74732d6e6f742d6d61746368696e674d697865645374726174537572706c757341756374696f6e486f7573652f61756374696f6e2d616c72656164792d657870697265644d697865645374726174537572706c757341756374696f6e486f7573652f6e6f742d66696e69736865644d697865645374726174537572706c757341756374696f6e486f7573652f636f6e74726163742d6e6f742d656e61626c65644d697865645374726174537572706c757341756374696f6e486f7573652f696e73756666696369656e742d696e6372656173654d697865645374726174537572706c757341756374696f6e486f7573652f696e76616c69642d616464726573734d697865645374726174537572706c757341756374696f6e486f7573652f6e756c6c2d70726f742d746f6b656e2d72656365697665724d697865645374726174537572706c757341756374696f6e486f7573652f6269642d616c72656164792d706c616365644d697865645374726174537572706c757341756374696f6e486f7573652f6d6f646966792d756e7265636f676e697a65642d706172616da2646970667358221220e0af757406c2b3b775f4c6afb58a9812d8925d504b35d7f77d5eed010bbc802d64736f6c63430006070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000cc88a9d330da1133df3a7bd823b95e52511a69620000000000000000000000006243d8cea23066d098a15582d81a598b4e8391f4
-----Decoded View---------------
Arg [0] : safeEngine_ (address): 0xCC88a9d330da1133Df3A7bD823B95e52511A6962
Arg [1] : protocolToken_ (address): 0x6243d8CEA23066d098a15582d81a598b4e8391F4
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000cc88a9d330da1133df3a7bd823b95e52511a6962
Arg [1] : 0000000000000000000000006243d8cea23066d098a15582d81a598b4e8391f4
Deployed Bytecode Sourcemap
1552:11042:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;1552:11042:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;3794:39:0;;;:::i;:::-;;;;;;;;;;;;;;;;4371:63;;;:::i;3465:35::-;;;:::i;:::-;;;;-1:-1:-1;;;;;3465:35:0;;;;;;;;;;;;;;1619:54;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;1619:54:0;-1:-1:-1;;;;;1619:54:0;;:::i;10796:855::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;10796:855:0;;:::i;:::-;;1783:156;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;1783:156:0;-1:-1:-1;;;;;1783:156:0;;:::i;4329:33::-;;;:::i;3328:36::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;3328:36:0;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;3328:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7696:852;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;7696:852:0;;;;;;;:::i;4238:37::-;;;:::i;9355:1330::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;9355:1330:0;;;;;;;;;;;;:::i;4441:69::-;;;:::i;7079:393::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;7079:393:0;;;;;;-1:-1:-1;;;;;7079:393:0;;:::i;3395:32::-;;;:::i;4090:45::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11753:229;;;:::i;12112:479::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;12112:479:0;;:::i;2058:162::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;2058:162:0;-1:-1:-1;;;;;2058:162:0;;:::i;5664:36::-;;;:::i;8687:384::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;8687:384:0;;:::i;3543:46::-;;;:::i;3954:39::-;;;:::i;5707:37::-;;;:::i;6473:442::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;6473:442:0;;;;;;;:::i;3794:39::-;;;;:::o;4371:63::-;-1:-1:-1;;;4371:63:0;:::o;3465:35::-;;;-1:-1:-1;;;;;3465:35:0;;:::o;1619:54::-;;;;;;;;;;;;;;:::o;10796:855::-;10859:15;;10878:1;10859:20;10851:83;;;;-1:-1:-1;;;10851:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10953:8;;;;:4;:8;;;;;:18;;;-1:-1:-1;;;10953:18:0;;;;:23;;;;:87;;-1:-1:-1;10981:8:0;;;;:4;:8;;;;;:18;;;11002:3;-1:-1:-1;;;10981:18:0;;;;;:24;;:58;;-1:-1:-1;11009:8:0;;;;:4;:8;;;;;:24;;;11036:3;-1:-1:-1;;;11009:24:0;;;;;:30;10981:58;10945:142;;;;-1:-1:-1;;;10945:142:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11098:10;;;;11146:8;;;11098:10;11146:8;;;;;;;;:19;;;;11167:21;;;;;11098:91;;-1:-1:-1;;;11098:91:0;;11139:4;11098:91;;;;-1:-1:-1;;;;;11146:19:0;;;11098:91;;;;;;;;;;;;;:10;;;;;:32;;:91;;;;;:10;:91;;;;;;:10;;:91;;;2:2:-1;;;;27:1;24;17:12;2:2;11098:91:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;;11202:20:0;11234:8;;;:4;:8;;;;;:18;11202:20;;-1:-1:-1;5741:3:0;;11225:35;;5698:2;11225:8;:35::i;:::-;:45;;;;;;;-1:-1:-1;11285:16:0;;11281:120;;11316:13;;11350:24;;;11316:73;;;-1:-1:-1;;;11316:73:0;;11343:4;11316:73;;;;;;;-1:-1:-1;;;;;11350:24:0;;;11316:73;;;;;;;;;;;:13;;;:18;;:73;;;;;:13;;:73;;;;;;;;:13;;:73;;;2:2:-1;;;;27:1;24;17:12;2:2;11316:73:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;11316:73:0;;;;11281:120;11413:20;11445:8;;;:4;:8;;;;;:18;11436:42;;11465:12;11436:8;:42::i;:::-;11413:65;-1:-1:-1;11493:16:0;;11489:94;;11524:13;;:47;;;-1:-1:-1;;;11524:47:0;;11551:4;11524:47;;;;;;;;;;;;-1:-1:-1;;;;;11524:13:0;;;;:18;;:47;;;;;:13;;:47;;;;;;;;:13;;:47;;;2:2:-1;;;;27:1;24;17:12;2:2;11524:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;11524:47:0;;;;11489:94;11602:8;;;;:4;:8;;;;;;;;11595:15;;;;;;;;;;;;;;;;11626:17;11607:2;;11626:17;;;10796:855;;;:::o;1783:156::-;2373:10;2354:18;:30;;;;;;;;;;;2388:1;2354:35;2346:100;;;;-1:-1:-1;;;2346:100:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1859:27:0;::::1;:18;:27:::0;;;::::1;::::0;;;;;;;;1889:1:::1;1859:31:::0;;1906:25;;;;;;;::::1;::::0;;;;;;;;::::1;1783:156:::0;:::o;4329:33::-;;;;:::o;3328:36::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3328:36:0;;;;-1:-1:-1;;;3328:36:0;;;;;-1:-1:-1;;;3328:36:0;;;;:::o;7696:852::-;2373:10;7791;2354:30;;;;;;;;;;;2388:1;2354:35;2346:100;;;;-1:-1:-1;;;2346:100:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7822:15:::1;;7841:1;7822:20;7814:83;;;;-1:-1:-1::0;;;7814:83:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;7916:15:0::1;;:29;7908:80;;;;-1:-1:-1::0;;;7908:80:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8007:24;::::0;-1:-1:-1;;;;;8007:24:0::1;7999:105;;;;-1:-1:-1::0;;;7999:105:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;8122:15:0::1;8120:17:::0;;::::1;::::0;;::::1;::::0;;;;8122:15:::1;8150:8:::0;;;::::1;::::0;;;;;;:31;;;8192:21;;::::1;:36:::0;;;8239:19:::1;;:32:::0;;-1:-1:-1;;;;;;8239:32:0::1;8261:10;8239:32;::::0;;8332:18:::1;::::0;8309:42:::1;::::0;8326:3:::1;::::0;8332:18:::1;-1:-1:-1::0;;;8332:18:0;;::::1;;8309:9;:42::i;:::-;8282:8;::::0;;;:4:::1;:8;::::0;;;;;:24:::1;::::0;;::::1;:69:::0;;::::1;::::0;;;::::1;-1:-1:-1::0;;;8282:69:0::1;-1:-1:-1::0;;;;;8282:69:0;;::::1;::::0;;;::::1;::::0;;;8364:10;;:73;;-1:-1:-1;;;8364:73:0;;8397:10:::1;8364:73;::::0;::::1;::::0;8417:4:::1;8364:73:::0;;;;;;;;;;;;-1:-1:-1;;;;;8364:10:0;;::::1;::::0;:32:::1;::::0;:73;;;;;8282:8;;8364:73;;;;;8282:8;8364:10;:73;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;8364:73:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;-1:-1:::0;;8472:15:0::1;::::0;8515:8:::1;::::0;;;:4:::1;:8;::::0;;;;;;;;:24:::1;;::::0;8455:85;;;;;;;::::1;::::0;;;;;;;;;8515:24:::1;-1:-1:-1::0;;;8515:24:0;;::::1;;8455:85:::0;;;;;8468:2;;-1:-1:-1;8455:85:0::1;::::0;-1:-1:-1;8455:85:0;;;;;;;::::1;7696:852:::0;;;;:::o;4238:37::-;;;;:::o;9355:1330::-;9454:15;;9473:1;9454:20;9446:83;;;;-1:-1:-1;;;9446:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9579:1;9548:8;;;:4;:8;;;;;:19;;;-1:-1:-1;;;;;9548:19:0;9540:95;;;;-1:-1:-1;;;9540:95:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9654:8;;;;:4;:8;;;;;:18;;;9675:3;-1:-1:-1;;;9654:18:0;;;;;:24;;:51;;-1:-1:-1;9682:8:0;;;;:4;:8;;;;;:18;;;-1:-1:-1;;;9682:18:0;;;;:23;9654:51;9646:113;;;;-1:-1:-1;;;9646:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9778:8;;;;:4;:8;;;;;:24;;;9805:3;-1:-1:-1;;;9778:24:0;;;;;:30;9770:96;;;;-1:-1:-1;;;9770:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9902:8;;;;:4;:8;;;;;;;;:21;;9887:36;;9879:99;;;;-1:-1:-1;;;9879:99:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10003:8;;;;:4;:8;;;;;:18;9997:24;;9989:81;;;;-1:-1:-1;;;9989:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10120:11;;10133:8;;;;:4;:8;;;;;:18;10111:41;;10120:11;10111:8;:41::i;:::-;10089:18;10098:3;3622:7;10089:8;:18::i;:::-;:63;;10081:127;;;;-1:-1:-1;;;10081:127:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10239:8;;;;:4;:8;;;;;:19;;;-1:-1:-1;;;;;10239:19:0;10225:10;:33;10221:184;;10275:13;;;10306:8;;;10275:13;10306:8;;;;;;:19;;;;10327:18;;10275:71;;-1:-1:-1;;;10275:71:0;;10294:10;10275:71;;;;-1:-1:-1;;;;;10306:19:0;;;10275:71;;;;;;;;;;;;;:13;;;:18;;:71;;;;;:13;;:71;;;;;;:13;;:71;;;2:2:-1;;;;27:1;24;17:12;2:2;10275:71:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;;10361:8:0;;;;:4;:8;;;;;:19;;:32;;-1:-1:-1;;;;;;10361:32:0;10383:10;10361:32;;;-1:-1:-1;10221:184:0;10415:13;;;10467:8;;;10415:13;10467:8;;;;;;:18;10415:71;;-1:-1:-1;;;10415:71:0;;10434:10;10415:71;;;;10454:4;10415:71;;;;10461:24;;;10415:71;;;;;;-1:-1:-1;;;;;10415:13:0;;;;:18;;:71;;;;;:13;;:71;;;;;;:13;;:71;;;2:2:-1;;;;27:1;24;17:12;2:2;10415:71:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;;10499:8:0;;;;:4;:8;;;;;:24;;;-1:-1:-1;10578:11:0;;10555:35;;10572:3;;10578:11;;10555:9;:35::i;:::-;10534:8;;;;:4;:8;;;;;;;;;:18;;:56;;-1:-1:-1;;;;10534:56:0;-1:-1:-1;;;10534:56:0;;;;;;;;;;;;;;10608:69;;;;;10628:10;10608:69;;;;;;;;;;;;;;;;;;;10658:18;;;;;10608:69;;;;;;;;;;;;;;;9355:1330;;;:::o;4441:69::-;-1:-1:-1;;;4441:69:0;:::o;7079:393::-;2373:10;2354:18;:30;;;;;;;;;;;2388:1;2354:35;2346:100;;;;-1:-1:-1;;;2346:100:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7179:18:0;::::1;7171:76;;;;-1:-1:-1::0;;;7171:76:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7262:9;:39;;7258:157;;;7303:24;:31:::0;;-1:-1:-1;;;;;;7303:31:0::1;-1:-1:-1::0;;;;;7303:31:0;::::1;;::::0;;7258:157:::1;;;7350:65;;-1:-1:-1::0;;;7350:65:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7258:157;7431:33;::::0;;;;;-1:-1:-1;;;;;7431:33:0;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;;;;;;::::1;7079:393:::0;;:::o;3395:32::-;;;-1:-1:-1;;;;;3395:32:0;;:::o;4090:45::-;;;-1:-1:-1;;;4090:45:0;;;;;:::o;11753:229::-;2373:10;2354:18;:30;;;;;;;;;;;2388:1;2354:35;2346:100;;;;-1:-1:-1;;;2346:100:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11831:1:::1;11813:15;:19:::0;11843:10:::1;::::0;11903:37:::1;::::0;;-1:-1:-1;;;11903:37:0;;11884:4:::1;11903:37;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;11843:10:0;;::::1;::::0;:32:::1;::::0;11884:4;11891:10:::1;::::0;11843;;11903:22:::1;::::0;:37;;;;;::::1;::::0;;;;;;;;11843:10;11903:37;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;11903:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;11903:37:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;11903:37:0;11843:98:::1;::::0;;-1:-1:-1;;;;;;11843:98:0::1;::::0;;;;;;-1:-1:-1;;;;;11843:98:0;;::::1;;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;;;-1:-1:-1;;11843:98:0;;;;;;;-1:-1:-1;11843:98:0;;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;11843:98:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;-1:-1:::0;;11957:17:0::1;::::0;::::1;::::0;-1:-1:-1;11957:17:0;;-1:-1:-1;11957:17:0::1;11753:229::o:0;12112:479::-;12189:15;;:20;12181:85;;;;-1:-1:-1;;;12181:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12316:1;12285:8;;;:4;:8;;;;;:19;;;-1:-1:-1;;;;;12285:19:0;12277:95;;;;-1:-1:-1;;;12277:95:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12383:13;;;12417:8;;;12383:13;12417:8;;;;;;:19;;;;12438:18;;12383:74;;-1:-1:-1;;;12383:74:0;;12410:4;12383:74;;;;-1:-1:-1;;;;;12417:19:0;;;12383:74;;;;;;;;;;;;;:13;;;:18;;:74;;;;;:13;;:74;;;;;;:13;;:74;;;2:2:-1;;;;27:1;24;17:12;2:2;12383:74:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;;12517:8:0;;;;:4;:8;;;;;;;;;:19;;;;12538:18;;12473:84;;12505:10;12473:84;;-1:-1:-1;;;;;12517:19:0;;;12473:84;;;;;;;;;;;;;;;;12501:2;;-1:-1:-1;12473:84:0;;;;;;;;;12575:8;;;;:4;:8;;;;;;;12568:15;;;;;;;;;;;;12112:479::o;2058:162::-;2373:10;2354:18;:30;;;;;;;;;;;2388:1;2354:35;2346:100;;;;-1:-1:-1;;;2346:100:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2137:27:0;::::1;2167:1;2137:27:::0;;;::::1;::::0;;;;;;;:31;;;;2184:28;;;;;;;::::1;::::0;;;;;;;;::::1;2058:162:::0;:::o;5664:36::-;5698:2;5664:36;:::o;8687:384::-;8751:8;;;;:4;:8;;;;;:24;;;8778:3;-1:-1:-1;;;8751:24:0;;;;;:30;8743:85;;;;-1:-1:-1;;;8743:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8847:8;;;;:4;:8;;;;;:18;;;-1:-1:-1;;;8847:18:0;;;;:23;8839:84;;;;-1:-1:-1;;;8839:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8984:18;;8961:42;;8978:3;;-1:-1:-1;;;8984:18:0;;;;8961:9;:42::i;:::-;8934:8;;;;:4;:8;;;;;;;;;:24;;:69;;-1:-1:-1;;;;;8934:69:0;-1:-1:-1;;;8934:69:0;;;;;;;;;;;;;;9019:44;;;;;9038:24;;;;;9019:44;;;;;;;;;;;;;;;;8687:384;:::o;3543:46::-;;;-1:-1:-1;;;;;3543:46:0;;:::o;3954:39::-;;;;;;:::o;5707:37::-;5741:3;5707:37;:::o;6473:442::-;2373:10;2354:18;:30;;;;;;;;;;;2388:1;2354:35;2346:100;;;;-1:-1:-1;;;2346:100:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6569:9:::1;-1:-1:-1::0;;;6569:26:0::1;6565:293;;;6597:11;:18:::0;;;6565:293:::1;;;6635:9;-1:-1:-1::0;;;6635:26:0::1;6631:227;;;6663:11;:26:::0;;-1:-1:-1;;6663:26:0::1;;::::0;::::1;;::::0;;6631:227:::1;;;6709:9;-1:-1:-1::0;;;6709:33:0::1;6705:153;;;6744:18;:33:::0;;-1:-1:-1;;6744:33:0::1;-1:-1:-1::0;;;6744:33:0::1;::::0;::::1;;;::::0;;6705:153:::1;6874:33;::::0;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;;;;;;;;::::1;6473:442:::0;;:::o;6097:178::-;6160:9;6190:6;;;:30;;-1:-1:-1;;6205:5:0;;;6219:1;6214;6205:5;6214:1;6200:15;;;;;:20;6190:30;6182:85;;;;-1:-1:-1;;;6182:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6097:178;;;;:::o;5926:165::-;6024:5;;;6019:16;;;;6011:72;;;;-1:-1:-1;;;6011:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5751:169;5847:5;;;5842:16;;;;;;;;;5834:78;;;;-1:-1:-1;;;5834:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://e0af757406c2b3b775f4c6afb58a9812d8925d504b35d7f77d5eed010bbc802d
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.