Sponsored
Latest 25 from a total of 20,375 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Permit | 19491400 | 28 mins ago | IN | 0 ETH | 0.00000015 | ||||
Permit | 19490539 | 56 mins ago | IN | 0 ETH | 0.00000011 | ||||
Approve | 19489290 | 1 hr ago | IN | 0 ETH | 0.00000012 | ||||
Transfer | 19489272 | 1 hr ago | IN | 0 ETH | 0.00000021 | ||||
Approve | 19488322 | 2 hrs ago | IN | 0 ETH | 0.00000004 | ||||
Approve | 19481147 | 6 hrs ago | IN | 0 ETH | 0.00000017 | ||||
Transfer | 19480801 | 6 hrs ago | IN | 0 ETH | 0.00000031 | ||||
Transfer | 19478520 | 7 hrs ago | IN | 0 ETH | 0.00000019 | ||||
Approve | 19476436 | 8 hrs ago | IN | 0 ETH | 0.00000006 | ||||
Permit | 19472131 | 11 hrs ago | IN | 0 ETH | 0.00000025 | ||||
Transfer | 19472016 | 11 hrs ago | IN | 0 ETH | 0.00000036 | ||||
Transfer | 19470028 | 12 hrs ago | IN | 0 ETH | 0.00000045 | ||||
Permit | 19468123 | 13 hrs ago | IN | 0 ETH | 0.00000025 | ||||
Approve | 19467919 | 13 hrs ago | IN | 0 ETH | 0.00000026 | ||||
Approve | 19465809 | 14 hrs ago | IN | 0 ETH | 0.00000021 | ||||
Approve | 19465758 | 14 hrs ago | IN | 0 ETH | 0.00000008 | ||||
Approve | 19465611 | 14 hrs ago | IN | 0 ETH | 0.00000017 | ||||
Permit | 19465569 | 14 hrs ago | IN | 0 ETH | 0.00000026 | ||||
Transfer | 19459356 | 18 hrs ago | IN | 0 ETH | 0.00000022 | ||||
Approve | 19459135 | 18 hrs ago | IN | 0 ETH | 0.00000013 | ||||
Approve | 19456950 | 19 hrs ago | IN | 0 ETH | 0.00000024 | ||||
Approve | 19455011 | 20 hrs ago | IN | 0 ETH | 0.00000025 | ||||
Transfer | 19454054 | 21 hrs ago | IN | 0 ETH | 0.00000042 | ||||
Transfer | 19454008 | 21 hrs ago | IN | 0 ETH | 0.00000052 | ||||
Transfer | 19453942 | 21 hrs ago | IN | 0 ETH | 0.00000042 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
19429938 | 34 hrs ago | 0.02050986 ETH | ||||
19429938 | 34 hrs ago | 0.0615296 ETH | ||||
19429938 | 34 hrs ago | 0.04101973 ETH | ||||
19429938 | 34 hrs ago | 0.0615296 ETH | ||||
19429938 | 34 hrs ago | 0.0615296 ETH | ||||
19429938 | 34 hrs ago | 0.24611843 ETH | ||||
19386014 | 2 days ago | 0.01920367 ETH | ||||
19386014 | 2 days ago | 0.05761101 ETH | ||||
19386014 | 2 days ago | 0.03840734 ETH | ||||
19386014 | 2 days ago | 0.05761101 ETH | ||||
19386014 | 2 days ago | 0.05761101 ETH | ||||
19386014 | 2 days ago | 0.23044406 ETH | ||||
19341360 | 3 days ago | 0.01898911 ETH | ||||
19341360 | 3 days ago | 0.05696735 ETH | ||||
19341360 | 3 days ago | 0.03797823 ETH | ||||
19341360 | 3 days ago | 0.05696735 ETH | ||||
19341360 | 3 days ago | 0.05696735 ETH | ||||
19341360 | 3 days ago | 0.22786943 ETH | ||||
19300854 | 4 days ago | 0.0183696 ETH | ||||
19300854 | 4 days ago | 0.0551088 ETH | ||||
19300854 | 4 days ago | 0.0367392 ETH | ||||
19300854 | 4 days ago | 0.0551088 ETH | ||||
19300854 | 4 days ago | 0.0551088 ETH | ||||
19300854 | 4 days ago | 0.22043522 ETH | ||||
19253948 | 5 days ago | 0.01844467 ETH |
Loading...
Loading
Contract Name:
All_Street_Bets
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity Standard Json-Input format)
/* BETS is a decentralized base token that represents freedom. Bets is Based. "Like everyone else, you were born into bondage, kept in a prison that you cannot smell, taste, or touch. A prison for your mind." allstreetbets.com */ // SPDX-License-Identifier: No License pragma solidity 0.8.19; import "./ERC20.sol"; import "./ERC20Burnable.sol"; import "./Ownable2Step.sol"; import "./TokenRecover.sol"; import "./ERC20Permit.sol"; import "./Initializable.sol"; import "./IUniswapV2Factory.sol"; import "./IUniswapV2Pair.sol"; import "./IUniswapV2Router01.sol"; import "./IUniswapV2Router02.sol"; contract All_Street_Bets is ERC20, ERC20Burnable, Ownable2Step, TokenRecover, ERC20Permit, Initializable { uint16 public swapThresholdRatio; uint256 private _marketingPending; uint256 private _buybackPending; uint256 private _developerPending; uint256 private _rescuePending; uint256 private _partnerPending; address public marketingAddress; uint16[3] public marketingFees; address public buybackAddress; uint16[3] public buybackFees; address public developerAddress; uint16[3] public developerFees; address public rescueAddress; uint16[3] public rescueFees; address public partnerAddress; uint16[3] public partnerFees; mapping (address => bool) public isExcludedFromFees; uint16[3] public totalFees; bool private _swapping; IUniswapV2Router02 public routerV2; address public pairV2; mapping (address => bool) public AMMPairs; mapping (address => bool) public isExcludedFromLimits; uint256 public maxWalletAmount; bool public tradingEnabled; mapping (address => bool) public isExcludedFromTradingRestriction; event SwapThresholdUpdated(uint16 swapThresholdRatio); event marketingAddressUpdated(address marketingAddress); event marketingFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee); event marketingFeeSent(address recipient, uint256 amount); event buybackAddressUpdated(address buybackAddress); event buybackFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee); event buybackFeeSent(address recipient, uint256 amount); event developerAddressUpdated(address developerAddress); event developerFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee); event developerFeeSent(address recipient, uint256 amount); event rescueAddressUpdated(address rescueAddress); event rescueFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee); event rescueFeeSent(address recipient, uint256 amount); event partnerAddressUpdated(address partnerAddress); event partnerFeesUpdated(uint16 buyFee, uint16 sellFee, uint16 transferFee); event partnerFeeSent(address recipient, uint256 amount); event ExcludeFromFees(address indexed account, bool isExcluded); event RouterV2Updated(address indexed routerV2); event AMMPairsUpdated(address indexed AMMPair, bool isPair); event ExcludeFromLimits(address indexed account, bool isExcluded); event MaxWalletAmountUpdated(uint256 maxWalletAmount); event TradingEnabled(); event ExcludeFromTradingRestriction(address indexed account, bool isExcluded); constructor() ERC20(unicode"All Street Bets", unicode"BETS") ERC20Permit(unicode"All Street Bets") { address supplyRecipient = 0xf3936070d78D8d5c6dC999Da586b511236a320Be; updateSwapThreshold(50); marketingAddressSetup(0xe4366Decc1fD56455e4b8850020F580092Bca7eF); marketingFeesSetup(75, 75, 0); buybackAddressSetup(0xf3936070d78D8d5c6dC999Da586b511236a320Be); buybackFeesSetup(75, 75, 0); developerAddressSetup(0xDE46a9235B1CE978f618a839224FB829bB5FB541); developerFeesSetup(50, 50, 0); rescueAddressSetup(0xaCe2Bd2833FD8929858Be7D9c33cd2C808B744Ff); rescueFeesSetup(75, 75, 0); partnerAddressSetup(0x6f993C4fE6cF8f65e8129d23BC94eEA060331587); partnerFeesSetup(25, 25, 0); excludeFromFees(supplyRecipient, true); excludeFromFees(address(this), true); _excludeFromLimits(supplyRecipient, true); _excludeFromLimits(address(this), true); _excludeFromLimits(address(0), true); updateMaxWalletAmount(4000000000 * (10 ** decimals()) / 10); excludeFromTradingRestriction(supplyRecipient, true); excludeFromTradingRestriction(address(this), true); _mint(supplyRecipient, 100000000000 * (10 ** decimals()) / 10); _transferOwnership(0xf3936070d78D8d5c6dC999Da586b511236a320Be); } /* This token is not upgradeable, but uses both the constructor and initializer for post-deployment setup. */ function initialize(address _router) initializer external { _updateRouterV2(_router); } receive() external payable {} function decimals() public pure override returns (uint8) { return 18; } function _swapTokensForCoin(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = routerV2.WETH(); _approve(address(this), address(routerV2), tokenAmount); routerV2.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount, 0, path, address(this), block.timestamp); } function updateSwapThreshold(uint16 _swapThresholdRatio) public onlyOwner { require(_swapThresholdRatio > 0 && _swapThresholdRatio <= 500, "SwapThreshold: Cannot exceed limits from 0.01% to 5% for new swap threshold"); swapThresholdRatio = _swapThresholdRatio; emit SwapThresholdUpdated(_swapThresholdRatio); } function getSwapThresholdAmount() public view returns (uint256) { return balanceOf(pairV2) * swapThresholdRatio / 10000; } function getAllPending() public view returns (uint256) { return 0 + _marketingPending + _buybackPending + _developerPending + _rescuePending + _partnerPending; } function marketingAddressSetup(address _newAddress) public onlyOwner { require(_newAddress != address(0), "TaxesDefaultRouterWallet: Wallet tax recipient cannot be a 0x0 address"); marketingAddress = _newAddress; excludeFromFees(_newAddress, true); _excludeFromLimits(_newAddress, true); emit marketingAddressUpdated(_newAddress); } function marketingFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner { totalFees[0] = totalFees[0] - marketingFees[0] + _buyFee; totalFees[1] = totalFees[1] - marketingFees[1] + _sellFee; totalFees[2] = totalFees[2] - marketingFees[2] + _transferFee; require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%"); marketingFees = [_buyFee, _sellFee, _transferFee]; emit marketingFeesUpdated(_buyFee, _sellFee, _transferFee); } function buybackAddressSetup(address _newAddress) public onlyOwner { require(_newAddress != address(0), "TaxesDefaultRouterWallet: Wallet tax recipient cannot be a 0x0 address"); buybackAddress = _newAddress; excludeFromFees(_newAddress, true); _excludeFromLimits(_newAddress, true); emit buybackAddressUpdated(_newAddress); } function buybackFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner { totalFees[0] = totalFees[0] - buybackFees[0] + _buyFee; totalFees[1] = totalFees[1] - buybackFees[1] + _sellFee; totalFees[2] = totalFees[2] - buybackFees[2] + _transferFee; require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%"); buybackFees = [_buyFee, _sellFee, _transferFee]; emit buybackFeesUpdated(_buyFee, _sellFee, _transferFee); } function developerAddressSetup(address _newAddress) public onlyOwner { require(_newAddress != address(0), "TaxesDefaultRouterWallet: Wallet tax recipient cannot be a 0x0 address"); developerAddress = _newAddress; excludeFromFees(_newAddress, true); _excludeFromLimits(_newAddress, true); emit developerAddressUpdated(_newAddress); } function developerFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner { totalFees[0] = totalFees[0] - developerFees[0] + _buyFee; totalFees[1] = totalFees[1] - developerFees[1] + _sellFee; totalFees[2] = totalFees[2] - developerFees[2] + _transferFee; require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%"); developerFees = [_buyFee, _sellFee, _transferFee]; emit developerFeesUpdated(_buyFee, _sellFee, _transferFee); } function rescueAddressSetup(address _newAddress) public onlyOwner { require(_newAddress != address(0), "TaxesDefaultRouterWallet: Wallet tax recipient cannot be a 0x0 address"); rescueAddress = _newAddress; excludeFromFees(_newAddress, true); _excludeFromLimits(_newAddress, true); emit rescueAddressUpdated(_newAddress); } function rescueFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner { totalFees[0] = totalFees[0] - rescueFees[0] + _buyFee; totalFees[1] = totalFees[1] - rescueFees[1] + _sellFee; totalFees[2] = totalFees[2] - rescueFees[2] + _transferFee; require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%"); rescueFees = [_buyFee, _sellFee, _transferFee]; emit rescueFeesUpdated(_buyFee, _sellFee, _transferFee); } function partnerAddressSetup(address _newAddress) public onlyOwner { require(_newAddress != address(0), "TaxesDefaultRouterWallet: Wallet tax recipient cannot be a 0x0 address"); partnerAddress = _newAddress; excludeFromFees(_newAddress, true); _excludeFromLimits(_newAddress, true); emit partnerAddressUpdated(_newAddress); } function partnerFeesSetup(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner { totalFees[0] = totalFees[0] - partnerFees[0] + _buyFee; totalFees[1] = totalFees[1] - partnerFees[1] + _sellFee; totalFees[2] = totalFees[2] - partnerFees[2] + _transferFee; require(totalFees[0] <= 2500 && totalFees[1] <= 2500 && totalFees[2] <= 2500, "TaxesDefaultRouter: Cannot exceed max total fee of 25%"); partnerFees = [_buyFee, _sellFee, _transferFee]; emit partnerFeesUpdated(_buyFee, _sellFee, _transferFee); } function excludeFromFees(address account, bool isExcluded) public onlyOwner { isExcludedFromFees[account] = isExcluded; emit ExcludeFromFees(account, isExcluded); } function _transfer( address from, address to, uint256 amount ) internal override { if (!_swapping && amount > 0 && to != address(routerV2) && !isExcludedFromFees[from] && !isExcludedFromFees[to]) { uint256 fees = 0; uint8 txType = 3; if (AMMPairs[from]) { if (totalFees[0] > 0) txType = 0; } else if (AMMPairs[to]) { if (totalFees[1] > 0) txType = 1; } else if (totalFees[2] > 0) txType = 2; if (txType < 3) { fees = amount * totalFees[txType] / 10000; amount -= fees; _marketingPending += fees * marketingFees[txType] / totalFees[txType]; _buybackPending += fees * buybackFees[txType] / totalFees[txType]; _developerPending += fees * developerFees[txType] / totalFees[txType]; _rescuePending += fees * rescueFees[txType] / totalFees[txType]; _partnerPending += fees * partnerFees[txType] / totalFees[txType]; } if (fees > 0) { super._transfer(from, address(this), fees); } } bool canSwap = getAllPending() >= getSwapThresholdAmount() && balanceOf(pairV2) > 0; if (!_swapping && !AMMPairs[from] && from != address(routerV2) && canSwap) { _swapping = true; if (false || _marketingPending > 0 || _buybackPending > 0 || _developerPending > 0 || _rescuePending > 0 || _partnerPending > 0) { uint256 token2Swap = 0 + _marketingPending + _buybackPending + _developerPending + _rescuePending + _partnerPending; bool success = false; _swapTokensForCoin(token2Swap); uint256 coinsReceived = address(this).balance; uint256 marketingPortion = coinsReceived * _marketingPending / token2Swap; if (marketingPortion > 0) { success = payable(marketingAddress).send(marketingPortion); if (success) { emit marketingFeeSent(marketingAddress, marketingPortion); } } _marketingPending = 0; uint256 buybackPortion = coinsReceived * _buybackPending / token2Swap; if (buybackPortion > 0) { success = payable(buybackAddress).send(buybackPortion); if (success) { emit buybackFeeSent(buybackAddress, buybackPortion); } } _buybackPending = 0; uint256 developerPortion = coinsReceived * _developerPending / token2Swap; if (developerPortion > 0) { success = payable(developerAddress).send(developerPortion); if (success) { emit developerFeeSent(developerAddress, developerPortion); } } _developerPending = 0; uint256 rescuePortion = coinsReceived * _rescuePending / token2Swap; if (rescuePortion > 0) { success = payable(rescueAddress).send(rescuePortion); if (success) { emit rescueFeeSent(rescueAddress, rescuePortion); } } _rescuePending = 0; uint256 partnerPortion = coinsReceived * _partnerPending / token2Swap; if (partnerPortion > 0) { success = payable(partnerAddress).send(partnerPortion); if (success) { emit partnerFeeSent(partnerAddress, partnerPortion); } } _partnerPending = 0; } _swapping = false; } super._transfer(from, to, amount); } function _updateRouterV2(address router) private { routerV2 = IUniswapV2Router02(router); pairV2 = IUniswapV2Factory(routerV2.factory()).createPair(address(this), routerV2.WETH()); _excludeFromLimits(router, true); _setAMMPair(pairV2, true); emit RouterV2Updated(router); } function setAMMPair(address pair, bool isPair) external onlyOwner { require(pair != pairV2, "DefaultRouter: Cannot remove initial pair from list"); _setAMMPair(pair, isPair); } function _setAMMPair(address pair, bool isPair) private { AMMPairs[pair] = isPair; if (isPair) { _excludeFromLimits(pair, true); } emit AMMPairsUpdated(pair, isPair); } function excludeFromLimits(address account, bool isExcluded) external onlyOwner { _excludeFromLimits(account, isExcluded); } function _excludeFromLimits(address account, bool isExcluded) internal { isExcludedFromLimits[account] = isExcluded; emit ExcludeFromLimits(account, isExcluded); } function updateMaxWalletAmount(uint256 _maxWalletAmount) public onlyOwner { require(_maxWalletAmount >= _maxWalletSafeLimit(), "MaxWallet: Limit too low"); maxWalletAmount = _maxWalletAmount; emit MaxWalletAmountUpdated(_maxWalletAmount); } function _maxWalletSafeLimit() private view returns (uint256) { return totalSupply() / 1000; } function enableTrading() external onlyOwner { require(!tradingEnabled, "EnableTrading: Trading was enabled already"); tradingEnabled = true; emit TradingEnabled(); } function excludeFromTradingRestriction(address account, bool isExcluded) public onlyOwner { isExcludedFromTradingRestriction[account] = isExcluded; emit ExcludeFromTradingRestriction(account, isExcluded); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal override { // Interactions with DEX are disallowed prior to enabling trading by owner if ((AMMPairs[from] && !isExcludedFromTradingRestriction[to]) || (AMMPairs[to] && !isExcludedFromTradingRestriction[from])) { require(tradingEnabled, "EnableTrading: Trading was not enabled yet"); } super._beforeTokenTransfer(from, to, amount); } function _afterTokenTransfer(address from, address to, uint256 amount) internal override { if (!isExcludedFromLimits[to]) { require(balanceOf(to) <= maxWalletAmount, "MaxWallet: Cannot exceed max wallet limit"); } super._afterTokenTransfer(from, to, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./IERC20Metadata.sol"; import "./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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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}. * * 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 default value returned by this function, unless * it's 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, allowance(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 = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * 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; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * 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 (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "./ERC20.sol"; import "./Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @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) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol) pragma solidity ^0.8.0; import "./Ownable.sol"; /** * @dev Contract module which provides access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership} and {acceptOwnership}. * * This module is used through inheritance. It will make available all functions * from parent (Ownable). */ abstract contract Ownable2Step is Ownable { address private _pendingOwner; event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner); /** * @dev Returns the address of the pending owner. */ function pendingOwner() public view virtual returns (address) { return _pendingOwner; } /** * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual override onlyOwner { _pendingOwner = newOwner; emit OwnershipTransferStarted(owner(), newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner. * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual override { delete _pendingOwner; super._transferOwnership(newOwner); } /** * @dev The new owner accepts the ownership transfer. */ function acceptOwnership() public virtual { address sender = _msgSender(); require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner"); _transferOwnership(sender); } }
// SPDX-License-Identifier: No License pragma solidity ^0.8.0; import "./IERC20.sol"; import "./Ownable2Step.sol"; abstract contract TokenRecover is Ownable2Step { function recoverERC20(address tokenAddress, uint256 amount) external onlyOwner { require(tokenAddress != address(this), "TokenRecover: Cannot recover this token"); IERC20(tokenAddress).transfer(owner(), amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/ERC20Permit.sol) pragma solidity ^0.8.0; import "./IERC20Permit.sol"; import "./ERC20.sol"; import "./ECDSA.sol"; import "./EIP712.sol"; import "./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, EIP712 { using Counters for Counters.Counter; mapping(address => Counters.Counter) private _nonces; // solhint-disable-next-line var-name-mixedcase bytes32 private constant _PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); /** * @dev In previous versions `_PERMIT_TYPEHASH` was declared as `immutable`. * However, to ensure consistency with the upgradeable transpiler, we will continue * to reserve a slot. * @custom:oz-renamed-from _PERMIT_TYPEHASH */ // solhint-disable-next-line var-name-mixedcase bytes32 private _PERMIT_TYPEHASH_DEPRECATED_SLOT; /** * @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) EIP712(name, "1") {} /** * @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 = _hashTypedDataV4(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() external view override returns (bytes32) { return _domainSeparatorV4(); } /** * @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 pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // 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 (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ 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: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "./Strings.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", Strings.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 (last updated v4.9.0) (utils/cryptography/EIP712.sol) pragma solidity ^0.8.8; import "./ECDSA.sol"; import "./ShortStrings.sol"; import "./IERC5267.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]. * * NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain * separator of the implementation contract. This will cause the `_domainSeparatorV4` function to always rebuild the * separator from the immutable values, which is cheaper than accessing a cached version in cold storage. * * _Available since v3.4._ * * @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment */ abstract contract EIP712 is IERC5267 { using ShortStrings for *; bytes32 private constant _TYPE_HASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"); // 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 _cachedDomainSeparator; uint256 private immutable _cachedChainId; address private immutable _cachedThis; bytes32 private immutable _hashedName; bytes32 private immutable _hashedVersion; ShortString private immutable _name; ShortString private immutable _version; string private _nameFallback; string private _versionFallback; /** * @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) { _name = name.toShortStringWithFallback(_nameFallback); _version = version.toShortStringWithFallback(_versionFallback); _hashedName = keccak256(bytes(name)); _hashedVersion = keccak256(bytes(version)); _cachedChainId = block.chainid; _cachedDomainSeparator = _buildDomainSeparator(); _cachedThis = address(this); } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _cachedThis && block.chainid == _cachedChainId) { return _cachedDomainSeparator; } else { return _buildDomainSeparator(); } } function _buildDomainSeparator() private view returns (bytes32) { return keccak256(abi.encode(_TYPE_HASH, _hashedName, _hashedVersion, 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); } /** * @dev See {EIP-5267}. * * _Available since v4.9._ */ function eip712Domain() public view virtual override returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ) { return ( hex"0f", // 01111 _name.toStringWithFallback(_nameFallback), _version.toStringWithFallback(_versionFallback), block.chainid, address(this), bytes32(0), new uint256[](0) ); } }
// 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.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./Math.sol"; import "./SignedMath.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/ShortStrings.sol) pragma solidity ^0.8.8; import "./StorageSlot.sol"; // | string | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | // | length | 0x BB | type ShortString is bytes32; /** * @dev This library provides functions to convert short memory strings * into a `ShortString` type that can be used as an immutable variable. * * Strings of arbitrary length can be optimized using this library if * they are short enough (up to 31 bytes) by packing them with their * length (1 byte) in a single EVM word (32 bytes). Additionally, a * fallback mechanism can be used for every other case. * * Usage example: * * ```solidity * contract Named { * using ShortStrings for *; * * ShortString private immutable _name; * string private _nameFallback; * * constructor(string memory contractName) { * _name = contractName.toShortStringWithFallback(_nameFallback); * } * * function name() external view returns (string memory) { * return _name.toStringWithFallback(_nameFallback); * } * } * ``` */ library ShortStrings { // Used as an identifier for strings longer than 31 bytes. bytes32 private constant _FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF; error StringTooLong(string str); error InvalidShortString(); /** * @dev Encode a string of at most 31 chars into a `ShortString`. * * This will trigger a `StringTooLong` error is the input string is too long. */ function toShortString(string memory str) internal pure returns (ShortString) { bytes memory bstr = bytes(str); if (bstr.length > 31) { revert StringTooLong(str); } return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length)); } /** * @dev Decode a `ShortString` back to a "normal" string. */ function toString(ShortString sstr) internal pure returns (string memory) { uint256 len = byteLength(sstr); // using `new string(len)` would work locally but is not memory safe. string memory str = new string(32); /// @solidity memory-safe-assembly assembly { mstore(str, len) mstore(add(str, 0x20), sstr) } return str; } /** * @dev Return the length of a `ShortString`. */ function byteLength(ShortString sstr) internal pure returns (uint256) { uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF; if (result > 31) { revert InvalidShortString(); } return result; } /** * @dev Encode a string into a `ShortString`, or write it to storage if it is too long. */ function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) { if (bytes(value).length < 32) { return toShortString(value); } else { StorageSlot.getStringSlot(store).value = value; return ShortString.wrap(_FALLBACK_SENTINEL); } } /** * @dev Decode a string that was encoded to `ShortString` or written to storage using {setWithFallback}. */ function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) { if (ShortString.unwrap(value) != _FALLBACK_SENTINEL) { return toString(value); } else { return store; } } /** * @dev Return the length of a string that was encoded to `ShortString` or written to storage using {setWithFallback}. * * WARNING: This will return the "byte length" of the string. This may not reflect the actual length in terms of * actual characters as the UTF-8 encoding of a single character can span over multiple bytes. */ function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) { if (ShortString.unwrap(value) != _FALLBACK_SENTINEL) { return byteLength(value); } else { return bytes(store).length; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC5267.sol) pragma solidity ^0.8.0; interface IERC5267 { /** * @dev MAY be emitted to signal that the domain could have changed. */ event EIP712DomainChanged(); /** * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712 * signature. */ function eip712Domain() external view returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol) // This file was procedurally generated from scripts/generate/templates/StorageSlot.js. pragma solidity ^0.8.0; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ```solidity * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` * * _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._ * _Available since v4.9 for `string`, `bytes`._ */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } struct StringSlot { string value; } struct BytesSlot { bytes value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` with member `value` located at `slot`. */ function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` representation of the string storage pointer `store`. */ function getStringSlot(string storage store) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } /** * @dev Returns an `BytesSlot` with member `value` located at `slot`. */ function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`. */ function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"AMMPair","type":"address"},{"indexed":false,"internalType":"bool","name":"isPair","type":"bool"}],"name":"AMMPairsUpdated","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":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromTradingRestriction","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWalletAmount","type":"uint256"}],"name":"MaxWalletAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"routerV2","type":"address"}],"name":"RouterV2Updated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"swapThresholdRatio","type":"uint16"}],"name":"SwapThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"TradingEnabled","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":"buybackAddress","type":"address"}],"name":"buybackAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"buybackFeeSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"buybackFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"developerAddress","type":"address"}],"name":"developerAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"developerFeeSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"developerFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"marketingAddress","type":"address"}],"name":"marketingAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"marketingFeeSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"marketingFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"partnerAddress","type":"address"}],"name":"partnerAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"partnerFeeSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"partnerFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"rescueAddress","type":"address"}],"name":"rescueAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueFeeSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"rescueFeesUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AMMPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","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":[],"name":"buybackAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"buybackAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"buybackFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"buybackFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":[],"name":"developerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"developerAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"developerFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"developerFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromTradingRestriction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllPending","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSwapThresholdAmount","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":[{"internalType":"address","name":"_router","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromTradingRestriction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"marketingAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"marketingFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"marketingFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"pairV2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partnerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"partnerAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"partnerFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"partnerFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"rescueAddressSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rescueFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"rescueFeesSetup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"routerV2","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"isPair","type":"bool"}],"name":"setAMMPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThresholdRatio","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"totalFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_swapThresholdRatio","type":"uint16"}],"name":"updateSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6101606040523480156200001257600080fd5b506040518060400160405280600f81526020016e416c6c20537472656574204265747360881b81525080604051806040016040528060018152602001603160f81b8152506040518060400160405280600f81526020016e416c6c20537472656574204265747360881b815250604051806040016040528060048152602001634245545360e01b8152508160039081620000ac9190620019a9565b506004620000bb8282620019a9565b505050620000d8620000d26200038360201b60201c565b62000387565b620000e5826007620003a5565b61012052620000f6816008620003a5565b61014052815160208084019190912060e052815190820120610100524660a0526200018460e05161010051604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201529081019290925260608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b60805250503060c0525073f3936070d78d8d5c6dc999da586b511236a320be620001af6032620003de565b620001ce73e4366decc1fd56455e4b8850020f580092bca7ef620004e4565b620001dd604b806000620005c8565b620001fc73f3936070d78d8d5c6dc999da586b511236a320be620007ba565b6200020b604b8060006200089e565b6200022a73de46a9235b1ce978f618a839224fb829bb5fb54162000a88565b62000239603280600062000b6c565b6200025873ace2bd2833fd8929858be7d9c33cd2c808b744ff62000d56565b62000267604b80600062000e3a565b62000286736f993c4fe6cf8f65e8129d23bc94eea06033158762001024565b62000295601980600062001108565b620002a2816001620012f2565b620002af306001620012f2565b620002bc8160016200135c565b620002c93060016200135c565b620002d7600060016200135c565b6200030c600a620002ea60128262001b88565b620002fa9063ee6b280062001ba0565b62000306919062001bba565b620013b3565b620003198160016200144e565b620003263060016200144e565b6200035d81600a6200033a60128262001b88565b6200034b9064174876e80062001ba0565b62000357919062001bba565b620014b1565b6200037c73f3936070d78d8d5c6dc999da586b511236a320be62000387565b5062001cab565b3390565b600680546001600160a01b0319169055620003a28162001590565b50565b6000602083511015620003c557620003bd83620015e2565b9050620003d8565b81620003d28482620019a9565b5060ff90505b92915050565b620003e862001625565b60008161ffff161180156200040357506101f48161ffff1611155b6200048f5760405162461bcd60e51b815260206004820152604b60248201527f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d60448201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160648201526a1c081d1a1c995cda1bdb1960aa1b608482015260a4015b60405180910390fd5b600b805463ffff000019166201000061ffff8416908102919091179091556040519081527fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f1720906020015b60405180910390a150565b620004ee62001625565b6001600160a01b038116620005595760405162461bcd60e51b8152602060048201526046602482015260008051602062005ed1833981519152604482015260008051602062005f1183398151915260648201526564647265737360d01b608482015260a40162000486565b601180546001600160a01b0319166001600160a01b03831617905562000581816001620012f2565b6200058e8160016200135c565b6040516001600160a01b03821681527feaf1986d341c3096d2d5d32f86ed29a21fee4e0d8365cd2b6fa85c0ec6889cf690602001620004d9565b620005d262001625565b601254601c548491620005ed9161ffff918216911662001bdd565b620005f9919062001c02565b601c805461ffff191661ffff928316179081905560125484926200062b92620100009283900482169290041662001bdd565b62000637919062001c02565b601c805463ffff000019166201000061ffff938416021790819055601254839262000672926401000000009283900482169290041662001bdd565b6200067e919062001c02565b601c805461ffff9283166401000000000261ffff60201b19821681179092556109c4908316919092161711801590620006c65750601c546109c46201000090910461ffff1611155b8015620006e45750601c546109c464010000000090910461ffff1611155b620007365760405162461bcd60e51b8152602060048201526036602482015260008051602062005ef1833981519152604482015260008051602062005f31833981519152606482015260840162000486565b6040805160608101825261ffff808616825284811660208301528316918101919091526200076990601290600362001851565b506040805161ffff808616825280851660208301528316918101919091527f1e5d76e30cd4303515f118e75cbf9d9440bb68ab78b2c2fa46984200dc11ad64906060015b60405180910390a1505050565b620007c462001625565b6001600160a01b0381166200082f5760405162461bcd60e51b8152602060048201526046602482015260008051602062005ed1833981519152604482015260008051602062005f1183398151915260648201526564647265737360d01b608482015260a40162000486565b601380546001600160a01b0319166001600160a01b03831617905562000857816001620012f2565b620008648160016200135c565b6040516001600160a01b03821681527f5ebfaab533f777bde6673deeebc87ba8a94b30820b5a9612e7fa041f14ec791090602001620004d9565b620008a862001625565b601454601c548491620008c39161ffff918216911662001bdd565b620008cf919062001c02565b601c805461ffff191661ffff928316179081905560145484926200090192620100009283900482169290041662001bdd565b6200090d919062001c02565b601c805463ffff000019166201000061ffff938416021790819055601454839262000948926401000000009283900482169290041662001bdd565b62000954919062001c02565b601c805461ffff9283166401000000000261ffff60201b19821681179092556109c49083169190921617118015906200099c5750601c546109c46201000090910461ffff1611155b8015620009ba5750601c546109c464010000000090910461ffff1611155b62000a0c5760405162461bcd60e51b8152602060048201526036602482015260008051602062005ef1833981519152604482015260008051602062005f31833981519152606482015260840162000486565b6040805160608101825261ffff8086168252848116602083015283169181019190915262000a3f90601490600362001851565b506040805161ffff808616825280851660208301528316918101919091527f5c8bbaf1ef5c0019fc8a5aabc72ac6cba3115eeaf97a8f3781756a1c072eaf4690606001620007ad565b62000a9262001625565b6001600160a01b03811662000afd5760405162461bcd60e51b8152602060048201526046602482015260008051602062005ed1833981519152604482015260008051602062005f1183398151915260648201526564647265737360d01b608482015260a40162000486565b601580546001600160a01b0319166001600160a01b03831617905562000b25816001620012f2565b62000b328160016200135c565b6040516001600160a01b03821681527f715838749e9e3d898b280fdbc2916224f84cf0f633d5ae4bd45afb4f813fede790602001620004d9565b62000b7662001625565b601654601c54849162000b919161ffff918216911662001bdd565b62000b9d919062001c02565b601c805461ffff191661ffff9283161790819055601654849262000bcf92620100009283900482169290041662001bdd565b62000bdb919062001c02565b601c805463ffff000019166201000061ffff938416021790819055601654839262000c16926401000000009283900482169290041662001bdd565b62000c22919062001c02565b601c805461ffff9283166401000000000261ffff60201b19821681179092556109c490831691909216171180159062000c6a5750601c546109c46201000090910461ffff1611155b801562000c885750601c546109c464010000000090910461ffff1611155b62000cda5760405162461bcd60e51b8152602060048201526036602482015260008051602062005ef1833981519152604482015260008051602062005f31833981519152606482015260840162000486565b6040805160608101825261ffff8086168252848116602083015283169181019190915262000d0d90601690600362001851565b506040805161ffff808616825280851660208301528316918101919091527fca0cfc59661a961b6c323e200f2d3aa0c236aee7dcb6a1cb695e2c8c1cf90ace90606001620007ad565b62000d6062001625565b6001600160a01b03811662000dcb5760405162461bcd60e51b8152602060048201526046602482015260008051602062005ed1833981519152604482015260008051602062005f1183398151915260648201526564647265737360d01b608482015260a40162000486565b601780546001600160a01b0319166001600160a01b03831617905562000df3816001620012f2565b62000e008160016200135c565b6040516001600160a01b03821681527f8d5f43289b24c4ceccbeabfa46a4f509b9a4b7a378378164e7783e693de2490e90602001620004d9565b62000e4462001625565b601854601c54849162000e5f9161ffff918216911662001bdd565b62000e6b919062001c02565b601c805461ffff191661ffff9283161790819055601854849262000e9d92620100009283900482169290041662001bdd565b62000ea9919062001c02565b601c805463ffff000019166201000061ffff938416021790819055601854839262000ee4926401000000009283900482169290041662001bdd565b62000ef0919062001c02565b601c805461ffff9283166401000000000261ffff60201b19821681179092556109c490831691909216171180159062000f385750601c546109c46201000090910461ffff1611155b801562000f565750601c546109c464010000000090910461ffff1611155b62000fa85760405162461bcd60e51b8152602060048201526036602482015260008051602062005ef1833981519152604482015260008051602062005f31833981519152606482015260840162000486565b6040805160608101825261ffff8086168252848116602083015283169181019190915262000fdb90601890600362001851565b506040805161ffff808616825280851660208301528316918101919091527fa889a4bd4f8e3d2f798ca78b1f6d26a4c90b7b543979050b13757d436eca24e790606001620007ad565b6200102e62001625565b6001600160a01b038116620010995760405162461bcd60e51b8152602060048201526046602482015260008051602062005ed1833981519152604482015260008051602062005f1183398151915260648201526564647265737360d01b608482015260a40162000486565b601980546001600160a01b0319166001600160a01b038316179055620010c1816001620012f2565b620010ce8160016200135c565b6040516001600160a01b03821681527fda2736782213534a099dbe7ea8d812b265fc2f677366df463c84d4affe0bf54e90602001620004d9565b6200111262001625565b601a54601c5484916200112d9161ffff918216911662001bdd565b62001139919062001c02565b601c805461ffff191661ffff9283161790819055601a5484926200116b92620100009283900482169290041662001bdd565b62001177919062001c02565b601c805463ffff000019166201000061ffff938416021790819055601a548392620011b2926401000000009283900482169290041662001bdd565b620011be919062001c02565b601c805461ffff9283166401000000000261ffff60201b19821681179092556109c4908316919092161711801590620012065750601c546109c46201000090910461ffff1611155b8015620012245750601c546109c464010000000090910461ffff1611155b620012765760405162461bcd60e51b8152602060048201526036602482015260008051602062005ef1833981519152604482015260008051602062005f31833981519152606482015260840162000486565b6040805160608101825261ffff80861682528481166020830152831691810191909152620012a990601a90600362001851565b506040805161ffff808616825280851660208301528316918101919091527ffe4bf8a5458bc5924a10ebae90877778e8f9aad381287967e70d5a9926b56cfa90606001620007ad565b620012fc62001625565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92910162001350565b620013bd62001625565b620013c762001683565b811015620014185760405162461bcd60e51b815260206004820152601860248201527f4d617857616c6c65743a204c696d697420746f6f206c6f770000000000000000604482015260640162000486565b60218190556040518181527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e00190602001620004d9565b6200145862001625565b6001600160a01b038216600081815260236020908152604091829020805460ff191685151590811790915591519182527f38d2732664f4152f6b6754aa1afeaec7fa6618671b172e5430139b51dba2d1d6910162001350565b6001600160a01b038216620015095760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000486565b6200151760008383620016a3565b80600260008282546200152b919062001c20565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36200158c60008383620017b3565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080829050601f8151111562001610578260405163305a27a960e01b815260040162000486919062001c36565b80516200161d8262001c86565b179392505050565b6005546001600160a01b03163314620016815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000486565b565b60006103e86200169260025490565b6200169e919062001bba565b905090565b6001600160a01b0383166000908152601f602052604090205460ff168015620016e557506001600160a01b03821660009081526023602052604090205460ff16155b806200172e57506001600160a01b0382166000908152601f602052604090205460ff1680156200172e57506001600160a01b03831660009081526023602052604090205460ff16155b156200179b5760225460ff166200179b5760405162461bcd60e51b815260206004820152602a60248201527f456e61626c6554726164696e673a2054726164696e6720776173206e6f7420656044820152691b98589b1959081e595d60b21b606482015260840162000486565b620017ae8383836001600160e01b038416565b505050565b6001600160a01b038216600090815260208052604090205460ff166200179b576021546001600160a01b03831660009081526020819052604090205411156200179b5760405162461bcd60e51b815260206004820152602960248201527f4d617857616c6c65743a2043616e6e6f7420657863656564206d61782077616c6044820152681b195d081b1a5b5a5d60ba1b606482015260840162000486565b600183019183908215620018dc5791602002820160005b83821115620018aa57835183826101000a81548161ffff021916908361ffff160217905550926020019260020160208160010104928301926001030262001868565b8015620018da5782816101000a81549061ffff0219169055600201602081600101049283019260010302620018aa565b505b50620018ea929150620018ee565b5090565b5b80821115620018ea5760008155600101620018ef565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200193057607f821691505b6020821081036200195157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620017ae57600081815260208120601f850160051c81016020861015620019805750805b601f850160051c820191505b81811015620019a1578281556001016200198c565b505050505050565b81516001600160401b03811115620019c557620019c562001905565b620019dd81620019d684546200191b565b8462001957565b602080601f83116001811462001a155760008415620019fc5750858301515b600019600386901b1c1916600185901b178555620019a1565b600085815260208120601f198616915b8281101562001a465788860151825594840194600190910190840162001a25565b508582101562001a655787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562001acc57816000190482111562001ab05762001ab062001a75565b8085161562001abe57918102915b93841c939080029062001a90565b509250929050565b60008262001ae557506001620003d8565b8162001af457506000620003d8565b816001811462001b0d576002811462001b185762001b38565b6001915050620003d8565b60ff84111562001b2c5762001b2c62001a75565b50506001821b620003d8565b5060208310610133831016604e8410600b841016171562001b5d575081810a620003d8565b62001b69838362001a8b565b806000190482111562001b805762001b8062001a75565b029392505050565b600062001b9960ff84168362001ad4565b9392505050565b8082028115828204841417620003d857620003d862001a75565b60008262001bd857634e487b7160e01b600052601260045260246000fd5b500490565b61ffff82811682821603908082111562001bfb5762001bfb62001a75565b5092915050565b61ffff81811683821601908082111562001bfb5762001bfb62001a75565b80820180821115620003d857620003d862001a75565b600060208083528351808285015260005b8181101562001c655785810183015185820160400152820162001c47565b506000604082860101526040601f19601f8301168501019250505092915050565b80516020808301519190811015620019515760001960209190910360031b1b16919050565b60805160a05160c05160e0516101005161012051610140516141cb62001d0660003960006117740152600061174901526000612ee301526000612ebb01526000612e1601526000612e4001526000612e6a01526141cb6000f3fe6080604052600436106103bc5760003560e01c80637ecebe00116101f2578063b6e036c11161010d578063d505accf116100a0578063e30c39781161006f578063e30c397814610b6a578063e85ceee814610b88578063f112ba7214610bb8578063f2fde38b14610bcd57600080fd5b8063d505accf14610af5578063d947752614610b15578063dd62ed3e14610b2a578063e1f1e89514610b4a57600080fd5b8063c400f5e7116100dc578063c400f5e714610a75578063c4d66de814610a95578063caccd7f714610ab5578063cc2fbd6614610ad557600080fd5b8063b6e036c1146109f5578063c024666814610a15578063c0a904a214610a35578063c18bc19514610a5557600080fd5b80638fffabed11610185578063a5ece94111610154578063a5ece9411461097f578063a9059cbb1461099f578063aa4bde28146109bf578063b0957d9f146109d557600080fd5b80638fffabed1461090a57806395a6ced91461092a57806395d89b411461094a578063a457c2d71461095f57600080fd5b80638980f11f116101c15780638980f11f146108975780638a8c523c146108b75780638da5cb5b146108cc5780638e749a8f146108ea57600080fd5b80637ecebe001461080f578063801b51d91461082f57806384b0196e1461084f5780638583963b1461087757600080fd5b806348d4d620116102e2578063576168fc11610275578063715018a611610244578063715018a61461079557806376856557146107aa57806379ba5097146107da57806379cc6790146107ef57600080fd5b8063576168fc146106f05780635cce86cd1461071057806364ed4f651461073f57806370a082311461075f57600080fd5b80634f011b83116102b15780634f011b83146106425780634fbee19314610663578063502f744614610693578063525550ea146106d057600080fd5b806348d4d620146105c85780634a4dd9cd146105e85780634ada218b146106085780634bc750791461062257600080fd5b806323b872dd1161035a5780633644e515116103295780633644e515146105535780633950935114610568578063408ccbdf1461058857806342966c68146105a857600080fd5b806323b872dd146104d75780632d99d32e146104f7578063303eb84014610517578063313ce5671461053757600080fd5b8063184fc56511610396578063184fc56514610442578063186a6335146104645780631a0e718c1461049757806322530018146104b757600080fd5b806306fdde03146103c8578063095ea7b3146103f357806318160ddd1461042357600080fd5b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610bed565b6040516103ea9190613c4d565b60405180910390f35b3480156103ff57600080fd5b5061041361040e366004613c7c565b610c7f565b60405190151581526020016103ea565b34801561042f57600080fd5b506002545b6040519081526020016103ea565b34801561044e57600080fd5b5061046261045d366004613ca8565b610c99565b005b34801561047057600080fd5b5061048461047f366004613cc5565b610d41565b60405161ffff90911681526020016103ea565b3480156104a357600080fd5b506104626104b2366004613cf5565b610d6f565b3480156104c357600080fd5b506104626104d2366004613ca8565b610e65565b3480156104e357600080fd5b506104136104f2366004613d10565b610efd565b34801561050357600080fd5b50610462610512366004613d5f565b610f21565b34801561052357600080fd5b50610462610532366004613d98565b610fb1565b34801561054357600080fd5b50604051601281526020016103ea565b34801561055f57600080fd5b50610434611159565b34801561057457600080fd5b50610413610583366004613c7c565b611168565b34801561059457600080fd5b506104846105a3366004613cc5565b61118a565b3480156105b457600080fd5b506104626105c3366004613cc5565b61119a565b3480156105d457600080fd5b506104626105e3366004613ca8565b6111a7565b3480156105f457600080fd5b50610462610603366004613d98565b61123f565b34801561061457600080fd5b506022546104139060ff1681565b34801561062e57600080fd5b5061046261063d366004613d98565b6113de565b34801561064e57600080fd5b50600b546104849062010000900461ffff1681565b34801561066f57600080fd5b5061041361067e366004613ca8565b601b6020526000908152604090205460ff1681565b34801561069f57600080fd5b50601d546106b89061010090046001600160a01b031681565b6040516001600160a01b0390911681526020016103ea565b3480156106dc57600080fd5b506017546106b8906001600160a01b031681565b3480156106fc57600080fd5b506019546106b8906001600160a01b031681565b34801561071c57600080fd5b5061041361072b366004613ca8565b602080526000908152604090205460ff1681565b34801561074b57600080fd5b5061046261075a366004613ca8565b61157d565b34801561076b57600080fd5b5061043461077a366004613ca8565b6001600160a01b031660009081526020819052604090205490565b3480156107a157600080fd5b50610462611615565b3480156107b657600080fd5b506104136107c5366004613ca8565b601f6020526000908152604090205460ff1681565b3480156107e657600080fd5b50610462611629565b3480156107fb57600080fd5b5061046261080a366004613c7c565b6116a0565b34801561081b57600080fd5b5061043461082a366004613ca8565b6116b5565b34801561083b57600080fd5b5061046261084a366004613d5f565b6116d3565b34801561085b57600080fd5b5061086461173b565b6040516103ea9796959493929190613ddb565b34801561088357600080fd5b50610484610892366004613cc5565b6117c4565b3480156108a357600080fd5b506104626108b2366004613c7c565b6117d4565b3480156108c357600080fd5b506104626118db565b3480156108d857600080fd5b506005546001600160a01b03166106b8565b3480156108f657600080fd5b50610484610905366004613cc5565b611981565b34801561091657600080fd5b50601e546106b8906001600160a01b031681565b34801561093657600080fd5b50610462610945366004613d98565b611991565b34801561095657600080fd5b506103dd611b30565b34801561096b57600080fd5b5061041361097a366004613c7c565b611b3f565b34801561098b57600080fd5b506011546106b8906001600160a01b031681565b3480156109ab57600080fd5b506104136109ba366004613c7c565b611bba565b3480156109cb57600080fd5b5061043460215481565b3480156109e157600080fd5b506104846109f0366004613cc5565b611bc8565b348015610a0157600080fd5b50610462610a10366004613d98565b611bd8565b348015610a2157600080fd5b50610462610a30366004613d5f565b611d77565b348015610a4157600080fd5b50610462610a50366004613d5f565b611dd7565b348015610a6157600080fd5b50610462610a70366004613cc5565b611de9565b348015610a8157600080fd5b50610462610a90366004613ca8565b611e7d565b348015610aa157600080fd5b50610462610ab0366004613ca8565b611f15565b348015610ac157600080fd5b506015546106b8906001600160a01b031681565b348015610ae157600080fd5b506013546106b8906001600160a01b031681565b348015610b0157600080fd5b50610462610b10366004613e71565b611fd1565b348015610b2157600080fd5b50610434612135565b348015610b3657600080fd5b50610434610b45366004613ee8565b612177565b348015610b5657600080fd5b50610484610b65366004613cc5565b6121a2565b348015610b7657600080fd5b506006546001600160a01b03166106b8565b348015610b9457600080fd5b50610413610ba3366004613ca8565b60236020526000908152604090205460ff1681565b348015610bc457600080fd5b506104346121b2565b348015610bd957600080fd5b50610462610be8366004613ca8565b6121f7565b606060038054610bfc90613f16565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2890613f16565b8015610c755780601f10610c4a57610100808354040283529160200191610c75565b820191906000526020600020905b815481529060010190602001808311610c5857829003601f168201915b5050505050905090565b600033610c8d818585612268565b60019150505b92915050565b610ca161238c565b6001600160a01b038116610cd05760405162461bcd60e51b8152600401610cc790613f4a565b60405180910390fd5b601580546001600160a01b0319166001600160a01b038316179055610cf6816001611d77565b610d018160016123e6565b6040516001600160a01b03821681527f715838749e9e3d898b280fdbc2916224f84cf0f633d5ae4bd45afb4f813fede7906020015b60405180910390a150565b60168160038110610d5157600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b610d7761238c565b60008161ffff16118015610d9157506101f48161ffff1611155b610e175760405162461bcd60e51b815260206004820152604b60248201527f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d60448201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160648201526a1c081d1a1c995cda1bdb1960aa1b608482015260a401610cc7565b600b805463ffff000019166201000061ffff8416908102919091179091556040519081527fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f172090602001610d36565b610e6d61238c565b6001600160a01b038116610e935760405162461bcd60e51b8152600401610cc790613f4a565b601780546001600160a01b0319166001600160a01b038316179055610eb9816001611d77565b610ec48160016123e6565b6040516001600160a01b03821681527f8d5f43289b24c4ceccbeabfa46a4f509b9a4b7a378378164e7783e693de2490e90602001610d36565b600033610f0b85828561243c565b610f168585856124b6565b506001949350505050565b610f2961238c565b601e546001600160a01b0390811690831603610fa35760405162461bcd60e51b815260206004820152603360248201527f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e696044820152721d1a585b081c185a5c88199c9bdb481b1a5cdd606a1b6064820152608401610cc7565b610fad8282612d94565b5050565b610fb961238c565b601854601c548491610fd29161ffff9182169116613fe2565b610fdc9190614004565b601c805461ffff191661ffff9283161790819055601854849261100c926201000092839004821692900416613fe2565b6110169190614004565b601c805463ffff000019166201000061ffff938416021790819055601854839261104e92600160201b92839004821692900416613fe2565b6110589190614004565b601c805461ffff928316600160201b0265ffff0000000019821681179092556109c490831691909216171180159061109f5750601c546109c46201000090910461ffff1611155b80156110bb5750601c546109c4600160201b90910461ffff1611155b6110d75760405162461bcd60e51b8152600401610cc79061401f565b6040805160608101825261ffff80861682528481166020830152831691810191909152611108906018906003613b5c565b506040805161ffff808616825280851660208301528316918101919091527fa889a4bd4f8e3d2f798ca78b1f6d26a4c90b7b543979050b13757d436eca24e7906060015b60405180910390a1505050565b6000611163612e09565b905090565b600033610c8d81858561117b8383612177565b6111859190614075565b612268565b601c8160038110610d5157600080fd5b6111a43382612f34565b50565b6111af61238c565b6001600160a01b0381166111d55760405162461bcd60e51b8152600401610cc790613f4a565b601380546001600160a01b0319166001600160a01b0383161790556111fb816001611d77565b6112068160016123e6565b6040516001600160a01b03821681527f5ebfaab533f777bde6673deeebc87ba8a94b30820b5a9612e7fa041f14ec791090602001610d36565b61124761238c565b601254601c5484916112609161ffff9182169116613fe2565b61126a9190614004565b601c805461ffff191661ffff9283161790819055601254849261129a926201000092839004821692900416613fe2565b6112a49190614004565b601c805463ffff000019166201000061ffff93841602179081905560125483926112dc92600160201b92839004821692900416613fe2565b6112e69190614004565b601c805461ffff928316600160201b0265ffff0000000019821681179092556109c490831691909216171180159061132d5750601c546109c46201000090910461ffff1611155b80156113495750601c546109c4600160201b90910461ffff1611155b6113655760405162461bcd60e51b8152600401610cc79061401f565b6040805160608101825261ffff80861682528481166020830152831691810191909152611396906012906003613b5c565b506040805161ffff808616825280851660208301528316918101919091527f1e5d76e30cd4303515f118e75cbf9d9440bb68ab78b2c2fa46984200dc11ad649060600161114c565b6113e661238c565b601654601c5484916113ff9161ffff9182169116613fe2565b6114099190614004565b601c805461ffff191661ffff92831617908190556016548492611439926201000092839004821692900416613fe2565b6114439190614004565b601c805463ffff000019166201000061ffff938416021790819055601654839261147b92600160201b92839004821692900416613fe2565b6114859190614004565b601c805461ffff928316600160201b0265ffff0000000019821681179092556109c49083169190921617118015906114cc5750601c546109c46201000090910461ffff1611155b80156114e85750601c546109c4600160201b90910461ffff1611155b6115045760405162461bcd60e51b8152600401610cc79061401f565b6040805160608101825261ffff80861682528481166020830152831691810191909152611535906016906003613b5c565b506040805161ffff808616825280851660208301528316918101919091527fca0cfc59661a961b6c323e200f2d3aa0c236aee7dcb6a1cb695e2c8c1cf90ace9060600161114c565b61158561238c565b6001600160a01b0381166115ab5760405162461bcd60e51b8152600401610cc790613f4a565b601980546001600160a01b0319166001600160a01b0383161790556115d1816001611d77565b6115dc8160016123e6565b6040516001600160a01b03821681527fda2736782213534a099dbe7ea8d812b265fc2f677366df463c84d4affe0bf54e90602001610d36565b61161d61238c565b6116276000613079565b565b60065433906001600160a01b031681146116975760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608401610cc7565b6111a481613079565b6116ab82338361243c565b610fad8282612f34565b6001600160a01b038116600090815260096020526040812054610c93565b6116db61238c565b6001600160a01b038216600081815260236020908152604091829020805460ff191685151590811790915591519182527f38d2732664f4152f6b6754aa1afeaec7fa6618671b172e5430139b51dba2d1d691015b60405180910390a25050565b60006060808280808361176f7f00000000000000000000000000000000000000000000000000000000000000006007613092565b61179a7f00000000000000000000000000000000000000000000000000000000000000006008613092565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b601a8160038110610d5157600080fd5b6117dc61238c565b306001600160a01b038316036118445760405162461bcd60e51b815260206004820152602760248201527f546f6b656e5265636f7665723a2043616e6e6f74207265636f7665722074686960448201526639903a37b5b2b760c91b6064820152608401610cc7565b816001600160a01b031663a9059cbb6118656005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156118b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d69190614088565b505050565b6118e361238c565b60225460ff16156119495760405162461bcd60e51b815260206004820152602a60248201527f456e61626c6554726164696e673a2054726164696e672077617320656e61626c604482015269656420616c726561647960b01b6064820152608401610cc7565b6022805460ff191660011790556040517f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c790600090a1565b60128160038110610d5157600080fd5b61199961238c565b601a54601c5484916119b29161ffff9182169116613fe2565b6119bc9190614004565b601c805461ffff191661ffff9283161790819055601a5484926119ec926201000092839004821692900416613fe2565b6119f69190614004565b601c805463ffff000019166201000061ffff938416021790819055601a548392611a2e92600160201b92839004821692900416613fe2565b611a389190614004565b601c805461ffff928316600160201b0265ffff0000000019821681179092556109c4908316919092161711801590611a7f5750601c546109c46201000090910461ffff1611155b8015611a9b5750601c546109c4600160201b90910461ffff1611155b611ab75760405162461bcd60e51b8152600401610cc79061401f565b6040805160608101825261ffff80861682528481166020830152831691810191909152611ae890601a906003613b5c565b506040805161ffff808616825280851660208301528316918101919091527ffe4bf8a5458bc5924a10ebae90877778e8f9aad381287967e70d5a9926b56cfa9060600161114c565b606060048054610bfc90613f16565b60003381611b4d8286612177565b905083811015611bad5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610cc7565b610f168286868403612268565b600033610c8d8185856124b6565b60188160038110610d5157600080fd5b611be061238c565b601454601c548491611bf99161ffff9182169116613fe2565b611c039190614004565b601c805461ffff191661ffff92831617908190556014548492611c33926201000092839004821692900416613fe2565b611c3d9190614004565b601c805463ffff000019166201000061ffff9384160217908190556014548392611c7592600160201b92839004821692900416613fe2565b611c7f9190614004565b601c805461ffff928316600160201b0265ffff0000000019821681179092556109c4908316919092161711801590611cc65750601c546109c46201000090910461ffff1611155b8015611ce25750601c546109c4600160201b90910461ffff1611155b611cfe5760405162461bcd60e51b8152600401610cc79061401f565b6040805160608101825261ffff80861682528481166020830152831691810191909152611d2f906014906003613b5c565b506040805161ffff808616825280851660208301528316918101919091527f5c8bbaf1ef5c0019fc8a5aabc72ac6cba3115eeaf97a8f3781756a1c072eaf469060600161114c565b611d7f61238c565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910161172f565b611ddf61238c565b610fad82826123e6565b611df161238c565b611df961313d565b811015611e485760405162461bcd60e51b815260206004820152601860248201527f4d617857616c6c65743a204c696d697420746f6f206c6f7700000000000000006044820152606401610cc7565b60218190556040518181527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e00190602001610d36565b611e8561238c565b6001600160a01b038116611eab5760405162461bcd60e51b8152600401610cc790613f4a565b601180546001600160a01b0319166001600160a01b038316179055611ed1816001611d77565b611edc8160016123e6565b6040516001600160a01b03821681527feaf1986d341c3096d2d5d32f86ed29a21fee4e0d8365cd2b6fa85c0ec6889cf690602001610d36565b600b54610100900460ff1680611f2e5750600b5460ff16155b611f915760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610cc7565b600b54610100900460ff16158015611fb357600b805461ffff19166101011790555b611fbc8261314b565b8015610fad57600b805461ff00191690555050565b834211156120215760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610cc7565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886120508c613359565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e00160405160208183030381529060405280519060200120905060006120ab82613381565b905060006120bb828787876133ae565b9050896001600160a01b0316816001600160a01b03161461211e5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610cc7565b6121298a8a8a612268565b50505050505050505050565b600b54601e546001600160a01b031660009081526020819052604081205490916127109161216d9162010000900461ffff16906140a5565b61116391906140bc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60148160038110610d5157600080fd5b6000601054600f54600e54600d54600c5460006121cf9190614075565b6121d99190614075565b6121e39190614075565b6121ed9190614075565b6111639190614075565b6121ff61238c565b600680546001600160a01b0383166001600160a01b031990911681179091556122306005546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6001600160a01b0383166122ca5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610cc7565b6001600160a01b03821661232b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610cc7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146116275760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cc7565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92910161172f565b60006124488484612177565b905060001981146124b057818110156124a35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610cc7565b6124b08484848403612268565b50505050565b601d5460ff161580156124c95750600081115b80156124e85750601d546001600160a01b038381166101009092041614155b801561250d57506001600160a01b0383166000908152601b602052604090205460ff16155b801561253257506001600160a01b0382166000908152601b602052604090205460ff16155b15612920576001600160a01b0383166000908152601f602052604081205460039060ff161561257057601c5461ffff161561256b575060005b6125c2565b6001600160a01b0384166000908152601f602052604090205460ff16156125ab57601c5462010000900461ffff161561256b575060016125c2565b601c54600160201b900461ffff16156125c2575060025b60038160ff16101561290c57612710601c8260ff16600381106125e7576125e7613fb6565b601091828204019190066002029054906101000a900461ffff1661ffff168461261091906140a5565b61261a91906140bc565b915061262682846140de565b9250601c8160ff166003811061263e5761263e613fb6565b601091828204019190066002029054906101000a900461ffff1661ffff1660128260ff166003811061267257612672613fb6565b601091828204019190066002029054906101000a900461ffff1661ffff168361269b91906140a5565b6126a591906140bc565b600c60008282546126b69190614075565b90915550601c905060ff8216600381106126d2576126d2613fb6565b601091828204019190066002029054906101000a900461ffff1661ffff1660148260ff166003811061270657612706613fb6565b601091828204019190066002029054906101000a900461ffff1661ffff168361272f91906140a5565b61273991906140bc565b600d600082825461274a9190614075565b90915550601c905060ff82166003811061276657612766613fb6565b601091828204019190066002029054906101000a900461ffff1661ffff1660168260ff166003811061279a5761279a613fb6565b601091828204019190066002029054906101000a900461ffff1661ffff16836127c391906140a5565b6127cd91906140bc565b600e60008282546127de9190614075565b90915550601c905060ff8216600381106127fa576127fa613fb6565b601091828204019190066002029054906101000a900461ffff1661ffff1660188260ff166003811061282e5761282e613fb6565b601091828204019190066002029054906101000a900461ffff1661ffff168361285791906140a5565b61286191906140bc565b600f60008282546128729190614075565b90915550601c905060ff82166003811061288e5761288e613fb6565b601091828204019190066002029054906101000a900461ffff1661ffff16601a8260ff16600381106128c2576128c2613fb6565b601091828204019190066002029054906101000a900461ffff1661ffff16836128eb91906140a5565b6128f591906140bc565b601060008282546129069190614075565b90915550505b811561291d5761291d8530846133d6565b50505b600061292a612135565b6129326121b2565b101580156129585750601e546001600160a01b0316600090815260208190526040812054115b601d5490915060ff1615801561298757506001600160a01b0384166000908152601f602052604090205460ff16155b80156129a65750601d546001600160a01b038581166101009092041614155b80156129af5750805b15612d8957601d805460ff191660011790556000600c5411806129d457506000600d54115b806129e157506000600e54115b806129ee57506000600f54115b806129fb57506000601054115b15612d7e576000601054600f54600e54600d54600c546000612a1d9190614075565b612a279190614075565b612a319190614075565b612a3b9190614075565b612a459190614075565b90506000612a528261358b565b600c5447906000908490612a6690846140a5565b612a7091906140bc565b90508015612af0576011546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505092508215612af057601154604080516001600160a01b039092168252602082018390527f3e6afd69feef8f4cc1adbe6d3905e477db85aa5aa28d02674dc4bc6d39237fe4910160405180910390a15b6000600c819055600d548590612b0690856140a5565b612b1091906140bc565b90508015612b90576013546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505093508315612b9057601354604080516001600160a01b039092168252602082018390527f03e42a5e3412039f6a61fffec33718c090964e39308d922702e1eca8be4cd6b8910160405180910390a15b6000600d819055600e548690612ba690866140a5565b612bb091906140bc565b90508015612c30576015546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505094508415612c3057601554604080516001600160a01b039092168252602082018390527fe74ff83287143f0bf18ca2ef2512d67578e727b6884ac317f1d639c497fd3ce0910160405180910390a15b6000600e819055600f548790612c4690876140a5565b612c5091906140bc565b90508015612cd0576017546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505095508515612cd057601754604080516001600160a01b039092168252602082018390527f1ec0a76d072e4df995054b328a98c4baea4b37fdbc5d56d5c9399e8b8164aa11910160405180910390a15b6000600f8190556010548890612ce690886140a5565b612cf091906140bc565b90508015612d70576019546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505096508615612d7057601954604080516001600160a01b039092168252602082018390527f572c5040a503eb728ae10d25a0c51fc47b6723baf7c069449a6345b8c28eb09f910160405180910390a15b505060006010555050505050505b601d805460ff191690555b6124b08484846133d6565b6001600160a01b0382166000908152601f60205260409020805460ff19168215801591909117909155612dcc57612dcc8260016123e6565b816001600160a01b03167f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a84558260405161172f911515815260200190565b6000306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148015612e6257507f000000000000000000000000000000000000000000000000000000000000000046145b15612e8c57507f000000000000000000000000000000000000000000000000000000000000000090565b611163604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b6001600160a01b038216612f945760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610cc7565b612fa082600083613708565b6001600160a01b038216600090815260208190526040902054818110156130145760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610cc7565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36118d6836000846137fa565b600680546001600160a01b03191690556111a481613895565b606060ff83146130ac576130a5836138e7565b9050610c93565b8180546130b890613f16565b80601f01602080910402602001604051908101604052809291908181526020018280546130e490613f16565b80156131315780601f1061310657610100808354040283529160200191613131565b820191906000526020600020905b81548152906001019060200180831161311457829003601f168201915b50505050509050610c93565b60006103e861216d60025490565b80601d60016101000a8154816001600160a01b0302191690836001600160a01b03160217905550601d60019054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156131c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131e991906140f1565b6001600160a01b031663c9c6539630601d60019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561324b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061326f91906140f1565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156132bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132e091906140f1565b601e80546001600160a01b0319166001600160a01b039290921691909117905561330b8160016123e6565b601e54613322906001600160a01b03166001612d94565b6040516001600160a01b038216907fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b60290600090a250565b6001600160a01b03811660009081526009602052604090208054600181018255905b50919050565b6000610c9361338e612e09565b8360405161190160f01b8152600281019290925260228201526042902090565b60008060006133bf87878787613926565b915091506133cc816139ea565b5095945050505050565b6001600160a01b03831661343a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610cc7565b6001600160a01b03821661349c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610cc7565b6134a7838383613708565b6001600160a01b0383166000908152602081905260409020548181101561351f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610cc7565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36124b08484846137fa565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106135c0576135c0613fb6565b60200260200101906001600160a01b031690816001600160a01b031681525050601d60019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613633573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061365791906140f1565b8160018151811061366a5761366a613fb6565b6001600160a01b039283166020918202929092010152601d5461369591309161010090041684612268565b601d5460405163791ac94760e01b81526101009091046001600160a01b03169063791ac947906136d290859060009086903090429060040161410e565b600060405180830381600087803b1580156136ec57600080fd5b505af1158015613700573d6000803e3d6000fd5b505050505050565b6001600160a01b0383166000908152601f602052604090205460ff16801561374957506001600160a01b03821660009081526023602052604090205460ff16155b8061379057506001600160a01b0382166000908152601f602052604090205460ff16801561379057506001600160a01b03831660009081526023602052604090205460ff16155b156118d65760225460ff166118d65760405162461bcd60e51b815260206004820152602a60248201527f456e61626c6554726164696e673a2054726164696e6720776173206e6f7420656044820152691b98589b1959081e595d60b21b6064820152608401610cc7565b6001600160a01b038216600090815260208052604090205460ff166118d6576021546001600160a01b03831660009081526020819052604090205411156118d65760405162461bcd60e51b815260206004820152602960248201527f4d617857616c6c65743a2043616e6e6f7420657863656564206d61782077616c6044820152681b195d081b1a5b5a5d60ba1b6064820152608401610cc7565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b606060006138f483613b34565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561395d57506000905060036139e1565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156139b1573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166139da576000600192509250506139e1565b9150600090505b94509492505050565b60008160048111156139fe576139fe61417f565b03613a065750565b6001816004811115613a1a57613a1a61417f565b03613a675760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610cc7565b6002816004811115613a7b57613a7b61417f565b03613ac85760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610cc7565b6003816004811115613adc57613adc61417f565b036111a45760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610cc7565b600060ff8216601f811115610c9357604051632cd44ac360e21b815260040160405180910390fd5b600183019183908215613be25791602002820160005b83821115613bb257835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302613b72565b8015613be05782816101000a81549061ffff0219169055600201602081600101049283019260010302613bb2565b505b50613bee929150613bf2565b5090565b5b80821115613bee5760008155600101613bf3565b6000815180845260005b81811015613c2d57602081850181015186830182015201613c11565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000613c606020830184613c07565b9392505050565b6001600160a01b03811681146111a457600080fd5b60008060408385031215613c8f57600080fd5b8235613c9a81613c67565b946020939093013593505050565b600060208284031215613cba57600080fd5b8135613c6081613c67565b600060208284031215613cd757600080fd5b5035919050565b803561ffff81168114613cf057600080fd5b919050565b600060208284031215613d0757600080fd5b613c6082613cde565b600080600060608486031215613d2557600080fd5b8335613d3081613c67565b92506020840135613d4081613c67565b929592945050506040919091013590565b80151581146111a457600080fd5b60008060408385031215613d7257600080fd5b8235613d7d81613c67565b91506020830135613d8d81613d51565b809150509250929050565b600080600060608486031215613dad57600080fd5b613db684613cde565b9250613dc460208501613cde565b9150613dd260408501613cde565b90509250925092565b60ff60f81b881681526000602060e081840152613dfb60e084018a613c07565b8381036040850152613e0d818a613c07565b606085018990526001600160a01b038816608086015260a0850187905284810360c0860152855180825283870192509083019060005b81811015613e5f57835183529284019291840191600101613e43565b50909c9b505050505050505050505050565b600080600080600080600060e0888a031215613e8c57600080fd5b8735613e9781613c67565b96506020880135613ea781613c67565b95506040880135945060608801359350608088013560ff81168114613ecb57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215613efb57600080fd5b8235613f0681613c67565b91506020830135613d8d81613c67565b600181811c90821680613f2a57607f821691505b60208210810361337b57634e487b7160e01b600052602260045260246000fd5b60208082526046908201527f546178657344656661756c74526f7574657257616c6c65743a2057616c6c657460408201527f2074617820726563697069656e742063616e6e6f74206265206120307830206160608201526564647265737360d01b608082015260a00190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b61ffff828116828216039080821115613ffd57613ffd613fcc565b5092915050565b61ffff818116838216019080821115613ffd57613ffd613fcc565b60208082526036908201527f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560408201527564206d617820746f74616c20666565206f662032352560501b606082015260800190565b80820180821115610c9357610c93613fcc565b60006020828403121561409a57600080fd5b8151613c6081613d51565b8082028115828204841417610c9357610c93613fcc565b6000826140d957634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610c9357610c93613fcc565b60006020828403121561410357600080fd5b8151613c6081613c67565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561415e5784516001600160a01b031683529383019391830191600101614139565b50506001600160a01b03969096166060850152505050608001529392505050565b634e487b7160e01b600052602160045260246000fdfea2646970667358221220041b9173726ef7f7cb78d038c92a43bb5d239a8dc4eba719f1b6390d24eba31a64736f6c63430008130033546178657344656661756c74526f7574657257616c6c65743a2057616c6c6574546178657344656661756c74526f757465723a2043616e6e6f742065786365652074617820726563697069656e742063616e6e6f74206265206120307830206164206d617820746f74616c20666565206f662032352500000000000000000000
Deployed Bytecode
0x6080604052600436106103bc5760003560e01c80637ecebe00116101f2578063b6e036c11161010d578063d505accf116100a0578063e30c39781161006f578063e30c397814610b6a578063e85ceee814610b88578063f112ba7214610bb8578063f2fde38b14610bcd57600080fd5b8063d505accf14610af5578063d947752614610b15578063dd62ed3e14610b2a578063e1f1e89514610b4a57600080fd5b8063c400f5e7116100dc578063c400f5e714610a75578063c4d66de814610a95578063caccd7f714610ab5578063cc2fbd6614610ad557600080fd5b8063b6e036c1146109f5578063c024666814610a15578063c0a904a214610a35578063c18bc19514610a5557600080fd5b80638fffabed11610185578063a5ece94111610154578063a5ece9411461097f578063a9059cbb1461099f578063aa4bde28146109bf578063b0957d9f146109d557600080fd5b80638fffabed1461090a57806395a6ced91461092a57806395d89b411461094a578063a457c2d71461095f57600080fd5b80638980f11f116101c15780638980f11f146108975780638a8c523c146108b75780638da5cb5b146108cc5780638e749a8f146108ea57600080fd5b80637ecebe001461080f578063801b51d91461082f57806384b0196e1461084f5780638583963b1461087757600080fd5b806348d4d620116102e2578063576168fc11610275578063715018a611610244578063715018a61461079557806376856557146107aa57806379ba5097146107da57806379cc6790146107ef57600080fd5b8063576168fc146106f05780635cce86cd1461071057806364ed4f651461073f57806370a082311461075f57600080fd5b80634f011b83116102b15780634f011b83146106425780634fbee19314610663578063502f744614610693578063525550ea146106d057600080fd5b806348d4d620146105c85780634a4dd9cd146105e85780634ada218b146106085780634bc750791461062257600080fd5b806323b872dd1161035a5780633644e515116103295780633644e515146105535780633950935114610568578063408ccbdf1461058857806342966c68146105a857600080fd5b806323b872dd146104d75780632d99d32e146104f7578063303eb84014610517578063313ce5671461053757600080fd5b8063184fc56511610396578063184fc56514610442578063186a6335146104645780631a0e718c1461049757806322530018146104b757600080fd5b806306fdde03146103c8578063095ea7b3146103f357806318160ddd1461042357600080fd5b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610bed565b6040516103ea9190613c4d565b60405180910390f35b3480156103ff57600080fd5b5061041361040e366004613c7c565b610c7f565b60405190151581526020016103ea565b34801561042f57600080fd5b506002545b6040519081526020016103ea565b34801561044e57600080fd5b5061046261045d366004613ca8565b610c99565b005b34801561047057600080fd5b5061048461047f366004613cc5565b610d41565b60405161ffff90911681526020016103ea565b3480156104a357600080fd5b506104626104b2366004613cf5565b610d6f565b3480156104c357600080fd5b506104626104d2366004613ca8565b610e65565b3480156104e357600080fd5b506104136104f2366004613d10565b610efd565b34801561050357600080fd5b50610462610512366004613d5f565b610f21565b34801561052357600080fd5b50610462610532366004613d98565b610fb1565b34801561054357600080fd5b50604051601281526020016103ea565b34801561055f57600080fd5b50610434611159565b34801561057457600080fd5b50610413610583366004613c7c565b611168565b34801561059457600080fd5b506104846105a3366004613cc5565b61118a565b3480156105b457600080fd5b506104626105c3366004613cc5565b61119a565b3480156105d457600080fd5b506104626105e3366004613ca8565b6111a7565b3480156105f457600080fd5b50610462610603366004613d98565b61123f565b34801561061457600080fd5b506022546104139060ff1681565b34801561062e57600080fd5b5061046261063d366004613d98565b6113de565b34801561064e57600080fd5b50600b546104849062010000900461ffff1681565b34801561066f57600080fd5b5061041361067e366004613ca8565b601b6020526000908152604090205460ff1681565b34801561069f57600080fd5b50601d546106b89061010090046001600160a01b031681565b6040516001600160a01b0390911681526020016103ea565b3480156106dc57600080fd5b506017546106b8906001600160a01b031681565b3480156106fc57600080fd5b506019546106b8906001600160a01b031681565b34801561071c57600080fd5b5061041361072b366004613ca8565b602080526000908152604090205460ff1681565b34801561074b57600080fd5b5061046261075a366004613ca8565b61157d565b34801561076b57600080fd5b5061043461077a366004613ca8565b6001600160a01b031660009081526020819052604090205490565b3480156107a157600080fd5b50610462611615565b3480156107b657600080fd5b506104136107c5366004613ca8565b601f6020526000908152604090205460ff1681565b3480156107e657600080fd5b50610462611629565b3480156107fb57600080fd5b5061046261080a366004613c7c565b6116a0565b34801561081b57600080fd5b5061043461082a366004613ca8565b6116b5565b34801561083b57600080fd5b5061046261084a366004613d5f565b6116d3565b34801561085b57600080fd5b5061086461173b565b6040516103ea9796959493929190613ddb565b34801561088357600080fd5b50610484610892366004613cc5565b6117c4565b3480156108a357600080fd5b506104626108b2366004613c7c565b6117d4565b3480156108c357600080fd5b506104626118db565b3480156108d857600080fd5b506005546001600160a01b03166106b8565b3480156108f657600080fd5b50610484610905366004613cc5565b611981565b34801561091657600080fd5b50601e546106b8906001600160a01b031681565b34801561093657600080fd5b50610462610945366004613d98565b611991565b34801561095657600080fd5b506103dd611b30565b34801561096b57600080fd5b5061041361097a366004613c7c565b611b3f565b34801561098b57600080fd5b506011546106b8906001600160a01b031681565b3480156109ab57600080fd5b506104136109ba366004613c7c565b611bba565b3480156109cb57600080fd5b5061043460215481565b3480156109e157600080fd5b506104846109f0366004613cc5565b611bc8565b348015610a0157600080fd5b50610462610a10366004613d98565b611bd8565b348015610a2157600080fd5b50610462610a30366004613d5f565b611d77565b348015610a4157600080fd5b50610462610a50366004613d5f565b611dd7565b348015610a6157600080fd5b50610462610a70366004613cc5565b611de9565b348015610a8157600080fd5b50610462610a90366004613ca8565b611e7d565b348015610aa157600080fd5b50610462610ab0366004613ca8565b611f15565b348015610ac157600080fd5b506015546106b8906001600160a01b031681565b348015610ae157600080fd5b506013546106b8906001600160a01b031681565b348015610b0157600080fd5b50610462610b10366004613e71565b611fd1565b348015610b2157600080fd5b50610434612135565b348015610b3657600080fd5b50610434610b45366004613ee8565b612177565b348015610b5657600080fd5b50610484610b65366004613cc5565b6121a2565b348015610b7657600080fd5b506006546001600160a01b03166106b8565b348015610b9457600080fd5b50610413610ba3366004613ca8565b60236020526000908152604090205460ff1681565b348015610bc457600080fd5b506104346121b2565b348015610bd957600080fd5b50610462610be8366004613ca8565b6121f7565b606060038054610bfc90613f16565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2890613f16565b8015610c755780601f10610c4a57610100808354040283529160200191610c75565b820191906000526020600020905b815481529060010190602001808311610c5857829003601f168201915b5050505050905090565b600033610c8d818585612268565b60019150505b92915050565b610ca161238c565b6001600160a01b038116610cd05760405162461bcd60e51b8152600401610cc790613f4a565b60405180910390fd5b601580546001600160a01b0319166001600160a01b038316179055610cf6816001611d77565b610d018160016123e6565b6040516001600160a01b03821681527f715838749e9e3d898b280fdbc2916224f84cf0f633d5ae4bd45afb4f813fede7906020015b60405180910390a150565b60168160038110610d5157600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b610d7761238c565b60008161ffff16118015610d9157506101f48161ffff1611155b610e175760405162461bcd60e51b815260206004820152604b60248201527f537761705468726573686f6c643a2043616e6e6f7420657863656564206c696d60448201527f6974732066726f6d20302e30312520746f20352520666f72206e65772073776160648201526a1c081d1a1c995cda1bdb1960aa1b608482015260a401610cc7565b600b805463ffff000019166201000061ffff8416908102919091179091556040519081527fcf1366790fe21e66c9df9dcf67218b1e10acd64d3c99ae8a7429a68de91f172090602001610d36565b610e6d61238c565b6001600160a01b038116610e935760405162461bcd60e51b8152600401610cc790613f4a565b601780546001600160a01b0319166001600160a01b038316179055610eb9816001611d77565b610ec48160016123e6565b6040516001600160a01b03821681527f8d5f43289b24c4ceccbeabfa46a4f509b9a4b7a378378164e7783e693de2490e90602001610d36565b600033610f0b85828561243c565b610f168585856124b6565b506001949350505050565b610f2961238c565b601e546001600160a01b0390811690831603610fa35760405162461bcd60e51b815260206004820152603360248201527f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e696044820152721d1a585b081c185a5c88199c9bdb481b1a5cdd606a1b6064820152608401610cc7565b610fad8282612d94565b5050565b610fb961238c565b601854601c548491610fd29161ffff9182169116613fe2565b610fdc9190614004565b601c805461ffff191661ffff9283161790819055601854849261100c926201000092839004821692900416613fe2565b6110169190614004565b601c805463ffff000019166201000061ffff938416021790819055601854839261104e92600160201b92839004821692900416613fe2565b6110589190614004565b601c805461ffff928316600160201b0265ffff0000000019821681179092556109c490831691909216171180159061109f5750601c546109c46201000090910461ffff1611155b80156110bb5750601c546109c4600160201b90910461ffff1611155b6110d75760405162461bcd60e51b8152600401610cc79061401f565b6040805160608101825261ffff80861682528481166020830152831691810191909152611108906018906003613b5c565b506040805161ffff808616825280851660208301528316918101919091527fa889a4bd4f8e3d2f798ca78b1f6d26a4c90b7b543979050b13757d436eca24e7906060015b60405180910390a1505050565b6000611163612e09565b905090565b600033610c8d81858561117b8383612177565b6111859190614075565b612268565b601c8160038110610d5157600080fd5b6111a43382612f34565b50565b6111af61238c565b6001600160a01b0381166111d55760405162461bcd60e51b8152600401610cc790613f4a565b601380546001600160a01b0319166001600160a01b0383161790556111fb816001611d77565b6112068160016123e6565b6040516001600160a01b03821681527f5ebfaab533f777bde6673deeebc87ba8a94b30820b5a9612e7fa041f14ec791090602001610d36565b61124761238c565b601254601c5484916112609161ffff9182169116613fe2565b61126a9190614004565b601c805461ffff191661ffff9283161790819055601254849261129a926201000092839004821692900416613fe2565b6112a49190614004565b601c805463ffff000019166201000061ffff93841602179081905560125483926112dc92600160201b92839004821692900416613fe2565b6112e69190614004565b601c805461ffff928316600160201b0265ffff0000000019821681179092556109c490831691909216171180159061132d5750601c546109c46201000090910461ffff1611155b80156113495750601c546109c4600160201b90910461ffff1611155b6113655760405162461bcd60e51b8152600401610cc79061401f565b6040805160608101825261ffff80861682528481166020830152831691810191909152611396906012906003613b5c565b506040805161ffff808616825280851660208301528316918101919091527f1e5d76e30cd4303515f118e75cbf9d9440bb68ab78b2c2fa46984200dc11ad649060600161114c565b6113e661238c565b601654601c5484916113ff9161ffff9182169116613fe2565b6114099190614004565b601c805461ffff191661ffff92831617908190556016548492611439926201000092839004821692900416613fe2565b6114439190614004565b601c805463ffff000019166201000061ffff938416021790819055601654839261147b92600160201b92839004821692900416613fe2565b6114859190614004565b601c805461ffff928316600160201b0265ffff0000000019821681179092556109c49083169190921617118015906114cc5750601c546109c46201000090910461ffff1611155b80156114e85750601c546109c4600160201b90910461ffff1611155b6115045760405162461bcd60e51b8152600401610cc79061401f565b6040805160608101825261ffff80861682528481166020830152831691810191909152611535906016906003613b5c565b506040805161ffff808616825280851660208301528316918101919091527fca0cfc59661a961b6c323e200f2d3aa0c236aee7dcb6a1cb695e2c8c1cf90ace9060600161114c565b61158561238c565b6001600160a01b0381166115ab5760405162461bcd60e51b8152600401610cc790613f4a565b601980546001600160a01b0319166001600160a01b0383161790556115d1816001611d77565b6115dc8160016123e6565b6040516001600160a01b03821681527fda2736782213534a099dbe7ea8d812b265fc2f677366df463c84d4affe0bf54e90602001610d36565b61161d61238c565b6116276000613079565b565b60065433906001600160a01b031681146116975760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608401610cc7565b6111a481613079565b6116ab82338361243c565b610fad8282612f34565b6001600160a01b038116600090815260096020526040812054610c93565b6116db61238c565b6001600160a01b038216600081815260236020908152604091829020805460ff191685151590811790915591519182527f38d2732664f4152f6b6754aa1afeaec7fa6618671b172e5430139b51dba2d1d691015b60405180910390a25050565b60006060808280808361176f7f416c6c205374726565742042657473000000000000000000000000000000000f6007613092565b61179a7f31000000000000000000000000000000000000000000000000000000000000016008613092565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b601a8160038110610d5157600080fd5b6117dc61238c565b306001600160a01b038316036118445760405162461bcd60e51b815260206004820152602760248201527f546f6b656e5265636f7665723a2043616e6e6f74207265636f7665722074686960448201526639903a37b5b2b760c91b6064820152608401610cc7565b816001600160a01b031663a9059cbb6118656005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156118b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d69190614088565b505050565b6118e361238c565b60225460ff16156119495760405162461bcd60e51b815260206004820152602a60248201527f456e61626c6554726164696e673a2054726164696e672077617320656e61626c604482015269656420616c726561647960b01b6064820152608401610cc7565b6022805460ff191660011790556040517f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c790600090a1565b60128160038110610d5157600080fd5b61199961238c565b601a54601c5484916119b29161ffff9182169116613fe2565b6119bc9190614004565b601c805461ffff191661ffff9283161790819055601a5484926119ec926201000092839004821692900416613fe2565b6119f69190614004565b601c805463ffff000019166201000061ffff938416021790819055601a548392611a2e92600160201b92839004821692900416613fe2565b611a389190614004565b601c805461ffff928316600160201b0265ffff0000000019821681179092556109c4908316919092161711801590611a7f5750601c546109c46201000090910461ffff1611155b8015611a9b5750601c546109c4600160201b90910461ffff1611155b611ab75760405162461bcd60e51b8152600401610cc79061401f565b6040805160608101825261ffff80861682528481166020830152831691810191909152611ae890601a906003613b5c565b506040805161ffff808616825280851660208301528316918101919091527ffe4bf8a5458bc5924a10ebae90877778e8f9aad381287967e70d5a9926b56cfa9060600161114c565b606060048054610bfc90613f16565b60003381611b4d8286612177565b905083811015611bad5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610cc7565b610f168286868403612268565b600033610c8d8185856124b6565b60188160038110610d5157600080fd5b611be061238c565b601454601c548491611bf99161ffff9182169116613fe2565b611c039190614004565b601c805461ffff191661ffff92831617908190556014548492611c33926201000092839004821692900416613fe2565b611c3d9190614004565b601c805463ffff000019166201000061ffff9384160217908190556014548392611c7592600160201b92839004821692900416613fe2565b611c7f9190614004565b601c805461ffff928316600160201b0265ffff0000000019821681179092556109c4908316919092161711801590611cc65750601c546109c46201000090910461ffff1611155b8015611ce25750601c546109c4600160201b90910461ffff1611155b611cfe5760405162461bcd60e51b8152600401610cc79061401f565b6040805160608101825261ffff80861682528481166020830152831691810191909152611d2f906014906003613b5c565b506040805161ffff808616825280851660208301528316918101919091527f5c8bbaf1ef5c0019fc8a5aabc72ac6cba3115eeaf97a8f3781756a1c072eaf469060600161114c565b611d7f61238c565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910161172f565b611ddf61238c565b610fad82826123e6565b611df161238c565b611df961313d565b811015611e485760405162461bcd60e51b815260206004820152601860248201527f4d617857616c6c65743a204c696d697420746f6f206c6f7700000000000000006044820152606401610cc7565b60218190556040518181527f4b39c36d20c57d220f61fd25c4349d4435cc03ef6c2a680942f15333c3c3e00190602001610d36565b611e8561238c565b6001600160a01b038116611eab5760405162461bcd60e51b8152600401610cc790613f4a565b601180546001600160a01b0319166001600160a01b038316179055611ed1816001611d77565b611edc8160016123e6565b6040516001600160a01b03821681527feaf1986d341c3096d2d5d32f86ed29a21fee4e0d8365cd2b6fa85c0ec6889cf690602001610d36565b600b54610100900460ff1680611f2e5750600b5460ff16155b611f915760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610cc7565b600b54610100900460ff16158015611fb357600b805461ffff19166101011790555b611fbc8261314b565b8015610fad57600b805461ff00191690555050565b834211156120215760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610cc7565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886120508c613359565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e00160405160208183030381529060405280519060200120905060006120ab82613381565b905060006120bb828787876133ae565b9050896001600160a01b0316816001600160a01b03161461211e5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610cc7565b6121298a8a8a612268565b50505050505050505050565b600b54601e546001600160a01b031660009081526020819052604081205490916127109161216d9162010000900461ffff16906140a5565b61116391906140bc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60148160038110610d5157600080fd5b6000601054600f54600e54600d54600c5460006121cf9190614075565b6121d99190614075565b6121e39190614075565b6121ed9190614075565b6111639190614075565b6121ff61238c565b600680546001600160a01b0383166001600160a01b031990911681179091556122306005546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6001600160a01b0383166122ca5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610cc7565b6001600160a01b03821661232b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610cc7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146116275760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cc7565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92910161172f565b60006124488484612177565b905060001981146124b057818110156124a35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610cc7565b6124b08484848403612268565b50505050565b601d5460ff161580156124c95750600081115b80156124e85750601d546001600160a01b038381166101009092041614155b801561250d57506001600160a01b0383166000908152601b602052604090205460ff16155b801561253257506001600160a01b0382166000908152601b602052604090205460ff16155b15612920576001600160a01b0383166000908152601f602052604081205460039060ff161561257057601c5461ffff161561256b575060005b6125c2565b6001600160a01b0384166000908152601f602052604090205460ff16156125ab57601c5462010000900461ffff161561256b575060016125c2565b601c54600160201b900461ffff16156125c2575060025b60038160ff16101561290c57612710601c8260ff16600381106125e7576125e7613fb6565b601091828204019190066002029054906101000a900461ffff1661ffff168461261091906140a5565b61261a91906140bc565b915061262682846140de565b9250601c8160ff166003811061263e5761263e613fb6565b601091828204019190066002029054906101000a900461ffff1661ffff1660128260ff166003811061267257612672613fb6565b601091828204019190066002029054906101000a900461ffff1661ffff168361269b91906140a5565b6126a591906140bc565b600c60008282546126b69190614075565b90915550601c905060ff8216600381106126d2576126d2613fb6565b601091828204019190066002029054906101000a900461ffff1661ffff1660148260ff166003811061270657612706613fb6565b601091828204019190066002029054906101000a900461ffff1661ffff168361272f91906140a5565b61273991906140bc565b600d600082825461274a9190614075565b90915550601c905060ff82166003811061276657612766613fb6565b601091828204019190066002029054906101000a900461ffff1661ffff1660168260ff166003811061279a5761279a613fb6565b601091828204019190066002029054906101000a900461ffff1661ffff16836127c391906140a5565b6127cd91906140bc565b600e60008282546127de9190614075565b90915550601c905060ff8216600381106127fa576127fa613fb6565b601091828204019190066002029054906101000a900461ffff1661ffff1660188260ff166003811061282e5761282e613fb6565b601091828204019190066002029054906101000a900461ffff1661ffff168361285791906140a5565b61286191906140bc565b600f60008282546128729190614075565b90915550601c905060ff82166003811061288e5761288e613fb6565b601091828204019190066002029054906101000a900461ffff1661ffff16601a8260ff16600381106128c2576128c2613fb6565b601091828204019190066002029054906101000a900461ffff1661ffff16836128eb91906140a5565b6128f591906140bc565b601060008282546129069190614075565b90915550505b811561291d5761291d8530846133d6565b50505b600061292a612135565b6129326121b2565b101580156129585750601e546001600160a01b0316600090815260208190526040812054115b601d5490915060ff1615801561298757506001600160a01b0384166000908152601f602052604090205460ff16155b80156129a65750601d546001600160a01b038581166101009092041614155b80156129af5750805b15612d8957601d805460ff191660011790556000600c5411806129d457506000600d54115b806129e157506000600e54115b806129ee57506000600f54115b806129fb57506000601054115b15612d7e576000601054600f54600e54600d54600c546000612a1d9190614075565b612a279190614075565b612a319190614075565b612a3b9190614075565b612a459190614075565b90506000612a528261358b565b600c5447906000908490612a6690846140a5565b612a7091906140bc565b90508015612af0576011546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505092508215612af057601154604080516001600160a01b039092168252602082018390527f3e6afd69feef8f4cc1adbe6d3905e477db85aa5aa28d02674dc4bc6d39237fe4910160405180910390a15b6000600c819055600d548590612b0690856140a5565b612b1091906140bc565b90508015612b90576013546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505093508315612b9057601354604080516001600160a01b039092168252602082018390527f03e42a5e3412039f6a61fffec33718c090964e39308d922702e1eca8be4cd6b8910160405180910390a15b6000600d819055600e548690612ba690866140a5565b612bb091906140bc565b90508015612c30576015546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505094508415612c3057601554604080516001600160a01b039092168252602082018390527fe74ff83287143f0bf18ca2ef2512d67578e727b6884ac317f1d639c497fd3ce0910160405180910390a15b6000600e819055600f548790612c4690876140a5565b612c5091906140bc565b90508015612cd0576017546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505095508515612cd057601754604080516001600160a01b039092168252602082018390527f1ec0a76d072e4df995054b328a98c4baea4b37fdbc5d56d5c9399e8b8164aa11910160405180910390a15b6000600f8190556010548890612ce690886140a5565b612cf091906140bc565b90508015612d70576019546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505096508615612d7057601954604080516001600160a01b039092168252602082018390527f572c5040a503eb728ae10d25a0c51fc47b6723baf7c069449a6345b8c28eb09f910160405180910390a15b505060006010555050505050505b601d805460ff191690555b6124b08484846133d6565b6001600160a01b0382166000908152601f60205260409020805460ff19168215801591909117909155612dcc57612dcc8260016123e6565b816001600160a01b03167f911aa18ddbbbc33c9b4c704a71bdaa0984b0aa2e82726a7f51e64bad0b0a84558260405161172f911515815260200190565b6000306001600160a01b037f00000000000000000000000042069de48741db40aef864f8764432bbccbd0b6916148015612e6257507f000000000000000000000000000000000000000000000000000000000000210546145b15612e8c57507f65aa83c2b81345b16d9f03566d76953ad8a931d6cfa1e3b8b7eee335591fe21a90565b611163604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f5a98ceb617e09c331f9e7d8998a35f42b0ba27a2fcab038798570e970be781b3918101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b6001600160a01b038216612f945760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610cc7565b612fa082600083613708565b6001600160a01b038216600090815260208190526040902054818110156130145760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610cc7565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36118d6836000846137fa565b600680546001600160a01b03191690556111a481613895565b606060ff83146130ac576130a5836138e7565b9050610c93565b8180546130b890613f16565b80601f01602080910402602001604051908101604052809291908181526020018280546130e490613f16565b80156131315780601f1061310657610100808354040283529160200191613131565b820191906000526020600020905b81548152906001019060200180831161311457829003601f168201915b50505050509050610c93565b60006103e861216d60025490565b80601d60016101000a8154816001600160a01b0302191690836001600160a01b03160217905550601d60019054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156131c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131e991906140f1565b6001600160a01b031663c9c6539630601d60019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561324b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061326f91906140f1565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156132bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132e091906140f1565b601e80546001600160a01b0319166001600160a01b039290921691909117905561330b8160016123e6565b601e54613322906001600160a01b03166001612d94565b6040516001600160a01b038216907fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b60290600090a250565b6001600160a01b03811660009081526009602052604090208054600181018255905b50919050565b6000610c9361338e612e09565b8360405161190160f01b8152600281019290925260228201526042902090565b60008060006133bf87878787613926565b915091506133cc816139ea565b5095945050505050565b6001600160a01b03831661343a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610cc7565b6001600160a01b03821661349c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610cc7565b6134a7838383613708565b6001600160a01b0383166000908152602081905260409020548181101561351f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610cc7565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36124b08484846137fa565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106135c0576135c0613fb6565b60200260200101906001600160a01b031690816001600160a01b031681525050601d60019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613633573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061365791906140f1565b8160018151811061366a5761366a613fb6565b6001600160a01b039283166020918202929092010152601d5461369591309161010090041684612268565b601d5460405163791ac94760e01b81526101009091046001600160a01b03169063791ac947906136d290859060009086903090429060040161410e565b600060405180830381600087803b1580156136ec57600080fd5b505af1158015613700573d6000803e3d6000fd5b505050505050565b6001600160a01b0383166000908152601f602052604090205460ff16801561374957506001600160a01b03821660009081526023602052604090205460ff16155b8061379057506001600160a01b0382166000908152601f602052604090205460ff16801561379057506001600160a01b03831660009081526023602052604090205460ff16155b156118d65760225460ff166118d65760405162461bcd60e51b815260206004820152602a60248201527f456e61626c6554726164696e673a2054726164696e6720776173206e6f7420656044820152691b98589b1959081e595d60b21b6064820152608401610cc7565b6001600160a01b038216600090815260208052604090205460ff166118d6576021546001600160a01b03831660009081526020819052604090205411156118d65760405162461bcd60e51b815260206004820152602960248201527f4d617857616c6c65743a2043616e6e6f7420657863656564206d61782077616c6044820152681b195d081b1a5b5a5d60ba1b6064820152608401610cc7565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b606060006138f483613b34565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561395d57506000905060036139e1565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156139b1573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166139da576000600192509250506139e1565b9150600090505b94509492505050565b60008160048111156139fe576139fe61417f565b03613a065750565b6001816004811115613a1a57613a1a61417f565b03613a675760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610cc7565b6002816004811115613a7b57613a7b61417f565b03613ac85760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610cc7565b6003816004811115613adc57613adc61417f565b036111a45760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610cc7565b600060ff8216601f811115610c9357604051632cd44ac360e21b815260040160405180910390fd5b600183019183908215613be25791602002820160005b83821115613bb257835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302613b72565b8015613be05782816101000a81549061ffff0219169055600201602081600101049283019260010302613bb2565b505b50613bee929150613bf2565b5090565b5b80821115613bee5760008155600101613bf3565b6000815180845260005b81811015613c2d57602081850181015186830182015201613c11565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000613c606020830184613c07565b9392505050565b6001600160a01b03811681146111a457600080fd5b60008060408385031215613c8f57600080fd5b8235613c9a81613c67565b946020939093013593505050565b600060208284031215613cba57600080fd5b8135613c6081613c67565b600060208284031215613cd757600080fd5b5035919050565b803561ffff81168114613cf057600080fd5b919050565b600060208284031215613d0757600080fd5b613c6082613cde565b600080600060608486031215613d2557600080fd5b8335613d3081613c67565b92506020840135613d4081613c67565b929592945050506040919091013590565b80151581146111a457600080fd5b60008060408385031215613d7257600080fd5b8235613d7d81613c67565b91506020830135613d8d81613d51565b809150509250929050565b600080600060608486031215613dad57600080fd5b613db684613cde565b9250613dc460208501613cde565b9150613dd260408501613cde565b90509250925092565b60ff60f81b881681526000602060e081840152613dfb60e084018a613c07565b8381036040850152613e0d818a613c07565b606085018990526001600160a01b038816608086015260a0850187905284810360c0860152855180825283870192509083019060005b81811015613e5f57835183529284019291840191600101613e43565b50909c9b505050505050505050505050565b600080600080600080600060e0888a031215613e8c57600080fd5b8735613e9781613c67565b96506020880135613ea781613c67565b95506040880135945060608801359350608088013560ff81168114613ecb57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215613efb57600080fd5b8235613f0681613c67565b91506020830135613d8d81613c67565b600181811c90821680613f2a57607f821691505b60208210810361337b57634e487b7160e01b600052602260045260246000fd5b60208082526046908201527f546178657344656661756c74526f7574657257616c6c65743a2057616c6c657460408201527f2074617820726563697069656e742063616e6e6f74206265206120307830206160608201526564647265737360d01b608082015260a00190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b61ffff828116828216039080821115613ffd57613ffd613fcc565b5092915050565b61ffff818116838216019080821115613ffd57613ffd613fcc565b60208082526036908201527f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560408201527564206d617820746f74616c20666565206f662032352560501b606082015260800190565b80820180821115610c9357610c93613fcc565b60006020828403121561409a57600080fd5b8151613c6081613d51565b8082028115828204841417610c9357610c93613fcc565b6000826140d957634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610c9357610c93613fcc565b60006020828403121561410357600080fd5b8151613c6081613c67565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561415e5784516001600160a01b031683529383019391830191600101614139565b50506001600160a01b03969096166060850152505050608001529392505050565b634e487b7160e01b600052602160045260246000fdfea2646970667358221220041b9173726ef7f7cb78d038c92a43bb5d239a8dc4eba719f1b6390d24eba31a64736f6c63430008130033
Loading...
Loading
OVERVIEW
All Street Bets ($BETS) represents freedom through a decentralized future.Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.