Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 951 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Buy | 13046474 | 1197 days ago | IN | 0 ETH | 0.00506516 | ||||
Buy | 13000732 | 1204 days ago | IN | 0 ETH | 0.00816128 | ||||
Buy | 12999046 | 1204 days ago | IN | 0 ETH | 0.00750908 | ||||
Buy | 12998527 | 1204 days ago | IN | 0 ETH | 0.01089896 | ||||
Buy | 12997912 | 1204 days ago | IN | 0 ETH | 0.00874551 | ||||
Buy | 12997610 | 1204 days ago | IN | 0 ETH | 0.00752441 | ||||
Buy | 12996612 | 1205 days ago | IN | 0 ETH | 0.00682394 | ||||
Buy | 12996607 | 1205 days ago | IN | 0 ETH | 0.00791403 | ||||
Buy | 12992263 | 1205 days ago | IN | 0 ETH | 0.00923462 | ||||
Buy | 12990214 | 1206 days ago | IN | 0 ETH | 0.00832705 | ||||
Buy | 12988574 | 1206 days ago | IN | 0 ETH | 0.00597379 | ||||
Buy | 12987534 | 1206 days ago | IN | 0 ETH | 0.00477811 | ||||
Buy | 12987277 | 1206 days ago | IN | 0 ETH | 0.00584331 | ||||
Buy | 12987191 | 1206 days ago | IN | 0 ETH | 0.0060619 | ||||
Buy | 12986923 | 1206 days ago | IN | 0 ETH | 0.00563988 | ||||
Buy | 12986735 | 1206 days ago | IN | 0 ETH | 0.00755716 | ||||
Buy | 12986658 | 1206 days ago | IN | 0 ETH | 0.00863361 | ||||
Buy | 12986579 | 1206 days ago | IN | 0 ETH | 0.00753976 | ||||
Buy | 12986526 | 1206 days ago | IN | 0 ETH | 0.00885865 | ||||
Buy | 12986474 | 1206 days ago | IN | 0 ETH | 0.00583882 | ||||
Buy | 12986439 | 1206 days ago | IN | 0 ETH | 0.00791624 | ||||
Buy | 12986433 | 1206 days ago | IN | 0 ETH | 0.00701119 | ||||
Buy | 12986385 | 1206 days ago | IN | 0 ETH | 0.00126834 | ||||
Buy | 12986380 | 1206 days ago | IN | 0 ETH | 0.01059196 | ||||
Buy | 12986340 | 1206 days ago | IN | 0 ETH | 0.00793096 |
Latest 25 internal transactions (View All)
Advanced mode:
Loading...
Loading
Contract Name:
Factory
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // Latest stable version of solidity pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import "./Collection.sol"; import "./MoneyHandler.sol"; import "./FarmV2.sol"; enum CurrencyType {weth, ern, stone} contract Factory is AccessControl { bytes32 public constant COLLECTION_ROLE = bytes32(keccak256("COLLECTION_ROLE")); FarmV2 public Ifarm; MoneyHandler public moneyHand; Collection[] public collections; struct Card { CurrencyType cType; uint256 amount; uint256 total; uint256 startTime; uint256 endTime; uint256 percent; string uri; } mapping(address => Card) public cards; constructor(address admin) public { _setupRole(DEFAULT_ADMIN_ROLE, admin); } function createCollection( string memory uri, uint256 _total, uint256 _startTime, uint256 _endTime, uint256 _amount, uint256 _percent, address _admin, CurrencyType cType, address _farmAddress, address _moneyHandler ) external onlyRole(DEFAULT_ADMIN_ROLE) returns (address) { Collection collection = new Collection(uri, _total, _startTime, _endTime, _amount, _percent, _admin, address(this)); collections.push(collection); cards[address(collection)] = Card( cType, _amount, _total, _startTime, _endTime, _percent, uri ); giveRole(_farmAddress, address(collection)); giveRoleMnyHnd(_moneyHandler, address(collection)); return address(collection); } function collectionLength() external view returns (uint256) { return collections.length; } function giveRole(address _farmAddress, address _collec) public onlyRole(DEFAULT_ADMIN_ROLE){ Ifarm = FarmV2(_farmAddress); Ifarm.grantRole(COLLECTION_ROLE, _collec); } function giveRoleMnyHnd(address _moneyAddress, address _collec) public onlyRole(DEFAULT_ADMIN_ROLE){ moneyHand = MoneyHandler(_moneyAddress); moneyHand.grantRole(COLLECTION_ROLE, _collec); } function buy( address collection, uint256 id, address buyer ) external returns (bool) { require(buyer == msg.sender); Collection _collection = Collection(collection); _collection.buy(buyer, id); return true; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/AccessControl.sol"; contract Authorizeable is AccessControl { bytes32 public constant MODERATOR_ROLE = keccak256("MODERATOR_ROLE"); constructor (){ _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setupRole(MODERATOR_ROLE, msg.sender); } }
// SPDX-License-Identifier: MIT // Latest stable version of solidity pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; import "./Farm.sol"; import "./MoneyHandler.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; contract Collection is ERC1155, AccessControl { event Minted( address indexed operator, address indexed to, uint256 indexed id, uint256 amount ); event PaymentShared(address account, uint256 amount); event PaymentTreasure(address account, uint256 amount); using EnumerableSet for EnumerableSet.UintSet; EnumerableSet.UintSet soldCards; bytes32 public constant MINTER_ROLE = bytes32(keccak256("MINTER_ROLE")); IERC20 private token; //IMoney private money; Farm private stone; MoneyHandler public moneyHand; uint256 public amount; uint256 public percent; uint256 public available; uint256 public sold; uint256 public total; address public facAddress; address public ernTreasure; uint256 public startTime; uint256 public endTime; constructor( string memory uri, uint256 _total, uint256 _startTime, uint256 _endTime, uint256 _amount, uint256 _percent, address admin, address _facAddress ) ERC1155(uri) { amount = _amount; available = _total; total = _total; startTime = _startTime; endTime = _endTime; percent = _percent; facAddress = _facAddress; _setupRole(DEFAULT_ADMIN_ROLE, admin); } modifier onlyFactory { require(msg.sender == facAddress,"This function can only be called by factory contract"); _; } function addExternalAddresses( address _token, address _stone, // 0x0000000000000000000 address _treasure, address _moneyHandler ) external onlyRole(DEFAULT_ADMIN_ROLE) { token = IERC20(_token); stone = Farm(_stone); // money = IMoney(_money); ernTreasure = _treasure; moneyHand = MoneyHandler(_moneyHandler); } function recoverToken(address _token) external onlyRole(DEFAULT_ADMIN_ROLE) { uint amount = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(msg.sender, amount); } function buy(address buyer, uint256 _id) external onlyFactory() { require(!(soldCards.contains(_id)), "This card already sold"); require(available > 0, "Sold Out"); require( startTime <= block.timestamp && endTime > block.timestamp, "Sale did not start yet" ); address(stone) == address(0) ? _withToken(buyer) : _withStones(buyer); _mint(buyer, _id, 1, ""); available -= 1; sold += 1; soldCards.add(_id); emit Minted(address(this), buyer, _id, amount); } function mint(address to, uint256 _id) external onlyRole(DEFAULT_ADMIN_ROLE) { require(!(soldCards.contains(_id)), "This card already sold"); require(available > 0, "Sold Out"); _mint(to, _id, 1, ""); available -= 1; sold += 1; soldCards.add(_id); emit Minted(address(this), to, _id, amount); } function mintBatch(address to, uint256[] memory ids) external onlyRole(DEFAULT_ADMIN_ROLE) { uint256[] storage amount_; require(available > ids.length, "Sold Out"); for(uint256 i=0; i < ids.length; i++){ require(!(soldCards.contains(ids[i])), "This card already sold"); amount_.push(1); } _mintBatch(to, ids, amount_, ""); available -= ids.length; sold += ids.length; for(uint256 i=0; i < ids.length; i++){ soldCards.add(ids[i]); } // emit Minted(address(this), to, _id, amount); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC1155, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } function _withStones(address buyer) private { uint256 stones = stone.rewardedStones(buyer); require(stones >= amount, "You do not have enough points !"); require(stone.payment(buyer, amount), "Payment was unsuccessful"); } function calcPerc(uint256 _amount, uint256 _percent) private pure returns(uint256){ uint256 sellmul= SafeMath.mul(_amount,_percent); uint256 sellAmount= SafeMath.div(sellmul,10**18); return sellAmount; } function setStarTime(uint256 _starTime) external onlyRole(DEFAULT_ADMIN_ROLE){ startTime = _starTime; } function setEndTime(uint256 _endTime) external onlyRole(DEFAULT_ADMIN_ROLE){ endTime = _endTime; } function _withToken(address buyer) private{ require( token.balanceOf(buyer) >= amount, "Insufficient funds: Cannot buy this NFT" ); uint256 treasAmount = calcPerc(amount, percent); uint256 shareAmount = SafeMath.sub(amount,treasAmount); token.transferFrom(buyer, address(this), amount); token.transfer(ernTreasure, treasAmount); token.transfer(address(moneyHand), shareAmount); moneyHand.updateCollecMny(address(this),shareAmount); emit PaymentTreasure(address(this), treasAmount); emit PaymentShared(address(this), shareAmount); } }
pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./Authorizeable.sol"; contract Farm is Ownable{ using SafeERC20 for ERC20; using SafeMath for uint256; uint256 public limit = 10000 ether; uint256 public total; struct Staker { uint256 amount; uint256 stones; uint256 timestamp; } mapping(address => Staker) public stakers; ERC20 private _token; // constructor() {} function setTokenAddress(ERC20 token_) external onlyOwner { _token = token_; } function giveAway(address _address, uint256 stones) external onlyOwner { stakers[_address].stones = stones; } function farmed(address sender) public view returns (uint256) { // Returns how many ERN this account has farmed return (stakers[sender].amount); } function farmedStart(address sender) public view returns (uint) { // Returns when this account started farming return (stakers[sender].timestamp); } function payment(address buyer, uint256 amount) external returns (bool) { consolidate(buyer); require(rewardedStones(buyer) >= amount, "Insufficient stones!"); stakers[buyer].stones = stakers[buyer].stones.sub(amount); return true; } function rewardedStones(address staker) public view returns (uint256) { if (stakers[staker].amount < 1000) { return stakers[staker].stones; } // solium-disable-next-line security/no-block-members uint256 _seconds = block.timestamp.sub(stakers[staker].timestamp).div(1 seconds); return stakers[staker].stones.add(stakers[staker].amount.div(1e18).mul(_seconds).mul(11574074074074000)); } function consolidate(address staker) internal { uint256 stones = rewardedStones(staker); stakers[staker].stones = stones; } function deposit(uint256 amount) public { address sender = msg.sender; require(stakers[sender].amount.add(amount) <= limit, "Limit 10000 ERN"); _token.safeTransferFrom(sender, address(this), amount); consolidate(sender); total = total.add(amount); stakers[sender].amount = stakers[sender].amount.add(amount); // solium-disable-next-line security/no-block-members stakers[sender].timestamp = block.timestamp; } function withdraw(uint256 amount) public { address sender = msg.sender; require(stakers[sender].amount >= amount, "Insufficient amount!"); require(_token.transfer(address(sender), amount), "Transfer error!"); consolidate(sender); stakers[sender].amount = stakers[sender].amount.sub(amount); total = total.sub(amount); // solium-disable-next-line security/no-block-members stakers[sender].timestamp = block.timestamp; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "./Authorizeable.sol"; import "./Farm.sol"; contract FarmV2 is AccessControl{ using SafeERC20 for ERC20; using SafeMath for uint256; uint256 public limit = 10000 ether; uint256 public total; Farm private _farmv1; bytes32 public constant COLLECTION_ROLE = bytes32(keccak256("COLLECTION_ROLE")); struct Staker { uint256 amount; uint256 stones; uint256 timestamp; bool oldStaker; } mapping(address => Staker) public stakers; ERC20 private _token; constructor() public { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); } function setTokenAddress(ERC20 token_, address farmv1_) external onlyRole(DEFAULT_ADMIN_ROLE) { _token = token_; _farmv1 = Farm(farmv1_); } function giveAway(address _address, uint256 stones) external onlyRole(DEFAULT_ADMIN_ROLE) { stakers[_address].stones = stones; } function farmed(address sender) public view returns (uint256) { // Returns how many ERN this account has farmed return (stakers[sender].amount); } function farmedStart(address sender) public view returns (uint) { // Returns when this account started farming return (stakers[sender].timestamp); } function payment(address buyer, uint256 amount) public onlyRole(COLLECTION_ROLE) returns (bool) { consolidate(buyer); require(rewardedStones(buyer) >= amount, "Insufficient stones!"); stakers[buyer].stones = stakers[buyer].stones.sub(amount); stakers[buyer].timestamp = block.timestamp; return true; } function rewardedStones(address staker) public view returns (uint256) { if (stakers[staker].amount < 1000) { return stakers[staker].stones; } // solium-disable-next-line security/no-block-members uint256 _seconds = block.timestamp.sub(stakers[staker].timestamp).div(1 seconds); return stakers[staker].stones.add(stakers[staker].amount.div(1e18).mul(_seconds).mul(11574074074074000)); } function consolidate(address staker) internal { uint256 stones = rewardedStones(staker); stakers[staker].stones = stones; } function deposit(uint256 amount ) public { address account = msg.sender; uint256 oldAmount = _farmv1.rewardedStones(account); require(_token.balanceOf(account) > 0, "your balance is insufficient"); require(stakers[account].amount.add(amount) <= limit, "Limit 10000 ERN"); _token.safeTransferFrom(account, address(this), amount); consolidate(account); total = total.add(amount); stakers[account].amount = stakers[account].amount.add(amount); if(stakers[account].oldStaker != true && oldAmount > 0) { stakers[account].stones = stakers[account].stones.add(oldAmount); stakers[account].oldStaker = true; } // solium-disable-next-line security/no-block-members stakers[account].timestamp = block.timestamp; } function withdraw(uint256 amount) public { address account = msg.sender; //require(account == msg.sender,"you are not authorized on this account!"); require(stakers[account].amount >= amount, "Insufficient amount!"); require(_token.transfer(account, amount), "Transfer error!"); consolidate(account); stakers[account].amount = stakers[account].amount.sub(amount); total = total.sub(amount); // solium-disable-next-line security/no-block-members stakers[account].timestamp = block.timestamp; } function sell(uint256 stones, address from, address to) public { require(hasRole(COLLECTION_ROLE, msg.sender), "you are not authorized on this account!"); consolidate(from); require(rewardedStones(from) >= stones, "Insufficient stones!"); stakers[from].stones = stakers[from].stones.sub(stones); stakers[from].timestamp = block.timestamp; stakers[to].stones = stakers[to].stones.add(stones); stakers[to].timestamp = block.timestamp; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <=0.8.0; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. */ contract MoneyHandler is Context, AccessControl{ using SafeMath for uint256; event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event PaymentReceived(address from, uint256 amount); IERC20 private token; // uint256 public _totalShares; uint256 public _totalReleased; // uint256 public amu = 1; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; mapping(address => uint256) public collectionMoney; address[] private _payees; uint256 private _totalCllcAmnt; bytes32 public constant COLLECTION_ROLE = bytes32(keccak256("COLLECTION_ROLE")); constructor() public { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ /** * @dev Getter for the total shares held by payees. */ // function totalShares() public view returns (uint256) { // return _totalShares; // } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } function collecMny(address collection) public view returns (uint256) { return collectionMoney[collection]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } function updateCollecMny(address collection, uint256 amount) public onlyRole(COLLECTION_ROLE) { collectionMoney[collection] = collectionMoney[collection].add(amount); } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address account, address collection, address _token) private { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); _released[account] = _released[account].add(_shares[account]); _totalReleased = _totalReleased.add(_shares[account]); IERC20 token = IERC20(_token); token.transfer(account, _shares[account]); collectionMoney[collection] = collectionMoney[collection].sub(_shares[account]); emit PaymentReleased(account, _shares[account]); } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * // shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 sharePerc_, address collection, address _token) private { require(account != address(0), "PaymentSplitter: account is the zero address"); uint256 shares_ = getAmountPer(_totalCllcAmnt,sharePerc_); _shares[account] = shares_; _payees.push(account); release(account, collection, _token); // emit PayeeAdded(account, shares_); } //Get amount per person function getAmountPer(uint256 totalAmount,uint256 sharePerc) private pure returns(uint256){ uint256 sharesmul_ = SafeMath.mul(totalAmount,sharePerc); uint256 shares_ = SafeMath.div(sharesmul_,10**18); return shares_; } function recoverToken(address _token) external onlyRole(DEFAULT_ADMIN_ROLE) { uint amount = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(msg.sender, amount); } function redeem (address collection, address _token, address[] memory payees, uint256 [] memory sharePerc_) public onlyRole(DEFAULT_ADMIN_ROLE) { require(payees.length > 0, "redeem: no payees"); require(payees.length == sharePerc_.length, "redeem: no payees"); _totalCllcAmnt = collectionMoney[collection]; require(_totalCllcAmnt > 0,"redeem: insufficient funds"); uint256 totalShareAmount; for (uint256 i = 0; i < sharePerc_.length; i++) { totalShareAmount = totalShareAmount.add(getAmountPer(_totalCllcAmnt, sharePerc_[i])); } require(_totalCllcAmnt >= totalShareAmount, "redeem: the total amount in the contract must be equal to or greater than the amount to be withdraw"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], sharePerc_[i], collection, _token); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { function hasRole(bytes32 role, address account) external view returns (bool); function getRoleAdmin(bytes32 role) external view returns (bytes32); function grantRole(bytes32 role, address account) external; function revokeRole(bytes32 role, address account) external; function renounceRole(bytes32 role, address account) external; } /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping (address => bool) members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/ */ function _checkRole(bytes32 role, address account) internal view { if(!hasRole(role, account)) { revert(string(abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ))); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, getRoleAdmin(role), adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping (uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping (address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor (string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch( address[] memory accounts, uint256[] memory ids ) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(_msgSender() != operator, "ERC1155: setting approval status for self"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require(to != address(0), "ERC1155: transfer to the zero address"); require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); _balances[id][from] = fromBalance - amount; _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); _balances[id][from] = fromBalance - amount; _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`. * * Emits a {TransferSingle} event. * * Requirements: * * - `account` cannot be the zero address. * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint(address account, uint256 id, uint256 amount, bytes memory data) internal virtual { require(account != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][account] += amount; emit TransferSingle(operator, address(0), account, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `account` * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens of token type `id`. */ function _burn(address account, uint256 id, uint256 amount) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); _balances[id][account] = accountBalance - amount; emit TransferSingle(operator, account, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch(address account, uint256[] memory ids, uint256[] memory amounts) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), ids, amounts, ""); for (uint i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); _balances[id][account] = accountBalance - amount; } emit TransferBatch(operator, account, address(0), ids, amounts); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { } function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver(to).onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (bytes4 response) { if (response != IERC1155Receiver(to).onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch(address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom(address from, address to, uint256 id, uint256 amount, bytes calldata data) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom(address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** @dev Handles the receipt of a single ERC1155 token type. This function is called at the end of a `safeTransferFrom` after the balance has been updated. To accept the transfer, this must return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61, or its own function selector). @param operator The address which initiated the transfer (i.e. msg.sender) @param from The address which previously owned the token @param id The ID of the token being transferred @param value The amount of tokens being transferred @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns(bytes4); /** @dev Handles the receipt of a multiple ERC1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. To accept the transfer(s), this must return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81, or its own function selector). @param operator The address which initiated the batch transfer (i.e. msg.sender) @param from The address which previously owned the token @param ids An array containing ids of each token being transferred (order and length must match values array) @param values An array containing amounts of each token being transferred (order and length must match ids array) @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns(bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[],"name":"COLLECTION_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Ifarm","outputs":[{"internalType":"contract FarmV2","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collection","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"buyer","type":"address"}],"name":"buy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"cards","outputs":[{"internalType":"enum CurrencyType","name":"cType","type":"uint8"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"total","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"percent","type":"uint256"},{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"collections","outputs":[{"internalType":"contract Collection","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"},{"internalType":"uint256","name":"_total","type":"uint256"},{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"address","name":"_admin","type":"address"},{"internalType":"enum CurrencyType","name":"cType","type":"uint8"},{"internalType":"address","name":"_farmAddress","type":"address"},{"internalType":"address","name":"_moneyHandler","type":"address"}],"name":"createCollection","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_farmAddress","type":"address"},{"internalType":"address","name":"_collec","type":"address"}],"name":"giveRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_moneyAddress","type":"address"},{"internalType":"address","name":"_collec","type":"address"}],"name":"giveRoleMnyHnd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"moneyHand","outputs":[{"internalType":"contract MoneyHandler","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620046353803806200463583398101604081905262000034916200010f565b6200004160008262000048565b506200013f565b62000054828262000058565b5050565b620000648282620000e2565b62000054576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556200009e6200010b565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b3390565b60006020828403121562000121578081fd5b81516001600160a01b038116811462000138578182fd5b9392505050565b6144e6806200014f6000396000f3fe60806040523480156200001157600080fd5b5060043610620001245760003560e01c806366990c6e11620000b1578063a217fddf116200007b578063a217fddf1462000263578063d547741f146200026d578063db61c76e1462000284578063ece8e52f146200029b578063fdbda0ec14620002a55762000124565b806366990c6e14620001ff57806370908f2114620002165780638b9fa7b5146200024257806391d14854146200024c5762000124565b80633313618311620000f35780633313618314620001a157806336568abe14620001ba57806338322de114620001d157806339edbd7614620001e85762000124565b806301ffc9a71462000129578063145f8dd41462000158578063248a9ca314620001715780632f2ff15d1462000188575b600080fd5b620001406200013a36600462000dca565b620002bc565b6040516200014f919062000ff7565b60405180910390f35b62000162620002ec565b6040516200014f919062001002565b620001626200018236600462000d8c565b62000310565b6200019f6200019936600462000da5565b62000325565b005b620001ab62000356565b6040516200014f919062000fca565b6200019f620001cb36600462000da5565b62000365565b6200019f620001e236600462000d15565b620003bb565b620001ab620001f936600462000df4565b6200046e565b6200019f6200021036600462000d15565b62000646565b6200022d6200022736600462000cf8565b620006c0565b6040516200014f979695949392919062001022565b620001ab62000793565b620001406200025d36600462000da5565b620007a2565b62000162620007cb565b6200019f6200027e36600462000da5565b620007d0565b620001406200029536600462000d4c565b620007f6565b620001626200087f565b620001ab620002b636600462000d8c565b62000885565b60006001600160e01b03198216637965db0b60e01b1480620002e45750620002e482620008b0565b90505b919050565b7f40a5c770eee7730548a6335e1f372e76bf4759f6fda1a932bd9cfc33106f0b4c81565b60009081526020819052604090206001015490565b620003308262000310565b62000345816200033f620008c9565b620008cd565b6200035183836200093c565b505050565b6001546001600160a01b031681565b6200036f620008c9565b6001600160a01b0316816001600160a01b031614620003ab5760405162461bcd60e51b8152600401620003a29062001128565b60405180910390fd5b620003b78282620009c6565b5050565b6000620003cc816200033f620008c9565b600180546001600160a01b0319166001600160a01b038581169190911791829055604051632f2ff15d60e01b8152911690632f2ff15d9062000435907f40a5c770eee7730548a6335e1f372e76bf4759f6fda1a932bd9cfc33106f0b4c9086906004016200100b565b600060405180830381600087803b1580156200045057600080fd5b505af115801562000465573d6000803e3d6000fd5b50505050505050565b60008062000480816200033f620008c9565b60008c8c8c8c8c8c8c30604051620004989062000c1c565b620004ab9897969594939291906200109a565b604051809103906000f080158015620004c8573d6000803e3d6000fd5b50600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0383161790556040805160e08101909152909150808760028111156200054457634e487b7160e01b600052602160045260246000fd5b81526020018a81526020018d81526020018c81526020018b81526020018981526020018e81525060046000836001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a81548160ff02191690836002811115620005c957634e487b7160e01b600052602160045260246000fd5b0217905550602082810151600183015560408301516002830155606083015160038301556080830151600483015560a0830151600583015560c083015180516200061a926006850192019062000c2a565b509050506200062a8582620003bb565b62000636848262000646565b9c9b505050505050505050505050565b600062000657816200033f620008c9565b600280546001600160a01b0319166001600160a01b038581169190911791829055604051632f2ff15d60e01b8152911690632f2ff15d9062000435907f40a5c770eee7730548a6335e1f372e76bf4759f6fda1a932bd9cfc33106f0b4c9086906004016200100b565b6004602081905260009182526040909120805460018201546002830154600384015494840154600585015460068601805460ff9096169794969395929391926200070a9062001201565b80601f0160208091040260200160405190810160405280929190818152602001828054620007389062001201565b8015620007895780601f106200075d5761010080835404028352916020019162000789565b820191906000526020600020905b8154815290600101906020018083116200076b57829003601f168201915b5050505050905087565b6002546001600160a01b031681565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b600081565b620007db8262000310565b620007ea816200033f620008c9565b620003518383620009c6565b60006001600160a01b03821633146200080e57600080fd5b60405163cce7ec1360e01b815284906001600160a01b0382169063cce7ec139062000840908690889060040162000fde565b600060405180830381600087803b1580156200085b57600080fd5b505af115801562000870573d6000803e3d6000fd5b50600198975050505050505050565b60035490565b600381815481106200089657600080fd5b6000918252602090912001546001600160a01b0316905081565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b620008d98282620007a2565b620003b757620008f4816001600160a01b0316601462000a4e565b6200090183602062000a4e565b6040516020016200091492919062000f51565b60408051601f198184030181529082905262461bcd60e51b8252620003a29160040162001085565b620009488282620007a2565b620003b7576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916600117905562000982620008c9565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b620009d28282620007a2565b15620003b7576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916905562000a0a620008c9565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6060600062000a5f83600262001192565b62000a6c90600262001177565b67ffffffffffffffff81111562000a9357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801562000abe576020820181803683370190505b509050600360fc1b8160008151811062000ae857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811062000b2657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600062000b4c84600262001192565b62000b5990600162001177565b90505b600181111562000bf3576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811062000b9d57634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811062000bc257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c9362000beb81620011e7565b905062000b5c565b50831562000c155760405162461bcd60e51b8152600401620003a290620010f3565b9392505050565b613246806200126b83390190565b82805462000c389062001201565b90600052602060002090601f01602090048101928262000c5c576000855562000ca7565b82601f1062000c7757805160ff191683800117855562000ca7565b8280016001018555821562000ca7579182015b8281111562000ca757825182559160200191906001019062000c8a565b5062000cb592915062000cb9565b5090565b5b8082111562000cb5576000815560010162000cba565b80356001600160a01b0381168114620002e757600080fd5b803560038110620002e757600080fd5b60006020828403121562000d0a578081fd5b62000c158262000cd0565b6000806040838503121562000d28578081fd5b62000d338362000cd0565b915062000d436020840162000cd0565b90509250929050565b60008060006060848603121562000d61578081fd5b62000d6c8462000cd0565b92506020840135915062000d836040850162000cd0565b90509250925092565b60006020828403121562000d9e578081fd5b5035919050565b6000806040838503121562000db8578182fd5b8235915062000d436020840162000cd0565b60006020828403121562000ddc578081fd5b81356001600160e01b03198116811462000c15578182fd5b6000806000806000806000806000806101408b8d03121562000e14578586fd5b8a3567ffffffffffffffff8082111562000e2c578788fd5b818d0191508d601f83011262000e40578788fd5b81358181111562000e555762000e5562001254565b604051601f8201601f19168101602001838111828210171562000e7c5762000e7c62001254565b80604052508181528f602083860101111562000e9657898afd5b816020850160208301378960208383010152809d505050505060208b0135985060408b0135975060608b0135965060808b0135955060a08b0135945062000ee060c08c0162000cd0565b935062000ef060e08c0162000ce8565b925062000f016101008c0162000cd0565b915062000f126101208c0162000cd0565b90509295989b9194979a5092959850565b6000815180845262000f3d816020860160208601620011b4565b601f01601f19169290920160200192915050565b60007f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008252835162000f8b816017850160208801620011b4565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835162000fbe816028840160208801620011b4565b01602801949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b90815260200190565b9182526001600160a01b0316602082015260400190565b6000600389106200104157634e487b7160e01b81526021600452602481fd5b8882528760208301528660408301528560608301528460808301528360a083015260e060c08301526200107860e083018462000f23565b9998505050505050505050565b60006020825262000c15602083018462000f23565b6000610100808352620010b08184018c62000f23565b602084019a909a52505060408101969096526060860194909452608085019290925260a08401526001600160a01b0390811660c08401521660e090910152919050565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b600082198211156200118d576200118d6200123e565b500190565b6000816000190483118215151615620011af57620011af6200123e565b500290565b60005b83811015620011d1578181015183820152602001620011b7565b83811115620011e1576000848401525b50505050565b600081620011f957620011f96200123e565b506000190190565b6002810460018216806200121657607f821691505b602082108114156200123857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfe60806040523480156200001157600080fd5b506040516200324638038062003246833981016040819052620000349162000232565b87620000408162000095565b506009849055600b879055600d87905560108690556011859055600a839055600e80546001600160a01b0319166001600160a01b03831617905562000087600083620000ae565b5050505050505050620003ac565b8051620000aa9060029060208401906200016f565b5050565b620000aa8282620000c0828262000140565b620000aa5760008281526003602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620000fc6200016b565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60009182526003602090815260408084206001600160a01b0393909316845291905290205460ff1690565b3390565b8280546200017d9062000359565b90600052602060002090601f016020900481019282620001a15760008555620001ec565b82601f10620001bc57805160ff1916838001178555620001ec565b82800160010185558215620001ec579182015b82811115620001ec578251825591602001919060010190620001cf565b50620001fa929150620001fe565b5090565b5b80821115620001fa5760008155600101620001ff565b80516001600160a01b03811681146200022d57600080fd5b919050565b600080600080600080600080610100898b0312156200024f578384fd5b88516001600160401b038082111562000266578586fd5b818b0191508b601f8301126200027a578586fd5b8151818111156200028f576200028f62000396565b6040516020601f8301601f1916820181018481118382101715620002b757620002b762000396565b60405282825284830181018f1015620002ce578889fd5b8893505b82841015620002f15784840181015182850182015292830192620002d2565b828411156200030257888184840101525b819c50808e01519b50505050505060408901519550606089015194506080890151935060a089015192506200033a60c08a0162000215565b91506200034a60e08a0162000215565b90509295985092959890939650565b6002810460018216806200036e57607f821691505b602082108114156200039057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612e8a80620003bc6000396000f3fe608060405234801561001057600080fd5b50600436106101ef5760003560e01c806370ba11131161010f578063aa8c217c116100a2578063d539139311610071578063d5391393146103db578063d547741f146103e3578063e985e9c5146103f6578063f242432a14610409576101ef565b8063aa8c217c146103a5578063ca405ce0146103ad578063ccb98ffc146103b5578063cce7ec13146103c8576101ef565b806391d14854116100de57806391d14854146103645780639be65a6014610377578063a217fddf1461038a578063a22cb46514610392576101ef565b806370ba11131461033957806375ceb3411461034157806378e97925146103545780638b9fa7b51461035c576101ef565b8063303c64331161018757806348a0d7541161015657806348a0d754146102eb5780634e1273f4146102f35780634f9b1b40146103135780635483077114610326576101ef565b8063303c6433146102a85780633197cbb6146102bd57806336568abe146102c557806340c10f19146102d8576101ef565b8063248a9ca3116101c3578063248a9ca3146102655780632ddbd13a146102785780632eb2c2d6146102805780632f2ff15d14610295576101ef565b8062fdd58e146101f457806301ffc9a71461021d57806302c7e7af1461023d5780630e89341c14610245575b600080fd5b610207610202366004612307565b61041c565b604051610214919061269c565b60405180910390f35b61023061022b36600461243a565b610476565b6040516102149190612691565b610207610489565b610258610253366004612400565b61048f565b60405161021491906126a5565b610207610273366004612400565b610523565b610207610538565b61029361028e36600461217c565b61053e565b005b6102936102a3366004612418565b6107a4565b6102b06107cd565b6040516102149190612565565b6102076107dc565b6102936102d3366004612418565b6107e2565b6102936102e6366004612307565b610828565b61020761092e565b610306610301366004612330565b610934565b6040516102149190612659565b610293610321366004612129565b610a54565b610293610334366004612400565b610ab3565b610207610ac7565b61029361034f366004612285565b610acd565b610207610c89565b6102b0610c8f565b610230610372366004612418565b610c9e565b6102936103853660046120dd565b610cc9565b610207610ddf565b6102936103a03660046122d1565b610de4565b610207610eb2565b6102b0610eb8565b6102936103c3366004612400565b610ec7565b6102936103d6366004612307565b610edb565b610207611053565b6102936103f1366004612418565b611077565b6102306104043660046120f7565b611096565b610293610417366004612222565b6110c4565b60006001600160a01b03831661044d5760405162461bcd60e51b815260040161044490612789565b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006104818261125a565b90505b919050565b600c5481565b60606002805461049e90612d00565b80601f01602080910402602001604051908101604052809291908181526020018280546104ca90612d00565b80156105175780601f106104ec57610100808354040283529160200191610517565b820191906000526020600020905b8154815290600101906020018083116104fa57829003601f168201915b50505050509050919050565b60009081526003602052604090206001015490565b600d5481565b815183511461055f5760405162461bcd60e51b815260040161044490612aeb565b6001600160a01b0384166105855760405162461bcd60e51b815260040161044490612911565b61058d61127f565b6001600160a01b0316856001600160a01b031614806105b357506105b38561040461127f565b6105cf5760405162461bcd60e51b815260040161044490612956565b60006105d961127f565b90506105e981878787878761079c565b60005b845181101561073657600085828151811061061757634e487b7160e01b600052603260045260246000fd5b60200260200101519050600085838151811061064357634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156106935760405162461bcd60e51b8152600401610444906129a8565b61069d8282612ca6565b60008085815260200190815260200160002060008c6001600160a01b03166001600160a01b03168152602001908152602001600020819055508160008085815260200190815260200160002060008b6001600160a01b03166001600160a01b03168152602001908152602001600020600082825461071b9190612c4f565b925050819055505050508061072f90612d3b565b90506105ec565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161078692919061266c565b60405180910390a461079c818787878787611284565b505050505050565b6107ad82610523565b6107be816107b961127f565b611392565b6107c883836113f6565b505050565b600f546001600160a01b031681565b60115481565b6107ea61127f565b6001600160a01b0316816001600160a01b03161461081a5760405162461bcd60e51b815260040161044490612ba4565b610824828261147d565b5050565b6000610836816107b961127f565b610841600483611502565b1561085e5760405162461bcd60e51b815260040161044490612b74565b6000600b54116108805760405162461bcd60e51b81526004016104449061280b565b61089c8383600160405180602001604052806000815250611515565b6001600b60008282546108af9190612ca6565b925050819055506001600c60008282546108c99190612c4f565b909155506108da90506004836115f5565b5081836001600160a01b0316306001600160a01b03167f03f17d66ad3bf18e9412eb06582908831508cdb9b8da9cddb1431f645a5b8632600954604051610921919061269c565b60405180910390a4505050565b600b5481565b606081518351146109575760405162461bcd60e51b815260040161044490612aa2565b6000835167ffffffffffffffff81111561098157634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156109aa578160200160208202803683370190505b50905060005b8451811015610a4c57610a118582815181106109dc57634e487b7160e01b600052603260045260246000fd5b6020026020010151858381518110610a0457634e487b7160e01b600052603260045260246000fd5b602002602001015161041c565b828281518110610a3157634e487b7160e01b600052603260045260246000fd5b6020908102919091010152610a4581612d3b565b90506109b0565b509392505050565b6000610a62816107b961127f565b50600680546001600160a01b039586166001600160a01b0319918216179091556007805494861694821694909417909355600f80549285169284169290921790915560088054919093169116179055565b6000610ac1816107b961127f565b50601055565b600a5481565b6000610adb816107b961127f565b60008251600b5411610aff5760405162461bcd60e51b81526004016104449061280b565b60005b8351811015610b8b57610b46848281518110610b2e57634e487b7160e01b600052603260045260246000fd5b6020026020010151600461150290919063ffffffff16565b15610b635760405162461bcd60e51b815260040161044490612b74565b8154600181810184556000848152602090209091015580610b8381612d3b565b915050610b02565b50610bf6848483805480602002602001604051908101604052809291908181526020018280548015610bdc57602002820191906000526020600020905b815481526020019060010190808311610bc8575b505050505060405180602001604052806000815250611601565b8251600b6000828254610c099190612ca6565b90915550508251600c8054600090610c22908490612c4f565b90915550600090505b8351811015610c8257610c6f848281518110610c5757634e487b7160e01b600052603260045260246000fd5b602002602001015160046115f590919063ffffffff16565b5080610c7a81612d3b565b915050610c2b565b5050505050565b60105481565b6008546001600160a01b031681565b60009182526003602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6000610cd7816107b961127f565b6040516370a0823160e01b81526000906001600160a01b038416906370a0823190610d06903090600401612565565b60206040518083038186803b158015610d1e57600080fd5b505afa158015610d32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d569190612472565b60405163a9059cbb60e01b81529091506001600160a01b0384169063a9059cbb90610d879033908590600401612640565b602060405180830381600087803b158015610da157600080fd5b505af1158015610db5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd991906123e4565b50505050565b600081565b816001600160a01b0316610df661127f565b6001600160a01b03161415610e1d5760405162461bcd60e51b815260040161044490612a59565b8060016000610e2a61127f565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610e6e61127f565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ea69190612691565b60405180910390a35050565b60095481565b600e546001600160a01b031681565b6000610ed5816107b961127f565b50601155565b600e546001600160a01b03163314610f055760405162461bcd60e51b815260040161044490612876565b610f10600482611502565b15610f2d5760405162461bcd60e51b815260040161044490612b74565b6000600b5411610f4f5760405162461bcd60e51b81526004016104449061280b565b4260105411158015610f62575042601154115b610f7e5760405162461bcd60e51b8152600401610444906129f2565b6007546001600160a01b031615610f9d57610f9882611782565b610fa6565b610fa6826118c9565b610fc28282600160405180602001604052806000815250611515565b6001600b6000828254610fd59190612ca6565b925050819055506001600c6000828254610fef9190612c4f565b9091555061100090506004826115f5565b5080826001600160a01b0316306001600160a01b03167f03f17d66ad3bf18e9412eb06582908831508cdb9b8da9cddb1431f645a5b8632600954604051611047919061269c565b60405180910390a45050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61108082610523565b61108c816107b961127f565b6107c8838361147d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6001600160a01b0384166110ea5760405162461bcd60e51b815260040161044490612911565b6110f261127f565b6001600160a01b0316856001600160a01b0316148061111857506111188561040461127f565b6111345760405162461bcd60e51b81526004016104449061282d565b600061113e61127f565b905061115e81878761114f88611c02565b61115888611c02565b8761079c565b6000848152602081815260408083206001600160a01b038a1684529091529020548381101561119f5760405162461bcd60e51b8152600401610444906129a8565b6111a98482612ca6565b6000868152602081815260408083206001600160a01b038c811685529252808320939093558816815290812080548692906111e5908490612c4f565b92505081905550856001600160a01b0316876001600160a01b0316836001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62888860405161123b929190612bf3565b60405180910390a4611251828888888888611c5b565b50505050505050565b60006001600160e01b03198216637965db0b60e01b1480610481575061048182611d2c565b335b90565b611296846001600160a01b0316611d6c565b1561079c5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906112cf9089908990889088908890600401612579565b602060405180830381600087803b1580156112e957600080fd5b505af1925050508015611319575060408051601f3d908101601f1916820190925261131691810190612456565b60015b61136257611325612d88565b80611330575061134a565b8060405162461bcd60e51b815260040161044491906126a5565b60405162461bcd60e51b8152600401610444906126b8565b6001600160e01b0319811663bc197c8160e01b146112515760405162461bcd60e51b815260040161044490612741565b61139c8282610c9e565b610824576113b4816001600160a01b03166014611d72565b6113bf836020611d72565b6040516020016113d09291906124f0565b60408051601f198184030181529082905262461bcd60e51b8252610444916004016126a5565b6114008282610c9e565b6108245760008281526003602090815260408083206001600160a01b03851684529091529020805460ff1916600117905561143961127f565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6114878282610c9e565b156108245760008281526003602090815260408083206001600160a01b03851684529091529020805460ff191690556114be61127f565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b600061150e8383611f24565b9392505050565b6001600160a01b03841661153b5760405162461bcd60e51b815260040161044490612b33565b600061154561127f565b90506115578160008761114f88611c02565b6000848152602081815260408083206001600160a01b038916845290915281208054859290611587908490612c4f565b92505081905550846001600160a01b031660006001600160a01b0316826001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516115de929190612bf3565b60405180910390a4610c8281600087878787611c5b565b600061150e8383611f3c565b6001600160a01b0384166116275760405162461bcd60e51b815260040161044490612b33565b81518351146116485760405162461bcd60e51b815260040161044490612aeb565b600061165261127f565b90506116638160008787878761079c565b60005b845181101561171a5783818151811061168f57634e487b7160e01b600052603260045260246000fd5b60200260200101516000808784815181106116ba57634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002060008282546117029190612c4f565b9091555081905061171281612d3b565b915050611666565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161176b92919061266c565b60405180910390a4610c8281600087878787611284565b6007546040516375c7e97360e01b81526000916001600160a01b0316906375c7e973906117b3908590600401612565565b60206040518083038186803b1580156117cb57600080fd5b505afa1580156117df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118039190612472565b90506009548110156118275760405162461bcd60e51b815260040161044490612a22565b6007546009546040516367a09c2360e01b81526001600160a01b03909216916367a09c239161185b91869190600401612640565b602060405180830381600087803b15801561187557600080fd5b505af1158015611889573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ad91906123e4565b6108245760405162461bcd60e51b8152600401610444906127d4565b6009546006546040516370a0823160e01b81526001600160a01b03909116906370a08231906118fc908590600401612565565b60206040518083038186803b15801561191457600080fd5b505afa158015611928573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061194c9190612472565b101561196a5760405162461bcd60e51b8152600401610444906128ca565b600061197a600954600a54611f86565b9050600061198a60095483611fb2565b6006546009546040516323b872dd60e01b81529293506001600160a01b03909116916323b872dd916119c291879130916004016125d7565b602060405180830381600087803b1580156119dc57600080fd5b505af11580156119f0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a1491906123e4565b50600654600f5460405163a9059cbb60e01b81526001600160a01b039283169263a9059cbb92611a4b929116908690600401612640565b602060405180830381600087803b158015611a6557600080fd5b505af1158015611a79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a9d91906123e4565b5060065460085460405163a9059cbb60e01b81526001600160a01b039283169263a9059cbb92611ad4929116908590600401612640565b602060405180830381600087803b158015611aee57600080fd5b505af1158015611b02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b2691906123e4565b50600854604051631e4ee01b60e01b81526001600160a01b0390911690631e4ee01b90611b599030908590600401612640565b600060405180830381600087803b158015611b7357600080fd5b505af1158015611b87573d6000803e3d6000fd5b505050507fcc512fe50bbacd531b448f7ffd7e933d0fa429d8f015bb9210336e04fc366e653083604051611bbc929190612640565b60405180910390a17f8712441e414e4ca707b96817466a67d017d2daa9a139049258cbd3a67bb3a5393082604051611bf5929190612640565b60405180910390a1505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611c4a57634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b611c6d846001600160a01b0316611d6c565b1561079c5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611ca690899089908890889088906004016125fb565b602060405180830381600087803b158015611cc057600080fd5b505af1925050508015611cf0575060408051601f3d908101601f19168201909252611ced91810190612456565b60015b611cfc57611325612d88565b6001600160e01b0319811663f23a6e6160e01b146112515760405162461bcd60e51b815260040161044490612741565b60006001600160e01b03198216636cdb3d1360e11b1480611d5d57506001600160e01b031982166303a24d0760e21b145b80610481575061048182611fbe565b3b151590565b60606000611d81836002612c87565b611d8c906002612c4f565b67ffffffffffffffff811115611db257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ddc576020820181803683370190505b509050600360fc1b81600081518110611e0557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611e4257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611e66846002612c87565b611e71906001612c4f565b90505b6001811115611f05576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611eb357634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611ed757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611efe81612ce9565b9050611e74565b50831561150e5760405162461bcd60e51b81526004016104449061270c565b60009081526001919091016020526040902054151590565b6000611f488383611f24565b611f7e57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610470565b506000610470565b600080611f938484611fd7565b90506000611fa982670de0b6b3a7640000611fe3565b95945050505050565b600061150e8284612ca6565b6001600160e01b031981166301ffc9a760e01b14919050565b600061150e8284612c87565b600061150e8284612c67565b80356001600160a01b038116811461048457600080fd5b600082601f830112612016578081fd5b8135602061202b61202683612c2b565b612c01565b8281528181019085830183850287018401881015612047578586fd5b855b8581101561206557813584529284019290840190600101612049565b5090979650505050505050565b600082601f830112612082578081fd5b813567ffffffffffffffff81111561209c5761209c612d6c565b6120af601f8201601f1916602001612c01565b8181528460208386010111156120c3578283fd5b816020850160208301379081016020019190915292915050565b6000602082840312156120ee578081fd5b61150e82611fef565b60008060408385031215612109578081fd5b61211283611fef565b915061212060208401611fef565b90509250929050565b6000806000806080858703121561213e578182fd5b61214785611fef565b935061215560208601611fef565b925061216360408601611fef565b915061217160608601611fef565b905092959194509250565b600080600080600060a08688031215612193578081fd5b61219c86611fef565b94506121aa60208701611fef565b9350604086013567ffffffffffffffff808211156121c6578283fd5b6121d289838a01612006565b945060608801359150808211156121e7578283fd5b6121f389838a01612006565b93506080880135915080821115612208578283fd5b5061221588828901612072565b9150509295509295909350565b600080600080600060a08688031215612239578081fd5b61224286611fef565b945061225060208701611fef565b93506040860135925060608601359150608086013567ffffffffffffffff811115612279578182fd5b61221588828901612072565b60008060408385031215612297578182fd5b6122a083611fef565b9150602083013567ffffffffffffffff8111156122bb578182fd5b6122c785828601612006565b9150509250929050565b600080604083850312156122e3578182fd5b6122ec83611fef565b915060208301356122fc81612e2d565b809150509250929050565b60008060408385031215612319578182fd5b61232283611fef565b946020939093013593505050565b60008060408385031215612342578182fd5b823567ffffffffffffffff80821115612359578384fd5b818501915085601f83011261236c578384fd5b8135602061237c61202683612c2b565b82815281810190858301838502870184018b1015612398578889fd5b8896505b848710156123c1576123ad81611fef565b83526001969096019591830191830161239c565b50965050860135925050808211156123d7578283fd5b506122c785828601612006565b6000602082840312156123f5578081fd5b815161150e81612e2d565b600060208284031215612411578081fd5b5035919050565b6000806040838503121561242a578182fd5b8235915061212060208401611fef565b60006020828403121561244b578081fd5b813561150e81612e3e565b600060208284031215612467578081fd5b815161150e81612e3e565b600060208284031215612483578081fd5b5051919050565b6000815180845260208085019450808401835b838110156124b95781518752958201959082019060010161249d565b509495945050505050565b600081518084526124dc816020860160208601612cbd565b601f01601f19169290920160200192915050565b60007f416363657373436f6e74726f6c3a206163636f756e742000000000000000000082528351612528816017850160208801612cbd565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612559816028840160208801612cbd565b01602801949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0386811682528516602082015260a0604082018190526000906125a59083018661248a565b82810360608401526125b7818661248a565b905082810360808401526125cb81856124c4565b98975050505050505050565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612635908301846124c4565b979650505050505050565b6001600160a01b03929092168252602082015260400190565b60006020825261150e602083018461248a565b60006040825261267f604083018561248a565b8281036020840152611fa9818561248a565b901515815260200190565b90815260200190565b60006020825261150e60208301846124c4565b60208082526034908201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356040820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606082015260800190565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6020808252602b908201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526018908201527f5061796d656e742077617320756e7375636365737366756c0000000000000000604082015260600190565b60208082526008908201526714dbdb190813dd5d60c21b604082015260600190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526034908201527f546869732066756e6374696f6e2063616e206f6e6c792062652063616c6c656460408201527308189e48199858dd1bdc9e4818dbdb9d1c9858dd60621b606082015260800190565b60208082526027908201527f496e73756666696369656e742066756e64733a2043616e6e6f742062757920746040820152661a1a5cc813919560ca1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526032908201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60208082526016908201527514d85b1948191a59081b9bdd081cdd185c9d081e595d60521b604082015260600190565b6020808252601f908201527f596f7520646f206e6f74206861766520656e6f75676820706f696e7473202100604082015260600190565b60208082526029908201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604082015268103337b91039b2b63360b91b606082015260800190565b60208082526029908201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604082015268040dad2e6dac2e8c6d60bb1b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b602080825260169082015275151a1a5cc818d85c9908185b1c9958591e481cdbdb1960521b604082015260600190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b918252602082015260400190565b60405181810167ffffffffffffffff81118282101715612c2357612c23612d6c565b604052919050565b600067ffffffffffffffff821115612c4557612c45612d6c565b5060209081020190565b60008219821115612c6257612c62612d56565b500190565b600082612c8257634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612ca157612ca1612d56565b500290565b600082821015612cb857612cb8612d56565b500390565b60005b83811015612cd8578181015183820152602001612cc0565b83811115610dd95750506000910152565b600081612cf857612cf8612d56565b506000190190565b600281046001821680612d1457607f821691505b60208210811415612d3557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d4f57612d4f612d56565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b60e01c90565b600060443d1015612d9857611281565b600481823e6308c379a0612dac8251612d82565b14612db657611281565b6040513d600319016004823e80513d67ffffffffffffffff8160248401118184111715612de65750505050611281565b82840192508251915080821115612e005750505050611281565b503d83016020828401011115612e1857505050611281565b601f01601f1916810160200160405291505090565b8015158114612e3b57600080fd5b50565b6001600160e01b031981168114612e3b57600080fdfea264697066735822122043e72e95bdf2d74d733dc1c64fdd00bb0d2c7a0e44c887de75c3c2a585c9064764736f6c63430008000033a264697066735822122063684a24b8a7d8d899e34a812a20145e34bd0348eed394904cc90d853e8f00aa64736f6c63430008000033000000000000000000000000fbc3b76a206f03f1edbf411f280444cd3fd9c7c8
Deployed Bytecode
0x60806040523480156200001157600080fd5b5060043610620001245760003560e01c806366990c6e11620000b1578063a217fddf116200007b578063a217fddf1462000263578063d547741f146200026d578063db61c76e1462000284578063ece8e52f146200029b578063fdbda0ec14620002a55762000124565b806366990c6e14620001ff57806370908f2114620002165780638b9fa7b5146200024257806391d14854146200024c5762000124565b80633313618311620000f35780633313618314620001a157806336568abe14620001ba57806338322de114620001d157806339edbd7614620001e85762000124565b806301ffc9a71462000129578063145f8dd41462000158578063248a9ca314620001715780632f2ff15d1462000188575b600080fd5b620001406200013a36600462000dca565b620002bc565b6040516200014f919062000ff7565b60405180910390f35b62000162620002ec565b6040516200014f919062001002565b620001626200018236600462000d8c565b62000310565b6200019f6200019936600462000da5565b62000325565b005b620001ab62000356565b6040516200014f919062000fca565b6200019f620001cb36600462000da5565b62000365565b6200019f620001e236600462000d15565b620003bb565b620001ab620001f936600462000df4565b6200046e565b6200019f6200021036600462000d15565b62000646565b6200022d6200022736600462000cf8565b620006c0565b6040516200014f979695949392919062001022565b620001ab62000793565b620001406200025d36600462000da5565b620007a2565b62000162620007cb565b6200019f6200027e36600462000da5565b620007d0565b620001406200029536600462000d4c565b620007f6565b620001626200087f565b620001ab620002b636600462000d8c565b62000885565b60006001600160e01b03198216637965db0b60e01b1480620002e45750620002e482620008b0565b90505b919050565b7f40a5c770eee7730548a6335e1f372e76bf4759f6fda1a932bd9cfc33106f0b4c81565b60009081526020819052604090206001015490565b620003308262000310565b62000345816200033f620008c9565b620008cd565b6200035183836200093c565b505050565b6001546001600160a01b031681565b6200036f620008c9565b6001600160a01b0316816001600160a01b031614620003ab5760405162461bcd60e51b8152600401620003a29062001128565b60405180910390fd5b620003b78282620009c6565b5050565b6000620003cc816200033f620008c9565b600180546001600160a01b0319166001600160a01b038581169190911791829055604051632f2ff15d60e01b8152911690632f2ff15d9062000435907f40a5c770eee7730548a6335e1f372e76bf4759f6fda1a932bd9cfc33106f0b4c9086906004016200100b565b600060405180830381600087803b1580156200045057600080fd5b505af115801562000465573d6000803e3d6000fd5b50505050505050565b60008062000480816200033f620008c9565b60008c8c8c8c8c8c8c30604051620004989062000c1c565b620004ab9897969594939291906200109a565b604051809103906000f080158015620004c8573d6000803e3d6000fd5b50600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0383161790556040805160e08101909152909150808760028111156200054457634e487b7160e01b600052602160045260246000fd5b81526020018a81526020018d81526020018c81526020018b81526020018981526020018e81525060046000836001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a81548160ff02191690836002811115620005c957634e487b7160e01b600052602160045260246000fd5b0217905550602082810151600183015560408301516002830155606083015160038301556080830151600483015560a0830151600583015560c083015180516200061a926006850192019062000c2a565b509050506200062a8582620003bb565b62000636848262000646565b9c9b505050505050505050505050565b600062000657816200033f620008c9565b600280546001600160a01b0319166001600160a01b038581169190911791829055604051632f2ff15d60e01b8152911690632f2ff15d9062000435907f40a5c770eee7730548a6335e1f372e76bf4759f6fda1a932bd9cfc33106f0b4c9086906004016200100b565b6004602081905260009182526040909120805460018201546002830154600384015494840154600585015460068601805460ff9096169794969395929391926200070a9062001201565b80601f0160208091040260200160405190810160405280929190818152602001828054620007389062001201565b8015620007895780601f106200075d5761010080835404028352916020019162000789565b820191906000526020600020905b8154815290600101906020018083116200076b57829003601f168201915b5050505050905087565b6002546001600160a01b031681565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b600081565b620007db8262000310565b620007ea816200033f620008c9565b620003518383620009c6565b60006001600160a01b03821633146200080e57600080fd5b60405163cce7ec1360e01b815284906001600160a01b0382169063cce7ec139062000840908690889060040162000fde565b600060405180830381600087803b1580156200085b57600080fd5b505af115801562000870573d6000803e3d6000fd5b50600198975050505050505050565b60035490565b600381815481106200089657600080fd5b6000918252602090912001546001600160a01b0316905081565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b620008d98282620007a2565b620003b757620008f4816001600160a01b0316601462000a4e565b6200090183602062000a4e565b6040516020016200091492919062000f51565b60408051601f198184030181529082905262461bcd60e51b8252620003a29160040162001085565b620009488282620007a2565b620003b7576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916600117905562000982620008c9565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b620009d28282620007a2565b15620003b7576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916905562000a0a620008c9565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6060600062000a5f83600262001192565b62000a6c90600262001177565b67ffffffffffffffff81111562000a9357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801562000abe576020820181803683370190505b509050600360fc1b8160008151811062000ae857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811062000b2657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600062000b4c84600262001192565b62000b5990600162001177565b90505b600181111562000bf3576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811062000b9d57634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811062000bc257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c9362000beb81620011e7565b905062000b5c565b50831562000c155760405162461bcd60e51b8152600401620003a290620010f3565b9392505050565b613246806200126b83390190565b82805462000c389062001201565b90600052602060002090601f01602090048101928262000c5c576000855562000ca7565b82601f1062000c7757805160ff191683800117855562000ca7565b8280016001018555821562000ca7579182015b8281111562000ca757825182559160200191906001019062000c8a565b5062000cb592915062000cb9565b5090565b5b8082111562000cb5576000815560010162000cba565b80356001600160a01b0381168114620002e757600080fd5b803560038110620002e757600080fd5b60006020828403121562000d0a578081fd5b62000c158262000cd0565b6000806040838503121562000d28578081fd5b62000d338362000cd0565b915062000d436020840162000cd0565b90509250929050565b60008060006060848603121562000d61578081fd5b62000d6c8462000cd0565b92506020840135915062000d836040850162000cd0565b90509250925092565b60006020828403121562000d9e578081fd5b5035919050565b6000806040838503121562000db8578182fd5b8235915062000d436020840162000cd0565b60006020828403121562000ddc578081fd5b81356001600160e01b03198116811462000c15578182fd5b6000806000806000806000806000806101408b8d03121562000e14578586fd5b8a3567ffffffffffffffff8082111562000e2c578788fd5b818d0191508d601f83011262000e40578788fd5b81358181111562000e555762000e5562001254565b604051601f8201601f19168101602001838111828210171562000e7c5762000e7c62001254565b80604052508181528f602083860101111562000e9657898afd5b816020850160208301378960208383010152809d505050505060208b0135985060408b0135975060608b0135965060808b0135955060a08b0135945062000ee060c08c0162000cd0565b935062000ef060e08c0162000ce8565b925062000f016101008c0162000cd0565b915062000f126101208c0162000cd0565b90509295989b9194979a5092959850565b6000815180845262000f3d816020860160208601620011b4565b601f01601f19169290920160200192915050565b60007f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008252835162000f8b816017850160208801620011b4565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835162000fbe816028840160208801620011b4565b01602801949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b90815260200190565b9182526001600160a01b0316602082015260400190565b6000600389106200104157634e487b7160e01b81526021600452602481fd5b8882528760208301528660408301528560608301528460808301528360a083015260e060c08301526200107860e083018462000f23565b9998505050505050505050565b60006020825262000c15602083018462000f23565b6000610100808352620010b08184018c62000f23565b602084019a909a52505060408101969096526060860194909452608085019290925260a08401526001600160a01b0390811660c08401521660e090910152919050565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b600082198211156200118d576200118d6200123e565b500190565b6000816000190483118215151615620011af57620011af6200123e565b500290565b60005b83811015620011d1578181015183820152602001620011b7565b83811115620011e1576000848401525b50505050565b600081620011f957620011f96200123e565b506000190190565b6002810460018216806200121657607f821691505b602082108114156200123857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfe60806040523480156200001157600080fd5b506040516200324638038062003246833981016040819052620000349162000232565b87620000408162000095565b506009849055600b879055600d87905560108690556011859055600a839055600e80546001600160a01b0319166001600160a01b03831617905562000087600083620000ae565b5050505050505050620003ac565b8051620000aa9060029060208401906200016f565b5050565b620000aa8282620000c0828262000140565b620000aa5760008281526003602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620000fc6200016b565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60009182526003602090815260408084206001600160a01b0393909316845291905290205460ff1690565b3390565b8280546200017d9062000359565b90600052602060002090601f016020900481019282620001a15760008555620001ec565b82601f10620001bc57805160ff1916838001178555620001ec565b82800160010185558215620001ec579182015b82811115620001ec578251825591602001919060010190620001cf565b50620001fa929150620001fe565b5090565b5b80821115620001fa5760008155600101620001ff565b80516001600160a01b03811681146200022d57600080fd5b919050565b600080600080600080600080610100898b0312156200024f578384fd5b88516001600160401b038082111562000266578586fd5b818b0191508b601f8301126200027a578586fd5b8151818111156200028f576200028f62000396565b6040516020601f8301601f1916820181018481118382101715620002b757620002b762000396565b60405282825284830181018f1015620002ce578889fd5b8893505b82841015620002f15784840181015182850182015292830192620002d2565b828411156200030257888184840101525b819c50808e01519b50505050505060408901519550606089015194506080890151935060a089015192506200033a60c08a0162000215565b91506200034a60e08a0162000215565b90509295985092959890939650565b6002810460018216806200036e57607f821691505b602082108114156200039057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612e8a80620003bc6000396000f3fe608060405234801561001057600080fd5b50600436106101ef5760003560e01c806370ba11131161010f578063aa8c217c116100a2578063d539139311610071578063d5391393146103db578063d547741f146103e3578063e985e9c5146103f6578063f242432a14610409576101ef565b8063aa8c217c146103a5578063ca405ce0146103ad578063ccb98ffc146103b5578063cce7ec13146103c8576101ef565b806391d14854116100de57806391d14854146103645780639be65a6014610377578063a217fddf1461038a578063a22cb46514610392576101ef565b806370ba11131461033957806375ceb3411461034157806378e97925146103545780638b9fa7b51461035c576101ef565b8063303c64331161018757806348a0d7541161015657806348a0d754146102eb5780634e1273f4146102f35780634f9b1b40146103135780635483077114610326576101ef565b8063303c6433146102a85780633197cbb6146102bd57806336568abe146102c557806340c10f19146102d8576101ef565b8063248a9ca3116101c3578063248a9ca3146102655780632ddbd13a146102785780632eb2c2d6146102805780632f2ff15d14610295576101ef565b8062fdd58e146101f457806301ffc9a71461021d57806302c7e7af1461023d5780630e89341c14610245575b600080fd5b610207610202366004612307565b61041c565b604051610214919061269c565b60405180910390f35b61023061022b36600461243a565b610476565b6040516102149190612691565b610207610489565b610258610253366004612400565b61048f565b60405161021491906126a5565b610207610273366004612400565b610523565b610207610538565b61029361028e36600461217c565b61053e565b005b6102936102a3366004612418565b6107a4565b6102b06107cd565b6040516102149190612565565b6102076107dc565b6102936102d3366004612418565b6107e2565b6102936102e6366004612307565b610828565b61020761092e565b610306610301366004612330565b610934565b6040516102149190612659565b610293610321366004612129565b610a54565b610293610334366004612400565b610ab3565b610207610ac7565b61029361034f366004612285565b610acd565b610207610c89565b6102b0610c8f565b610230610372366004612418565b610c9e565b6102936103853660046120dd565b610cc9565b610207610ddf565b6102936103a03660046122d1565b610de4565b610207610eb2565b6102b0610eb8565b6102936103c3366004612400565b610ec7565b6102936103d6366004612307565b610edb565b610207611053565b6102936103f1366004612418565b611077565b6102306104043660046120f7565b611096565b610293610417366004612222565b6110c4565b60006001600160a01b03831661044d5760405162461bcd60e51b815260040161044490612789565b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006104818261125a565b90505b919050565b600c5481565b60606002805461049e90612d00565b80601f01602080910402602001604051908101604052809291908181526020018280546104ca90612d00565b80156105175780601f106104ec57610100808354040283529160200191610517565b820191906000526020600020905b8154815290600101906020018083116104fa57829003601f168201915b50505050509050919050565b60009081526003602052604090206001015490565b600d5481565b815183511461055f5760405162461bcd60e51b815260040161044490612aeb565b6001600160a01b0384166105855760405162461bcd60e51b815260040161044490612911565b61058d61127f565b6001600160a01b0316856001600160a01b031614806105b357506105b38561040461127f565b6105cf5760405162461bcd60e51b815260040161044490612956565b60006105d961127f565b90506105e981878787878761079c565b60005b845181101561073657600085828151811061061757634e487b7160e01b600052603260045260246000fd5b60200260200101519050600085838151811061064357634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156106935760405162461bcd60e51b8152600401610444906129a8565b61069d8282612ca6565b60008085815260200190815260200160002060008c6001600160a01b03166001600160a01b03168152602001908152602001600020819055508160008085815260200190815260200160002060008b6001600160a01b03166001600160a01b03168152602001908152602001600020600082825461071b9190612c4f565b925050819055505050508061072f90612d3b565b90506105ec565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161078692919061266c565b60405180910390a461079c818787878787611284565b505050505050565b6107ad82610523565b6107be816107b961127f565b611392565b6107c883836113f6565b505050565b600f546001600160a01b031681565b60115481565b6107ea61127f565b6001600160a01b0316816001600160a01b03161461081a5760405162461bcd60e51b815260040161044490612ba4565b610824828261147d565b5050565b6000610836816107b961127f565b610841600483611502565b1561085e5760405162461bcd60e51b815260040161044490612b74565b6000600b54116108805760405162461bcd60e51b81526004016104449061280b565b61089c8383600160405180602001604052806000815250611515565b6001600b60008282546108af9190612ca6565b925050819055506001600c60008282546108c99190612c4f565b909155506108da90506004836115f5565b5081836001600160a01b0316306001600160a01b03167f03f17d66ad3bf18e9412eb06582908831508cdb9b8da9cddb1431f645a5b8632600954604051610921919061269c565b60405180910390a4505050565b600b5481565b606081518351146109575760405162461bcd60e51b815260040161044490612aa2565b6000835167ffffffffffffffff81111561098157634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156109aa578160200160208202803683370190505b50905060005b8451811015610a4c57610a118582815181106109dc57634e487b7160e01b600052603260045260246000fd5b6020026020010151858381518110610a0457634e487b7160e01b600052603260045260246000fd5b602002602001015161041c565b828281518110610a3157634e487b7160e01b600052603260045260246000fd5b6020908102919091010152610a4581612d3b565b90506109b0565b509392505050565b6000610a62816107b961127f565b50600680546001600160a01b039586166001600160a01b0319918216179091556007805494861694821694909417909355600f80549285169284169290921790915560088054919093169116179055565b6000610ac1816107b961127f565b50601055565b600a5481565b6000610adb816107b961127f565b60008251600b5411610aff5760405162461bcd60e51b81526004016104449061280b565b60005b8351811015610b8b57610b46848281518110610b2e57634e487b7160e01b600052603260045260246000fd5b6020026020010151600461150290919063ffffffff16565b15610b635760405162461bcd60e51b815260040161044490612b74565b8154600181810184556000848152602090209091015580610b8381612d3b565b915050610b02565b50610bf6848483805480602002602001604051908101604052809291908181526020018280548015610bdc57602002820191906000526020600020905b815481526020019060010190808311610bc8575b505050505060405180602001604052806000815250611601565b8251600b6000828254610c099190612ca6565b90915550508251600c8054600090610c22908490612c4f565b90915550600090505b8351811015610c8257610c6f848281518110610c5757634e487b7160e01b600052603260045260246000fd5b602002602001015160046115f590919063ffffffff16565b5080610c7a81612d3b565b915050610c2b565b5050505050565b60105481565b6008546001600160a01b031681565b60009182526003602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6000610cd7816107b961127f565b6040516370a0823160e01b81526000906001600160a01b038416906370a0823190610d06903090600401612565565b60206040518083038186803b158015610d1e57600080fd5b505afa158015610d32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d569190612472565b60405163a9059cbb60e01b81529091506001600160a01b0384169063a9059cbb90610d879033908590600401612640565b602060405180830381600087803b158015610da157600080fd5b505af1158015610db5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd991906123e4565b50505050565b600081565b816001600160a01b0316610df661127f565b6001600160a01b03161415610e1d5760405162461bcd60e51b815260040161044490612a59565b8060016000610e2a61127f565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610e6e61127f565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ea69190612691565b60405180910390a35050565b60095481565b600e546001600160a01b031681565b6000610ed5816107b961127f565b50601155565b600e546001600160a01b03163314610f055760405162461bcd60e51b815260040161044490612876565b610f10600482611502565b15610f2d5760405162461bcd60e51b815260040161044490612b74565b6000600b5411610f4f5760405162461bcd60e51b81526004016104449061280b565b4260105411158015610f62575042601154115b610f7e5760405162461bcd60e51b8152600401610444906129f2565b6007546001600160a01b031615610f9d57610f9882611782565b610fa6565b610fa6826118c9565b610fc28282600160405180602001604052806000815250611515565b6001600b6000828254610fd59190612ca6565b925050819055506001600c6000828254610fef9190612c4f565b9091555061100090506004826115f5565b5080826001600160a01b0316306001600160a01b03167f03f17d66ad3bf18e9412eb06582908831508cdb9b8da9cddb1431f645a5b8632600954604051611047919061269c565b60405180910390a45050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61108082610523565b61108c816107b961127f565b6107c8838361147d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6001600160a01b0384166110ea5760405162461bcd60e51b815260040161044490612911565b6110f261127f565b6001600160a01b0316856001600160a01b0316148061111857506111188561040461127f565b6111345760405162461bcd60e51b81526004016104449061282d565b600061113e61127f565b905061115e81878761114f88611c02565b61115888611c02565b8761079c565b6000848152602081815260408083206001600160a01b038a1684529091529020548381101561119f5760405162461bcd60e51b8152600401610444906129a8565b6111a98482612ca6565b6000868152602081815260408083206001600160a01b038c811685529252808320939093558816815290812080548692906111e5908490612c4f565b92505081905550856001600160a01b0316876001600160a01b0316836001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62888860405161123b929190612bf3565b60405180910390a4611251828888888888611c5b565b50505050505050565b60006001600160e01b03198216637965db0b60e01b1480610481575061048182611d2c565b335b90565b611296846001600160a01b0316611d6c565b1561079c5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906112cf9089908990889088908890600401612579565b602060405180830381600087803b1580156112e957600080fd5b505af1925050508015611319575060408051601f3d908101601f1916820190925261131691810190612456565b60015b61136257611325612d88565b80611330575061134a565b8060405162461bcd60e51b815260040161044491906126a5565b60405162461bcd60e51b8152600401610444906126b8565b6001600160e01b0319811663bc197c8160e01b146112515760405162461bcd60e51b815260040161044490612741565b61139c8282610c9e565b610824576113b4816001600160a01b03166014611d72565b6113bf836020611d72565b6040516020016113d09291906124f0565b60408051601f198184030181529082905262461bcd60e51b8252610444916004016126a5565b6114008282610c9e565b6108245760008281526003602090815260408083206001600160a01b03851684529091529020805460ff1916600117905561143961127f565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6114878282610c9e565b156108245760008281526003602090815260408083206001600160a01b03851684529091529020805460ff191690556114be61127f565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b600061150e8383611f24565b9392505050565b6001600160a01b03841661153b5760405162461bcd60e51b815260040161044490612b33565b600061154561127f565b90506115578160008761114f88611c02565b6000848152602081815260408083206001600160a01b038916845290915281208054859290611587908490612c4f565b92505081905550846001600160a01b031660006001600160a01b0316826001600160a01b03167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516115de929190612bf3565b60405180910390a4610c8281600087878787611c5b565b600061150e8383611f3c565b6001600160a01b0384166116275760405162461bcd60e51b815260040161044490612b33565b81518351146116485760405162461bcd60e51b815260040161044490612aeb565b600061165261127f565b90506116638160008787878761079c565b60005b845181101561171a5783818151811061168f57634e487b7160e01b600052603260045260246000fd5b60200260200101516000808784815181106116ba57634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002060008282546117029190612c4f565b9091555081905061171281612d3b565b915050611666565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161176b92919061266c565b60405180910390a4610c8281600087878787611284565b6007546040516375c7e97360e01b81526000916001600160a01b0316906375c7e973906117b3908590600401612565565b60206040518083038186803b1580156117cb57600080fd5b505afa1580156117df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118039190612472565b90506009548110156118275760405162461bcd60e51b815260040161044490612a22565b6007546009546040516367a09c2360e01b81526001600160a01b03909216916367a09c239161185b91869190600401612640565b602060405180830381600087803b15801561187557600080fd5b505af1158015611889573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ad91906123e4565b6108245760405162461bcd60e51b8152600401610444906127d4565b6009546006546040516370a0823160e01b81526001600160a01b03909116906370a08231906118fc908590600401612565565b60206040518083038186803b15801561191457600080fd5b505afa158015611928573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061194c9190612472565b101561196a5760405162461bcd60e51b8152600401610444906128ca565b600061197a600954600a54611f86565b9050600061198a60095483611fb2565b6006546009546040516323b872dd60e01b81529293506001600160a01b03909116916323b872dd916119c291879130916004016125d7565b602060405180830381600087803b1580156119dc57600080fd5b505af11580156119f0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a1491906123e4565b50600654600f5460405163a9059cbb60e01b81526001600160a01b039283169263a9059cbb92611a4b929116908690600401612640565b602060405180830381600087803b158015611a6557600080fd5b505af1158015611a79573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a9d91906123e4565b5060065460085460405163a9059cbb60e01b81526001600160a01b039283169263a9059cbb92611ad4929116908590600401612640565b602060405180830381600087803b158015611aee57600080fd5b505af1158015611b02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b2691906123e4565b50600854604051631e4ee01b60e01b81526001600160a01b0390911690631e4ee01b90611b599030908590600401612640565b600060405180830381600087803b158015611b7357600080fd5b505af1158015611b87573d6000803e3d6000fd5b505050507fcc512fe50bbacd531b448f7ffd7e933d0fa429d8f015bb9210336e04fc366e653083604051611bbc929190612640565b60405180910390a17f8712441e414e4ca707b96817466a67d017d2daa9a139049258cbd3a67bb3a5393082604051611bf5929190612640565b60405180910390a1505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611c4a57634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b611c6d846001600160a01b0316611d6c565b1561079c5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611ca690899089908890889088906004016125fb565b602060405180830381600087803b158015611cc057600080fd5b505af1925050508015611cf0575060408051601f3d908101601f19168201909252611ced91810190612456565b60015b611cfc57611325612d88565b6001600160e01b0319811663f23a6e6160e01b146112515760405162461bcd60e51b815260040161044490612741565b60006001600160e01b03198216636cdb3d1360e11b1480611d5d57506001600160e01b031982166303a24d0760e21b145b80610481575061048182611fbe565b3b151590565b60606000611d81836002612c87565b611d8c906002612c4f565b67ffffffffffffffff811115611db257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ddc576020820181803683370190505b509050600360fc1b81600081518110611e0557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611e4257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611e66846002612c87565b611e71906001612c4f565b90505b6001811115611f05576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611eb357634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611ed757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611efe81612ce9565b9050611e74565b50831561150e5760405162461bcd60e51b81526004016104449061270c565b60009081526001919091016020526040902054151590565b6000611f488383611f24565b611f7e57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610470565b506000610470565b600080611f938484611fd7565b90506000611fa982670de0b6b3a7640000611fe3565b95945050505050565b600061150e8284612ca6565b6001600160e01b031981166301ffc9a760e01b14919050565b600061150e8284612c87565b600061150e8284612c67565b80356001600160a01b038116811461048457600080fd5b600082601f830112612016578081fd5b8135602061202b61202683612c2b565b612c01565b8281528181019085830183850287018401881015612047578586fd5b855b8581101561206557813584529284019290840190600101612049565b5090979650505050505050565b600082601f830112612082578081fd5b813567ffffffffffffffff81111561209c5761209c612d6c565b6120af601f8201601f1916602001612c01565b8181528460208386010111156120c3578283fd5b816020850160208301379081016020019190915292915050565b6000602082840312156120ee578081fd5b61150e82611fef565b60008060408385031215612109578081fd5b61211283611fef565b915061212060208401611fef565b90509250929050565b6000806000806080858703121561213e578182fd5b61214785611fef565b935061215560208601611fef565b925061216360408601611fef565b915061217160608601611fef565b905092959194509250565b600080600080600060a08688031215612193578081fd5b61219c86611fef565b94506121aa60208701611fef565b9350604086013567ffffffffffffffff808211156121c6578283fd5b6121d289838a01612006565b945060608801359150808211156121e7578283fd5b6121f389838a01612006565b93506080880135915080821115612208578283fd5b5061221588828901612072565b9150509295509295909350565b600080600080600060a08688031215612239578081fd5b61224286611fef565b945061225060208701611fef565b93506040860135925060608601359150608086013567ffffffffffffffff811115612279578182fd5b61221588828901612072565b60008060408385031215612297578182fd5b6122a083611fef565b9150602083013567ffffffffffffffff8111156122bb578182fd5b6122c785828601612006565b9150509250929050565b600080604083850312156122e3578182fd5b6122ec83611fef565b915060208301356122fc81612e2d565b809150509250929050565b60008060408385031215612319578182fd5b61232283611fef565b946020939093013593505050565b60008060408385031215612342578182fd5b823567ffffffffffffffff80821115612359578384fd5b818501915085601f83011261236c578384fd5b8135602061237c61202683612c2b565b82815281810190858301838502870184018b1015612398578889fd5b8896505b848710156123c1576123ad81611fef565b83526001969096019591830191830161239c565b50965050860135925050808211156123d7578283fd5b506122c785828601612006565b6000602082840312156123f5578081fd5b815161150e81612e2d565b600060208284031215612411578081fd5b5035919050565b6000806040838503121561242a578182fd5b8235915061212060208401611fef565b60006020828403121561244b578081fd5b813561150e81612e3e565b600060208284031215612467578081fd5b815161150e81612e3e565b600060208284031215612483578081fd5b5051919050565b6000815180845260208085019450808401835b838110156124b95781518752958201959082019060010161249d565b509495945050505050565b600081518084526124dc816020860160208601612cbd565b601f01601f19169290920160200192915050565b60007f416363657373436f6e74726f6c3a206163636f756e742000000000000000000082528351612528816017850160208801612cbd565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612559816028840160208801612cbd565b01602801949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0386811682528516602082015260a0604082018190526000906125a59083018661248a565b82810360608401526125b7818661248a565b905082810360808401526125cb81856124c4565b98975050505050505050565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612635908301846124c4565b979650505050505050565b6001600160a01b03929092168252602082015260400190565b60006020825261150e602083018461248a565b60006040825261267f604083018561248a565b8281036020840152611fa9818561248a565b901515815260200190565b90815260200190565b60006020825261150e60208301846124c4565b60208082526034908201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356040820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606082015260800190565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6020808252602b908201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526018908201527f5061796d656e742077617320756e7375636365737366756c0000000000000000604082015260600190565b60208082526008908201526714dbdb190813dd5d60c21b604082015260600190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526034908201527f546869732066756e6374696f6e2063616e206f6e6c792062652063616c6c656460408201527308189e48199858dd1bdc9e4818dbdb9d1c9858dd60621b606082015260800190565b60208082526027908201527f496e73756666696369656e742066756e64733a2043616e6e6f742062757920746040820152661a1a5cc813919560ca1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526032908201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60208082526016908201527514d85b1948191a59081b9bdd081cdd185c9d081e595d60521b604082015260600190565b6020808252601f908201527f596f7520646f206e6f74206861766520656e6f75676820706f696e7473202100604082015260600190565b60208082526029908201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604082015268103337b91039b2b63360b91b606082015260800190565b60208082526029908201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604082015268040dad2e6dac2e8c6d60bb1b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b602080825260169082015275151a1a5cc818d85c9908185b1c9958591e481cdbdb1960521b604082015260600190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b918252602082015260400190565b60405181810167ffffffffffffffff81118282101715612c2357612c23612d6c565b604052919050565b600067ffffffffffffffff821115612c4557612c45612d6c565b5060209081020190565b60008219821115612c6257612c62612d56565b500190565b600082612c8257634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612ca157612ca1612d56565b500290565b600082821015612cb857612cb8612d56565b500390565b60005b83811015612cd8578181015183820152602001612cc0565b83811115610dd95750506000910152565b600081612cf857612cf8612d56565b506000190190565b600281046001821680612d1457607f821691505b60208210811415612d3557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d4f57612d4f612d56565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b60e01c90565b600060443d1015612d9857611281565b600481823e6308c379a0612dac8251612d82565b14612db657611281565b6040513d600319016004823e80513d67ffffffffffffffff8160248401118184111715612de65750505050611281565b82840192508251915080821115612e005750505050611281565b503d83016020828401011115612e1857505050611281565b601f01601f1916810160200160405291505090565b8015158114612e3b57600080fd5b50565b6001600160e01b031981168114612e3b57600080fdfea264697066735822122043e72e95bdf2d74d733dc1c64fdd00bb0d2c7a0e44c887de75c3c2a585c9064764736f6c63430008000033a264697066735822122063684a24b8a7d8d899e34a812a20145e34bd0348eed394904cc90d853e8f00aa64736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000fbc3b76a206f03f1edbf411f280444cd3fd9c7c8
-----Decoded View---------------
Arg [0] : admin (address): 0xFBC3B76A206f03f1edbF411F280444cD3fD9c7C8
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000fbc3b76a206f03f1edbf411f280444cd3fd9c7c8
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ 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.