Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
37,862,100 JERK
Holders
147
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.0000000043 JERKValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
Contract
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// _____ ________ _______ __ __ // | \| \| \ | \ / \ // \$$$$$| $$$$$$$$| $$$$$$$\| $$ / $$ // | $$| $$__ | $$__| $$| $$/ $$ // __ | $$| $$ \ | $$ $$| $$ $$ // | \ | $$| $$$$$ | $$$$$$$\| $$$$$\ // | $$__| $$| $$_____ | $$ | $$| $$ \$$\ // \$$ $$| $$ \| $$ | $$| $$ \$$\ // \$$$$$$ \$$$$$$$$ \$$ \$$ \$$ \$$ // // JERK Token // The world's first Fap-to-Earn (F2E) token & NFT! 🍆💦💰 // Earn $JERK tokens with Proof of Jerkâ„¢. // https://twitter.com/JERK_ETH // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@thirdweb-dev/contracts/base/ERC20Drop.sol"; /// @title JERK Token ERC20 contract /// @author kzoink /// @notice Fungible token for the JERK ecosystem /// @dev Inherits ERC20Drop contract from thirdweb contract Contract is ERC20Drop { //, Pausable { /// @notice Pause flag bool private isPaused; /// @notice Blacklist of wallets that to prevent from transacting this token (used to blacklist bad actors) mapping(address => bool) private blacklisted; /// @notice Maximum transfer amount per transaction in basis points (used for antiwhale protection) /// @dev E.g., 50 - 0.5% of total supply. Set to 0 to turn off. uint256 private maxTransferAmountRate; constructor( address _defaultAdmin, string memory _name, string memory _symbol, address _primarySaleRecipient ) ERC20Drop( _defaultAdmin, _name, _symbol, _primarySaleRecipient ) { isPaused = false; maxTransferAmountRate = 0; // Max transfer amount rate set to 0 by default to turn off } /// @notice Returns true if the contract is paused, and false otherwise function paused() public view virtual returns (bool) { //return isPaused; return isPaused; } /// @notice Pauses transfers function pause() public onlyOwner { _pause(); } /// @notice Pauses transfers function _pause() internal virtual whenNotPaused { isPaused = true; emit Paused(_msgSender()); } /// @notice Unpauses transfers function unpause() public onlyOwner { _unpause(); } /// @notice Unpauses transfers function _unpause() internal virtual whenPaused { isPaused = false; emit Unpaused(_msgSender()); } /// @notice Function to set the maximum transfer amount rate per transaction /// @param _maxTransferAmountRate Max amount of supply that can be transferred in basis points (E.g., 50 - 0.5% of total supply) function setMaxTransferAmountRate(uint256 _maxTransferAmountRate) external onlyOwner { maxTransferAmountRate = _maxTransferAmountRate; emit MaxTransferAmountRateSet(_maxTransferAmountRate); } /// @notice Returns the max buy amount /// @return Max transfer amount (in tokens) function maxTransferAmount() public view returns (uint256) { return totalSupply() * maxTransferAmountRate / 10000; } /// @notice Add a wallet to the blacklist /// @param _address The address to be added to the blacklist function addToBlacklist(address _address) external onlyOwner { blacklisted[_address] = true; emit AddedToBlacklist(_address); } /// @notice Remove a wallet from the blacklist /// @param _address The address to be removed from the blacklist function removeFromBlacklist(address _address) external onlyOwner { blacklisted[_address] = false; emit RemovedFromBlacklist(_address); } /// @notice Pause functionality /// @param from The sender of the transfer /// @param to The recipient of the transfer /// @param amount The amount of the transfer (prior to any applicable tax) function _beforeTokenTransfer(address from, address to, uint256 amount) internal whenNotPaused override { super._beforeTokenTransfer(from, to, amount); } /// @notice Override the transfer function to apply tax based on the whitelist /// @param sender The sender of the transfer /// @param recipient The recipient of the transfer /// @param amount The amount of the transfer (prior to any applicable tax) function _transfer( address sender, address recipient, uint256 amount ) internal override antiWhale(sender, recipient, amount) notBlacklisted(msg.sender) notBlacklisted(recipient) { super._transfer(sender, recipient, amount); } /// @notice Override the transferFrom function to apply anti-whale, tax, and blacklist functions /// @param sender The sender of the transfer /// @param recipient The recipient of the transfer /// @param amount The amount of the transfer (prior to any applicable tax) /// @return True if the transfer succeeded function transferFrom( address sender, address recipient, uint256 amount ) public override antiWhale(sender, recipient, amount) notBlacklisted(msg.sender) notBlacklisted(recipient) returns (bool) { return super.transferFrom(sender, recipient, amount); } /// @notice Throws if the contract is paused function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /// @notice Throws if the contract is not paused function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /// @notice Modifier to make a function callable only when the contract is paused modifier whenNotPaused() { _requireNotPaused(); _; } /// @notice Modifier to make a function callable only when the contract is paused modifier whenPaused() { _requirePaused(); _; } /// @notice Modifier to insert antiwhale protections /// @param sender The sender of the transfer /// @param recipient The recipient of the transfer /// @param amount The amount of the transfer modifier antiWhale(address sender, address recipient, uint256 amount) { if (maxTransferAmount() > 0) { require(amount <= maxTransferAmount(), "Transfer amount exceeds the maxTransferAmount"); } _; } /// @notice Modifier to insert blacklist check /// @param _address The address to check for blacklisting modifier notBlacklisted(address _address) { require(!blacklisted[_address], "Account is blacklisted"); _; } /// @dev Emitted when the pause is triggered /// @param account The account that triggered the pause event Paused(address account); /// @dev Emitted when the pause is lifted /// @param account The account that lifted the pause event Unpaused(address account); /// @dev Emitted when a max transfer amount rate is set /// @param rate The max transfer rate (percentage of the total supply) in basis points event MaxTransferAmountRateSet(uint256 rate); /// @dev Emitted when an account is blacklisted /// @param account The account added to the blacklist event AddedToBlacklist(address indexed account); /// @dev Emitted when an account is removed from the blacklist /// @param account The account removed from the blacklist event RemovedFromBlacklist(address indexed account); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "../openzeppelin-presets/token/ERC20/extensions/ERC20Permit.sol"; import "../extension/ContractMetadata.sol"; import "../extension/Multicall.sol"; import "../extension/Ownable.sol"; import "../extension/PrimarySale.sol"; import "../extension/DropSinglePhase.sol"; import "../extension/interface/IBurnableERC20.sol"; import "../lib/CurrencyTransferLib.sol"; /** * BASE: ERC20 * EXTENSION: DropSinglePhase * * The `ERC20Drop` smart contract implements the ERC20 standard. * It includes the following additions to standard ERC20 logic: * * - Ownership of the contract, with the ability to restrict certain functions to * only be called by the contract's owner. * * - Multicall capability to perform multiple actions atomically * * - EIP 2612 compliance: See {ERC20-permit} method, which can be used to change an account's ERC20 allowance by * presenting a message signed by the account. * * The `drop` mechanism in the `DropSinglePhase` extension is a distribution mechanism for tokens. It lets * you set restrictions such as a price to charge, an allowlist etc. when an address atttempts to mint tokens. * */ contract ERC20Drop is ContractMetadata, Multicall, Ownable, ERC20Permit, PrimarySale, DropSinglePhase, IBurnableERC20 { /*////////////////////////////////////////////////////////////// Constructor //////////////////////////////////////////////////////////////*/ constructor( address _defaultAdmin, string memory _name, string memory _symbol, address _primarySaleRecipient ) ERC20Permit(_name, _symbol) { _setupOwner(_defaultAdmin); _setupPrimarySaleRecipient(_primarySaleRecipient); } /*////////////////////////////////////////////////////////////// ERC20 logic //////////////////////////////////////////////////////////////*/ /** * @notice Lets an owner a given amount of their tokens. * @dev Caller should own the `_amount` of tokens. * * @param _amount The number of tokens to burn. */ function burn(uint256 _amount) external virtual { require(balanceOf(msg.sender) >= _amount, "not enough balance"); _burn(msg.sender, _amount); } /** * @notice Lets an owner burn a given amount of an account's tokens. * @dev `_account` should own the `_amount` of tokens. * * @param _account The account to burn tokens from. * @param _amount The number of tokens to burn. */ function burnFrom(address _account, uint256 _amount) external virtual override { require(_canBurn(), "Not authorized to burn."); require(balanceOf(_account) >= _amount, "not enough balance"); uint256 decreasedAllowance = allowance(_account, msg.sender) - _amount; _approve(_account, msg.sender, 0); _approve(_account, msg.sender, decreasedAllowance); _burn(_account, _amount); } /*////////////////////////////////////////////////////////////// Internal (overrideable) functions //////////////////////////////////////////////////////////////*/ /// @dev Collects and distributes the primary sale value of tokens being claimed. function _collectPriceOnClaim( address _primarySaleRecipient, uint256 _quantityToClaim, address _currency, uint256 _pricePerToken ) internal virtual override { if (_pricePerToken == 0) { return; } uint256 totalPrice = (_quantityToClaim * _pricePerToken) / 1 ether; require(totalPrice > 0, "quantity too low"); if (_currency == CurrencyTransferLib.NATIVE_TOKEN) { require(msg.value == totalPrice, "Must send total price."); } address saleRecipient = _primarySaleRecipient == address(0) ? primarySaleRecipient() : _primarySaleRecipient; CurrencyTransferLib.transferCurrency(_currency, msg.sender, saleRecipient, totalPrice); } /// @dev Transfers the tokens being claimed. function _transferTokensOnClaim(address _to, uint256 _quantityBeingClaimed) internal virtual override returns (uint256) { _mint(_to, _quantityBeingClaimed); return 0; } /// @dev Checks whether platform fee info can be set in the given execution context. function _canSetClaimConditions() internal view virtual override returns (bool) { return msg.sender == owner(); } /// @dev Returns whether contract metadata can be set in the given execution context. function _canSetContractURI() internal view virtual override returns (bool) { return msg.sender == owner(); } /// @dev Returns whether tokens can be minted in the given execution context. function _canMint() internal view virtual returns (bool) { return msg.sender == owner(); } /// @dev Returns whether tokens can be burned in the given execution context. function _canBurn() internal view virtual returns (bool) { return msg.sender == owner(); } /// @dev Returns whether owner can be set in the given execution context. function _canSetOwner() internal view virtual override returns (bool) { return msg.sender == owner(); } /// @dev Returns whether primary sale recipient can be set in the given execution context. function _canSetPrimarySaleRecipient() internal view virtual override returns (bool) { return msg.sender == owner(); } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /** * @title ERC20Metadata interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ interface IERC20Metadata { function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/IContractMetadata.sol"; /** * @title Contract Metadata * @notice Thirdweb's `ContractMetadata` is a contract extension for any base contracts. It lets you set a metadata URI * for you contract. * Additionally, `ContractMetadata` is necessary for NFT contracts that want royalties to get distributed on OpenSea. */ abstract contract ContractMetadata is IContractMetadata { /// @notice Returns the contract metadata URI. string public override contractURI; /** * @notice Lets a contract admin set the URI for contract-level metadata. * @dev Caller should be authorized to setup contractURI, e.g. contract admin. * See {_canSetContractURI}. * Emits {ContractURIUpdated Event}. * * @param _uri keccak256 hash of the role. e.g. keccak256("TRANSFER_ROLE") */ function setContractURI(string memory _uri) external override { if (!_canSetContractURI()) { revert("Not authorized"); } _setupContractURI(_uri); } /// @dev Lets a contract admin set the URI for contract-level metadata. function _setupContractURI(string memory _uri) internal { string memory prevURI = contractURI; contractURI = _uri; emit ContractURIUpdated(prevURI, _uri); } /// @dev Returns whether contract metadata can be set in the given execution context. function _canSetContractURI() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/IDropSinglePhase.sol"; import "../lib/MerkleProof.sol"; abstract contract DropSinglePhase is IDropSinglePhase { /*/////////////////////////////////////////////////////////////// State variables //////////////////////////////////////////////////////////////*/ /// @dev The active conditions for claiming tokens. ClaimCondition public claimCondition; /// @dev The ID for the active claim condition. bytes32 private conditionId; /*/////////////////////////////////////////////////////////////// Mappings //////////////////////////////////////////////////////////////*/ /** * @dev Map from a claim condition uid and account to supply claimed by account. */ mapping(bytes32 => mapping(address => uint256)) private supplyClaimedByWallet; /*/////////////////////////////////////////////////////////////// Drop logic //////////////////////////////////////////////////////////////*/ /// @dev Lets an account claim tokens. function claim( address _receiver, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof, bytes memory _data ) public payable virtual override { _beforeClaim(_receiver, _quantity, _currency, _pricePerToken, _allowlistProof, _data); bytes32 activeConditionId = conditionId; verifyClaim(_dropMsgSender(), _quantity, _currency, _pricePerToken, _allowlistProof); // Update contract state. claimCondition.supplyClaimed += _quantity; supplyClaimedByWallet[activeConditionId][_dropMsgSender()] += _quantity; // If there's a price, collect price. _collectPriceOnClaim(address(0), _quantity, _currency, _pricePerToken); // Mint the relevant NFTs to claimer. uint256 startTokenId = _transferTokensOnClaim(_receiver, _quantity); emit TokensClaimed(_dropMsgSender(), _receiver, startTokenId, _quantity); _afterClaim(_receiver, _quantity, _currency, _pricePerToken, _allowlistProof, _data); } /// @dev Lets a contract admin set claim conditions. function setClaimConditions(ClaimCondition calldata _condition, bool _resetClaimEligibility) external override { if (!_canSetClaimConditions()) { revert("Not authorized"); } bytes32 targetConditionId = conditionId; uint256 supplyClaimedAlready = claimCondition.supplyClaimed; if (_resetClaimEligibility) { supplyClaimedAlready = 0; targetConditionId = keccak256(abi.encodePacked(_dropMsgSender(), block.number)); } if (supplyClaimedAlready > _condition.maxClaimableSupply) { revert("max supply claimed"); } claimCondition = ClaimCondition({ startTimestamp: _condition.startTimestamp, maxClaimableSupply: _condition.maxClaimableSupply, supplyClaimed: supplyClaimedAlready, quantityLimitPerWallet: _condition.quantityLimitPerWallet, merkleRoot: _condition.merkleRoot, pricePerToken: _condition.pricePerToken, currency: _condition.currency, metadata: _condition.metadata }); conditionId = targetConditionId; emit ClaimConditionUpdated(_condition, _resetClaimEligibility); } /// @dev Checks a request to claim NFTs against the active claim condition's criteria. function verifyClaim( address _claimer, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof ) public view returns (bool isOverride) { ClaimCondition memory currentClaimPhase = claimCondition; uint256 claimLimit = currentClaimPhase.quantityLimitPerWallet; uint256 claimPrice = currentClaimPhase.pricePerToken; address claimCurrency = currentClaimPhase.currency; if (currentClaimPhase.merkleRoot != bytes32(0)) { (isOverride, ) = MerkleProof.verify( _allowlistProof.proof, currentClaimPhase.merkleRoot, keccak256( abi.encodePacked( _claimer, _allowlistProof.quantityLimitPerWallet, _allowlistProof.pricePerToken, _allowlistProof.currency ) ) ); } if (isOverride) { claimLimit = _allowlistProof.quantityLimitPerWallet != 0 ? _allowlistProof.quantityLimitPerWallet : claimLimit; claimPrice = _allowlistProof.pricePerToken != type(uint256).max ? _allowlistProof.pricePerToken : claimPrice; claimCurrency = _allowlistProof.pricePerToken != type(uint256).max && _allowlistProof.currency != address(0) ? _allowlistProof.currency : claimCurrency; } uint256 _supplyClaimedByWallet = supplyClaimedByWallet[conditionId][_claimer]; if (_currency != claimCurrency || _pricePerToken != claimPrice) { revert("!PriceOrCurrency"); } if (_quantity == 0 || (_quantity + _supplyClaimedByWallet > claimLimit)) { revert("!Qty"); } if (currentClaimPhase.supplyClaimed + _quantity > currentClaimPhase.maxClaimableSupply) { revert("!MaxSupply"); } if (currentClaimPhase.startTimestamp > block.timestamp) { revert("cant claim yet"); } } /// @dev Returns the supply claimed by claimer for active conditionId. function getSupplyClaimedByWallet(address _claimer) public view returns (uint256) { return supplyClaimedByWallet[conditionId][_claimer]; } /*//////////////////////////////////////////////////////////////////// Optional hooks that can be implemented in the derived contract ///////////////////////////////////////////////////////////////////*/ /// @dev Exposes the ability to override the msg sender. function _dropMsgSender() internal virtual returns (address) { return msg.sender; } /// @dev Runs before every `claim` function call. function _beforeClaim( address _receiver, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof, bytes memory _data ) internal virtual {} /// @dev Runs after every `claim` function call. function _afterClaim( address _receiver, uint256 _quantity, address _currency, uint256 _pricePerToken, AllowlistProof calldata _allowlistProof, bytes memory _data ) internal virtual {} /// @dev Collects and distributes the primary sale value of NFTs being claimed. function _collectPriceOnClaim( address _primarySaleRecipient, uint256 _quantityToClaim, address _currency, uint256 _pricePerToken ) internal virtual; /// @dev Transfers the NFTs being claimed. function _transferTokensOnClaim(address _to, uint256 _quantityBeingClaimed) internal virtual returns (uint256 startTokenId); function _canSetClaimConditions() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache 2.0 pragma solidity ^0.8.0; /// @author thirdweb import "../lib/TWAddress.sol"; import "./interface/IMulticall.sol"; /** * @dev Provides a function to batch together multiple calls in a single external call. * * _Available since v4.1._ */ contract Multicall is IMulticall { /** * @notice Receives and executes a batch of function calls on this contract. * @dev Receives and executes a batch of function calls on this contract. * * @param data The bytes data that makes up the batch of function calls to execute. * @return results The bytes data that makes up the result of the batch of function calls executed. */ function multicall(bytes[] calldata data) external virtual override returns (bytes[] memory results) { results = new bytes[](data.length); for (uint256 i = 0; i < data.length; i++) { results[i] = TWAddress.functionDelegateCall(address(this), data[i]); } return results; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/IOwnable.sol"; /** * @title Ownable * @notice Thirdweb's `Ownable` is a contract extension to be used with any base contract. It exposes functions for setting and reading * who the 'owner' of the inheriting smart contract is, and lets the inheriting contract perform conditional logic that uses * information about who the contract's owner is. */ abstract contract Ownable is IOwnable { /// @dev Owner of the contract (purpose: OpenSea compatibility) address private _owner; /// @dev Reverts if caller is not the owner. modifier onlyOwner() { if (msg.sender != _owner) { revert("Not authorized"); } _; } /** * @notice Returns the owner of the contract. */ function owner() public view override returns (address) { return _owner; } /** * @notice Lets an authorized wallet set a new owner for the contract. * @param _newOwner The address to set as the new owner of the contract. */ function setOwner(address _newOwner) external override { if (!_canSetOwner()) { revert("Not authorized"); } _setupOwner(_newOwner); } /// @dev Lets a contract admin set a new owner for the contract. The new owner must be a contract admin. function _setupOwner(address _newOwner) internal { address _prevOwner = _owner; _owner = _newOwner; emit OwnerUpdated(_prevOwner, _newOwner); } /// @dev Returns whether owner can be set in the given execution context. function _canSetOwner() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./interface/IPrimarySale.sol"; /** * @title Primary Sale * @notice Thirdweb's `PrimarySale` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of primary sales, and lets the inheriting contract perform conditional logic that uses information about * primary sales, if desired. */ abstract contract PrimarySale is IPrimarySale { /// @dev The address that receives all primary sales value. address private recipient; /// @dev Returns primary sale recipient address. function primarySaleRecipient() public view override returns (address) { return recipient; } /** * @notice Updates primary sale recipient. * @dev Caller should be authorized to set primary sales info. * See {_canSetPrimarySaleRecipient}. * Emits {PrimarySaleRecipientUpdated Event}; See {_setupPrimarySaleRecipient}. * * @param _saleRecipient Address to be set as new recipient of primary sales. */ function setPrimarySaleRecipient(address _saleRecipient) external override { if (!_canSetPrimarySaleRecipient()) { revert("Not authorized"); } _setupPrimarySaleRecipient(_saleRecipient); } /// @dev Lets a contract admin set the recipient for all primary sales. function _setupPrimarySaleRecipient(address _saleRecipient) internal { recipient = _saleRecipient; emit PrimarySaleRecipientUpdated(_saleRecipient); } /// @dev Returns whether primary sale recipient can be set in the given execution context. function _canSetPrimarySaleRecipient() internal view virtual returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb interface IBurnableERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) external; /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) external; }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * The interface `IClaimCondition` is written for thirdweb's 'Drop' contracts, which are distribution mechanisms for tokens. * * A claim condition defines criteria under which accounts can mint tokens. Claim conditions can be overwritten * or added to by the contract admin. At any moment, there is only one active claim condition. */ interface IClaimCondition { /** * @notice The criteria that make up a claim condition. * * @param startTimestamp The unix timestamp after which the claim condition applies. * The same claim condition applies until the `startTimestamp` * of the next claim condition. * * @param maxClaimableSupply The maximum total number of tokens that can be claimed under * the claim condition. * * @param supplyClaimed At any given point, the number of tokens that have been claimed * under the claim condition. * * @param quantityLimitPerWallet The maximum number of tokens that can be claimed by a wallet. * * @param merkleRoot The allowlist of addresses that can claim tokens under the claim * condition. * * @param pricePerToken The price required to pay per token claimed. * * @param currency The currency in which the `pricePerToken` must be paid. * * @param metadata Claim condition metadata. */ struct ClaimCondition { uint256 startTimestamp; uint256 maxClaimableSupply; uint256 supplyClaimed; uint256 quantityLimitPerWallet; bytes32 merkleRoot; uint256 pricePerToken; address currency; string metadata; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * Thirdweb's `ContractMetadata` is a contract extension for any base contracts. It lets you set a metadata URI * for you contract. * * Additionally, `ContractMetadata` is necessary for NFT contracts that want royalties to get distributed on OpenSea. */ interface IContractMetadata { /// @dev Returns the metadata URI of the contract. function contractURI() external view returns (string memory); /** * @dev Sets contract URI for the storefront-level metadata of the contract. * Only module admin can call this function. */ function setContractURI(string calldata _uri) external; /// @dev Emitted when the contract URI is updated. event ContractURIUpdated(string prevURI, string newURI); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb import "./IClaimCondition.sol"; /** * The interface `IDropSinglePhase` is written for thirdweb's 'DropSinglePhase' contracts, which are distribution mechanisms for tokens. * * An authorized wallet can set a claim condition for the distribution of the contract's tokens. * A claim condition defines criteria under which accounts can mint tokens. Claim conditions can be overwritten * or added to by the contract admin. At any moment, there is only one active claim condition. */ interface IDropSinglePhase is IClaimCondition { /** * @param proof Prood of concerned wallet's inclusion in an allowlist. * @param quantityLimitPerWallet The total quantity of tokens the allowlisted wallet is eligible to claim over time. * @param pricePerToken The price per token the allowlisted wallet must pay to claim tokens. * @param currency The currency in which the allowlisted wallet must pay the price for claiming tokens. */ struct AllowlistProof { bytes32[] proof; uint256 quantityLimitPerWallet; uint256 pricePerToken; address currency; } /// @notice Emitted when tokens are claimed via `claim`. event TokensClaimed( address indexed claimer, address indexed receiver, uint256 indexed startTokenId, uint256 quantityClaimed ); /// @notice Emitted when the contract's claim conditions are updated. event ClaimConditionUpdated(ClaimCondition condition, bool resetEligibility); /** * @notice Lets an account claim a given quantity of NFTs. * * @param receiver The receiver of the NFTs to claim. * @param quantity The quantity of NFTs to claim. * @param currency The currency in which to pay for the claim. * @param pricePerToken The price per token to pay for the claim. * @param allowlistProof The proof of the claimer's inclusion in the merkle root allowlist * of the claim conditions that apply. * @param data Arbitrary bytes data that can be leveraged in the implementation of this interface. */ function claim( address receiver, uint256 quantity, address currency, uint256 pricePerToken, AllowlistProof calldata allowlistProof, bytes memory data ) external payable; /** * @notice Lets a contract admin (account with `DEFAULT_ADMIN_ROLE`) set claim conditions. * * @param phase Claim condition to set. * * @param resetClaimEligibility Whether to honor the restrictions applied to wallets who have claimed tokens in the current conditions, * in the new claim conditions being set. */ function setClaimConditions(ClaimCondition calldata phase, bool resetClaimEligibility) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @author thirdweb /** * @dev Provides a function to batch together multiple calls in a single external call. * * _Available since v4.1._ */ interface IMulticall { /** * @dev Receives and executes a batch of function calls on this contract. */ function multicall(bytes[] calldata data) external returns (bytes[] memory results); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * Thirdweb's `Ownable` is a contract extension to be used with any base contract. It exposes functions for setting and reading * who the 'owner' of the inheriting smart contract is, and lets the inheriting contract perform conditional logic that uses * information about who the contract's owner is. */ interface IOwnable { /// @dev Returns the owner of the contract. function owner() external view returns (address); /// @dev Lets a module admin set a new owner for the contract. The new owner must be a module admin. function setOwner(address _newOwner) external; /// @dev Emitted when a new Owner is set. event OwnerUpdated(address indexed prevOwner, address indexed newOwner); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * Thirdweb's `Primary` is a contract extension to be used with any base contract. It exposes functions for setting and reading * the recipient of primary sales, and lets the inheriting contract perform conditional logic that uses information about * primary sales, if desired. */ interface IPrimarySale { /// @dev The adress that receives all primary sales value. function primarySaleRecipient() external view returns (address); /// @dev Lets a module admin set the default recipient of all primary sales. function setPrimarySaleRecipient(address _saleRecipient) external; /// @dev Emitted when a new sale recipient is set. event PrimarySaleRecipientUpdated(address indexed recipient); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; interface IWETH { function deposit() external payable; function withdraw(uint256 amount) external; function transfer(address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; /// @author thirdweb // Helper interfaces import { IWETH } from "../interfaces/IWETH.sol"; import "../openzeppelin-presets/token/ERC20/utils/SafeERC20.sol"; library CurrencyTransferLib { using SafeERC20 for IERC20; /// @dev The address interpreted as native token of the chain. address public constant NATIVE_TOKEN = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; /// @dev Transfers a given amount of currency. function transferCurrency( address _currency, address _from, address _to, uint256 _amount ) internal { if (_amount == 0) { return; } if (_currency == NATIVE_TOKEN) { safeTransferNativeToken(_to, _amount); } else { safeTransferERC20(_currency, _from, _to, _amount); } } /// @dev Transfers a given amount of currency. (With native token wrapping) function transferCurrencyWithWrapper( address _currency, address _from, address _to, uint256 _amount, address _nativeTokenWrapper ) internal { if (_amount == 0) { return; } if (_currency == NATIVE_TOKEN) { if (_from == address(this)) { // withdraw from weth then transfer withdrawn native token to recipient IWETH(_nativeTokenWrapper).withdraw(_amount); safeTransferNativeTokenWithWrapper(_to, _amount, _nativeTokenWrapper); } else if (_to == address(this)) { // store native currency in weth require(_amount == msg.value, "msg.value != amount"); IWETH(_nativeTokenWrapper).deposit{ value: _amount }(); } else { safeTransferNativeTokenWithWrapper(_to, _amount, _nativeTokenWrapper); } } else { safeTransferERC20(_currency, _from, _to, _amount); } } /// @dev Transfer `amount` of ERC20 token from `from` to `to`. function safeTransferERC20( address _currency, address _from, address _to, uint256 _amount ) internal { if (_from == _to) { return; } if (_from == address(this)) { IERC20(_currency).safeTransfer(_to, _amount); } else { IERC20(_currency).safeTransferFrom(_from, _to, _amount); } } /// @dev Transfers `amount` of native token to `to`. function safeTransferNativeToken(address to, uint256 value) internal { // solhint-disable avoid-low-level-calls // slither-disable-next-line low-level-calls (bool success, ) = to.call{ value: value }(""); require(success, "native token transfer failed"); } /// @dev Transfers `amount` of native token to `to`. (With native token wrapping) function safeTransferNativeTokenWithWrapper( address to, uint256 value, address _nativeTokenWrapper ) internal { // solhint-disable avoid-low-level-calls // slither-disable-next-line low-level-calls (bool success, ) = to.call{ value: value }(""); if (!success) { IWETH(_nativeTokenWrapper).deposit{ value: value }(); IERC20(_nativeTokenWrapper).safeTransfer(to, value); } } }
// SPDX-License-Identifier: Apache 2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * Source: https://github.com/ensdomains/governance/blob/master/contracts/MerkleProof.sol */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool, uint256) { bytes32 computedHash = leaf; uint256 index = 0; for (uint256 i = 0; i < proof.length; i++) { index *= 2; bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); index += 1; } } // Check if the computed hash (root) is equal to the provided root return (computedHash == root, index); } }
// SPDX-License-Identifier: Apache 2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * @dev Collection of functions related to the address type */ library TWAddress { /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * [EIP1884](https://eips.ethereum.org/EIPS/eip-1884) 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"); (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"); (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"); (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"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: Apache 2.0 pragma solidity ^0.8.0; /// @author thirdweb /** * @dev String operations. */ library TWStrings { bytes16 private constant _HEX_SYMBOLS = "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] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "../../../eip/interface/IERC20.sol"; import "../../../eip/interface/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 Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default 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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, _allowances[owner][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-ERC20Permit.sol) pragma solidity ^0.8.0; import "../../../../eip/interface/IERC20Permit.sol"; import "../ERC20.sol"; import "../../../utils/cryptography/EIP712.sol"; import "../../../utils/cryptography/ECDSA.sol"; import "../../../utils/Counters.sol"; /** * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * _Available since v3.4._ */ abstract contract ERC20Permit is ERC20, IERC20Permit { using Counters for Counters.Counter; mapping(address => Counters.Counter) private _nonces; // solhint-disable-next-line var-name-mixedcase bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; // solhint-disable-next-line var-name-mixedcase uint256 private immutable _CACHED_CHAIN_ID; // solhint-disable-next-line var-name-mixedcase address private immutable _CACHED_THIS; // solhint-disable-next-line var-name-mixedcase bytes32 private immutable _PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); /** * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`. * * It's a good idea to use the same `name` that is defined as the ERC20 token name. */ constructor(string memory name_, string memory symbol_) ERC20(name_, symbol_) { _CACHED_CHAIN_ID = block.chainid; _CACHED_THIS = address(this); _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(); } /** * @dev See {IERC20Permit-permit}. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual override { require(block.timestamp <= deadline, "ERC20Permit: expired deadline"); bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline)); bytes32 hash = ECDSA.toTypedDataHash(DOMAIN_SEPARATOR(), structHash); address signer = ECDSA.recover(hash, v, r, s); require(signer == owner, "ERC20Permit: invalid signature"); _approve(owner, spender, value); } /** * @dev See {IERC20Permit-nonces}. */ function nonces(address owner) public view virtual override returns (uint256) { return _nonces[owner].current(); } /** * @dev See {IERC20Permit-DOMAIN_SEPARATOR}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() public view override returns (bytes32) { if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(); } } function _buildDomainSeparator() private view returns (bytes32) { return keccak256( abi.encode( keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"), keccak256(bytes(name())), keccak256("1"), block.chainid, address(this) ) ); } /** * @dev "Consume a nonce": return the current value and increment. * * _Available since v4.1._ */ function _useNonce(address owner) internal virtual returns (uint256 current) { Counters.Counter storage nonce = _nonces[owner]; current = nonce.current(); nonce.increment(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../../../../eip/interface/IERC20.sol"; import "../../../../lib/TWAddress.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 TWAddress 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' 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 require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../../../lib/TWStrings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) { // 32 is the length in bytes of hash, // enforced by the type signature above /// @solidity memory-safe-assembly assembly { mstore(0x00, "\x19Ethereum Signed Message:\n32") mstore(0x1c, hash) message := keccak256(0x00, 0x3c) } } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", TWStrings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) { /// @solidity memory-safe-assembly assembly { let ptr := mload(0x40) mstore(ptr, "\x19\x01") mstore(add(ptr, 0x02), domainSeparator) mstore(add(ptr, 0x22), structHash) data := keccak256(ptr, 0x42) } } /** * @dev Returns an Ethereum Signed Data with intended validator, created from a * `validator` and `data` according to the version 0 of EIP-191. * * See {recover}. */ function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x00", validator, data)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol) pragma solidity ^0.8.0; import "./ECDSA.sol"; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ */ abstract contract EIP712 { /* solhint-disable var-name-mixedcase */ // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; uint256 private immutable _CACHED_CHAIN_ID; address private immutable _CACHED_THIS; bytes32 private immutable _HASHED_NAME; bytes32 private immutable _HASHED_VERSION; bytes32 private immutable _TYPE_HASH; /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); bytes32 typeHash = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion); _CACHED_THIS = address(this); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "london", "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_defaultAdmin","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_primarySaleRecipient","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"AddedToBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"maxClaimableSupply","type":"uint256"},{"internalType":"uint256","name":"supplyClaimed","type":"uint256"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"string","name":"metadata","type":"string"}],"indexed":false,"internalType":"struct IClaimCondition.ClaimCondition","name":"condition","type":"tuple"},{"indexed":false,"internalType":"bool","name":"resetEligibility","type":"bool"}],"name":"ClaimConditionUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"prevURI","type":"string"},{"indexed":false,"internalType":"string","name":"newURI","type":"string"}],"name":"ContractURIUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"rate","type":"uint256"}],"name":"MaxTransferAmountRateSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"prevOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"}],"name":"PrimarySaleRecipientUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"RemovedFromBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"claimer","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"uint256","name":"startTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"quantityClaimed","type":"uint256"}],"name":"TokensClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"address","name":"_currency","type":"address"},{"internalType":"uint256","name":"_pricePerToken","type":"uint256"},{"components":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"}],"internalType":"struct IDropSinglePhase.AllowlistProof","name":"_allowlistProof","type":"tuple"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claimCondition","outputs":[{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"maxClaimableSupply","type":"uint256"},{"internalType":"uint256","name":"supplyClaimed","type":"uint256"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"string","name":"metadata","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_claimer","type":"address"}],"name":"getSupplyClaimedByWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransferAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"primarySaleRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"maxClaimableSupply","type":"uint256"},{"internalType":"uint256","name":"supplyClaimed","type":"uint256"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"string","name":"metadata","type":"string"}],"internalType":"struct IClaimCondition.ClaimCondition","name":"_condition","type":"tuple"},{"internalType":"bool","name":"_resetClaimEligibility","type":"bool"}],"name":"setClaimConditions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTransferAmountRate","type":"uint256"}],"name":"setMaxTransferAmountRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_saleRecipient","type":"address"}],"name":"setPrimarySaleRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_claimer","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"address","name":"_currency","type":"address"},{"internalType":"uint256","name":"_pricePerToken","type":"uint256"},{"components":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"quantityLimitPerWallet","type":"uint256"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"address","name":"currency","type":"address"}],"internalType":"struct IDropSinglePhase.AllowlistProof","name":"_allowlistProof","type":"tuple"}],"name":"verifyClaim","outputs":[{"internalType":"bool","name":"isOverride","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6101006040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960e0523480156200003657600080fd5b5060405162003b2d38038062003b2d83398101604081905262000059916200037c565b838383838282818160056200006f83826200049b565b5060066200007e82826200049b565b50504660a052503060c05262000093620000cd565b60805250620000a490508462000164565b620000af81620001b6565b50506013805460ff1916905550506000601555506200056792505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f620000fa62000200565b80516020918201206040805192830193909352918101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8292fce18fa69edf4db7b94ea2e58241df0ae57f97e0a6c9b29067028bf92d7690600090a35050565b600880546001600160a01b0319166001600160a01b0383169081179091556040517f299d17e95023f496e0ffc4909cff1a61f74bb5eb18de6f900f4155bfa1b3b33390600090a250565b60606005805462000211906200040c565b80601f01602080910402602001604051908101604052809291908181526020018280546200023f906200040c565b8015620002905780601f10620002645761010080835404028352916020019162000290565b820191906000526020600020905b8154815290600101906020018083116200027257829003601f168201915b5050505050905090565b80516001600160a01b0381168114620002b257600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002df57600080fd5b81516001600160401b0380821115620002fc57620002fc620002b7565b604051601f8301601f19908116603f01168101908282118183101715620003275762000327620002b7565b816040528381526020925086838588010111156200034457600080fd5b600091505b8382101562000368578582018301518183018401529082019062000349565b600093810190920192909252949350505050565b600080600080608085870312156200039357600080fd5b6200039e856200029a565b60208601519094506001600160401b0380821115620003bc57600080fd5b620003ca88838901620002cd565b94506040870151915080821115620003e157600080fd5b50620003f087828801620002cd565b92505062000401606086016200029a565b905092959194509250565b600181811c908216806200042157607f821691505b6020821081036200044257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200049657600081815260208120601f850160051c81016020861015620004715750805b601f850160051c820191505b8181101562000492578281556001016200047d565b5050505b505050565b81516001600160401b03811115620004b757620004b7620002b7565b620004cf81620004c884546200040c565b8462000448565b602080601f831160018114620005075760008415620004ee5750858301515b600019600386901b1c1916600185901b17855562000492565b600085815260208120601f198616915b82811015620005385788860151825594840194600190910190840162000517565b5085821015620005575787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a05160c05160e05161358c620005a16000396000611184015260006108a0015260006108ca015260006108f4015261358c6000f3fe6080604052600436106102045760003560e01c80636f4f283711610118578063a457c2d7116100a0578063d505accf1161006f578063d505accf146105ec578063d637ed591461060c578063dd62ed3e14610635578063e8a3d48514610655578063eec8897c1461066a57600080fd5b8063a457c2d71461056a578063a9059cbb1461058a578063a9e75723146105aa578063ac9650d8146105bf57600080fd5b80638456cb59116100e75780638456cb59146104ef57806384bb1e42146105045780638da5cb5b14610517578063938e3d7b1461053557806395d89b411461055557600080fd5b80636f4f28371461045957806370a082311461047957806379cc6790146104af5780637ecebe00146104cf57600080fd5b806335b65e1f1161019b578063426cfaf31161016a578063426cfaf3146103c157806342966c68146103e157806344337ea114610401578063537df3b6146104215780635c975abb1461044157600080fd5b806335b65e1f146103335780633644e51514610377578063395093511461038c5780633f4ba83a146103ac57600080fd5b806313af4035116101d757806313af4035146102b857806318160ddd146102d857806323b872dd146102f7578063313ce5671461031757600080fd5b8063042fe81a1461020957806306fdde031461022b578063079fe40e14610256578063095ea7b314610288575b600080fd5b34801561021557600080fd5b50610229610224366004612b4b565b61068a565b005b34801561023757600080fd5b506102406106f8565b60405161024d9190612bb4565b60405180910390f35b34801561026257600080fd5b506008546001600160a01b03165b6040516001600160a01b03909116815260200161024d565b34801561029457600080fd5b506102a86102a3366004612be3565b61078a565b604051901515815260200161024d565b3480156102c457600080fd5b506102296102d3366004612c0d565b6107a4565b3480156102e457600080fd5b506004545b60405190815260200161024d565b34801561030357600080fd5b506102a8610312366004612c28565b6107d4565b34801561032357600080fd5b506040516012815260200161024d565b34801561033f57600080fd5b506102e961034e366004612c0d565b60115460009081526012602090815260408083206001600160a01b039094168352929052205490565b34801561038357600080fd5b506102e9610893565b34801561039857600080fd5b506102a86103a7366004612be3565b610923565b3480156103b857600080fd5b50610229610962565b3480156103cd57600080fd5b506102296103dc366004612c72565b610996565b3480156103ed57600080fd5b506102296103fc366004612b4b565b610ba7565b34801561040d57600080fd5b5061022961041c366004612c0d565b610c05565b34801561042d57600080fd5b5061022961043c366004612c0d565b610c7b565b34801561044d57600080fd5b5060135460ff166102a8565b34801561046557600080fd5b50610229610474366004612c0d565b610cee565b34801561048557600080fd5b506102e9610494366004612c0d565b6001600160a01b031660009081526002602052604090205490565b3480156104bb57600080fd5b506102296104ca366004612be3565b610d1b565b3480156104db57600080fd5b506102e96104ea366004612c0d565b610e11565b3480156104fb57600080fd5b50610229610e2f565b610229610512366004612d68565b610e61565b34801561052357600080fd5b506001546001600160a01b0316610270565b34801561054157600080fd5b50610229610550366004612e13565b610f2f565b34801561056157600080fd5b50610240610f5c565b34801561057657600080fd5b506102a8610585366004612be3565b610f6b565b34801561059657600080fd5b506102a86105a5366004612be3565b611008565b3480156105b657600080fd5b506102e9611016565b3480156105cb57600080fd5b506105df6105da366004612e5c565b61103b565b60405161024d9190612ed1565b3480156105f857600080fd5b50610229610607366004612f33565b611130565b34801561061857600080fd5b506106216112b6565b60405161024d989796959493929190612fa6565b34801561064157600080fd5b506102e9610650366004612ffb565b611375565b34801561066157600080fd5b506102406113a0565b34801561067657600080fd5b506102a861068536600461302e565b61142e565b6001546001600160a01b031633146106bd5760405162461bcd60e51b81526004016106b4906130a0565b60405180910390fd5b60158190556040518181527f7b478bf39fc42e0b2c1c0ae1c50274cc029b95ee297b5019ef007b75062e19a29060200160405180910390a150565b606060058054610707906130c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610733906130c8565b80156107805780601f1061075557610100808354040283529160200191610780565b820191906000526020600020905b81548152906001019060200180831161076357829003601f168201915b5050505050905090565b6000336107988185856117e0565b60019150505b92915050565b6107ac611904565b6107c85760405162461bcd60e51b81526004016106b4906130a0565b6107d181611931565b50565b600083838360006107e3611016565b1115610810576107f1611016565b8111156108105760405162461bcd60e51b81526004016106b4906130fc565b3360008181526014602052604090205460ff16156108405760405162461bcd60e51b81526004016106b490613149565b6001600160a01b038716600090815260146020526040902054879060ff161561087b5760405162461bcd60e51b81526004016106b490613149565b610886898989611983565b9998505050505050505050565b6000306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480156108ec57507f000000000000000000000000000000000000000000000000000000000000000046145b1561091657507f000000000000000000000000000000000000000000000000000000000000000090565b61091e6119a9565b905090565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909190610798908290869061095d90879061318f565b6117e0565b6001546001600160a01b0316331461098c5760405162461bcd60e51b81526004016106b4906130a0565b610994611a3e565b565b61099e611904565b6109ba5760405162461bcd60e51b81526004016106b4906130a0565b601154600b548215610a09575060003360405160609190911b6bffffffffffffffffffffffff191660208201524360348201526054016040516020818303038152906040528051906020012091505b8360200135811115610a525760405162461bcd60e51b81526020600482015260126024820152711b585e081cdd5c1c1b1e4818db185a5b595960721b60448201526064016106b4565b604051806101000160405280856000013581526020018560200135815260200182815260200185606001358152602001856080013581526020018560a0013581526020018560c0016020810190610aa99190612c0d565b6001600160a01b03168152602001610ac460e08701876131a2565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050915250805160099081556020820151600a556040820151600b556060820151600c556080820151600d5560a0820151600e5560c0820151600f80546001600160a01b0319166001600160a01b0390921691909117905560e0820151601090610b5f9082613236565b50505060118290556040517f6dab9d7d05d468100139089b2516cb8ff286c3972ff070d3b509e371f0d0d4b890610b99908690869061331f565b60405180910390a150505050565b33600090815260026020526040902054811115610bfb5760405162461bcd60e51b81526020600482015260126024820152716e6f7420656e6f7567682062616c616e636560701b60448201526064016106b4565b6107d13382611a90565b6001546001600160a01b03163314610c2f5760405162461bcd60e51b81526004016106b4906130a0565b6001600160a01b038116600081815260146020526040808220805460ff19166001179055517ff9b68063b051b82957fa193585681240904fed808db8b30fc5a2d2202c6ed6279190a250565b6001546001600160a01b03163314610ca55760405162461bcd60e51b81526004016106b4906130a0565b6001600160a01b038116600081815260146020526040808220805460ff19169055517f2b6bf71b58b3583add364b3d9060ebf8019650f65f5be35f5464b9cb3e4ba2d49190a250565b610cf6611904565b610d125760405162461bcd60e51b81526004016106b4906130a0565b6107d181611bea565b610d23611904565b610d6f5760405162461bcd60e51b815260206004820152601760248201527f4e6f7420617574686f72697a656420746f206275726e2e00000000000000000060448201526064016106b4565b80610d8f836001600160a01b031660009081526002602052604090205490565b1015610dd25760405162461bcd60e51b81526020600482015260126024820152716e6f7420656e6f7567682062616c616e636560701b60448201526064016106b4565b600081610ddf8433611375565b610de991906133ed565b9050610df7833360006117e0565b610e028333836117e0565b610e0c8383611a90565b505050565b6001600160a01b03811660009081526007602052604081205461079e565b6001546001600160a01b03163314610e595760405162461bcd60e51b81526004016106b4906130a0565b610994611c34565b601154610e71338787878761142e565b508560096002016000828254610e87919061318f565b9091555050600081815260126020908152604080832033845290915281208054889290610eb590849061318f565b90915550610ec890506000878787611c79565b6000610ed48888611d88565b9050806001600160a01b038916336001600160a01b03167fff097c7d8b1957a4ff09ef1361b5fb54dcede3941ba836d0beb9d10bec725de68a604051610f1c91815260200190565b60405180910390a45b5050505050505050565b610f37611904565b610f535760405162461bcd60e51b81526004016106b4906130a0565b6107d181611d9d565b606060068054610707906130c8565b3360008181526003602090815260408083206001600160a01b038716845290915281205490919083811015610ff05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106b4565b610ffd82868684036117e0565b506001949350505050565b600033610798818585611e78565b600061271060155461102760045490565b6110319190613400565b61091e9190613417565b60608167ffffffffffffffff81111561105657611056612cdc565b60405190808252806020026020018201604052801561108957816020015b60608152602001906001900390816110745790505b50905060005b82811015611129576110f9308585848181106110ad576110ad613439565b90506020028101906110bf91906131a2565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611f2892505050565b82828151811061110b5761110b613439565b602002602001018190525080806111219061344f565b91505061108f565b5092915050565b834211156111805760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016106b4565b60007f00000000000000000000000000000000000000000000000000000000000000008888886111af8c611f4d565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061122c61120c610893565b8360405161190160f01b8152600281019290925260228201526042902090565b9050600061123c82878787611f75565b9050896001600160a01b0316816001600160a01b03161461129f5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016106b4565b6112aa8a8a8a6117e0565b50505050505050505050565b60098054600a54600b54600c54600d54600e54600f54601080549798969795969495939492936001600160a01b0390921692916112f2906130c8565b80601f016020809104026020016040519081016040528092919081815260200182805461131e906130c8565b801561136b5780601f106113405761010080835404028352916020019161136b565b820191906000526020600020905b81548152906001019060200180831161134e57829003601f168201915b5050505050905088565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b600080546113ad906130c8565b80601f01602080910402602001604051908101604052809291908181526020018280546113d9906130c8565b80156114265780601f106113fb57610100808354040283529160200191611426565b820191906000526020600020905b81548152906001019060200180831161140957829003601f168201915b505050505081565b6040805161010081018252600980548252600a546020830152600b5492820192909252600c546060820152600d546080820152600e5460a0820152600f546001600160a01b031660c082015260108054600093849392909160e084019190611495906130c8565b80601f01602080910402602001604051908101604052809291908181526020018280546114c1906130c8565b801561150e5780601f106114e35761010080835404028352916020019161150e565b820191906000526020600020905b8154815290600101906020018083116114f157829003601f168201915b50505091909252505050606081015160a082015160c083015160808401519394509192909190156115f3576115ef6115468780613468565b80806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250505060808088015191508d9060208b01359060408c01359061159b908d0160608e01612c0d565b6040516bffffffffffffffffffffffff19606095861b811660208301526034820194909452605481019290925290921b16607482015260880160405160208183030381529060405280519060200120611f9d565b5094505b841561167a57856020013560000361160b5782611611565b85602001355b9250600019866040013503611626578161162c565b85604001355b915060001986604001351415801561165d575060006116516080880160608901612c0d565b6001600160a01b031614155b6116675780611677565b6116776080870160608801612c0d565b90505b60115460009081526012602090815260408083206001600160a01b03808f168552925290912054908981169083161415806116b55750828814155b156116f55760405162461bcd60e51b815260206004820152601060248201526f2150726963654f7243757272656e637960801b60448201526064016106b4565b89158061170a575083611708828c61318f565b115b156117405760405162461bcd60e51b81526004016106b4906020808252600490820152632151747960e01b604082015260600190565b84602001518a8660400151611755919061318f565b11156117905760405162461bcd60e51b815260206004820152600a602482015269214d6178537570706c7960b01b60448201526064016106b4565b84514210156117d25760405162461bcd60e51b815260206004820152600e60248201526d18d85b9d0818db185a5b481e595d60921b60448201526064016106b4565b505050505095945050505050565b6001600160a01b0383166118425760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106b4565b6001600160a01b0382166118a35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106b4565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006119186001546001600160a01b031690565b6001600160a01b0316336001600160a01b031614905090565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8292fce18fa69edf4db7b94ea2e58241df0ae57f97e0a6c9b29067028bf92d7690600090a35050565b60003361199185828561206b565b61199c858585611e78565b60019150505b9392505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6119d46106f8565b80516020918201206040805192830193909352918101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b611a466120df565b6013805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216611af05760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106b4565b611afc82600083612128565b6001600160a01b03821660009081526002602052604090205481811015611b705760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016106b4565b6001600160a01b0383166000908152600260205260408120838303905560048054849290611b9f9084906133ed565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600880546001600160a01b0319166001600160a01b0383169081179091556040517f299d17e95023f496e0ffc4909cff1a61f74bb5eb18de6f900f4155bfa1b3b33390600090a250565b611c3c61212c565b6013805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a733390565b505050505050565b8015611d82576000670de0b6b3a7640000611c948386613400565b611c9e9190613417565b905060008111611ce35760405162461bcd60e51b815260206004820152601060248201526f7175616e7469747920746f6f206c6f7760801b60448201526064016106b4565b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeed196001600160a01b03841601611d5057803414611d505760405162461bcd60e51b815260206004820152601660248201527526bab9ba1039b2b732103a37ba30b610383934b1b29760511b60448201526064016106b4565b60006001600160a01b03861615611d675785611d74565b6008546001600160a01b03165b9050611c7184338385612172565b50505050565b6000611d9483836121b8565b50600092915050565b6000808054611dab906130c8565b80601f0160208091040260200160405190810160405280929190818152602001828054611dd7906130c8565b8015611e245780601f10611df957610100808354040283529160200191611e24565b820191906000526020600020905b815481529060010190602001808311611e0757829003601f168201915b505050505090508160009081611e3a9190613236565b507fc9c7c3fe08b88b4df9d4d47ef47d2c43d55c025a0ba88ca442580ed9e7348a168183604051611e6c9291906134b2565b60405180910390a15050565b8282826000611e85611016565b1115611eb257611e93611016565b811115611eb25760405162461bcd60e51b81526004016106b4906130fc565b3360008181526014602052604090205460ff1615611ee25760405162461bcd60e51b81526004016106b490613149565b6001600160a01b038616600090815260146020526040902054869060ff1615611f1d5760405162461bcd60e51b81526004016106b490613149565b610f258888886122a3565b60606119a283836040518060600160405280602781526020016135306027913961247c565b6001600160a01b03811660009081526007602052604090208054600181018255905b50919050565b6000806000611f8687878787612559565b91509150611f938161261d565b5095945050505050565b6000808281805b875181101561205f57611fb8600283613400565b91506000888281518110611fce57611fce613439565b6020026020010151905080841161201057604080516020810186905290810182905260600160405160208183030381529060405280519060200120935061204c565b6040805160208101839052908101859052606001604051602081830303815290604052805190602001209350600183612049919061318f565b92505b50806120578161344f565b915050611fa4565b50941495939450505050565b60006120778484611375565b90506000198114611d8257818110156120d25760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106b4565b611d8284848484036117e0565b60135460ff166109945760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016106b4565b610e0c5b60135460ff16156109945760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016106b4565b8015611d825773eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeed196001600160a01b038516016121ac576121a78282612767565b611d82565b611d828484848461280a565b6001600160a01b03821661220e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106b4565b61221a60008383612128565b806004600082825461222c919061318f565b90915550506001600160a01b0382166000908152600260205260408120805483929061225990849061318f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0383166123075760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106b4565b6001600160a01b0382166123695760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106b4565b612374838383612128565b6001600160a01b038316600090815260026020526040902054818110156123ec5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106b4565b6001600160a01b0380851660009081526002602052604080822085850390559185168152908120805484929061242390849061318f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161246f91815260200190565b60405180910390a3611d82565b60606001600160a01b0384163b6124e45760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b60648201526084016106b4565b600080856001600160a01b0316856040516124ff91906134e0565b600060405180830381855af49150503d806000811461253a576040519150601f19603f3d011682016040523d82523d6000602084013e61253f565b606091505b509150915061254f82828661285d565b9695505050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156125905750600090506003612614565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156125e4573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661260d57600060019250925050612614565b9150600090505b94509492505050565b6000816004811115612631576126316134fc565b036126395750565b600181600481111561264d5761264d6134fc565b0361269a5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016106b4565b60028160048111156126ae576126ae6134fc565b036126fb5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016106b4565b600381600481111561270f5761270f6134fc565b036107d15760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016106b4565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146127b4576040519150601f19603f3d011682016040523d82523d6000602084013e6127b9565b606091505b5050905080610e0c5760405162461bcd60e51b815260206004820152601c60248201527f6e617469766520746f6b656e207472616e73666572206661696c65640000000060448201526064016106b4565b816001600160a01b0316836001600160a01b03160315611d8257306001600160a01b03841603612848576121a76001600160a01b0385168383612896565b611d826001600160a01b0385168484846128f9565b6060831561286c5750816119a2565b82511561287c5782518084602001fd5b8160405162461bcd60e51b81526004016106b49190612bb4565b6040516001600160a01b038316602482015260448101829052610e0c90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612931565b6040516001600160a01b0380851660248301528316604482015260648101829052611d829085906323b872dd60e01b906084016128c2565b6000612986826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612a039092919063ffffffff16565b805190915015610e0c57808060200190518101906129a49190613512565b610e0c5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016106b4565b6060612a128484600085612a1a565b949350505050565b606082471015612a7b5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016106b4565b6001600160a01b0385163b612ad25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016106b4565b600080866001600160a01b03168587604051612aee91906134e0565b60006040518083038185875af1925050503d8060008114612b2b576040519150601f19603f3d011682016040523d82523d6000602084013e612b30565b606091505b5091509150612b4082828661285d565b979650505050505050565b600060208284031215612b5d57600080fd5b5035919050565b60005b83811015612b7f578181015183820152602001612b67565b50506000910152565b60008151808452612ba0816020860160208601612b64565b601f01601f19169290920160200192915050565b6020815260006119a26020830184612b88565b80356001600160a01b0381168114612bde57600080fd5b919050565b60008060408385031215612bf657600080fd5b612bff83612bc7565b946020939093013593505050565b600060208284031215612c1f57600080fd5b6119a282612bc7565b600080600060608486031215612c3d57600080fd5b612c4684612bc7565b9250612c5460208501612bc7565b9150604084013590509250925092565b80151581146107d157600080fd5b60008060408385031215612c8557600080fd5b823567ffffffffffffffff811115612c9c57600080fd5b83016101008186031215612caf57600080fd5b91506020830135612cbf81612c64565b809150509250929050565b600060808284031215611f6f57600080fd5b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612d0d57612d0d612cdc565b604051601f8501601f19908116603f01168101908282118183101715612d3557612d35612cdc565b81604052809350858152868686011115612d4e57600080fd5b858560208301376000602087830101525050509392505050565b60008060008060008060c08789031215612d8157600080fd5b612d8a87612bc7565b955060208701359450612d9f60408801612bc7565b935060608701359250608087013567ffffffffffffffff80821115612dc357600080fd5b612dcf8a838b01612cca565b935060a0890135915080821115612de557600080fd5b508701601f81018913612df757600080fd5b612e0689823560208401612cf2565b9150509295509295509295565b600060208284031215612e2557600080fd5b813567ffffffffffffffff811115612e3c57600080fd5b8201601f81018413612e4d57600080fd5b612a1284823560208401612cf2565b60008060208385031215612e6f57600080fd5b823567ffffffffffffffff80821115612e8757600080fd5b818501915085601f830112612e9b57600080fd5b813581811115612eaa57600080fd5b8660208260051b8501011115612ebf57600080fd5b60209290920196919550909350505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b82811015612f2657603f19888603018452612f14858351612b88565b94509285019290850190600101612ef8565b5092979650505050505050565b600080600080600080600060e0888a031215612f4e57600080fd5b612f5788612bc7565b9650612f6560208901612bc7565b95506040880135945060608801359350608088013560ff81168114612f8957600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60006101008a83528960208401528860408401528760608401528660808401528560a084015260018060a01b03851660c08401528060e0840152612fec81840185612b88565b9b9a5050505050505050505050565b6000806040838503121561300e57600080fd5b61301783612bc7565b915061302560208401612bc7565b90509250929050565b600080600080600060a0868803121561304657600080fd5b61304f86612bc7565b94506020860135935061306460408701612bc7565b925060608601359150608086013567ffffffffffffffff81111561308757600080fd5b61309388828901612cca565b9150509295509295909350565b6020808252600e908201526d139bdd08185d5d1a1bdc9a5e995960921b604082015260600190565b600181811c908216806130dc57607f821691505b602082108103611f6f57634e487b7160e01b600052602260045260246000fd5b6020808252602d908201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785460408201526c1c985b9cd9995c905b5bdd5b9d609a1b606082015260800190565b6020808252601690820152751058d8dbdd5b9d081a5cc8189b1858dadb1a5cdd195960521b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561079e5761079e613179565b6000808335601e198436030181126131b957600080fd5b83018035915067ffffffffffffffff8211156131d457600080fd5b6020019150368190038213156131e957600080fd5b9250929050565b601f821115610e0c57600081815260208120601f850160051c810160208610156132175750805b601f850160051c820191505b81811015611c7157828155600101613223565b815167ffffffffffffffff81111561325057613250612cdc565b6132648161325e84546130c8565b846131f0565b602080601f83116001811461329957600084156132815750858301515b600019600386901b1c1916600185901b178555611c71565b600085815260208120601f198616915b828110156132c8578886015182559484019460019091019084016132a9565b50858210156132e65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60408152823560408201526020830135606082015260408301356080820152606083013560a0820152608083013560c082015260a083013560e0820152600061336a60c08501612bc7565b6001600160a01b03166101008381019190915260e08501359036869003601e1901821261339657600080fd5b6020918601918201913567ffffffffffffffff8111156133b557600080fd5b8036038313156133c457600080fd5b816101208601526133da610140860182856132f6565b93505050506119a2602083018415159052565b8181038181111561079e5761079e613179565b808202811582820484141761079e5761079e613179565b60008261343457634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006001820161346157613461613179565b5060010190565b6000808335601e1984360301811261347f57600080fd5b83018035915067ffffffffffffffff82111561349a57600080fd5b6020019150600581901b36038213156131e957600080fd5b6040815260006134c56040830185612b88565b82810360208401526134d78185612b88565b95945050505050565b600082516134f2818460208701612b64565b9190910192915050565b634e487b7160e01b600052602160045260246000fd5b60006020828403121561352457600080fd5b81516119a281612c6456fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26469706673582212204e7ca0f7df8a87951fc5d6e42ae784800b421d348bad16ac1ae7488553ebb94664736f6c634300081100330000000000000000000000003d3ded359558fb06bf9caba02f8541745d1b4240000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000003d3ded359558fb06bf9caba02f8541745d1b424000000000000000000000000000000000000000000000000000000000000000044a45524b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044a45524b00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102045760003560e01c80636f4f283711610118578063a457c2d7116100a0578063d505accf1161006f578063d505accf146105ec578063d637ed591461060c578063dd62ed3e14610635578063e8a3d48514610655578063eec8897c1461066a57600080fd5b8063a457c2d71461056a578063a9059cbb1461058a578063a9e75723146105aa578063ac9650d8146105bf57600080fd5b80638456cb59116100e75780638456cb59146104ef57806384bb1e42146105045780638da5cb5b14610517578063938e3d7b1461053557806395d89b411461055557600080fd5b80636f4f28371461045957806370a082311461047957806379cc6790146104af5780637ecebe00146104cf57600080fd5b806335b65e1f1161019b578063426cfaf31161016a578063426cfaf3146103c157806342966c68146103e157806344337ea114610401578063537df3b6146104215780635c975abb1461044157600080fd5b806335b65e1f146103335780633644e51514610377578063395093511461038c5780633f4ba83a146103ac57600080fd5b806313af4035116101d757806313af4035146102b857806318160ddd146102d857806323b872dd146102f7578063313ce5671461031757600080fd5b8063042fe81a1461020957806306fdde031461022b578063079fe40e14610256578063095ea7b314610288575b600080fd5b34801561021557600080fd5b50610229610224366004612b4b565b61068a565b005b34801561023757600080fd5b506102406106f8565b60405161024d9190612bb4565b60405180910390f35b34801561026257600080fd5b506008546001600160a01b03165b6040516001600160a01b03909116815260200161024d565b34801561029457600080fd5b506102a86102a3366004612be3565b61078a565b604051901515815260200161024d565b3480156102c457600080fd5b506102296102d3366004612c0d565b6107a4565b3480156102e457600080fd5b506004545b60405190815260200161024d565b34801561030357600080fd5b506102a8610312366004612c28565b6107d4565b34801561032357600080fd5b506040516012815260200161024d565b34801561033f57600080fd5b506102e961034e366004612c0d565b60115460009081526012602090815260408083206001600160a01b039094168352929052205490565b34801561038357600080fd5b506102e9610893565b34801561039857600080fd5b506102a86103a7366004612be3565b610923565b3480156103b857600080fd5b50610229610962565b3480156103cd57600080fd5b506102296103dc366004612c72565b610996565b3480156103ed57600080fd5b506102296103fc366004612b4b565b610ba7565b34801561040d57600080fd5b5061022961041c366004612c0d565b610c05565b34801561042d57600080fd5b5061022961043c366004612c0d565b610c7b565b34801561044d57600080fd5b5060135460ff166102a8565b34801561046557600080fd5b50610229610474366004612c0d565b610cee565b34801561048557600080fd5b506102e9610494366004612c0d565b6001600160a01b031660009081526002602052604090205490565b3480156104bb57600080fd5b506102296104ca366004612be3565b610d1b565b3480156104db57600080fd5b506102e96104ea366004612c0d565b610e11565b3480156104fb57600080fd5b50610229610e2f565b610229610512366004612d68565b610e61565b34801561052357600080fd5b506001546001600160a01b0316610270565b34801561054157600080fd5b50610229610550366004612e13565b610f2f565b34801561056157600080fd5b50610240610f5c565b34801561057657600080fd5b506102a8610585366004612be3565b610f6b565b34801561059657600080fd5b506102a86105a5366004612be3565b611008565b3480156105b657600080fd5b506102e9611016565b3480156105cb57600080fd5b506105df6105da366004612e5c565b61103b565b60405161024d9190612ed1565b3480156105f857600080fd5b50610229610607366004612f33565b611130565b34801561061857600080fd5b506106216112b6565b60405161024d989796959493929190612fa6565b34801561064157600080fd5b506102e9610650366004612ffb565b611375565b34801561066157600080fd5b506102406113a0565b34801561067657600080fd5b506102a861068536600461302e565b61142e565b6001546001600160a01b031633146106bd5760405162461bcd60e51b81526004016106b4906130a0565b60405180910390fd5b60158190556040518181527f7b478bf39fc42e0b2c1c0ae1c50274cc029b95ee297b5019ef007b75062e19a29060200160405180910390a150565b606060058054610707906130c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610733906130c8565b80156107805780601f1061075557610100808354040283529160200191610780565b820191906000526020600020905b81548152906001019060200180831161076357829003601f168201915b5050505050905090565b6000336107988185856117e0565b60019150505b92915050565b6107ac611904565b6107c85760405162461bcd60e51b81526004016106b4906130a0565b6107d181611931565b50565b600083838360006107e3611016565b1115610810576107f1611016565b8111156108105760405162461bcd60e51b81526004016106b4906130fc565b3360008181526014602052604090205460ff16156108405760405162461bcd60e51b81526004016106b490613149565b6001600160a01b038716600090815260146020526040902054879060ff161561087b5760405162461bcd60e51b81526004016106b490613149565b610886898989611983565b9998505050505050505050565b6000306001600160a01b037f000000000000000000000000cafd028923edbd976514543ecdeed7fb489ce874161480156108ec57507f000000000000000000000000000000000000000000000000000000000000000146145b1561091657507f024634e0d865f043f7a2f6aaed77d9c7f5c3b5796869e00f247b31716993d58390565b61091e6119a9565b905090565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909190610798908290869061095d90879061318f565b6117e0565b6001546001600160a01b0316331461098c5760405162461bcd60e51b81526004016106b4906130a0565b610994611a3e565b565b61099e611904565b6109ba5760405162461bcd60e51b81526004016106b4906130a0565b601154600b548215610a09575060003360405160609190911b6bffffffffffffffffffffffff191660208201524360348201526054016040516020818303038152906040528051906020012091505b8360200135811115610a525760405162461bcd60e51b81526020600482015260126024820152711b585e081cdd5c1c1b1e4818db185a5b595960721b60448201526064016106b4565b604051806101000160405280856000013581526020018560200135815260200182815260200185606001358152602001856080013581526020018560a0013581526020018560c0016020810190610aa99190612c0d565b6001600160a01b03168152602001610ac460e08701876131a2565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050915250805160099081556020820151600a556040820151600b556060820151600c556080820151600d5560a0820151600e5560c0820151600f80546001600160a01b0319166001600160a01b0390921691909117905560e0820151601090610b5f9082613236565b50505060118290556040517f6dab9d7d05d468100139089b2516cb8ff286c3972ff070d3b509e371f0d0d4b890610b99908690869061331f565b60405180910390a150505050565b33600090815260026020526040902054811115610bfb5760405162461bcd60e51b81526020600482015260126024820152716e6f7420656e6f7567682062616c616e636560701b60448201526064016106b4565b6107d13382611a90565b6001546001600160a01b03163314610c2f5760405162461bcd60e51b81526004016106b4906130a0565b6001600160a01b038116600081815260146020526040808220805460ff19166001179055517ff9b68063b051b82957fa193585681240904fed808db8b30fc5a2d2202c6ed6279190a250565b6001546001600160a01b03163314610ca55760405162461bcd60e51b81526004016106b4906130a0565b6001600160a01b038116600081815260146020526040808220805460ff19169055517f2b6bf71b58b3583add364b3d9060ebf8019650f65f5be35f5464b9cb3e4ba2d49190a250565b610cf6611904565b610d125760405162461bcd60e51b81526004016106b4906130a0565b6107d181611bea565b610d23611904565b610d6f5760405162461bcd60e51b815260206004820152601760248201527f4e6f7420617574686f72697a656420746f206275726e2e00000000000000000060448201526064016106b4565b80610d8f836001600160a01b031660009081526002602052604090205490565b1015610dd25760405162461bcd60e51b81526020600482015260126024820152716e6f7420656e6f7567682062616c616e636560701b60448201526064016106b4565b600081610ddf8433611375565b610de991906133ed565b9050610df7833360006117e0565b610e028333836117e0565b610e0c8383611a90565b505050565b6001600160a01b03811660009081526007602052604081205461079e565b6001546001600160a01b03163314610e595760405162461bcd60e51b81526004016106b4906130a0565b610994611c34565b601154610e71338787878761142e565b508560096002016000828254610e87919061318f565b9091555050600081815260126020908152604080832033845290915281208054889290610eb590849061318f565b90915550610ec890506000878787611c79565b6000610ed48888611d88565b9050806001600160a01b038916336001600160a01b03167fff097c7d8b1957a4ff09ef1361b5fb54dcede3941ba836d0beb9d10bec725de68a604051610f1c91815260200190565b60405180910390a45b5050505050505050565b610f37611904565b610f535760405162461bcd60e51b81526004016106b4906130a0565b6107d181611d9d565b606060068054610707906130c8565b3360008181526003602090815260408083206001600160a01b038716845290915281205490919083811015610ff05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106b4565b610ffd82868684036117e0565b506001949350505050565b600033610798818585611e78565b600061271060155461102760045490565b6110319190613400565b61091e9190613417565b60608167ffffffffffffffff81111561105657611056612cdc565b60405190808252806020026020018201604052801561108957816020015b60608152602001906001900390816110745790505b50905060005b82811015611129576110f9308585848181106110ad576110ad613439565b90506020028101906110bf91906131a2565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611f2892505050565b82828151811061110b5761110b613439565b602002602001018190525080806111219061344f565b91505061108f565b5092915050565b834211156111805760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016106b4565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886111af8c611f4d565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061122c61120c610893565b8360405161190160f01b8152600281019290925260228201526042902090565b9050600061123c82878787611f75565b9050896001600160a01b0316816001600160a01b03161461129f5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016106b4565b6112aa8a8a8a6117e0565b50505050505050505050565b60098054600a54600b54600c54600d54600e54600f54601080549798969795969495939492936001600160a01b0390921692916112f2906130c8565b80601f016020809104026020016040519081016040528092919081815260200182805461131e906130c8565b801561136b5780601f106113405761010080835404028352916020019161136b565b820191906000526020600020905b81548152906001019060200180831161134e57829003601f168201915b5050505050905088565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b600080546113ad906130c8565b80601f01602080910402602001604051908101604052809291908181526020018280546113d9906130c8565b80156114265780601f106113fb57610100808354040283529160200191611426565b820191906000526020600020905b81548152906001019060200180831161140957829003601f168201915b505050505081565b6040805161010081018252600980548252600a546020830152600b5492820192909252600c546060820152600d546080820152600e5460a0820152600f546001600160a01b031660c082015260108054600093849392909160e084019190611495906130c8565b80601f01602080910402602001604051908101604052809291908181526020018280546114c1906130c8565b801561150e5780601f106114e35761010080835404028352916020019161150e565b820191906000526020600020905b8154815290600101906020018083116114f157829003601f168201915b50505091909252505050606081015160a082015160c083015160808401519394509192909190156115f3576115ef6115468780613468565b80806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250505060808088015191508d9060208b01359060408c01359061159b908d0160608e01612c0d565b6040516bffffffffffffffffffffffff19606095861b811660208301526034820194909452605481019290925290921b16607482015260880160405160208183030381529060405280519060200120611f9d565b5094505b841561167a57856020013560000361160b5782611611565b85602001355b9250600019866040013503611626578161162c565b85604001355b915060001986604001351415801561165d575060006116516080880160608901612c0d565b6001600160a01b031614155b6116675780611677565b6116776080870160608801612c0d565b90505b60115460009081526012602090815260408083206001600160a01b03808f168552925290912054908981169083161415806116b55750828814155b156116f55760405162461bcd60e51b815260206004820152601060248201526f2150726963654f7243757272656e637960801b60448201526064016106b4565b89158061170a575083611708828c61318f565b115b156117405760405162461bcd60e51b81526004016106b4906020808252600490820152632151747960e01b604082015260600190565b84602001518a8660400151611755919061318f565b11156117905760405162461bcd60e51b815260206004820152600a602482015269214d6178537570706c7960b01b60448201526064016106b4565b84514210156117d25760405162461bcd60e51b815260206004820152600e60248201526d18d85b9d0818db185a5b481e595d60921b60448201526064016106b4565b505050505095945050505050565b6001600160a01b0383166118425760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106b4565b6001600160a01b0382166118a35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106b4565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006119186001546001600160a01b031690565b6001600160a01b0316336001600160a01b031614905090565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8292fce18fa69edf4db7b94ea2e58241df0ae57f97e0a6c9b29067028bf92d7690600090a35050565b60003361199185828561206b565b61199c858585611e78565b60019150505b9392505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6119d46106f8565b80516020918201206040805192830193909352918101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b611a466120df565b6013805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216611af05760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106b4565b611afc82600083612128565b6001600160a01b03821660009081526002602052604090205481811015611b705760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016106b4565b6001600160a01b0383166000908152600260205260408120838303905560048054849290611b9f9084906133ed565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600880546001600160a01b0319166001600160a01b0383169081179091556040517f299d17e95023f496e0ffc4909cff1a61f74bb5eb18de6f900f4155bfa1b3b33390600090a250565b611c3c61212c565b6013805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a733390565b505050505050565b8015611d82576000670de0b6b3a7640000611c948386613400565b611c9e9190613417565b905060008111611ce35760405162461bcd60e51b815260206004820152601060248201526f7175616e7469747920746f6f206c6f7760801b60448201526064016106b4565b73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeed196001600160a01b03841601611d5057803414611d505760405162461bcd60e51b815260206004820152601660248201527526bab9ba1039b2b732103a37ba30b610383934b1b29760511b60448201526064016106b4565b60006001600160a01b03861615611d675785611d74565b6008546001600160a01b03165b9050611c7184338385612172565b50505050565b6000611d9483836121b8565b50600092915050565b6000808054611dab906130c8565b80601f0160208091040260200160405190810160405280929190818152602001828054611dd7906130c8565b8015611e245780601f10611df957610100808354040283529160200191611e24565b820191906000526020600020905b815481529060010190602001808311611e0757829003601f168201915b505050505090508160009081611e3a9190613236565b507fc9c7c3fe08b88b4df9d4d47ef47d2c43d55c025a0ba88ca442580ed9e7348a168183604051611e6c9291906134b2565b60405180910390a15050565b8282826000611e85611016565b1115611eb257611e93611016565b811115611eb25760405162461bcd60e51b81526004016106b4906130fc565b3360008181526014602052604090205460ff1615611ee25760405162461bcd60e51b81526004016106b490613149565b6001600160a01b038616600090815260146020526040902054869060ff1615611f1d5760405162461bcd60e51b81526004016106b490613149565b610f258888886122a3565b60606119a283836040518060600160405280602781526020016135306027913961247c565b6001600160a01b03811660009081526007602052604090208054600181018255905b50919050565b6000806000611f8687878787612559565b91509150611f938161261d565b5095945050505050565b6000808281805b875181101561205f57611fb8600283613400565b91506000888281518110611fce57611fce613439565b6020026020010151905080841161201057604080516020810186905290810182905260600160405160208183030381529060405280519060200120935061204c565b6040805160208101839052908101859052606001604051602081830303815290604052805190602001209350600183612049919061318f565b92505b50806120578161344f565b915050611fa4565b50941495939450505050565b60006120778484611375565b90506000198114611d8257818110156120d25760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106b4565b611d8284848484036117e0565b60135460ff166109945760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016106b4565b610e0c5b60135460ff16156109945760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016106b4565b8015611d825773eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeed196001600160a01b038516016121ac576121a78282612767565b611d82565b611d828484848461280a565b6001600160a01b03821661220e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106b4565b61221a60008383612128565b806004600082825461222c919061318f565b90915550506001600160a01b0382166000908152600260205260408120805483929061225990849061318f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0383166123075760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106b4565b6001600160a01b0382166123695760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106b4565b612374838383612128565b6001600160a01b038316600090815260026020526040902054818110156123ec5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106b4565b6001600160a01b0380851660009081526002602052604080822085850390559185168152908120805484929061242390849061318f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161246f91815260200190565b60405180910390a3611d82565b60606001600160a01b0384163b6124e45760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b60648201526084016106b4565b600080856001600160a01b0316856040516124ff91906134e0565b600060405180830381855af49150503d806000811461253a576040519150601f19603f3d011682016040523d82523d6000602084013e61253f565b606091505b509150915061254f82828661285d565b9695505050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156125905750600090506003612614565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156125e4573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661260d57600060019250925050612614565b9150600090505b94509492505050565b6000816004811115612631576126316134fc565b036126395750565b600181600481111561264d5761264d6134fc565b0361269a5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016106b4565b60028160048111156126ae576126ae6134fc565b036126fb5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016106b4565b600381600481111561270f5761270f6134fc565b036107d15760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016106b4565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146127b4576040519150601f19603f3d011682016040523d82523d6000602084013e6127b9565b606091505b5050905080610e0c5760405162461bcd60e51b815260206004820152601c60248201527f6e617469766520746f6b656e207472616e73666572206661696c65640000000060448201526064016106b4565b816001600160a01b0316836001600160a01b03160315611d8257306001600160a01b03841603612848576121a76001600160a01b0385168383612896565b611d826001600160a01b0385168484846128f9565b6060831561286c5750816119a2565b82511561287c5782518084602001fd5b8160405162461bcd60e51b81526004016106b49190612bb4565b6040516001600160a01b038316602482015260448101829052610e0c90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612931565b6040516001600160a01b0380851660248301528316604482015260648101829052611d829085906323b872dd60e01b906084016128c2565b6000612986826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612a039092919063ffffffff16565b805190915015610e0c57808060200190518101906129a49190613512565b610e0c5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016106b4565b6060612a128484600085612a1a565b949350505050565b606082471015612a7b5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016106b4565b6001600160a01b0385163b612ad25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016106b4565b600080866001600160a01b03168587604051612aee91906134e0565b60006040518083038185875af1925050503d8060008114612b2b576040519150601f19603f3d011682016040523d82523d6000602084013e612b30565b606091505b5091509150612b4082828661285d565b979650505050505050565b600060208284031215612b5d57600080fd5b5035919050565b60005b83811015612b7f578181015183820152602001612b67565b50506000910152565b60008151808452612ba0816020860160208601612b64565b601f01601f19169290920160200192915050565b6020815260006119a26020830184612b88565b80356001600160a01b0381168114612bde57600080fd5b919050565b60008060408385031215612bf657600080fd5b612bff83612bc7565b946020939093013593505050565b600060208284031215612c1f57600080fd5b6119a282612bc7565b600080600060608486031215612c3d57600080fd5b612c4684612bc7565b9250612c5460208501612bc7565b9150604084013590509250925092565b80151581146107d157600080fd5b60008060408385031215612c8557600080fd5b823567ffffffffffffffff811115612c9c57600080fd5b83016101008186031215612caf57600080fd5b91506020830135612cbf81612c64565b809150509250929050565b600060808284031215611f6f57600080fd5b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612d0d57612d0d612cdc565b604051601f8501601f19908116603f01168101908282118183101715612d3557612d35612cdc565b81604052809350858152868686011115612d4e57600080fd5b858560208301376000602087830101525050509392505050565b60008060008060008060c08789031215612d8157600080fd5b612d8a87612bc7565b955060208701359450612d9f60408801612bc7565b935060608701359250608087013567ffffffffffffffff80821115612dc357600080fd5b612dcf8a838b01612cca565b935060a0890135915080821115612de557600080fd5b508701601f81018913612df757600080fd5b612e0689823560208401612cf2565b9150509295509295509295565b600060208284031215612e2557600080fd5b813567ffffffffffffffff811115612e3c57600080fd5b8201601f81018413612e4d57600080fd5b612a1284823560208401612cf2565b60008060208385031215612e6f57600080fd5b823567ffffffffffffffff80821115612e8757600080fd5b818501915085601f830112612e9b57600080fd5b813581811115612eaa57600080fd5b8660208260051b8501011115612ebf57600080fd5b60209290920196919550909350505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b82811015612f2657603f19888603018452612f14858351612b88565b94509285019290850190600101612ef8565b5092979650505050505050565b600080600080600080600060e0888a031215612f4e57600080fd5b612f5788612bc7565b9650612f6560208901612bc7565b95506040880135945060608801359350608088013560ff81168114612f8957600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60006101008a83528960208401528860408401528760608401528660808401528560a084015260018060a01b03851660c08401528060e0840152612fec81840185612b88565b9b9a5050505050505050505050565b6000806040838503121561300e57600080fd5b61301783612bc7565b915061302560208401612bc7565b90509250929050565b600080600080600060a0868803121561304657600080fd5b61304f86612bc7565b94506020860135935061306460408701612bc7565b925060608601359150608086013567ffffffffffffffff81111561308757600080fd5b61309388828901612cca565b9150509295509295909350565b6020808252600e908201526d139bdd08185d5d1a1bdc9a5e995960921b604082015260600190565b600181811c908216806130dc57607f821691505b602082108103611f6f57634e487b7160e01b600052602260045260246000fd5b6020808252602d908201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785460408201526c1c985b9cd9995c905b5bdd5b9d609a1b606082015260800190565b6020808252601690820152751058d8dbdd5b9d081a5cc8189b1858dadb1a5cdd195960521b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561079e5761079e613179565b6000808335601e198436030181126131b957600080fd5b83018035915067ffffffffffffffff8211156131d457600080fd5b6020019150368190038213156131e957600080fd5b9250929050565b601f821115610e0c57600081815260208120601f850160051c810160208610156132175750805b601f850160051c820191505b81811015611c7157828155600101613223565b815167ffffffffffffffff81111561325057613250612cdc565b6132648161325e84546130c8565b846131f0565b602080601f83116001811461329957600084156132815750858301515b600019600386901b1c1916600185901b178555611c71565b600085815260208120601f198616915b828110156132c8578886015182559484019460019091019084016132a9565b50858210156132e65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60408152823560408201526020830135606082015260408301356080820152606083013560a0820152608083013560c082015260a083013560e0820152600061336a60c08501612bc7565b6001600160a01b03166101008381019190915260e08501359036869003601e1901821261339657600080fd5b6020918601918201913567ffffffffffffffff8111156133b557600080fd5b8036038313156133c457600080fd5b816101208601526133da610140860182856132f6565b93505050506119a2602083018415159052565b8181038181111561079e5761079e613179565b808202811582820484141761079e5761079e613179565b60008261343457634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006001820161346157613461613179565b5060010190565b6000808335601e1984360301811261347f57600080fd5b83018035915067ffffffffffffffff82111561349a57600080fd5b6020019150600581901b36038213156131e957600080fd5b6040815260006134c56040830185612b88565b82810360208401526134d78185612b88565b95945050505050565b600082516134f2818460208701612b64565b9190910192915050565b634e487b7160e01b600052602160045260246000fd5b60006020828403121561352457600080fd5b81516119a281612c6456fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26469706673582212204e7ca0f7df8a87951fc5d6e42ae784800b421d348bad16ac1ae7488553ebb94664736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000003d3ded359558fb06bf9caba02f8541745d1b4240000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000003d3ded359558fb06bf9caba02f8541745d1b424000000000000000000000000000000000000000000000000000000000000000044a45524b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044a45524b00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _defaultAdmin (address): 0x3D3DeD359558fb06bf9cABa02F8541745d1b4240
Arg [1] : _name (string): JERK
Arg [2] : _symbol (string): JERK
Arg [3] : _primarySaleRecipient (address): 0x3D3DeD359558fb06bf9cABa02F8541745d1b4240
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000003d3ded359558fb06bf9caba02f8541745d1b4240
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000003d3ded359558fb06bf9caba02f8541745d1b4240
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4a45524b00000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4a45524b00000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.