More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 2,865 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Vote | 17951897 | 4 mins ago | IN | 0 S | 0.01145555 | ||||
Vote | 17948112 | 27 mins ago | IN | 0 S | 0.01145489 | ||||
Vote | 17947971 | 28 mins ago | IN | 0 S | 0.01359269 | ||||
Vote | 17947888 | 29 mins ago | IN | 0 S | 0.01145555 | ||||
Vote | 17947820 | 29 mins ago | IN | 0 S | 0.01145555 | ||||
Vote | 17946883 | 35 mins ago | IN | 0 S | 0.01145555 | ||||
Vote | 17946847 | 35 mins ago | IN | 0 S | 0.01089489 | ||||
Vote | 17946413 | 38 mins ago | IN | 0 S | 0.01119596 | ||||
Vote | 17945276 | 45 mins ago | IN | 0 S | 0.01388067 | ||||
Vote | 17944602 | 49 mins ago | IN | 0 S | 0.01145555 | ||||
Vote | 17942713 | 1 hr ago | IN | 0 S | 0.00351905 | ||||
Vote | 17942707 | 1 hr ago | IN | 0 S | 0.01970573 | ||||
Reset | 17942577 | 1 hr ago | IN | 0 S | 0.0030959 | ||||
Reset | 17942332 | 1 hr ago | IN | 0 S | 0.00340487 | ||||
Vote | 17941324 | 1 hr ago | IN | 0 S | 0.02183134 | ||||
Vote Multiple | 17939833 | 1 hr ago | IN | 0 S | 0.0372643 | ||||
Vote | 17938190 | 1 hr ago | IN | 0 S | 0.0175419 | ||||
Vote Multiple | 17935859 | 1 hr ago | IN | 0 S | 0.02224609 | ||||
Vote | 17935080 | 1 hr ago | IN | 0 S | 0.0134764 | ||||
Vote | 17934969 | 1 hr ago | IN | 0 S | 0.0114368 | ||||
Vote | 17927171 | 2 hrs ago | IN | 0 S | 0.01175507 | ||||
Vote | 17925783 | 2 hrs ago | IN | 0 S | 0.01145347 | ||||
Vote | 17923591 | 2 hrs ago | IN | 0 S | 0.02765815 | ||||
Vote | 17920636 | 3 hrs ago | IN | 0 S | 0.02230004 | ||||
Vote | 17920447 | 3 hrs ago | IN | 0 S | 0.00990507 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Voter
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 100000 runs
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.8.24;import { Ownable2Step, Ownable } from "@openzeppelin/contracts/access/Ownable2Step.sol";import { SafeTransferLib } from "solady/utils/SafeTransferLib.sol";import { ReentrancyGuard } from "solady/utils/ReentrancyGuard.sol";import { IVotingEscrow } from "./interfaces/IVotingEscrow.sol";/// @title Voter contract/// @author Rings Protocol/// @notice This contract allows users to vote on gauges to distribute rewards/// it is a fork of Thena's Voter contractcontract Voter is Ownable2Step, ReentrancyGuard {using SafeTransferLib for address;/*//////////////////////////////////////////////////////////////STRUCTS//////////////////////////////////////////////////////////////*//*** @notice Vote struct* @param weight The weight of the vote* @param votes The votes amount*/struct Vote {uint256 weight;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable2Step.sol)pragma solidity ^0.8.20;import {Ownable} from "./Ownable.sol";/*** @dev Contract module which provides access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** The initial owner is specified at deployment time in the constructor for `Ownable`. This* can later be changed with {transferOwnership} and {acceptOwnership}.** This module is used through inheritance. It will make available all functions* from parent (Ownable).*/abstract contract Ownable2Step is Ownable {address private _pendingOwner;event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);/*** @dev Returns the address of the pending owner.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.4;/// @notice Safe ETH and ERC20 transfer library that gracefully handles missing return values./// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/SafeTransferLib.sol)/// @author Modified from Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/SafeTransferLib.sol)/// @author Permit2 operations from (https://github.com/Uniswap/permit2/blob/main/src/libraries/Permit2Lib.sol)////// @dev Note:/// - For ETH transfers, please use `forceSafeTransferETH` for DoS protection./// - For ERC20s, this implementation won't check that a token has code,/// responsibility is delegated to the caller.library SafeTransferLib {/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*//* CUSTOM ERRORS *//*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*//// @dev The ETH transfer has failed.error ETHTransferFailed();/// @dev The ERC20 `transferFrom` has failed.error TransferFromFailed();/// @dev The ERC20 `transfer` has failed.error TransferFailed();
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.4;/// @notice Reentrancy guard mixin./// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/ReentrancyGuard.sol)abstract contract ReentrancyGuard {/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*//* CUSTOM ERRORS *//*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*//// @dev Unauthorized reentrant call.error Reentrancy();/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*//* STORAGE *//*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*//// @dev Equivalent to: `uint72(bytes9(keccak256("_REENTRANCY_GUARD_SLOT")))`./// 9 bytes is large enough to avoid collisions with lower slots,/// but not too large to result in excessive bytecode bloat.uint256 private constant _REENTRANCY_GUARD_SLOT = 0x929eee149b4bd21268;/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*//* REENTRANCY GUARD *//*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity 0.8.24;interface IVotingEscrow {struct Point {int128 bias;int128 slope; // # -dweight / dtuint256 ts;uint256 blk; // block}struct LockedBalance {int128 amount;uint256 end;}function create_lock_for(uint256 _value, uint256 _lock_duration, address _to) external returns (uint256);function locked(uint256 id) external view returns (LockedBalance memory);function tokenOfOwnerByIndex(address _owner, uint256 _tokenIndex) external view returns (uint256);function token() external view returns (address);function team() external returns (address);function epoch() external view returns (uint256);function point_history(uint256 loc) external view returns (Point memory);function user_point_history(uint256 tokenId, uint256 loc) external view returns (Point memory);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)pragma solidity ^0.8.20;import {Context} from "../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.** The initial owner is set to the address provided by the deployer. This can* later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/abstract contract Ownable is Context {address private _owner;/*** @dev The caller account is not authorized to perform an operation.*/error OwnableUnauthorizedAccount(address account);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)pragma solidity ^0.8.20;/*** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;}function _contextSuffixLength() internal view virtual returns (uint256) {return 0;
1234567891011121314151617181920212223242526{"remappings": ["ds-test/=lib/solmate/lib/ds-test/src/","forge-std/=lib/forge-std/src/","@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/","@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/","solmate/=lib/solmate/src/","solady/=lib/solady/src/","src/=src/","test/=test/","erc4626-tests/=lib/openzeppelin-contracts-upgradeable/lib/erc4626-tests/","openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/","openzeppelin-contracts/=lib/openzeppelin-contracts/"],"optimizer": {"enabled": true,"runs": 100000},"metadata": {"useLiteralContent": false,"bytecodeHash": "none","appendCBOR": true},"outputSelection": {"*": {"*": [
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_ve","type":"address"},{"internalType":"address","name":"_baseAsset","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ArrayLengthMismatch","type":"error"},{"inputs":[],"name":"CannotVoteWithNft","type":"error"},{"inputs":[],"name":"DepositFrozen","type":"error"},{"inputs":[],"name":"GaugeAlreadyKilled","type":"error"},{"inputs":[],"name":"GaugeAlreadyListed","type":"error"},{"inputs":[],"name":"GaugeNotKilled","type":"error"},{"inputs":[],"name":"GaugeNotListed","type":"error"},{"inputs":[],"name":"InvalidCap","type":"error"},{"inputs":[],"name":"InvalidParameter","type":"error"},{"inputs":[],"name":"KilledGauge","type":"error"},{"inputs":[],"name":"MaxArraySizeExceeded","type":"error"},{"inputs":[],"name":"NoVoteToRecast","type":"error"},{"inputs":[],"name":"NoVotingPower","type":"error"},{"inputs":[],"name":"NullAmount","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"Reentrancy","type":"error"},{"inputs":[],"name":"VoteDelayNotExpired","type":"error"},{"inputs":[],"name":"VoteWeightOverflow","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"depositor","type":"address"},{"indexed":true,"internalType":"uint256","name":"period","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BudgetDeposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newCap","type":"uint256"}],"name":"DefaultCapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"frozen","type":"bool"}],"name":"DepositFreezeTriggered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"gauge","type":"address"},{"indexed":false,"internalType":"uint256","name":"cap","type":"uint256"}],"name":"GaugeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"gauge","type":"address"},{"indexed":false,"internalType":"uint256","name":"newCap","type":"uint256"}],"name":"GaugeCapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"gauge","type":"address"}],"name":"GaugeKilled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"gauge","type":"address"}],"name":"GaugeRevived","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","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":"gauge","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldVoteDelay","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newVoteDelay","type":"uint256"}],"name":"VoteDelayUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"gauge","type":"address"}],"name":"VoteReseted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"voter","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"gauge","type":"address"},{"indexed":false,"internalType":"uint256","name":"ts","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"weight","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"votes","type":"uint256"}],"name":"Voted","type":"event"},{"inputs":[],"name":"PERIOD_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"gauge","type":"address"},{"internalType":"string","name":"label","type":"string"},{"internalType":"uint256","name":"cap","type":"uint256"}],"name":"addGauge","outputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"baseAsset","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"gauge","type":"address"}],"name":"claimGaugeRewards","outputs":[{"internalType":"uint256","name":"claimedAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"depositBudget","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"gaugeCaps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"gaugeIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"gaugeLabel","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"gaugeStatus","outputs":[{"internalType":"bool","name":"isGauge","type":"bool"},{"internalType":"bool","name":"isAlive","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"gaugeVote","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"gauges","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gaugesCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"gaugesDistributionTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"gauge","type":"address"}],"name":"getGaugeCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"gauge","type":"address"}],"name":"getGaugeRelativeWeight","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"gauge","type":"address"},{"internalType":"uint256","name":"ts","type":"uint256"}],"name":"getGaugeRelativeWeightAtPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"gauge","type":"address"}],"name":"getGaugeVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"gauge","type":"address"},{"internalType":"uint256","name":"ts","type":"uint256"}],"name":"getGaugeVotesAtPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getNftCurrentVotes","outputs":[{"components":[{"internalType":"address","name":"gauge","type":"address"},{"internalType":"uint256","name":"weight","type":"uint256"},{"internalType":"uint256","name":"votes","type":"uint256"}],"internalType":"struct Voter.CastedVote[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"ts","type":"uint256"}],"name":"getNftCurrentVotesAtPeriod","outputs":[{"components":[{"internalType":"address","name":"gauge","type":"address"},{"internalType":"uint256","name":"weight","type":"uint256"},{"internalType":"uint256","name":"votes","type":"uint256"}],"internalType":"struct Voter.CastedVote[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"gauge","type":"address"}],"name":"getNftVotesOnGauge","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"gauge","type":"address"},{"internalType":"uint256","name":"ts","type":"uint256"}],"name":"getNftVotesOnGaugeAtPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"ts","type":"uint256"}],"name":"getTotalVotesAtPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"gauge","type":"address"}],"name":"isAlive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isDepositFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"gauge","type":"address"}],"name":"isGauge","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"gauge","type":"address"}],"name":"killGauge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lastVoted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"periodBudget","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"recast","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"recastMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"reset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"resetMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"gauge","type":"address"}],"name":"reviveGauge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"totalVotesPerPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"triggerDepositFreeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"gauge","type":"address"},{"internalType":"uint256","name":"cap","type":"uint256"}],"name":"updateGaugeCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVoteDelay","type":"uint256"}],"name":"updateVoteDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_defaultCap","type":"uint256"}],"name":"updatedefaultCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ve","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address[]","name":"gaugeList","type":"address[]"},{"internalType":"uint256[]","name":"weights","type":"uint256[]"}],"name":"vote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"voteCastedPeriod","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"voteDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"address[]","name":"gaugeList","type":"address[]"},{"internalType":"uint256[]","name":"weights","type":"uint256[]"}],"name":"voteMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"votes","outputs":[{"internalType":"uint256","name":"weight","type":"uint256"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"votesPerPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60c0346200015e57601f62003ae838819003918201601f19168301916001600160401b0383118484101762000162578084926060946040528339810103126200015e576200004d8162000176565b906200006a6040620000626020840162000176565b920162000176565b6001600160a01b039290919083168015620001465760018060a01b0319938460015416600155815f54958616175f5560405194167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a3610e1060035567016345785d8a000060045560805260a05261395c90816200018c82396080518181816103ba0152818161061d0152818161121801528181611496015281816117220152818161260301528181612a3d0152818161346c0152818161354001526135b0015260a0518181816109520152818161211301526122c10152f35b604051631e4fbdf760e01b81525f6004820152602490fd5b5f80fd5b634e487b7160e01b5f52604160045260245ffd5b51906001600160a01b03821682036200015e5756fe60406080815260049081361015610014575f80fd5b5f915f3560e01c80630604061814612c905780631703e5f914612c4457806317705c1214612ba95780631ac218b314612a615780631f85071614612a1157806324202739146128c857806325b6244014612861578063292fc979146128435780632951005c146127ef5780632c2a002e146127855780632f86075614612737578063310bd74b1461259957806334ce66e51461243a57806338e08f0e146122065780633e2f2e92146120a657806345464030146120325780634a0aa1a91461200157806351d7201414611f945780636558954f14611f7657806366ddf44714611eed57806367fec84d14611ec0578063689df56e14611ea35780636daa828014611a3b578063715018a6146119b4578063721af9c6146116c957806373464844146116615780637995a20e1461145557806379ba5097146113935780637ac09bf71461114f5780637c766f8f1461110b5780637f3725f3146110ec5780637f4222701461105157806386c2569e1461102a5780638da5cb5b14610ff7578063992a793314610f215780639965073414610ed45780639a0e7d6614610e965780639f06247b14610d71578063a3d6419214610d03578063a5a645c114610cdc578063a83038d014610c4b578063aa79979b14610c02578063b053918714610b9c578063c424616614610b58578063c8db7e7a14610aec578063cb1784df14610976578063cdf456e114610925578063e30c3978146108f0578063e6da0457146108a8578063ea02d53b14610881578063eb27f318146105ac578063f121da0a1461032c578063f2fde38b1461029a5763f3594be014610270575f80fd5b34610296576020600319360112610296576020928291358152600e845220549051908152f35b8280fd5b8334610329576020600319360112610329576102b4612cac565b6102bc6130b2565b73ffffffffffffffffffffffffffffffffffffffff80911690817fffffffffffffffffffffffff000000000000000000000000000000000000000060015416176001558254167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e227008380a380f35b80fd5b509034610296576020806003193601126105a857823568929eee149b4bd21268933085541461059d57308555610361826131ac565b83517f16b7a011000000000000000000000000000000000000000000000000000000008152338183019081526020810184905273ffffffffffffffffffffffffffffffffffffffff9291908590829081906040010381867f0000000000000000000000000000000000000000000000000000000000000000165afa908115610593578891610566575b501561053f57828752600b8452848720610402612f50565b885284528487209085518083878295549384815201908b52878b20928b5b898282106105275750505061043792500383612e88565b8151908115610500575061044a81612f87565b9261045787519485612e88565b8184527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe061048483612f87565b013687860137885b8281106104be5750505082916104b0916104a9600e9695336131f7565b8333613406565b855252429083205538905580f35b600190868b52600a8852888b206104d3612f50565b8c528852888b20836104e5838861301f565b51165f528852885f20546104f9828861301f565b520161048c565b86517fb06e56db000000000000000000000000000000000000000000000000000000008152fd5b85548916845260019586019588955093019201610420565b84517f33b78c8e000000000000000000000000000000000000000000000000000000008152fd5b6105869150853d871161058c575b61057e8183612e88565b810190613033565b5f6103ea565b503d610574565b86513d8a823e3d90fd5b63ab143c068652601cfd5b8380fd5b50346102965760606003193601126102965767ffffffffffffffff91813583811161087d576105de9036908401612edf565b92602435858111610879576105f69036908301612edf565b956044359081116108755761060e9036908401612edf565b969092600a871161084e5793957f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169490895b818110610661578a80f35b61066c81838b6130a2565b353068929eee149b4bd212685414610842573068929eee149b4bd2126855610693816131ac565b88517f16b7a011000000000000000000000000000000000000000000000000000000008152338582019081526020818101849052908290819060400103818c5afa908115610838578d91610819575b50156107f1578a85036107c9576106f981336131f7565b61070285612f87565b61070e8a519182612e88565b85815260059086821b8801602082013682116107ad5789905b8282106107b1575050508c61073b81612f87565b926107488d519485612e88565b81845260208401913690821b8c01116107ad578e918b905b83831b8d01821061079d5750505050829161077f916001959433613406565b8c52600e60205242898d20553868929eee149b4bd212685501610656565b8135815260209182019101610760565b8f80fd5b602080916107be84612cf2565b815201910190610727565b8389517fa24a13a6000000000000000000000000000000000000000000000000000000008152fd5b8389517f33b78c8e000000000000000000000000000000000000000000000000000000008152fd5b610832915060203d60201161058c5761057e8183612e88565b5f6106e2565b8a513d8f823e3d90fd5b8363ab143c068d52601cfd5b85517f1d30d2f8000000000000000000000000000000000000000000000000000000008152fd5b8780fd5b8680fd5b8480fd5b50346102965760206003193601126102965760209282913581526005845220549051908152f35b5050346108ec5760206003193601126108ec578060209273ffffffffffffffffffffffffffffffffffffffff6108dc612cac565b1681526009845220549051908152f35b5080fd5b5050346108ec57816003193601126108ec5760209073ffffffffffffffffffffffffffffffffffffffff600154169051908152f35b5050346108ec57816003193601126108ec576020905173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b509190346108ec5761098736612ec9565b909362093a80809204828102928184041490151715610ac057508383526020600b81528284208285528152828420938351808684829854938481520190845284842092845b86828210610a94575050506109e392500386612e88565b8451926109ef84612f9f565b95825b858110610a0a57865180610a068a82612d13565b0390f35b8073ffffffffffffffffffffffffffffffffffffffff610a2c6001938561301f565b51168a8652600a87528886208587528752888620815f52875286895f208a51610a5481612e0f565b85825492838352015492839101528a5192610a6e84612e58565b83528883015289820152610a82828b61301f565b52610a8d818a61301f565b50016109f2565b855473ffffffffffffffffffffffffffffffffffffffff1684526001958601958b9550930192016109cc565b8360116024927f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b508290346108ec5760606003193601126108ec576044359173ffffffffffffffffffffffffffffffffffffffff8316809303610b54578391358152600a602052818120602435825260205220905f52602052805f206001815491015482519182526020820152f35b5f80fd5b5050346108ec5760206003193601126108ec578060209273ffffffffffffffffffffffffffffffffffffffff610b8c612cac565b1681526008845220549051908152f35b5034610296576020600319360112610296573591600254831015610329575073ffffffffffffffffffffffffffffffffffffffff60209260025f527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0154169051908152f35b5050346108ec5760206003193601126108ec5760ff8160209373ffffffffffffffffffffffffffffffffffffffff610c38612cac565b1681526010855220541690519015158152f35b50913461032957602060031936011261032957610c66612cac565b90610c6f612f50565b62093a808101809111610cb0576020945081849173ffffffffffffffffffffffffffffffffffffffff9352600c86522091165f528252805f20549051908152f35b6024826011877f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b5034610296576020600319360112610296576020928291358152600d845220549051908152f35b508290346108ec5760206003193601126108ec5762093a809081813504828102928184041490151715610d45576020848085858152600d845220549051908152f35b8260116024927f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b50346102965760206003193601126102965773ffffffffffffffffffffffffffffffffffffffff610da0612cac565b610da86130b2565b16918215610e705782845260106020528084209182549160ff831615610e4a5760ff8360081c16610e245750507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790557fed18e9faa3dccfd8aa45f69c4de40546b2ca9cccc4538a2323531656516db1aa8280a280f35b517f9b4b8d1e000000000000000000000000000000000000000000000000000000008152fd5b517f7c905419000000000000000000000000000000000000000000000000000000008152fd5b517fd92e233d000000000000000000000000000000000000000000000000000000008152fd5b508290346108ec57816003193601126108ec57610eb1612f50565b9062093a808201809211610d45576020848085858152600d845220549051908152f35b50903461029657602060031936011261029657816020917f9b8d46d5ada9050fa0320d285f24811d709bba8d11887134fda797788740d0dc93358092610f186130b2565b5551908152a180f35b50346102965760206003193601126102965773ffffffffffffffffffffffffffffffffffffffff610f50612cac565b610f586130b2565b16918215610e705782845260106020528084209182549160ff831615610e4a5760ff8360081c1615610fd15750507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690557f04a5d3f5d80d22d9345acc80618f4a4e7e663cf9e1aed23b57d975acec002ba78280a280f35b517ffe236944000000000000000000000000000000000000000000000000000000008152fd5b5050346108ec57816003193601126108ec5773ffffffffffffffffffffffffffffffffffffffff60209254169051908152f35b5050346108ec57816003193601126108ec5760209060ff60015460a01c1690519015158152f35b5050346108ec57816003193601126108ec5760207f868eaac1d9e3d60a9df6592a6ac3e67619fd4ff575dc4cc9cba73fbf830cefb79161108f6130b2565b60ff6001547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff74ff0000000000000000000000000000000000000000838360a01c161560a01b169116179182600155519160a01c1615158152a180f35b5050346108ec57816003193601126108ec576020906002549051908152f35b5050346108ec5760206003193601126108ec578060209273ffffffffffffffffffffffffffffffffffffffff61113f612cac565b1681526006845220549051908152f35b5090346102965760606003193601126102965767ffffffffffffffff91803560243584811161138f576111859036908401612edf565b90946044359081116108795761119e9036908501612edf565b919068929eee149b4bd212689630885414611383573088556111bf856131ac565b86517f16b7a011000000000000000000000000000000000000000000000000000000008152338782019081526020818101889052979190889082908190604001038173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa908115611379578b9161135c575b50156113355784840361130e575061126085336131f7565b61126983612f87565b9261127688519485612e88565b8084528684019060051b82019136831161130a578790915b8383106112f257505050506112a283612f87565b926112af87519485612e88565b8084528584019060051b8201913683116112ee57905b8282106112df5750505082916104b091600e959433613406565b813581529086019086016112c5565b8980fd5b81906112fd84612cf2565b815201910190879061128e565b8a80fd5b87517fa24a13a6000000000000000000000000000000000000000000000000000000008152fd5b87517f33b78c8e000000000000000000000000000000000000000000000000000000008152fd5b6113739150883d8a1161058c5761057e8183612e88565b5f611248565b89513d8d823e3d90fd5b8563ab143c068a52601cfd5b8580fd5b5090346102965782600319360112610296576001549173ffffffffffffffffffffffffffffffffffffffff9133838516036114255750507fffffffffffffffffffffffff00000000000000000000000000000000000000008092166001555f549133908316175f553391167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a380f35b6024925051907f118cdaa70000000000000000000000000000000000000000000000000000000082523390820152fd5b5090346102965760209160206003193601126105a857803567ffffffffffffffff811161087d576114899036908301612edf565b9290600a841161163a57927f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690865b8181106114d9578780f35b6114e48183886130a2565b359068929eee149b4bd212683081541461162e57308155611504836131ac565b85517f16b7a01100000000000000000000000000000000000000000000000000000000815233888201908152602081018590528a90829081906040010381895afa908115611624578b91611607575b50156115df5761156383336131f7565b843b156112ee578986517fc1f0fb9f00000000000000000000000000000000000000000000000000000000815284898201528181602481838b5af180156115d5576115c1575b509260019352600e895242868b2055389055016114ce565b6115ca90612e74565b6112ee57895f6115a9565b88513d84823e3d90fd5b8686517f33b78c8e000000000000000000000000000000000000000000000000000000008152fd5b61161e91508a3d8c1161058c5761057e8183612e88565b5f611553565b87513d8d823e3d90fd5b8663ab143c068b52601cfd5b50517f1d30d2f8000000000000000000000000000000000000000000000000000000008152fd5b50913461032957816003193601126103295761167b612cac565b9062093a808060243504818102918183041490151715610cb0576020945081849173ffffffffffffffffffffffffffffffffffffffff9352600c86522091165f528252805f20549051908152f35b509034610296576020806003193601126105a857823567ffffffffffffffff811161087d576116fb9036908501612edf565b929091600a93600a811161198c57929373ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000811694909190885b818110611754578980f35b61175f81838a6130a2565b3568929eee149b4bd2126890308254146119805730825561177f816131ac565b87517f16b7a01100000000000000000000000000000000000000000000000000000000815233818d019081526020810183905288908290819060400103818d5afa908115611976578d91611959575b501561193157808c52600b8752878c206117e6612f50565b8d528752878c208c8951809283918b825491828152019184528b842093905b8c8183106119155750505061181c92500382612e88565b805180156118ed5790816118308f93612f87565b9261183d8c519485612e88565b8184527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe061186a83612f87565b01368c8601378b815b8a8d8585106118aa575050505050508291611896916104a96001979695336131f7565b8c52600e875242888d205538905501611749565b888352528181206001939291908e6118c0612f50565b835252208b6118cf838761301f565b51165f528c528c5f20546118e3828761301f565b52018f8c90611873565b8c8a517fb06e56db000000000000000000000000000000000000000000000000000000008152fd5b60019294508291938d8754168152019401920184929391611805565b8a88517f33b78c8e000000000000000000000000000000000000000000000000000000008152fd5b6119709150883d8a1161058c5761057e8183612e88565b5f6117ce565b89513d8f823e3d90fd5b8a63ab143c068d52601cfd5b8583517f1d30d2f8000000000000000000000000000000000000000000000000000000008152fd5b83346103295780600319360112610329576119cd6130b2565b5f73ffffffffffffffffffffffffffffffffffffffff7fffffffffffffffffffffffff0000000000000000000000000000000000000000806001541660015582549081168355167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b50903461029657606060031936011261029657611a56612cac565b90602480359267ffffffffffffffff958685116103295736602386011215610329578486013595878711611e78576020977fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe097865197611abd8b8b601f850116018a612e88565b8189523687838301011161087d57818592888d9301838c01378901015273ffffffffffffffffffffffffffffffffffffffff60443594611afb6130b2565b16948515611e505785845260108a52868420805460ff8116611e2857670de0b6b3a76400008711611e00577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790556002549768010000000000000000891015611dd55760019160018a01806002558a1015611dab5760025f52897f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace01887fffffffffffffffffffffffff000000000000000000000000000000000000000082541617905587865260068c52898987205560078c52888620948251948511611d8157505090839291611bf48c97969554612dbe565b601f8111611d48575b508691601f8411600114611ca457507f0fab41fe8607aed4f537e3a13c17a440a2ba7eb1af6dca1c1776eae2d735aee99798999a509082918592611c99575b50507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8260011b9260031b1c19161790555b84815260088352818682205585611c83612f50565b918681526009855220558451908152a251908152f35b015190505f80611c3c565b929a8b168486528786209386905b828210611d3157505091600193918c7f0fab41fe8607aed4f537e3a13c17a440a2ba7eb1af6dca1c1776eae2d735aee99a9b9c9d9410611cfa575b505050811b019055611c6e565b01517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88460031b161c191690555f8080611ced565b838501518655948501949389019390890190611cb2565b611d7190858752888720601f860160051c8101918a8710611d77575b601f0160051c019061308c565b5f611bfd565b9091508190611d64565b604187917f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b6032857f4e487b71000000000000000000000000000000000000000000000000000000005f52525ffd5b506041837f4e487b71000000000000000000000000000000000000000000000000000000005f52525ffd5b8489517fcadd5a68000000000000000000000000000000000000000000000000000000008152fd5b8489517fe3ce9c7f000000000000000000000000000000000000000000000000000000008152fd5b8287517fd92e233d000000000000000000000000000000000000000000000000000000008152fd5b8192507f4e487b71000000000000000000000000000000000000000000000000000000006041925252fd5b503461029657826003193601126102965760209250549051908152f35b5050346108ec5760206003193601126108ec57602090611ee6611ee1612cac565b613058565b9051908152f35b503461029657602060031936011261029657803590611f0a6130b2565b62093a80821015611f4f5750907f40ed3b0f84511a79fc28fe2eb99ba62a4ebf0264822e23a5d2f4ffdf0261164b91600354908060035582519182526020820152a180f35b82517f613970e0000000000000000000000000000000000000000000000000000000008152fd5b5050346108ec57816003193601126108ec576020905162093a808152f35b509134610329578160031936011261032957611fae612cac565b62093a80918260243504838102938185041490151715611fd557602084611ee68585613102565b806011867f4e487b71000000000000000000000000000000000000000000000000000000006024945252fd5b5050346108ec5760ff8160209361201736612ec9565b908252600f8652828220908252855220541690519015158152f35b5091346103295760606003193601126103295761204d612ccf565b9062093a808060443504818102918183041490151715610cb05773ffffffffffffffffffffffffffffffffffffffff918491602096358252600a875282822090825286522091165f5282526001815f2001549051908152f35b50903461029657602060031936011261029657813568929eee149b4bd2126892308454146121fb5730845581156121d45760ff60015460a01c166121ad57825190826060523084523360601b602c526f23b872dd000000000000000000000000600c526020866064601c827f00000000000000000000000000000000000000000000000000000000000000005af13d1560018851141716156121a25750846060528252612159612154612f50565b612f6a565b918285526005602052808520612170838254612f7a565b9055519081527f7bb731c94eef65c5886be4b79a2654869ac33cd509e9d806fa6dce7873ba4a5660203392a338905580f35b637939f4248652601cfd5b82517f02dd0225000000000000000000000000000000000000000000000000000000008152fd5b82517fe5a74490000000000000000000000000000000000000000000000000000000008152fd5b63ab143c068552601cfd5b509034610296576020928360031936011261032957612223612cac565b68929eee149b4bd21268913083541461242e573083558094612243612f50565b9273ffffffffffffffffffffffffffffffffffffffff81169384845260098952868420545b898282111561235c57505062093a8081018091116123305784845260098952868420558661229e575b5050505038905551908152f35b601452856034526fa9059cbb0000000000000000000000008252868260446010827f00000000000000000000000000000000000000000000000000000000000000005af13d15600184511417161561232557506034527f106f923f993c2149d49b4255ff723acafa1f2d94393f561d3eda32ae348f7241858451868152a25f808080612291565b6390b8ec188252601cfd5b6024846011857f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b98670de0b6b3a764000061239f878b859d6123a69661237a8a613058565b612384828c613102565b938185116123e1575b50506005929352528b89205490612f10565b0490612f7a565b9762093a80810180911115612268576024856011867f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b612423906123f18360059761304b565b92968481528961240988958689528484205490612f10565b0493612416612154612f50565b8252865220918254612f7a565b90558b93928f61238d565b63ab143c06859152601cfd5b5050346108ec57602091826003193601126103295773ffffffffffffffffffffffffffffffffffffffff61246c612cac565b168152600783528181209083835180938390805461248981612dbe565b80855291600191808316908115612557575060011461251a575b5050506124b69250959392950382612e88565b82519382859384528251928382860152825b84811061250457505050828201840152601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168101030190f35b81810183015188820188015287955082016124c8565b86528486209492508591905b81831061253f5750889450508201016124b65f806124a3565b85548884018501529485019487945091830191612526565b9150506124b69593507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0091501682840152151560051b82010186925f806124a3565b509034610b54576020600319360112610b5457813568929eee149b4bd21268923084541461272c573084556125cd826131ac565b82517f16b7a0110000000000000000000000000000000000000000000000000000000081523381830190815260208181018590527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16939291829081906040010381865afa908115612722575f91612703575b50156126dc5761266583336131f7565b813b15610b54578260245f9283875195869485937fc1f0fb9f0000000000000000000000000000000000000000000000000000000085528401525af180156126d2576126bf575b508352600e602052429083205538905580f35b6126ca919450612e74565b5f925f6126ac565b83513d5f823e3d90fd5b83517f33b78c8e000000000000000000000000000000000000000000000000000000008152fd5b61271c915060203d60201161058c5761057e8183612e88565b5f612655565b85513d5f823e3d90fd5b63ab143c065f52601cfd5b509034610b545780600319360112610b5457602091612754612ccf565b90355f52600c835273ffffffffffffffffffffffffffffffffffffffff825f2091165f528252805f20549051908152f35b509034610b54576020600319360112610b54576127a0612cac565b6127a8612f50565b9262093a8084018094116127c35750602092611ee691613102565b6011907f4e487b71000000000000000000000000000000000000000000000000000000005f525260245ffd5b8234610b54576020600319360112610b545773ffffffffffffffffffffffffffffffffffffffff61281e612cac565b165f526010602052805f205460ff8251918181161515835260081c1615156020820152f35b8234610b54575f600319360112610b54576020906003549051908152f35b509034610b54576060600319360112610b545760443591355f52600b602052805f206024355f52602052805f20918254811015610b54576128b973ffffffffffffffffffffffffffffffffffffffff91602094612d7c565b92905490519260031b1c168152f35b509034610b545780600319360112610b54576128e2612cac565b9073ffffffffffffffffffffffffffffffffffffffff602435926129046130b2565b169283156129ea57835f526010602052815f205460ff8116156129c25760081c60ff161561299b57670de0b6b3a7640000831161297457507fc039168563328bf91df25baf90beebb542996a663fa0b7865526a2106b0567b391602091845f526008835281815f205551908152a2005b90517fcadd5a68000000000000000000000000000000000000000000000000000000008152fd5b90517f6cd7ad06000000000000000000000000000000000000000000000000000000008152fd5b5090517f7c905419000000000000000000000000000000000000000000000000000000008152fd5b90517fd92e233d000000000000000000000000000000000000000000000000000000008152fd5b8234610b54575f600319360112610b54576020905173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b509034610b545760209081600319360112610b5457823592612a81612f50565b9062093a8082018092116127c35750835f52600b8352815f20815f528352815f209282518085838297549384815201905f52835f20925f5b85828210612b7d57505050612ad092500385612e88565b835191612adc83612f9f565b945f5b848110612af357855180610a068982612d13565b8073ffffffffffffffffffffffffffffffffffffffff612b156001938561301f565b5116895f52600a8652875f20855f528652875f20815f52865285885f208951612b3d81612e0f565b8582549283835201549283910152895192612b5784612e58565b83528783015288820152612b6b828a61301f565b52612b76818961301f565b5001612adf565b855473ffffffffffffffffffffffffffffffffffffffff1684526001958601958a955093019201612ab9565b509034610b545780600319360112610b5457612bc3612ccf565b82355f52600a602052815f20612bd7612f50565b62093a808101809111612c1857602094505f52835273ffffffffffffffffffffffffffffffffffffffff825f2091165f5282526001815f2001549051908152f35b6011857f4e487b71000000000000000000000000000000000000000000000000000000005f525260245ffd5b8234610b54576020600319360112610b545760209073ffffffffffffffffffffffffffffffffffffffff612c76612cac565b165f526010825260ff815f205460081c1690519015158152f35b8234610b54575f600319360112610b5457602090611ee6612f50565b6004359073ffffffffffffffffffffffffffffffffffffffff82168203610b5457565b6024359073ffffffffffffffffffffffffffffffffffffffff82168203610b5457565b359073ffffffffffffffffffffffffffffffffffffffff82168203610b5457565b60208082019080835283518092528060408094019401925f905b838210612d3c57505050505090565b8451805173ffffffffffffffffffffffffffffffffffffffff16875280840151878501528101518682015260609095019493820193600190910190612d2d565b8054821015612d91575f5260205f2001905f90565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b90600182811c92168015612e05575b6020831014612dd857565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b91607f1691612dcd565b6040810190811067ffffffffffffffff821117612e2b57604052565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6060810190811067ffffffffffffffff821117612e2b57604052565b67ffffffffffffffff8111612e2b57604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117612e2b57604052565b6003196040910112610b54576004359060243590565b9181601f84011215610b545782359167ffffffffffffffff8311610b54576020808501948460051b010111610b5457565b81810292918115918404141715612f2357565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b62093a80804204818102918183041490151715612f235790565b90621275008201809211612f2357565b91908201809211612f2357565b67ffffffffffffffff8111612e2b5760051b60200190565b90612fa982612f87565b604090612fb96040519182612e88565b8381527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0612fe78295612f87565b01915f5b838110612ff85750505050565b602090825161300681612e58565b5f8152825f818301525f85830152828601015201612feb565b8051821015612d915760209160051b010190565b90816020910312610b5457518015158103610b545790565b91908203918211612f2357565b73ffffffffffffffffffffffffffffffffffffffff165f52600860205260405f205480155f14613089575060045490565b90565b818110613097575050565b5f815560010161308c565b9190811015612d915760051b0190565b73ffffffffffffffffffffffffffffffffffffffff5f541633036130d257565b60246040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152fd5b73ffffffffffffffffffffffffffffffffffffffff1690815f52601060205260405f206040519061313282612e0f565b549060ff82161560ff81159384845260081c16159160208315910152916131a4575b5061319e575f52600d60205260405f205490811561319e57600c60205260405f20905f5260205260405f2054670de0b6b3a764000090818102918183041490151715612f23570490565b50505f90565b90505f613154565b5f52600e6020526131c460405f205460035490612f7a565b4211156131cd57565b60046040517fb7e57455000000000000000000000000000000000000000000000000000000008152fd5b90613200612f50565b9062093a808201809211612f2357805f52602090600f8252604093845f20845f52835260ff855f205416613267575b505f52600f8152825f20915f52525f207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008154169055565b815f52600b8352845f20845f52835282855f20918651809384918482549182815201915f52845f20905f5b8181106133d757505050906132a8910384612e88565b8251905f935f5b88878b8684106133155750955050505050505f52600b8352845f20845f528352845f2080545f8255806132fc575b5050835f52600d83526132f4855f2091825461304b565b90555f61322f565b61330e915f52845f209081019061308c565b5f806132dd565b5f6001959697989973ffffffffffffffffffffffffffffffffffffffff928361333e888b61301f565b511695858452600a9c8d81528285208286528152828520888652815261338a8a9485858820015490848852600c84528588208b8952845285882061338383825461304b565b9055612f7a565b8786529d8152828520918552528083208684528e528220828155015586167f8e9be633930d447edb768a7d9ee161eb92b33522fcca02370272cc378b720ddf5f80a40190869392916132af565b825473ffffffffffffffffffffffffffffffffffffffff16845289968895509093019260019283019201613292565b919290613411612f50565b915f9362093a8084018411612f23578551604051927fe7e242d400000000000000000000000000000000000000000000000000000000845284600485015260208460248173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165afa9384156135fc575f9461391b575b5083156138f1575f97889485949392915b83861061363157505050505050612710811161360757613529575b60409362093a8083018452600d6020526134e6858520918254612f7a565b90558252600f60205262093a80838320910182526020522060017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00825416179055565b73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000163b15610b5457604051937ffd4a77f10000000000000000000000000000000000000000000000000000000085528160048601525f856024818373ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000165af19485156135fc576040956135e9575b5093506134c8565b6135f4919450612e74565b5f925f6135e1565b6040513d5f823e3d90fd5b60046040517fb658683c000000000000000000000000000000000000000000000000000000008152fd5b9091929394999573ffffffffffffffffffffffffffffffffffffffff6136578c8461301f565b51169a8b156138c7578b5f52601060205260405f206040519061367982612e0f565b549060ff6020818416159283158152019260081c161515825261389d575115613873576136d56136cf926127106136ba6136b3858a61301f565b5188612f10565b049384916136c8858a61301f565b5190612f7a565b99612f7a565b9b895f52600a60205260405f2062093a808c015f5260205260405f20815f526020528960405f205415613805575b60019362093a808d015f52600c60205260405f20835f5260205260405f2061372c828254612f7a565b9055613738848961301f565b51825f52600a6020528d62093a8060405f2091015f5260205260405f20845f5260205261376a60405f20918254612f7a565b9055815f52600a6020528c62093a8060405f2091015f5260205260405f20835f526020528460405f200161379f828254612f7a565b90556137ab848961301f565b519060405191428352602083015260408201527f2e6c94de62679b33b86aa0615e0826812095a06925ae30e3fa2234858f0ca986606073ffffffffffffffffffffffffffffffffffffffff8c1692a40194939291906134ad565b5f52600b60205260405f2062093a808c015f5260205260405f209283549068010000000000000000821015612e2b5761384682600196878f95018155612d7c565b81549060031b9073ffffffffffffffffffffffffffffffffffffffff86831b921b19161790559350613703565b60046040517f6cd7ad06000000000000000000000000000000000000000000000000000000008152fd5b60046040517f7c905419000000000000000000000000000000000000000000000000000000008152fd5b60046040517fd92e233d000000000000000000000000000000000000000000000000000000008152fd5b60046040517f7c176b74000000000000000000000000000000000000000000000000000000008152fd5b9093506020813d602011613947575b8161393760209383612e88565b81010312610b545751925f61349c565b3d915061392a56fea164736f6c6343000818000a000000000000000000000000a48260f762fe533a6e32cb1cac8f411d19bfb9870000000000000000000000000966cae7338518961c2d35493d3eb481a75bb86b000000000000000000000000d3dce716f3ef535c5ff8d041c1a41c3bd89b97ae
Deployed Bytecode
0x60406080815260049081361015610014575f80fd5b5f915f3560e01c80630604061814612c905780631703e5f914612c4457806317705c1214612ba95780631ac218b314612a615780631f85071614612a1157806324202739146128c857806325b6244014612861578063292fc979146128435780632951005c146127ef5780632c2a002e146127855780632f86075614612737578063310bd74b1461259957806334ce66e51461243a57806338e08f0e146122065780633e2f2e92146120a657806345464030146120325780634a0aa1a91461200157806351d7201414611f945780636558954f14611f7657806366ddf44714611eed57806367fec84d14611ec0578063689df56e14611ea35780636daa828014611a3b578063715018a6146119b4578063721af9c6146116c957806373464844146116615780637995a20e1461145557806379ba5097146113935780637ac09bf71461114f5780637c766f8f1461110b5780637f3725f3146110ec5780637f4222701461105157806386c2569e1461102a5780638da5cb5b14610ff7578063992a793314610f215780639965073414610ed45780639a0e7d6614610e965780639f06247b14610d71578063a3d6419214610d03578063a5a645c114610cdc578063a83038d014610c4b578063aa79979b14610c02578063b053918714610b9c578063c424616614610b58578063c8db7e7a14610aec578063cb1784df14610976578063cdf456e114610925578063e30c3978146108f0578063e6da0457146108a8578063ea02d53b14610881578063eb27f318146105ac578063f121da0a1461032c578063f2fde38b1461029a5763f3594be014610270575f80fd5b34610296576020600319360112610296576020928291358152600e845220549051908152f35b8280fd5b8334610329576020600319360112610329576102b4612cac565b6102bc6130b2565b73ffffffffffffffffffffffffffffffffffffffff80911690817fffffffffffffffffffffffff000000000000000000000000000000000000000060015416176001558254167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e227008380a380f35b80fd5b509034610296576020806003193601126105a857823568929eee149b4bd21268933085541461059d57308555610361826131ac565b83517f16b7a011000000000000000000000000000000000000000000000000000000008152338183019081526020810184905273ffffffffffffffffffffffffffffffffffffffff9291908590829081906040010381867f0000000000000000000000000966cae7338518961c2d35493d3eb481a75bb86b165afa908115610593578891610566575b501561053f57828752600b8452848720610402612f50565b885284528487209085518083878295549384815201908b52878b20928b5b898282106105275750505061043792500383612e88565b8151908115610500575061044a81612f87565b9261045787519485612e88565b8184527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe061048483612f87565b013687860137885b8281106104be5750505082916104b0916104a9600e9695336131f7565b8333613406565b855252429083205538905580f35b600190868b52600a8852888b206104d3612f50565b8c528852888b20836104e5838861301f565b51165f528852885f20546104f9828861301f565b520161048c565b86517fb06e56db000000000000000000000000000000000000000000000000000000008152fd5b85548916845260019586019588955093019201610420565b84517f33b78c8e000000000000000000000000000000000000000000000000000000008152fd5b6105869150853d871161058c575b61057e8183612e88565b810190613033565b5f6103ea565b503d610574565b86513d8a823e3d90fd5b63ab143c068652601cfd5b8380fd5b50346102965760606003193601126102965767ffffffffffffffff91813583811161087d576105de9036908401612edf565b92602435858111610879576105f69036908301612edf565b956044359081116108755761060e9036908401612edf565b969092600a871161084e5793957f0000000000000000000000000966cae7338518961c2d35493d3eb481a75bb86b73ffffffffffffffffffffffffffffffffffffffff169490895b818110610661578a80f35b61066c81838b6130a2565b353068929eee149b4bd212685414610842573068929eee149b4bd2126855610693816131ac565b88517f16b7a011000000000000000000000000000000000000000000000000000000008152338582019081526020818101849052908290819060400103818c5afa908115610838578d91610819575b50156107f1578a85036107c9576106f981336131f7565b61070285612f87565b61070e8a519182612e88565b85815260059086821b8801602082013682116107ad5789905b8282106107b1575050508c61073b81612f87565b926107488d519485612e88565b81845260208401913690821b8c01116107ad578e918b905b83831b8d01821061079d5750505050829161077f916001959433613406565b8c52600e60205242898d20553868929eee149b4bd212685501610656565b8135815260209182019101610760565b8f80fd5b602080916107be84612cf2565b815201910190610727565b8389517fa24a13a6000000000000000000000000000000000000000000000000000000008152fd5b8389517f33b78c8e000000000000000000000000000000000000000000000000000000008152fd5b610832915060203d60201161058c5761057e8183612e88565b5f6106e2565b8a513d8f823e3d90fd5b8363ab143c068d52601cfd5b85517f1d30d2f8000000000000000000000000000000000000000000000000000000008152fd5b8780fd5b8680fd5b8480fd5b50346102965760206003193601126102965760209282913581526005845220549051908152f35b5050346108ec5760206003193601126108ec578060209273ffffffffffffffffffffffffffffffffffffffff6108dc612cac565b1681526009845220549051908152f35b5080fd5b5050346108ec57816003193601126108ec5760209073ffffffffffffffffffffffffffffffffffffffff600154169051908152f35b5050346108ec57816003193601126108ec576020905173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000d3dce716f3ef535c5ff8d041c1a41c3bd89b97ae168152f35b509190346108ec5761098736612ec9565b909362093a80809204828102928184041490151715610ac057508383526020600b81528284208285528152828420938351808684829854938481520190845284842092845b86828210610a94575050506109e392500386612e88565b8451926109ef84612f9f565b95825b858110610a0a57865180610a068a82612d13565b0390f35b8073ffffffffffffffffffffffffffffffffffffffff610a2c6001938561301f565b51168a8652600a87528886208587528752888620815f52875286895f208a51610a5481612e0f565b85825492838352015492839101528a5192610a6e84612e58565b83528883015289820152610a82828b61301f565b52610a8d818a61301f565b50016109f2565b855473ffffffffffffffffffffffffffffffffffffffff1684526001958601958b9550930192016109cc565b8360116024927f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b508290346108ec5760606003193601126108ec576044359173ffffffffffffffffffffffffffffffffffffffff8316809303610b54578391358152600a602052818120602435825260205220905f52602052805f206001815491015482519182526020820152f35b5f80fd5b5050346108ec5760206003193601126108ec578060209273ffffffffffffffffffffffffffffffffffffffff610b8c612cac565b1681526008845220549051908152f35b5034610296576020600319360112610296573591600254831015610329575073ffffffffffffffffffffffffffffffffffffffff60209260025f527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0154169051908152f35b5050346108ec5760206003193601126108ec5760ff8160209373ffffffffffffffffffffffffffffffffffffffff610c38612cac565b1681526010855220541690519015158152f35b50913461032957602060031936011261032957610c66612cac565b90610c6f612f50565b62093a808101809111610cb0576020945081849173ffffffffffffffffffffffffffffffffffffffff9352600c86522091165f528252805f20549051908152f35b6024826011877f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b5034610296576020600319360112610296576020928291358152600d845220549051908152f35b508290346108ec5760206003193601126108ec5762093a809081813504828102928184041490151715610d45576020848085858152600d845220549051908152f35b8260116024927f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b50346102965760206003193601126102965773ffffffffffffffffffffffffffffffffffffffff610da0612cac565b610da86130b2565b16918215610e705782845260106020528084209182549160ff831615610e4a5760ff8360081c16610e245750507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790557fed18e9faa3dccfd8aa45f69c4de40546b2ca9cccc4538a2323531656516db1aa8280a280f35b517f9b4b8d1e000000000000000000000000000000000000000000000000000000008152fd5b517f7c905419000000000000000000000000000000000000000000000000000000008152fd5b517fd92e233d000000000000000000000000000000000000000000000000000000008152fd5b508290346108ec57816003193601126108ec57610eb1612f50565b9062093a808201809211610d45576020848085858152600d845220549051908152f35b50903461029657602060031936011261029657816020917f9b8d46d5ada9050fa0320d285f24811d709bba8d11887134fda797788740d0dc93358092610f186130b2565b5551908152a180f35b50346102965760206003193601126102965773ffffffffffffffffffffffffffffffffffffffff610f50612cac565b610f586130b2565b16918215610e705782845260106020528084209182549160ff831615610e4a5760ff8360081c1615610fd15750507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690557f04a5d3f5d80d22d9345acc80618f4a4e7e663cf9e1aed23b57d975acec002ba78280a280f35b517ffe236944000000000000000000000000000000000000000000000000000000008152fd5b5050346108ec57816003193601126108ec5773ffffffffffffffffffffffffffffffffffffffff60209254169051908152f35b5050346108ec57816003193601126108ec5760209060ff60015460a01c1690519015158152f35b5050346108ec57816003193601126108ec5760207f868eaac1d9e3d60a9df6592a6ac3e67619fd4ff575dc4cc9cba73fbf830cefb79161108f6130b2565b60ff6001547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff74ff0000000000000000000000000000000000000000838360a01c161560a01b169116179182600155519160a01c1615158152a180f35b5050346108ec57816003193601126108ec576020906002549051908152f35b5050346108ec5760206003193601126108ec578060209273ffffffffffffffffffffffffffffffffffffffff61113f612cac565b1681526006845220549051908152f35b5090346102965760606003193601126102965767ffffffffffffffff91803560243584811161138f576111859036908401612edf565b90946044359081116108795761119e9036908501612edf565b919068929eee149b4bd212689630885414611383573088556111bf856131ac565b86517f16b7a011000000000000000000000000000000000000000000000000000000008152338782019081526020818101889052979190889082908190604001038173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000966cae7338518961c2d35493d3eb481a75bb86b165afa908115611379578b9161135c575b50156113355784840361130e575061126085336131f7565b61126983612f87565b9261127688519485612e88565b8084528684019060051b82019136831161130a578790915b8383106112f257505050506112a283612f87565b926112af87519485612e88565b8084528584019060051b8201913683116112ee57905b8282106112df5750505082916104b091600e959433613406565b813581529086019086016112c5565b8980fd5b81906112fd84612cf2565b815201910190879061128e565b8a80fd5b87517fa24a13a6000000000000000000000000000000000000000000000000000000008152fd5b87517f33b78c8e000000000000000000000000000000000000000000000000000000008152fd5b6113739150883d8a1161058c5761057e8183612e88565b5f611248565b89513d8d823e3d90fd5b8563ab143c068a52601cfd5b8580fd5b5090346102965782600319360112610296576001549173ffffffffffffffffffffffffffffffffffffffff9133838516036114255750507fffffffffffffffffffffffff00000000000000000000000000000000000000008092166001555f549133908316175f553391167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a380f35b6024925051907f118cdaa70000000000000000000000000000000000000000000000000000000082523390820152fd5b5090346102965760209160206003193601126105a857803567ffffffffffffffff811161087d576114899036908301612edf565b9290600a841161163a57927f0000000000000000000000000966cae7338518961c2d35493d3eb481a75bb86b73ffffffffffffffffffffffffffffffffffffffff1690865b8181106114d9578780f35b6114e48183886130a2565b359068929eee149b4bd212683081541461162e57308155611504836131ac565b85517f16b7a01100000000000000000000000000000000000000000000000000000000815233888201908152602081018590528a90829081906040010381895afa908115611624578b91611607575b50156115df5761156383336131f7565b843b156112ee578986517fc1f0fb9f00000000000000000000000000000000000000000000000000000000815284898201528181602481838b5af180156115d5576115c1575b509260019352600e895242868b2055389055016114ce565b6115ca90612e74565b6112ee57895f6115a9565b88513d84823e3d90fd5b8686517f33b78c8e000000000000000000000000000000000000000000000000000000008152fd5b61161e91508a3d8c1161058c5761057e8183612e88565b5f611553565b87513d8d823e3d90fd5b8663ab143c068b52601cfd5b50517f1d30d2f8000000000000000000000000000000000000000000000000000000008152fd5b50913461032957816003193601126103295761167b612cac565b9062093a808060243504818102918183041490151715610cb0576020945081849173ffffffffffffffffffffffffffffffffffffffff9352600c86522091165f528252805f20549051908152f35b509034610296576020806003193601126105a857823567ffffffffffffffff811161087d576116fb9036908501612edf565b929091600a93600a811161198c57929373ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000966cae7338518961c2d35493d3eb481a75bb86b811694909190885b818110611754578980f35b61175f81838a6130a2565b3568929eee149b4bd2126890308254146119805730825561177f816131ac565b87517f16b7a01100000000000000000000000000000000000000000000000000000000815233818d019081526020810183905288908290819060400103818d5afa908115611976578d91611959575b501561193157808c52600b8752878c206117e6612f50565b8d528752878c208c8951809283918b825491828152019184528b842093905b8c8183106119155750505061181c92500382612e88565b805180156118ed5790816118308f93612f87565b9261183d8c519485612e88565b8184527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe061186a83612f87565b01368c8601378b815b8a8d8585106118aa575050505050508291611896916104a96001979695336131f7565b8c52600e875242888d205538905501611749565b888352528181206001939291908e6118c0612f50565b835252208b6118cf838761301f565b51165f528c528c5f20546118e3828761301f565b52018f8c90611873565b8c8a517fb06e56db000000000000000000000000000000000000000000000000000000008152fd5b60019294508291938d8754168152019401920184929391611805565b8a88517f33b78c8e000000000000000000000000000000000000000000000000000000008152fd5b6119709150883d8a1161058c5761057e8183612e88565b5f6117ce565b89513d8f823e3d90fd5b8a63ab143c068d52601cfd5b8583517f1d30d2f8000000000000000000000000000000000000000000000000000000008152fd5b83346103295780600319360112610329576119cd6130b2565b5f73ffffffffffffffffffffffffffffffffffffffff7fffffffffffffffffffffffff0000000000000000000000000000000000000000806001541660015582549081168355167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b50903461029657606060031936011261029657611a56612cac565b90602480359267ffffffffffffffff958685116103295736602386011215610329578486013595878711611e78576020977fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe097865197611abd8b8b601f850116018a612e88565b8189523687838301011161087d57818592888d9301838c01378901015273ffffffffffffffffffffffffffffffffffffffff60443594611afb6130b2565b16948515611e505785845260108a52868420805460ff8116611e2857670de0b6b3a76400008711611e00577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790556002549768010000000000000000891015611dd55760019160018a01806002558a1015611dab5760025f52897f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace01887fffffffffffffffffffffffff000000000000000000000000000000000000000082541617905587865260068c52898987205560078c52888620948251948511611d8157505090839291611bf48c97969554612dbe565b601f8111611d48575b508691601f8411600114611ca457507f0fab41fe8607aed4f537e3a13c17a440a2ba7eb1af6dca1c1776eae2d735aee99798999a509082918592611c99575b50507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8260011b9260031b1c19161790555b84815260088352818682205585611c83612f50565b918681526009855220558451908152a251908152f35b015190505f80611c3c565b929a8b168486528786209386905b828210611d3157505091600193918c7f0fab41fe8607aed4f537e3a13c17a440a2ba7eb1af6dca1c1776eae2d735aee99a9b9c9d9410611cfa575b505050811b019055611c6e565b01517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88460031b161c191690555f8080611ced565b838501518655948501949389019390890190611cb2565b611d7190858752888720601f860160051c8101918a8710611d77575b601f0160051c019061308c565b5f611bfd565b9091508190611d64565b604187917f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b6032857f4e487b71000000000000000000000000000000000000000000000000000000005f52525ffd5b506041837f4e487b71000000000000000000000000000000000000000000000000000000005f52525ffd5b8489517fcadd5a68000000000000000000000000000000000000000000000000000000008152fd5b8489517fe3ce9c7f000000000000000000000000000000000000000000000000000000008152fd5b8287517fd92e233d000000000000000000000000000000000000000000000000000000008152fd5b8192507f4e487b71000000000000000000000000000000000000000000000000000000006041925252fd5b503461029657826003193601126102965760209250549051908152f35b5050346108ec5760206003193601126108ec57602090611ee6611ee1612cac565b613058565b9051908152f35b503461029657602060031936011261029657803590611f0a6130b2565b62093a80821015611f4f5750907f40ed3b0f84511a79fc28fe2eb99ba62a4ebf0264822e23a5d2f4ffdf0261164b91600354908060035582519182526020820152a180f35b82517f613970e0000000000000000000000000000000000000000000000000000000008152fd5b5050346108ec57816003193601126108ec576020905162093a808152f35b509134610329578160031936011261032957611fae612cac565b62093a80918260243504838102938185041490151715611fd557602084611ee68585613102565b806011867f4e487b71000000000000000000000000000000000000000000000000000000006024945252fd5b5050346108ec5760ff8160209361201736612ec9565b908252600f8652828220908252855220541690519015158152f35b5091346103295760606003193601126103295761204d612ccf565b9062093a808060443504818102918183041490151715610cb05773ffffffffffffffffffffffffffffffffffffffff918491602096358252600a875282822090825286522091165f5282526001815f2001549051908152f35b50903461029657602060031936011261029657813568929eee149b4bd2126892308454146121fb5730845581156121d45760ff60015460a01c166121ad57825190826060523084523360601b602c526f23b872dd000000000000000000000000600c526020866064601c827f000000000000000000000000d3dce716f3ef535c5ff8d041c1a41c3bd89b97ae5af13d1560018851141716156121a25750846060528252612159612154612f50565b612f6a565b918285526005602052808520612170838254612f7a565b9055519081527f7bb731c94eef65c5886be4b79a2654869ac33cd509e9d806fa6dce7873ba4a5660203392a338905580f35b637939f4248652601cfd5b82517f02dd0225000000000000000000000000000000000000000000000000000000008152fd5b82517fe5a74490000000000000000000000000000000000000000000000000000000008152fd5b63ab143c068552601cfd5b509034610296576020928360031936011261032957612223612cac565b68929eee149b4bd21268913083541461242e573083558094612243612f50565b9273ffffffffffffffffffffffffffffffffffffffff81169384845260098952868420545b898282111561235c57505062093a8081018091116123305784845260098952868420558661229e575b5050505038905551908152f35b601452856034526fa9059cbb0000000000000000000000008252868260446010827f000000000000000000000000d3dce716f3ef535c5ff8d041c1a41c3bd89b97ae5af13d15600184511417161561232557506034527f106f923f993c2149d49b4255ff723acafa1f2d94393f561d3eda32ae348f7241858451868152a25f808080612291565b6390b8ec188252601cfd5b6024846011857f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b98670de0b6b3a764000061239f878b859d6123a69661237a8a613058565b612384828c613102565b938185116123e1575b50506005929352528b89205490612f10565b0490612f7a565b9762093a80810180911115612268576024856011867f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b612423906123f18360059761304b565b92968481528961240988958689528484205490612f10565b0493612416612154612f50565b8252865220918254612f7a565b90558b93928f61238d565b63ab143c06859152601cfd5b5050346108ec57602091826003193601126103295773ffffffffffffffffffffffffffffffffffffffff61246c612cac565b168152600783528181209083835180938390805461248981612dbe565b80855291600191808316908115612557575060011461251a575b5050506124b69250959392950382612e88565b82519382859384528251928382860152825b84811061250457505050828201840152601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168101030190f35b81810183015188820188015287955082016124c8565b86528486209492508591905b81831061253f5750889450508201016124b65f806124a3565b85548884018501529485019487945091830191612526565b9150506124b69593507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0091501682840152151560051b82010186925f806124a3565b509034610b54576020600319360112610b5457813568929eee149b4bd21268923084541461272c573084556125cd826131ac565b82517f16b7a0110000000000000000000000000000000000000000000000000000000081523381830190815260208181018590527f0000000000000000000000000966cae7338518961c2d35493d3eb481a75bb86b73ffffffffffffffffffffffffffffffffffffffff16939291829081906040010381865afa908115612722575f91612703575b50156126dc5761266583336131f7565b813b15610b54578260245f9283875195869485937fc1f0fb9f0000000000000000000000000000000000000000000000000000000085528401525af180156126d2576126bf575b508352600e602052429083205538905580f35b6126ca919450612e74565b5f925f6126ac565b83513d5f823e3d90fd5b83517f33b78c8e000000000000000000000000000000000000000000000000000000008152fd5b61271c915060203d60201161058c5761057e8183612e88565b5f612655565b85513d5f823e3d90fd5b63ab143c065f52601cfd5b509034610b545780600319360112610b5457602091612754612ccf565b90355f52600c835273ffffffffffffffffffffffffffffffffffffffff825f2091165f528252805f20549051908152f35b509034610b54576020600319360112610b54576127a0612cac565b6127a8612f50565b9262093a8084018094116127c35750602092611ee691613102565b6011907f4e487b71000000000000000000000000000000000000000000000000000000005f525260245ffd5b8234610b54576020600319360112610b545773ffffffffffffffffffffffffffffffffffffffff61281e612cac565b165f526010602052805f205460ff8251918181161515835260081c1615156020820152f35b8234610b54575f600319360112610b54576020906003549051908152f35b509034610b54576060600319360112610b545760443591355f52600b602052805f206024355f52602052805f20918254811015610b54576128b973ffffffffffffffffffffffffffffffffffffffff91602094612d7c565b92905490519260031b1c168152f35b509034610b545780600319360112610b54576128e2612cac565b9073ffffffffffffffffffffffffffffffffffffffff602435926129046130b2565b169283156129ea57835f526010602052815f205460ff8116156129c25760081c60ff161561299b57670de0b6b3a7640000831161297457507fc039168563328bf91df25baf90beebb542996a663fa0b7865526a2106b0567b391602091845f526008835281815f205551908152a2005b90517fcadd5a68000000000000000000000000000000000000000000000000000000008152fd5b90517f6cd7ad06000000000000000000000000000000000000000000000000000000008152fd5b5090517f7c905419000000000000000000000000000000000000000000000000000000008152fd5b90517fd92e233d000000000000000000000000000000000000000000000000000000008152fd5b8234610b54575f600319360112610b54576020905173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000966cae7338518961c2d35493d3eb481a75bb86b168152f35b509034610b545760209081600319360112610b5457823592612a81612f50565b9062093a8082018092116127c35750835f52600b8352815f20815f528352815f209282518085838297549384815201905f52835f20925f5b85828210612b7d57505050612ad092500385612e88565b835191612adc83612f9f565b945f5b848110612af357855180610a068982612d13565b8073ffffffffffffffffffffffffffffffffffffffff612b156001938561301f565b5116895f52600a8652875f20855f528652875f20815f52865285885f208951612b3d81612e0f565b8582549283835201549283910152895192612b5784612e58565b83528783015288820152612b6b828a61301f565b52612b76818961301f565b5001612adf565b855473ffffffffffffffffffffffffffffffffffffffff1684526001958601958a955093019201612ab9565b509034610b545780600319360112610b5457612bc3612ccf565b82355f52600a602052815f20612bd7612f50565b62093a808101809111612c1857602094505f52835273ffffffffffffffffffffffffffffffffffffffff825f2091165f5282526001815f2001549051908152f35b6011857f4e487b71000000000000000000000000000000000000000000000000000000005f525260245ffd5b8234610b54576020600319360112610b545760209073ffffffffffffffffffffffffffffffffffffffff612c76612cac565b165f526010825260ff815f205460081c1690519015158152f35b8234610b54575f600319360112610b5457602090611ee6612f50565b6004359073ffffffffffffffffffffffffffffffffffffffff82168203610b5457565b6024359073ffffffffffffffffffffffffffffffffffffffff82168203610b5457565b359073ffffffffffffffffffffffffffffffffffffffff82168203610b5457565b60208082019080835283518092528060408094019401925f905b838210612d3c57505050505090565b8451805173ffffffffffffffffffffffffffffffffffffffff16875280840151878501528101518682015260609095019493820193600190910190612d2d565b8054821015612d91575f5260205f2001905f90565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b90600182811c92168015612e05575b6020831014612dd857565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b91607f1691612dcd565b6040810190811067ffffffffffffffff821117612e2b57604052565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6060810190811067ffffffffffffffff821117612e2b57604052565b67ffffffffffffffff8111612e2b57604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117612e2b57604052565b6003196040910112610b54576004359060243590565b9181601f84011215610b545782359167ffffffffffffffff8311610b54576020808501948460051b010111610b5457565b81810292918115918404141715612f2357565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b62093a80804204818102918183041490151715612f235790565b90621275008201809211612f2357565b91908201809211612f2357565b67ffffffffffffffff8111612e2b5760051b60200190565b90612fa982612f87565b604090612fb96040519182612e88565b8381527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0612fe78295612f87565b01915f5b838110612ff85750505050565b602090825161300681612e58565b5f8152825f818301525f85830152828601015201612feb565b8051821015612d915760209160051b010190565b90816020910312610b5457518015158103610b545790565b91908203918211612f2357565b73ffffffffffffffffffffffffffffffffffffffff165f52600860205260405f205480155f14613089575060045490565b90565b818110613097575050565b5f815560010161308c565b9190811015612d915760051b0190565b73ffffffffffffffffffffffffffffffffffffffff5f541633036130d257565b60246040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152fd5b73ffffffffffffffffffffffffffffffffffffffff1690815f52601060205260405f206040519061313282612e0f565b549060ff82161560ff81159384845260081c16159160208315910152916131a4575b5061319e575f52600d60205260405f205490811561319e57600c60205260405f20905f5260205260405f2054670de0b6b3a764000090818102918183041490151715612f23570490565b50505f90565b90505f613154565b5f52600e6020526131c460405f205460035490612f7a565b4211156131cd57565b60046040517fb7e57455000000000000000000000000000000000000000000000000000000008152fd5b90613200612f50565b9062093a808201809211612f2357805f52602090600f8252604093845f20845f52835260ff855f205416613267575b505f52600f8152825f20915f52525f207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008154169055565b815f52600b8352845f20845f52835282855f20918651809384918482549182815201915f52845f20905f5b8181106133d757505050906132a8910384612e88565b8251905f935f5b88878b8684106133155750955050505050505f52600b8352845f20845f528352845f2080545f8255806132fc575b5050835f52600d83526132f4855f2091825461304b565b90555f61322f565b61330e915f52845f209081019061308c565b5f806132dd565b5f6001959697989973ffffffffffffffffffffffffffffffffffffffff928361333e888b61301f565b511695858452600a9c8d81528285208286528152828520888652815261338a8a9485858820015490848852600c84528588208b8952845285882061338383825461304b565b9055612f7a565b8786529d8152828520918552528083208684528e528220828155015586167f8e9be633930d447edb768a7d9ee161eb92b33522fcca02370272cc378b720ddf5f80a40190869392916132af565b825473ffffffffffffffffffffffffffffffffffffffff16845289968895509093019260019283019201613292565b919290613411612f50565b915f9362093a8084018411612f23578551604051927fe7e242d400000000000000000000000000000000000000000000000000000000845284600485015260208460248173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000966cae7338518961c2d35493d3eb481a75bb86b165afa9384156135fc575f9461391b575b5083156138f1575f97889485949392915b83861061363157505050505050612710811161360757613529575b60409362093a8083018452600d6020526134e6858520918254612f7a565b90558252600f60205262093a80838320910182526020522060017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00825416179055565b73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000966cae7338518961c2d35493d3eb481a75bb86b163b15610b5457604051937ffd4a77f10000000000000000000000000000000000000000000000000000000085528160048601525f856024818373ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000966cae7338518961c2d35493d3eb481a75bb86b165af19485156135fc576040956135e9575b5093506134c8565b6135f4919450612e74565b5f925f6135e1565b6040513d5f823e3d90fd5b60046040517fb658683c000000000000000000000000000000000000000000000000000000008152fd5b9091929394999573ffffffffffffffffffffffffffffffffffffffff6136578c8461301f565b51169a8b156138c7578b5f52601060205260405f206040519061367982612e0f565b549060ff6020818416159283158152019260081c161515825261389d575115613873576136d56136cf926127106136ba6136b3858a61301f565b5188612f10565b049384916136c8858a61301f565b5190612f7a565b99612f7a565b9b895f52600a60205260405f2062093a808c015f5260205260405f20815f526020528960405f205415613805575b60019362093a808d015f52600c60205260405f20835f5260205260405f2061372c828254612f7a565b9055613738848961301f565b51825f52600a6020528d62093a8060405f2091015f5260205260405f20845f5260205261376a60405f20918254612f7a565b9055815f52600a6020528c62093a8060405f2091015f5260205260405f20835f526020528460405f200161379f828254612f7a565b90556137ab848961301f565b519060405191428352602083015260408201527f2e6c94de62679b33b86aa0615e0826812095a06925ae30e3fa2234858f0ca986606073ffffffffffffffffffffffffffffffffffffffff8c1692a40194939291906134ad565b5f52600b60205260405f2062093a808c015f5260205260405f209283549068010000000000000000821015612e2b5761384682600196878f95018155612d7c565b81549060031b9073ffffffffffffffffffffffffffffffffffffffff86831b921b19161790559350613703565b60046040517f6cd7ad06000000000000000000000000000000000000000000000000000000008152fd5b60046040517f7c905419000000000000000000000000000000000000000000000000000000008152fd5b60046040517fd92e233d000000000000000000000000000000000000000000000000000000008152fd5b60046040517f7c176b74000000000000000000000000000000000000000000000000000000008152fd5b9093506020813d602011613947575b8161393760209383612e88565b81010312610b545751925f61349c565b3d915061392a56fea164736f6c6343000818000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a48260f762fe533a6e32cb1cac8f411d19bfb9870000000000000000000000000966cae7338518961c2d35493d3eb481a75bb86b000000000000000000000000d3dce716f3ef535c5ff8d041c1a41c3bd89b97ae
-----Decoded View---------------
Arg [0] : _owner (address): 0xa48260f762fE533A6E32CB1caC8F411D19BfB987
Arg [1] : _ve (address): 0x0966CAE7338518961c2d35493D3EB481A75bb86B
Arg [2] : _baseAsset (address): 0xd3DCe716f3eF535C5Ff8d041c1A41C3bd89b97aE
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000a48260f762fe533a6e32cb1cac8f411d19bfb987
Arg [1] : 0000000000000000000000000966cae7338518961c2d35493d3eb481a75bb86b
Arg [2] : 000000000000000000000000d3dce716f3ef535c5ff8d041c1a41c3bd89b97ae
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
SONIC | 100.00% | $0.998549 | 65,624.0105 | $65,528.79 |
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.