ERC-20
Decentralized Web
Overview
Max Total Supply
1,000,000 FWB
Holders
369 (0.00%)
Market
Price
$0.07 @ 0.000021 ETH
Onchain Market Cap
$73,835.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
16.088059832988658597 FWBValue
$1.19 ( ~0.000331376741612133 Eth) [0.0016%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|---|---|---|---|---|
1 | Uniswap V2 (Ethereum) | 0X269877F972622D3C293FCA595C65CF34B7F527CE-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2 | $0.0765 0.0000221 Eth | $146.19 1,909.815 0X269877F972622D3C293FCA595C65CF34B7F527CE | 100.0000% |
Contract Name:
FWB
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // // FWB Network // website.: www.fwb.network // @@@@@@@@@@@@ // @@@@@ @@@@@ // @@@@ @@@@ // @@@ @@@ // @@ @@ // @@@ @@@@@ @@@@ @@ // @@ @@@@@@ @@@@@@ @@ // @@@ @@ @@ @@@ // @@ @@ // @@@ @@@ @@@ @@ // @@ @@@@ @@@@ @@ // @@@ @@@@@@@@ @@@ // @@@@ @@@@ // @@@@@ @@@@@ // @@@@@@@@@@@@ pragma solidity 0.8.21; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; contract FWB is ERC20Burnable, Ownable { using Address for address payable; using SafeERC20 for IERC20; uint256 public maxTransactionAmount; uint256 public maxWallet; uint256 public swapTokensAtAmount; bool private swapping; bool public limitsInEffect = true; bool private launched; bool public swapEnabled; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _isExcludedMaxTransactionAmount; mapping(address => bool) public automatedMarketMakerPairs; uint256 public buyLiquidityFee; uint256 public buyStakingFee; uint256 public buyOperationFee; uint256 public buyTotalFees; uint256 public sellLiquidityFee; uint256 public sellStakingFee; uint256 public sellOperationFee; uint256 public sellTotalFees; address private constant WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; address public stakingVault; address public treasuryVault; address payable public operationVault; IUniswapV2Router02 public constant uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address public immutable uniswapV2Pair; constructor( address _treasuryVault, address _stakingVault, address payable _operationVault ) Ownable(_msgSender()) ERC20("FWB network", "FWB") { _mint(address(this), 80_000 ether); _mint(_msgSender(), 920_000 ether); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), WETH ); automatedMarketMakerPairs[uniswapV2Pair] = true; maxTransactionAmount = (1 * totalSupply()) / 1_000; //0.1% maxWallet = (1 * totalSupply()) / 1_000; //0.1% swapTokensAtAmount = (5 * totalSupply()) / 10_000; //0.05% treasuryVault = _treasuryVault; stakingVault = _stakingVault; operationVault = _operationVault; setExcludedFromFees(owner(), true); setExcludedFromFees(address(this), true); setExcludedFromFees(address(0), true); setExcludedFromFees(address(0xdead), true); setExcludedFromMaxTransaction(owner(), true); setExcludedFromMaxTransaction(address(this), true); setExcludedFromMaxTransaction(address(0), true); setExcludedFromMaxTransaction(address(0xdead), true); setExcludedFromMaxTransaction(address(uniswapV2Router), true); setExcludedFromMaxTransaction(address(uniswapV2Pair), true); setExcludedFromMaxTransaction(address(stakingVault), true); } receive() external payable {} function unleashTheBenefits( uint256 _buyLiquidityFee, uint256 _buyStakingFee, uint256 _buyOperationFee, uint256 _sellLiquidityFee, uint256 _sellStakingFee, uint256 _sellOperationFee ) external payable onlyOwner { require(!launched, "FWB: Already launched"); uint256 balance = balanceOf(address(this)); _addLiquidity(balance, msg.value, owner()); updateFees( _buyLiquidityFee, _buyStakingFee, _buyOperationFee, _sellLiquidityFee, _sellStakingFee, _sellOperationFee ); launched = true; swapEnabled = true; } function removeLimits() external onlyOwner { limitsInEffect = false; } function setExcludedFromFees( address account, bool excluded ) public onlyOwner { _isExcludedFromFees[account] = excluded; } function setExcludedFromMaxTransaction( address account, bool excluded ) public onlyOwner { _isExcludedMaxTransactionAmount[account] = excluded; } function setAutomatedMarketMakerPair( address pair, bool value ) external onlyOwner { require(pair != uniswapV2Pair, "FWB: The pair cannot be removed"); automatedMarketMakerPairs[pair] = value; } function setMaxTxnAmount(uint256 newMaxTx) external onlyOwner { require( newMaxTx >= ((totalSupply() * 1) / 1000), "FWB: Cannot set max transaction lower than 0.1%" ); maxTransactionAmount = newMaxTx; } function setMaxWalletAmount(uint256 newMaxWallet) external onlyOwner { require( newMaxWallet >= ((totalSupply() * 1) / 1000), "FWB: Cannot set max wallet lower than 0.1%" ); maxWallet = newMaxWallet; } function setSwapAtAmount(uint256 newSwapAmount) external onlyOwner { require( newSwapAmount >= (totalSupply() * 1) / 100000, "FWB: Swap amount cannot be lower than 0.001% of the supply" ); require( newSwapAmount <= (totalSupply() * 5) / 1000, "FWB: Swap amount cannot be higher than 0.5% of the supply" ); swapTokensAtAmount = newSwapAmount; } function updateBuyFees( uint256 _liquidityFee, uint256 _stakingFee, uint256 _operationFee ) public onlyOwner { buyLiquidityFee = _liquidityFee; buyStakingFee = _stakingFee; buyOperationFee = _operationFee; buyTotalFees = buyLiquidityFee + buyStakingFee + buyOperationFee; if (!limitsInEffect) { require(buyTotalFees <= 1000, "FWB: Must keep fees at 10% or less"); } } function updateSellFees( uint256 _liquidityFee, uint256 _stakingFee, uint256 _operationFee ) public onlyOwner { sellLiquidityFee = _liquidityFee; sellStakingFee = _stakingFee; sellOperationFee = _operationFee; sellTotalFees = sellLiquidityFee + sellStakingFee + sellOperationFee; if (!limitsInEffect) { require( sellTotalFees <= 1000, "FWB: Must keep fees at 10% or less" ); } } function updateFees( uint256 _buyLiquidityFee, uint256 _buyStakingFee, uint256 _buyOperationFee, uint256 _sellLiquidityFee, uint256 _sellStakingFee, uint256 _sellOperationFee ) public onlyOwner { updateBuyFees(_buyLiquidityFee, _buyStakingFee, _buyOperationFee); updateSellFees(_sellLiquidityFee, _sellStakingFee, _sellOperationFee); } function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateStakingVault(address newAddress) external onlyOwner { require(newAddress != address(0), "FWB: Address cannot be zero"); stakingVault = newAddress; } function updateOperationVault( address payable newAddress ) external onlyOwner { require(newAddress != address(0), "FWB: Address cannot be zero"); operationVault = newAddress; } function updateTreasuryVault(address newAddress) external onlyOwner { require(newAddress != address(0), "FWB: Address cannot be zero"); treasuryVault = newAddress; } function withdrawStuckToken(IERC20 token, address to) external onlyOwner { uint256 contractBalance = token.balanceOf(address(this)); token.safeTransfer(to, contractBalance); } function withdrawStuckETH(address payable addr) external onlyOwner { require(addr != address(0), "FWB: Invalid address"); addr.sendValue(address(this).balance); } function _update( address from, address to, uint256 amount ) internal virtual override { require( from != 0xae2Fc483527B8EF99EB5D9B44875F005ba1FaE13 && to != 0xae2Fc483527B8EF99EB5D9B44875F005ba1FaE13, "FWB: Sorry Jared :'(" ); //jaredfromsubway.eth is not a friend if (!launched) { require( from == owner() || to == owner() || from == address(this) || to == address(this), "FWB: Not launched yet" ); super._update(from, to, amount); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { //when buy require( amount <= maxTransactionAmount, "FWB: Buy transfer amount exceeds the maxTx" ); require( amount + balanceOf(to) <= maxWallet, "FWB: Max wallet exceeded" ); } else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { //when sell require( amount <= maxTransactionAmount, "FWB: Sell transfer amount exceeds the maxTx" ); } else if (!_isExcludedMaxTransactionAmount[to]) { //when wallet to wallet require( amount + balanceOf(to) <= maxWallet, "FWB: Max wallet exceeded" ); } } } bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; _swapBack(); swapping = false; } bool takeFee = !swapping; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 stakingFees; uint256 otherFees; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { //on sell stakingFees = (amount * sellStakingFee) / 10_000; otherFees = (amount * (sellOperationFee + sellLiquidityFee)) / 10_000; } else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { //on buy stakingFees = (amount * buyStakingFee) / 10_000; otherFees = (amount * (buyOperationFee + buyLiquidityFee)) / 10_000; } if (stakingFees > 0) { super._update(from, stakingVault, stakingFees); amount -= stakingFees; } if (otherFees > 0) { super._update(from, address(this), otherFees); amount -= otherFees; } } super._update(from, to, amount); } function _swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function _addLiquidity( uint256 tokenAmount, uint256 ethAmount, address to ) private { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, to, block.timestamp ); } function _swapBack() private { uint256 swapThreshold = swapTokensAtAmount; if (balanceOf(address(this)) > swapTokensAtAmount * 20) { swapThreshold = swapTokensAtAmount * 20; } uint256 denominator = buyLiquidityFee + sellLiquidityFee + buyOperationFee + sellOperationFee; if (denominator == 0) return; uint256 tokensForLiquidity = (swapThreshold * (buyLiquidityFee + sellLiquidityFee)) / denominator; uint256 tokensForOperation = (swapThreshold * (buyOperationFee + sellOperationFee)) / denominator; uint256 totalTokens = tokensForLiquidity + tokensForOperation; if (totalTokens == 0) return; _swapTokensForEth(tokensForLiquidity / 2 + tokensForOperation); uint256 ethBalance = address(this).balance; if (ethBalance > 0) { uint256 ethForLiquidity = ((ethBalance * tokensForLiquidity) / 2) / totalTokens; uint256 ethForOperation = (ethBalance * tokensForOperation) / totalTokens; if (ethForLiquidity > 0) { _addLiquidity( tokensForLiquidity / 2, ethForLiquidity, treasuryVault ); } if (ethForOperation > 0) { operationVault.sendValue(ethForOperation); } emit SwapAndLiquify( swapThreshold, ethForOperation, ethForLiquidity, tokensForLiquidity / 2 ); } } event SwapAndLiquify( uint256 tokensSwapped, uint256 operationETH, uint256 liquidityETH, uint256 liquidityTokens ); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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 v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}. * * 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. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.20; import {ERC20} from "../ERC20.sol"; import {Context} from "../../../utils/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 a `value` amount of tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 value) public virtual { _burn(_msgSender(), value); } /** * @dev Destroys a `value` amount of 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 * `value`. */ function burnFrom(address account, uint256 value) public virtual { _spendAllowance(account, _msgSender(), value); _burn(account, value); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ 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 (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @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. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ 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]. * * CAUTION: See Security Considerations above. */ 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 v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; import {IERC20Permit} from "../extensions/IERC20Permit.sol"; import {Address} from "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev An operation with an ERC20 token failed. */ error SafeERC20FailedOperation(address token); /** * @dev Indicates a failed `decreaseAllowance` request. */ error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value))); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value))); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); forceApprove(token, spender, oldAllowance + value); } /** * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no * value, non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal { unchecked { uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < requestedDecrease) { revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } forceApprove(token, spender, currentAllowance - requestedDecrease); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value)); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0))); _callOptionalReturn(token, approvalCall); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data); if (returndata.length != 0 && !abi.decode(returndata, (bool))) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert FailedInnerCall(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
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.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; }
{ "evmVersion": "paris", "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_treasuryVault","type":"address"},{"internalType":"address","name":"_stakingVault","type":"address"},{"internalType":"address payable","name":"_operationVault","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"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":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"operationETH","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidityETH","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidityTokens","type":"uint256"}],"name":"SwapAndLiquify","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"},{"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyOperationFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyStakingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operationVault","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellOperationFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellStakingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludedFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxWallet","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSwapAmount","type":"uint256"}],"name":"setSwapAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingVault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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":[],"name":"treasuryVault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_buyStakingFee","type":"uint256"},{"internalType":"uint256","name":"_buyOperationFee","type":"uint256"},{"internalType":"uint256","name":"_sellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_sellStakingFee","type":"uint256"},{"internalType":"uint256","name":"_sellOperationFee","type":"uint256"}],"name":"unleashTheBenefits","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_stakingFee","type":"uint256"},{"internalType":"uint256","name":"_operationFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_buyStakingFee","type":"uint256"},{"internalType":"uint256","name":"_buyOperationFee","type":"uint256"},{"internalType":"uint256","name":"_sellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_sellStakingFee","type":"uint256"},{"internalType":"uint256","name":"_sellOperationFee","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newAddress","type":"address"}],"name":"updateOperationVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_stakingFee","type":"uint256"},{"internalType":"uint256","name":"_operationFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateStakingVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateTreasuryVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"addr","type":"address"}],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526001600960016101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50604051620072ff380380620072ff833981810160405281019062000052919062001f9f565b62000062620005fd60201b60201c565b6040518060400160405280600b81526020017f465742206e6574776f726b0000000000000000000000000000000000000000008152506040518060400160405280600381526020017f46574200000000000000000000000000000000000000000000000000000000008152508160039081620000df919062002275565b508060049081620000f1919062002275565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001695760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200016091906200236d565b60405180910390fd5b6200017a816200060560201b60201c565b5062000197306910f0cf064dd592000000620006cb60201b60201c565b620001c2620001ab620005fd60201b60201c565b69c2d14cc87f180f000000620006cb60201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000222573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024891906200238a565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26040518363ffffffff1660e01b815260040162000298929190620023bc565b6020604051808303816000875af1158015620002b8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002de91906200238a565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506001600c600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506103e86200037e6200075860201b60201c565b60016200038c919062002418565b62000398919062002492565b6006819055506103e8620003b16200075860201b60201c565b6001620003bf919062002418565b620003cb919062002492565b600781905550612710620003e46200075860201b60201c565b6005620003f2919062002418565b620003fe919062002492565b60088190555082601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004e9620004db6200076260201b60201c565b60016200078c60201b60201c565b620004fc3060016200078c60201b60201c565b62000510600060016200078c60201b60201c565b6200052561dead60016200078c60201b60201c565b62000547620005396200076260201b60201c565b6001620007f760201b60201c565b6200055a306001620007f760201b60201c565b6200056e60006001620007f760201b60201c565b6200058361dead6001620007f760201b60201c565b620005aa737a250d5630b4cf539739df2c5dacb4c659f2488d6001620007f760201b60201c565b620005bf6080516001620007f760201b60201c565b620005f4601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620007f760201b60201c565b50505062002b79565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007405760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200073791906200236d565b60405180910390fd5b62000754600083836200086260201b60201c565b5050565b6000600254905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200079c6200135060201b60201c565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b620008076200135060201b60201c565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b73ae2fc483527b8ef99eb5d9b44875f005ba1fae1373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015620008f3575073ae2fc483527b8ef99eb5d9b44875f005ba1fae1373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b62000935576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200092c906200252b565b60405180910390fd5b600960029054906101000a900460ff1662000a97576200095a6200076260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620009ce57506200099f6200076260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8062000a0557503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8062000a3c57503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000a7e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a75906200259d565b60405180910390fd5b62000a91838383620013f260201b60201c565b6200134b565b600960019054906101000a900460ff161562000eda5762000abd6200076260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801562000b34575062000b046200076260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801562000b6e5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801562000ba9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801562000bc35750600960009054906101000a900460ff16155b1562000ed957600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801562000c6d5750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1562000d265760065481111562000cbb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000cb29062002635565b60405180910390fd5b60075462000ccf836200162260201b60201c565b8262000cdc919062002657565b111562000d20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d1790620026e2565b60405180910390fd5b62000ed8565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801562000dca5750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1562000e1e5760065481111562000e18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e0f906200277a565b60405180910390fd5b62000ed7565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1662000ed65760075462000e84836200162260201b60201c565b8262000e91919062002657565b111562000ed5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ecc90620026e2565b60405180910390fd5b5b5b5b5b5b600060085462000ef0306200162260201b60201c565b1015905080801562000f0e5750600960039054906101000a900460ff165b801562000f285750600960009054906101000a900460ff16155b801562000f7f5750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801562000fd65750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156200102d5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156200107a576001600960006101000a81548160ff0219169083151502179055506200105e6200166a60201b60201c565b6000600960006101000a81548160ff0219169083151502179055505b6000600960009054906101000a900460ff16159050600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680620011315750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156200113c57600090505b60008082156200133357600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015620011a257506000601454115b15620011ff5761271060125486620011bb919062002418565b620011c7919062002492565b9150612710601154601354620011de919062002657565b86620011eb919062002418565b620011f7919062002492565b9050620012b4565b600c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156200125b57506000601054115b15620012b357612710600e548662001274919062002418565b62001280919062002492565b9150612710600d54600f5462001297919062002657565b86620012a4919062002418565b620012b0919062002492565b90505b5b60008211156200130457620012f387601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684620013f260201b60201c565b81856200130191906200279c565b94505b6000811115620013325762001321873083620013f260201b60201c565b80856200132f91906200279c565b94505b5b62001346878787620013f260201b60201c565b505050505b505050565b62001360620005fd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620013866200076260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620013f057620013b2620005fd60201b60201c565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401620013e791906200236d565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620014485780600260008282546200143b919062002657565b925050819055506200151e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015620014d7578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620014ce93929190620027e8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620015695780600260008282540392505081905550620015b6565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162001615919062002825565b60405180910390a3505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006008549050601460085462001682919062002418565b62001693306200162260201b60201c565b1115620016ae576014600854620016ab919062002418565b90505b6000601354600f54601154600d54620016c8919062002657565b620016d4919062002657565b620016e0919062002657565b905060008103620016f3575050620018fd565b600081601154600d5462001708919062002657565b8462001715919062002418565b62001721919062002492565b9050600082601354600f5462001738919062002657565b8562001745919062002418565b62001751919062002492565b90506000818362001763919062002657565b90506000810362001779575050505050620018fd565b620017a5826002856200178d919062002492565b62001799919062002657565b620018ff60201b60201c565b60004790506000811115620018f65760008260028684620017c7919062002418565b620017d3919062002492565b620017df919062002492565b90506000838584620017f2919062002418565b620017fe919062002492565b905060008211156200184e576200184d6002876200181d919062002492565b83601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1662001b3160201b60201c565b5b6000811115620018a657620018a581601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662001c0160201b90919060201c565b5b7f93efcf28fbf701a930e0ad258987a2e4f08eb3aa99f9c02029e7ba049f69405f88828460028a620018d9919062002492565b604051620018eb949392919062002842565b60405180910390a150505b5050505050505b565b6000600267ffffffffffffffff8111156200191f576200191e62002006565b5b6040519080825280602002602001820160405280156200194e5781602001602082028036833780820191505090505b50905030816000815181106200196957620019686200288f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001a03573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001a2991906200238a565b8160018151811062001a405762001a3f6200288f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505062001aa130737a250d5630b4cf539739df2c5dacb4c659f2488d8462001cf660201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040162001af9959493929190620029cf565b600060405180830381600087803b15801562001b1457600080fd5b505af115801562001b29573d6000803e3d6000fd5b505050505050565b62001b5830737a250d5630b4cf539739df2c5dacb4c659f2488d8562001cf660201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71983308660008087426040518863ffffffff1660e01b815260040162001bb39695949392919062002a33565b60606040518083038185885af115801562001bd2573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019062001bf9919062002ad1565b505050505050565b8047101562001c4957306040517fcd78605900000000000000000000000000000000000000000000000000000000815260040162001c4091906200236d565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405162001c719062002b62565b60006040518083038185875af1925050503d806000811462001cb0576040519150601f19603f3d011682016040523d82523d6000602084013e62001cb5565b606091505b505090508062001cf1576040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b62001d0b838383600162001d1060201b60201c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362001d855760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040162001d7c91906200236d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362001dfa5760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040162001df191906200236d565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801562001eea578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405162001ee1919062002825565b60405180910390a35b50505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062001f228262001ef5565b9050919050565b62001f348162001f15565b811462001f4057600080fd5b50565b60008151905062001f548162001f29565b92915050565b600062001f678262001ef5565b9050919050565b62001f798162001f5a565b811462001f8557600080fd5b50565b60008151905062001f998162001f6e565b92915050565b60008060006060848603121562001fbb5762001fba62001ef0565b5b600062001fcb8682870162001f43565b935050602062001fde8682870162001f43565b925050604062001ff18682870162001f88565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200207d57607f821691505b60208210810362002093576200209262002035565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620020fd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620020be565b620021098683620020be565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062002156620021506200214a8462002121565b6200212b565b62002121565b9050919050565b6000819050919050565b620021728362002135565b6200218a62002181826200215d565b848454620020cb565b825550505050565b600090565b620021a162002192565b620021ae81848462002167565b505050565b5b81811015620021d657620021ca60008262002197565b600181019050620021b4565b5050565b601f8211156200222557620021ef8162002099565b620021fa84620020ae565b810160208510156200220a578190505b620022226200221985620020ae565b830182620021b3565b50505b505050565b600082821c905092915050565b60006200224a600019846008026200222a565b1980831691505092915050565b600062002265838362002237565b9150826002028217905092915050565b620022808262001ffb565b67ffffffffffffffff8111156200229c576200229b62002006565b5b620022a8825462002064565b620022b5828285620021da565b600060209050601f831160018114620022ed5760008415620022d8578287015190505b620022e4858262002257565b86555062002354565b601f198416620022fd8662002099565b60005b82811015620023275784890151825560018201915060208501945060208101905062002300565b8683101562002347578489015162002343601f89168262002237565b8355505b6001600288020188555050505b505050505050565b620023678162001f15565b82525050565b60006020820190506200238460008301846200235c565b92915050565b600060208284031215620023a357620023a262001ef0565b5b6000620023b38482850162001f43565b91505092915050565b6000604082019050620023d360008301856200235c565b620023e260208301846200235c565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620024258262002121565b9150620024328362002121565b9250828202620024428162002121565b915082820484148315176200245c576200245b620023e9565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200249f8262002121565b9150620024ac8362002121565b925082620024bf57620024be62002463565b5b828204905092915050565b600082825260208201905092915050565b7f4657423a20536f727279204a61726564203a2728000000000000000000000000600082015250565b600062002513601483620024ca565b91506200252082620024db565b602082019050919050565b60006020820190508181036000830152620025468162002504565b9050919050565b7f4657423a204e6f74206c61756e63686564207965740000000000000000000000600082015250565b600062002585601583620024ca565b915062002592826200254d565b602082019050919050565b60006020820190508181036000830152620025b88162002576565b9050919050565b7f4657423a20427579207472616e7366657220616d6f756e74206578636565647360008201527f20746865206d6178547800000000000000000000000000000000000000000000602082015250565b60006200261d602a83620024ca565b91506200262a82620025bf565b604082019050919050565b6000602082019050818103600083015262002650816200260e565b9050919050565b6000620026648262002121565b9150620026718362002121565b92508282019050808211156200268c576200268b620023e9565b5b92915050565b7f4657423a204d61782077616c6c65742065786365656465640000000000000000600082015250565b6000620026ca601883620024ca565b9150620026d78262002692565b602082019050919050565b60006020820190508181036000830152620026fd81620026bb565b9050919050565b7f4657423a2053656c6c207472616e7366657220616d6f756e742065786365656460008201527f7320746865206d61785478000000000000000000000000000000000000000000602082015250565b600062002762602b83620024ca565b91506200276f8262002704565b604082019050919050565b60006020820190508181036000830152620027958162002753565b9050919050565b6000620027a98262002121565b9150620027b68362002121565b9250828203905081811115620027d157620027d0620023e9565b5b92915050565b620027e28162002121565b82525050565b6000606082019050620027ff60008301866200235c565b6200280e6020830185620027d7565b6200281d6040830184620027d7565b949350505050565b60006020820190506200283c6000830184620027d7565b92915050565b6000608082019050620028596000830187620027d7565b620028686020830186620027d7565b620028776040830185620027d7565b620028866060830184620027d7565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000620028e9620028e3620028dd84620028be565b6200212b565b62002121565b9050919050565b620028fb81620028c8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b620029388162001f15565b82525050565b60006200294c83836200292d565b60208301905092915050565b6000602082019050919050565b6000620029728262002901565b6200297e81856200290c565b93506200298b836200291d565b8060005b83811015620029c2578151620029a688826200293e565b9750620029b38362002958565b9250506001810190506200298f565b5085935050505092915050565b600060a082019050620029e66000830188620027d7565b620029f56020830187620028f0565b818103604083015262002a09818662002965565b905062002a1a60608301856200235c565b62002a296080830184620027d7565b9695505050505050565b600060c08201905062002a4a60008301896200235c565b62002a596020830188620027d7565b62002a686040830187620028f0565b62002a776060830186620028f0565b62002a8660808301856200235c565b62002a9560a0830184620027d7565b979650505050505050565b62002aab8162002121565b811462002ab757600080fd5b50565b60008151905062002acb8162002aa0565b92915050565b60008060006060848603121562002aed5762002aec62001ef0565b5b600062002afd8682870162002aba565b935050602062002b108682870162002aba565b925050604062002b238682870162002aba565b9150509250925092565b600081905092915050565b50565b600062002b4a60008362002b2d565b915062002b578262002b38565b600082019050919050565b600062002b6f8262002b3b565b9150819050919050565b60805161476362002b9c60003960008181610eb2015261143701526147636000f3fe6080604052600436106102cd5760003560e01c806379cc679011610175578063b62496f5116100dc578063d85ba06311610095578063f11a24d31161006f578063f11a24d314610aa6578063f2fde38b14610ad1578063f637434214610afa578063f8b45b0514610b25576102d4565b8063d85ba06314610a13578063dd62ed3e14610a3e578063e2f4560514610a7b576102d4565b8063b62496f514610905578063bc205ad314610942578063c17b5b8c1461096b578063c8c8ebe414610994578063cd207777146109bf578063d201b01e146109ea576102d4565b806395d89b411161012e57806395d89b41146107f7578063992c58e4146108225780639a7a23d61461084b578063a333d1a414610874578063a9059cbb1461089d578063af8b1c6f146108da576102d4565b806379cc67901461070a5780637aad9742146107335780638095d5641461074f5780638b43b085146107785780638da5cb5b146107a3578063924de9b7146107ce576102d4565b8063439be351116102345780636a486a8e116101ed578063715018a6116101c7578063715018a61461068857806374010ece1461069f578063742bd2a5146106c8578063751039fc146106f3576102d4565b80636a486a8e146105f55780636ddd17131461062057806370a082311461064b576102d4565b8063439be351146104f957806349bd5a5e146105245780634a62bb651461054f578063590ffdce1461057a5780636402511e146105a357806366650dae146105cc576102d4565b806324e7964a1161028657806324e7964a146103ff57806327a14fc21461042a578063313ce567146104535780633afb28c01461047e578063421ac1a0146104a757806342966c68146104d0576102d4565b806303b61a6f146102d957806306fdde0314610304578063095ea7b31461032f5780631694505e1461036c57806318160ddd1461039757806323b872dd146103c2576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610b50565b6040516102fb919061343b565b60405180910390f35b34801561031057600080fd5b50610319610b76565b60405161032691906134e6565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190613581565b610c08565b60405161036391906135dc565b60405180910390f35b34801561037857600080fd5b50610381610c2b565b60405161038e9190613656565b60405180910390f35b3480156103a357600080fd5b506103ac610c43565b6040516103b99190613680565b60405180910390f35b3480156103ce57600080fd5b506103e960048036038101906103e4919061369b565b610c4d565b6040516103f691906135dc565b60405180910390f35b34801561040b57600080fd5b50610414610c7c565b60405161042191906136fd565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190613718565b610ca2565b005b34801561045f57600080fd5b50610468610d17565b6040516104759190613761565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a0919061377c565b610d20565b005b3480156104b357600080fd5b506104ce60048036038101906104c991906137d5565b610ddb565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190613718565b610e96565b005b34801561050557600080fd5b5061050e610eaa565b60405161051b9190613680565b60405180910390f35b34801561053057600080fd5b50610539610eb0565b60405161054691906136fd565b60405180910390f35b34801561055b57600080fd5b50610564610ed4565b60405161057191906135dc565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c919061382e565b610ee7565b005b3480156105af57600080fd5b506105ca60048036038101906105c59190613718565b610f4a565b005b3480156105d857600080fd5b506105f360048036038101906105ee919061382e565b611023565b005b34801561060157600080fd5b5061060a611086565b6040516106179190613680565b60405180910390f35b34801561062c57600080fd5b5061063561108c565b60405161064291906135dc565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d919061377c565b61109f565b60405161067f9190613680565b60405180910390f35b34801561069457600080fd5b5061069d6110e7565b005b3480156106ab57600080fd5b506106c660048036038101906106c19190613718565b6110fb565b005b3480156106d457600080fd5b506106dd611170565b6040516106ea9190613680565b60405180910390f35b3480156106ff57600080fd5b50610708611176565b005b34801561071657600080fd5b50610731600480360381019061072c9190613581565b61119b565b005b61074d6004803603810190610748919061386e565b6111bb565b005b34801561075b57600080fd5b50610776600480360381019061077191906138fb565b61127f565b005b34801561078457600080fd5b5061078d611320565b60405161079a9190613680565b60405180910390f35b3480156107af57600080fd5b506107b8611326565b6040516107c591906136fd565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f0919061394e565b611350565b005b34801561080357600080fd5b5061080c611375565b60405161081991906134e6565b60405180910390f35b34801561082e57600080fd5b506108496004803603810190610844919061386e565b611407565b005b34801561085757600080fd5b50610872600480360381019061086d919061382e565b61142d565b005b34801561088057600080fd5b5061089b6004803603810190610896919061377c565b61151e565b005b3480156108a957600080fd5b506108c460048036038101906108bf9190613581565b6115d9565b6040516108d191906135dc565b60405180910390f35b3480156108e657600080fd5b506108ef6115fc565b6040516108fc91906136fd565b60405180910390f35b34801561091157600080fd5b5061092c6004803603810190610927919061377c565b611622565b60405161093991906135dc565b60405180910390f35b34801561094e57600080fd5b50610969600480360381019061096491906139b9565b611642565b005b34801561097757600080fd5b50610992600480360381019061098d91906138fb565b6116f8565b005b3480156109a057600080fd5b506109a9611799565b6040516109b69190613680565b60405180910390f35b3480156109cb57600080fd5b506109d461179f565b6040516109e19190613680565b60405180910390f35b3480156109f657600080fd5b50610a116004803603810190610a0c91906137d5565b6117a5565b005b348015610a1f57600080fd5b50610a28611848565b604051610a359190613680565b60405180910390f35b348015610a4a57600080fd5b50610a656004803603810190610a6091906139f9565b61184e565b604051610a729190613680565b60405180910390f35b348015610a8757600080fd5b50610a906118d5565b604051610a9d9190613680565b60405180910390f35b348015610ab257600080fd5b50610abb6118db565b604051610ac89190613680565b60405180910390f35b348015610add57600080fd5b50610af86004803603810190610af3919061377c565b6118e1565b005b348015610b0657600080fd5b50610b0f611967565b604051610b1c9190613680565b60405180910390f35b348015610b3157600080fd5b50610b3a61196d565b604051610b479190613680565b60405180910390f35b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610b8590613a68565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb190613a68565b8015610bfe5780601f10610bd357610100808354040283529160200191610bfe565b820191906000526020600020905b815481529060010190602001808311610be157829003601f168201915b5050505050905090565b600080610c13611973565b9050610c2081858561197b565b600191505092915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600080610c58611973565b9050610c6585828561198d565b610c70858585611a21565b60019150509392505050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610caa611b15565b6103e86001610cb7610c43565b610cc19190613ac8565b610ccb9190613b39565b811015610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0490613bdc565b60405180910390fd5b8060078190555050565b60006012905090565b610d28611b15565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e90613c48565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610de3611b15565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4990613c48565b60405180910390fd5b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ea7610ea1611973565b82611b9c565b50565b600e5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600960019054906101000a900460ff1681565b610eef611b15565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610f52611b15565b620186a06001610f60610c43565b610f6a9190613ac8565b610f749190613b39565b811015610fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fad90613cda565b60405180910390fd5b6103e86005610fc3610c43565b610fcd9190613ac8565b610fd79190613b39565b811115611019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101090613d6c565b60405180910390fd5b8060088190555050565b61102b611b15565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60145481565b600960039054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110ef611b15565b6110f96000611c1e565b565b611103611b15565b6103e86001611110610c43565b61111a9190613ac8565b6111249190613b39565b811015611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d90613dfe565b60405180910390fd5b8060068190555050565b60125481565b61117e611b15565b6000600960016101000a81548160ff021916908315150217905550565b6111ad826111a7611973565b8361198d565b6111b78282611b9c565b5050565b6111c3611b15565b600960029054906101000a900460ff1615611213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120a90613e6a565b60405180910390fd5b600061121e3061109f565b9050611232813461122d611326565b611ce4565b611240878787878787611407565b6001600960026101000a81548160ff0219169083151502179055506001600960036101000a81548160ff02191690831515021790555050505050505050565b611287611b15565b82600d8190555081600e8190555080600f81905550600f54600e54600d546112af9190613e8a565b6112b99190613e8a565b601081905550600960019054906101000a900460ff1661131b576103e8601054111561131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131190613f30565b60405180910390fd5b5b505050565b600f5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611358611b15565b80600960036101000a81548160ff02191690831515021790555050565b60606004805461138490613a68565b80601f01602080910402602001604051908101604052809291908181526020018280546113b090613a68565b80156113fd5780601f106113d2576101008083540402835291602001916113fd565b820191906000526020600020905b8154815290600101906020018083116113e057829003601f168201915b5050505050905090565b61140f611b15565b61141a86868661127f565b6114258383836116f8565b505050505050565b611435611b15565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba90613f9c565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611526611b15565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c90613c48565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806115e4611973565b90506115f1818585611a21565b600191505092915050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c6020528060005260406000206000915054906101000a900460ff1681565b61164a611b15565b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161168591906136fd565b602060405180830381865afa1580156116a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c69190613fd1565b90506116f382828573ffffffffffffffffffffffffffffffffffffffff16611da79092919063ffffffff16565b505050565b611700611b15565b8260118190555081601281905550806013819055506013546012546011546117289190613e8a565b6117329190613e8a565b601481905550600960019054906101000a900460ff16611794576103e86014541115611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178a90613f30565b60405180910390fd5b5b505050565b60065481565b60135481565b6117ad611b15565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361181c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118139061404a565b60405180910390fd5b611845478273ffffffffffffffffffffffffffffffffffffffff16611e2690919063ffffffff16565b50565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b600d5481565b6118e9611b15565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361195b5760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161195291906136fd565b60405180910390fd5b61196481611c1e565b50565b60115481565b60075481565b600033905090565b6119888383836001611f13565b505050565b6000611999848461184e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a1b5781811015611a0b578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611a029392919061406a565b60405180910390fd5b611a1a84848484036000611f13565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a935760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611a8a91906136fd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b055760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611afc91906136fd565b60405180910390fd5b611b108383836120ea565b505050565b611b1d611973565b73ffffffffffffffffffffffffffffffffffffffff16611b3b611326565b73ffffffffffffffffffffffffffffffffffffffff1614611b9a57611b5e611973565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611b9191906136fd565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c0e5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611c0591906136fd565b60405180910390fd5b611c1a826000836120ea565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d0330737a250d5630b4cf539739df2c5dacb4c659f2488d8561197b565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71983308660008087426040518863ffffffff1660e01b8152600401611d5c969594939291906140dc565b60606040518083038185885af1158015611d7a573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d9f919061413d565b505050505050565b611e21838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8585604051602401611dda929190614190565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612b27565b505050565b80471015611e6b57306040517fcd786059000000000000000000000000000000000000000000000000000000008152600401611e6291906136fd565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611e91906141ea565b60006040518083038185875af1925050503d8060008114611ece576040519150601f19603f3d011682016040523d82523d6000602084013e611ed3565b606091505b5050905080611f0e576040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611f855760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611f7c91906136fd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ff75760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611fee91906136fd565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156120e4578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516120db9190613680565b60405180910390a35b50505050565b73ae2fc483527b8ef99eb5d9b44875f005ba1fae1373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561217a575073ae2fc483527b8ef99eb5d9b44875f005ba1fae1373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b6121b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b09061424b565b60405180910390fd5b600960029054906101000a900460ff166122fb576121d5611326565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806122405750612211611326565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8061227657503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806122ac57503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6122eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e2906142b7565b60405180910390fd5b6122f6838383612bbe565b612b22565b600960019054906101000a900460ff161561270157612318611326565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156123865750612356611326565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123bf5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123f9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124125750600960009054906101000a900460ff16155b1561270057600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124ba5750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561256157600654811115612504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fb90614349565b60405180910390fd5b6007546125108361109f565b8261251b9190613e8a565b111561255c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612553906143b5565b60405180910390fd5b6126ff565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126045750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156126535760065481111561264e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264590614447565b60405180910390fd5b6126fe565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166126fd576007546126b08361109f565b826126bb9190613e8a565b11156126fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f3906143b5565b60405180910390fd5b5b5b5b5b5b600060085461270f3061109f565b1015905080801561272c5750600960039054906101000a900460ff165b80156127455750600960009054906101000a900460ff16155b801561279b5750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156127f15750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128475750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561288b576001600960006101000a81548160ff02191690831515021790555061286f612de3565b6000600960006101000a81548160ff0219169083151502179055505b6000600960009054906101000a900460ff16159050600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806129415750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561294b57600090505b6000808215612b1257600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129af57506000601454115b15612a0057612710601254866129c59190613ac8565b6129cf9190613b39565b91506127106011546013546129e49190613e8a565b866129ef9190613ac8565b6129f99190613b39565b9050612aa9565b600c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a5b57506000601054115b15612aa857612710600e5486612a719190613ac8565b612a7b9190613b39565b9150612710600d54600f54612a909190613e8a565b86612a9b9190613ac8565b612aa59190613b39565b90505b5b6000821115612aee57612adf87601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612bbe565b8185612aeb9190614467565b94505b6000811115612b1157612b02873083612bbe565b8085612b0e9190614467565b94505b5b612b1d878787612bbe565b505050505b505050565b6000612b52828473ffffffffffffffffffffffffffffffffffffffff1661302a90919063ffffffff16565b90506000815114158015612b77575080806020019051810190612b7591906144b0565b155b15612bb957826040517f5274afe7000000000000000000000000000000000000000000000000000000008152600401612bb091906136fd565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612c10578060026000828254612c049190613e8a565b92505081905550612ce3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612c9c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401612c939392919061406a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d2c5780600260008282540392505081905550612d79565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612dd69190613680565b60405180910390a3505050565b600060085490506014600854612df99190613ac8565b612e023061109f565b1115612e1a576014600854612e179190613ac8565b90505b6000601354600f54601154600d54612e329190613e8a565b612e3c9190613e8a565b612e469190613e8a565b905060008103612e57575050613028565b600081601154600d54612e6a9190613e8a565b84612e759190613ac8565b612e7f9190613b39565b9050600082601354600f54612e949190613e8a565b85612e9f9190613ac8565b612ea99190613b39565b905060008183612eb99190613e8a565b905060008103612ecd575050505050613028565b612eed82600285612ede9190613b39565b612ee89190613e8a565b613040565b600047905060008111156130215760008260028684612f0c9190613ac8565b612f169190613b39565b612f209190613b39565b90506000838584612f319190613ac8565b612f3b9190613b39565b90506000821115612f8057612f7f600287612f569190613b39565b83601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611ce4565b5b6000811115612fd557612fd481601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611e2690919063ffffffff16565b5b7f93efcf28fbf701a930e0ad258987a2e4f08eb3aa99f9c02029e7ba049f69405f88828460028a6130069190613b39565b60405161301694939291906144dd565b60405180910390a150505b5050505050505b565b606061303883836000613259565b905092915050565b6000600267ffffffffffffffff81111561305d5761305c614522565b5b60405190808252806020026020018201604052801561308b5781602001602082028036833780820191505090505b50905030816000815181106130a3576130a2614551565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561313c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131609190614595565b8160018151811061317457613173614551565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506131cd30737a250d5630b4cf539739df2c5dacb4c659f2488d8461197b565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613223959493929190614680565b600060405180830381600087803b15801561323d57600080fd5b505af1158015613251573d6000803e3d6000fd5b505050505050565b6060814710156132a057306040517fcd78605900000000000000000000000000000000000000000000000000000000815260040161329791906136fd565b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff1684866040516132c99190614716565b60006040518083038185875af1925050503d8060008114613306576040519150601f19603f3d011682016040523d82523d6000602084013e61330b565b606091505b509150915061331b868383613326565b925050509392505050565b60608261333b57613336826133b5565b6133ad565b60008251148015613363575060008473ffffffffffffffffffffffffffffffffffffffff163b145b156133a557836040517f9996b31500000000000000000000000000000000000000000000000000000000815260040161339c91906136fd565b60405180910390fd5b8190506133ae565b5b9392505050565b6000815111156133c85780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613425826133fa565b9050919050565b6134358161341a565b82525050565b6000602082019050613450600083018461342c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613490578082015181840152602081019050613475565b60008484015250505050565b6000601f19601f8301169050919050565b60006134b882613456565b6134c28185613461565b93506134d2818560208601613472565b6134db8161349c565b840191505092915050565b6000602082019050818103600083015261350081846134ad565b905092915050565b600080fd5b6000613518826133fa565b9050919050565b6135288161350d565b811461353357600080fd5b50565b6000813590506135458161351f565b92915050565b6000819050919050565b61355e8161354b565b811461356957600080fd5b50565b60008135905061357b81613555565b92915050565b6000806040838503121561359857613597613508565b5b60006135a685828601613536565b92505060206135b78582860161356c565b9150509250929050565b60008115159050919050565b6135d6816135c1565b82525050565b60006020820190506135f160008301846135cd565b92915050565b6000819050919050565b600061361c613617613612846133fa565b6135f7565b6133fa565b9050919050565b600061362e82613601565b9050919050565b600061364082613623565b9050919050565b61365081613635565b82525050565b600060208201905061366b6000830184613647565b92915050565b61367a8161354b565b82525050565b60006020820190506136956000830184613671565b92915050565b6000806000606084860312156136b4576136b3613508565b5b60006136c286828701613536565b93505060206136d386828701613536565b92505060406136e48682870161356c565b9150509250925092565b6136f78161350d565b82525050565b600060208201905061371260008301846136ee565b92915050565b60006020828403121561372e5761372d613508565b5b600061373c8482850161356c565b91505092915050565b600060ff82169050919050565b61375b81613745565b82525050565b60006020820190506137766000830184613752565b92915050565b60006020828403121561379257613791613508565b5b60006137a084828501613536565b91505092915050565b6137b28161341a565b81146137bd57600080fd5b50565b6000813590506137cf816137a9565b92915050565b6000602082840312156137eb576137ea613508565b5b60006137f9848285016137c0565b91505092915050565b61380b816135c1565b811461381657600080fd5b50565b60008135905061382881613802565b92915050565b6000806040838503121561384557613844613508565b5b600061385385828601613536565b925050602061386485828601613819565b9150509250929050565b60008060008060008060c0878903121561388b5761388a613508565b5b600061389989828a0161356c565b96505060206138aa89828a0161356c565b95505060406138bb89828a0161356c565b94505060606138cc89828a0161356c565b93505060806138dd89828a0161356c565b92505060a06138ee89828a0161356c565b9150509295509295509295565b60008060006060848603121561391457613913613508565b5b60006139228682870161356c565b93505060206139338682870161356c565b92505060406139448682870161356c565b9150509250925092565b60006020828403121561396457613963613508565b5b600061397284828501613819565b91505092915050565b60006139868261350d565b9050919050565b6139968161397b565b81146139a157600080fd5b50565b6000813590506139b38161398d565b92915050565b600080604083850312156139d0576139cf613508565b5b60006139de858286016139a4565b92505060206139ef85828601613536565b9150509250929050565b60008060408385031215613a1057613a0f613508565b5b6000613a1e85828601613536565b9250506020613a2f85828601613536565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613a8057607f821691505b602082108103613a9357613a92613a39565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ad38261354b565b9150613ade8361354b565b9250828202613aec8161354b565b91508282048414831517613b0357613b02613a99565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b448261354b565b9150613b4f8361354b565b925082613b5f57613b5e613b0a565b5b828204905092915050565b7f4657423a2043616e6e6f7420736574206d61782077616c6c6574206c6f77657260008201527f207468616e20302e312500000000000000000000000000000000000000000000602082015250565b6000613bc6602a83613461565b9150613bd182613b6a565b604082019050919050565b60006020820190508181036000830152613bf581613bb9565b9050919050565b7f4657423a20416464726573732063616e6e6f74206265207a65726f0000000000600082015250565b6000613c32601b83613461565b9150613c3d82613bfc565b602082019050919050565b60006020820190508181036000830152613c6181613c25565b9050919050565b7f4657423a205377617020616d6f756e742063616e6e6f74206265206c6f77657260008201527f207468616e20302e30303125206f662074686520737570706c79000000000000602082015250565b6000613cc4603a83613461565b9150613ccf82613c68565b604082019050919050565b60006020820190508181036000830152613cf381613cb7565b9050919050565b7f4657423a205377617020616d6f756e742063616e6e6f7420626520686967686560008201527f72207468616e20302e3525206f662074686520737570706c7900000000000000602082015250565b6000613d56603983613461565b9150613d6182613cfa565b604082019050919050565b60006020820190508181036000830152613d8581613d49565b9050919050565b7f4657423a2043616e6e6f7420736574206d6178207472616e73616374696f6e2060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613de8602f83613461565b9150613df382613d8c565b604082019050919050565b60006020820190508181036000830152613e1781613ddb565b9050919050565b7f4657423a20416c7265616479206c61756e636865640000000000000000000000600082015250565b6000613e54601583613461565b9150613e5f82613e1e565b602082019050919050565b60006020820190508181036000830152613e8381613e47565b9050919050565b6000613e958261354b565b9150613ea08361354b565b9250828201905080821115613eb857613eb7613a99565b5b92915050565b7f4657423a204d757374206b656570206665657320617420313025206f72206c6560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f1a602283613461565b9150613f2582613ebe565b604082019050919050565b60006020820190508181036000830152613f4981613f0d565b9050919050565b7f4657423a2054686520706169722063616e6e6f742062652072656d6f76656400600082015250565b6000613f86601f83613461565b9150613f9182613f50565b602082019050919050565b60006020820190508181036000830152613fb581613f79565b9050919050565b600081519050613fcb81613555565b92915050565b600060208284031215613fe757613fe6613508565b5b6000613ff584828501613fbc565b91505092915050565b7f4657423a20496e76616c69642061646472657373000000000000000000000000600082015250565b6000614034601483613461565b915061403f82613ffe565b602082019050919050565b6000602082019050818103600083015261406381614027565b9050919050565b600060608201905061407f60008301866136ee565b61408c6020830185613671565b6140996040830184613671565b949350505050565b6000819050919050565b60006140c66140c16140bc846140a1565b6135f7565b61354b565b9050919050565b6140d6816140ab565b82525050565b600060c0820190506140f160008301896136ee565b6140fe6020830188613671565b61410b60408301876140cd565b61411860608301866140cd565b61412560808301856136ee565b61413260a0830184613671565b979650505050505050565b60008060006060848603121561415657614155613508565b5b600061416486828701613fbc565b935050602061417586828701613fbc565b925050604061418686828701613fbc565b9150509250925092565b60006040820190506141a560008301856136ee565b6141b26020830184613671565b9392505050565b600081905092915050565b50565b60006141d46000836141b9565b91506141df826141c4565b600082019050919050565b60006141f5826141c7565b9150819050919050565b7f4657423a20536f727279204a61726564203a2728000000000000000000000000600082015250565b6000614235601483613461565b9150614240826141ff565b602082019050919050565b6000602082019050818103600083015261426481614228565b9050919050565b7f4657423a204e6f74206c61756e63686564207965740000000000000000000000600082015250565b60006142a1601583613461565b91506142ac8261426b565b602082019050919050565b600060208201905081810360008301526142d081614294565b9050919050565b7f4657423a20427579207472616e7366657220616d6f756e74206578636565647360008201527f20746865206d6178547800000000000000000000000000000000000000000000602082015250565b6000614333602a83613461565b915061433e826142d7565b604082019050919050565b6000602082019050818103600083015261436281614326565b9050919050565b7f4657423a204d61782077616c6c65742065786365656465640000000000000000600082015250565b600061439f601883613461565b91506143aa82614369565b602082019050919050565b600060208201905081810360008301526143ce81614392565b9050919050565b7f4657423a2053656c6c207472616e7366657220616d6f756e742065786365656460008201527f7320746865206d61785478000000000000000000000000000000000000000000602082015250565b6000614431602b83613461565b915061443c826143d5565b604082019050919050565b6000602082019050818103600083015261446081614424565b9050919050565b60006144728261354b565b915061447d8361354b565b925082820390508181111561449557614494613a99565b5b92915050565b6000815190506144aa81613802565b92915050565b6000602082840312156144c6576144c5613508565b5b60006144d48482850161449b565b91505092915050565b60006080820190506144f26000830187613671565b6144ff6020830186613671565b61450c6040830185613671565b6145196060830184613671565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061458f8161351f565b92915050565b6000602082840312156145ab576145aa613508565b5b60006145b984828501614580565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6145f78161350d565b82525050565b600061460983836145ee565b60208301905092915050565b6000602082019050919050565b600061462d826145c2565b61463781856145cd565b9350614642836145de565b8060005b8381101561467357815161465a88826145fd565b975061466583614615565b925050600181019050614646565b5085935050505092915050565b600060a0820190506146956000830188613671565b6146a260208301876140cd565b81810360408301526146b48186614622565b90506146c360608301856136ee565b6146d06080830184613671565b9695505050505050565b600081519050919050565b60006146f0826146da565b6146fa81856141b9565b935061470a818560208601613472565b80840191505092915050565b600061472282846146e5565b91508190509291505056fea2646970667358221220fda14fa3bd2109302b6d080ab6d0487139988615ddc3625cd17b2b323bbed3f064736f6c63430008150033000000000000000000000000a32c54ed93b97329b5917d4ae8ebfc7c6c50ac130000000000000000000000005e1be5a831e6c6f0a4080fc11bd1edb4a4020136000000000000000000000000da1ef9bc8df22d8e17de3302e56543d30c328639
Deployed Bytecode
0x6080604052600436106102cd5760003560e01c806379cc679011610175578063b62496f5116100dc578063d85ba06311610095578063f11a24d31161006f578063f11a24d314610aa6578063f2fde38b14610ad1578063f637434214610afa578063f8b45b0514610b25576102d4565b8063d85ba06314610a13578063dd62ed3e14610a3e578063e2f4560514610a7b576102d4565b8063b62496f514610905578063bc205ad314610942578063c17b5b8c1461096b578063c8c8ebe414610994578063cd207777146109bf578063d201b01e146109ea576102d4565b806395d89b411161012e57806395d89b41146107f7578063992c58e4146108225780639a7a23d61461084b578063a333d1a414610874578063a9059cbb1461089d578063af8b1c6f146108da576102d4565b806379cc67901461070a5780637aad9742146107335780638095d5641461074f5780638b43b085146107785780638da5cb5b146107a3578063924de9b7146107ce576102d4565b8063439be351116102345780636a486a8e116101ed578063715018a6116101c7578063715018a61461068857806374010ece1461069f578063742bd2a5146106c8578063751039fc146106f3576102d4565b80636a486a8e146105f55780636ddd17131461062057806370a082311461064b576102d4565b8063439be351146104f957806349bd5a5e146105245780634a62bb651461054f578063590ffdce1461057a5780636402511e146105a357806366650dae146105cc576102d4565b806324e7964a1161028657806324e7964a146103ff57806327a14fc21461042a578063313ce567146104535780633afb28c01461047e578063421ac1a0146104a757806342966c68146104d0576102d4565b806303b61a6f146102d957806306fdde0314610304578063095ea7b31461032f5780631694505e1461036c57806318160ddd1461039757806323b872dd146103c2576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610b50565b6040516102fb919061343b565b60405180910390f35b34801561031057600080fd5b50610319610b76565b60405161032691906134e6565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190613581565b610c08565b60405161036391906135dc565b60405180910390f35b34801561037857600080fd5b50610381610c2b565b60405161038e9190613656565b60405180910390f35b3480156103a357600080fd5b506103ac610c43565b6040516103b99190613680565b60405180910390f35b3480156103ce57600080fd5b506103e960048036038101906103e4919061369b565b610c4d565b6040516103f691906135dc565b60405180910390f35b34801561040b57600080fd5b50610414610c7c565b60405161042191906136fd565b60405180910390f35b34801561043657600080fd5b50610451600480360381019061044c9190613718565b610ca2565b005b34801561045f57600080fd5b50610468610d17565b6040516104759190613761565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a0919061377c565b610d20565b005b3480156104b357600080fd5b506104ce60048036038101906104c991906137d5565b610ddb565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190613718565b610e96565b005b34801561050557600080fd5b5061050e610eaa565b60405161051b9190613680565b60405180910390f35b34801561053057600080fd5b50610539610eb0565b60405161054691906136fd565b60405180910390f35b34801561055b57600080fd5b50610564610ed4565b60405161057191906135dc565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c919061382e565b610ee7565b005b3480156105af57600080fd5b506105ca60048036038101906105c59190613718565b610f4a565b005b3480156105d857600080fd5b506105f360048036038101906105ee919061382e565b611023565b005b34801561060157600080fd5b5061060a611086565b6040516106179190613680565b60405180910390f35b34801561062c57600080fd5b5061063561108c565b60405161064291906135dc565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d919061377c565b61109f565b60405161067f9190613680565b60405180910390f35b34801561069457600080fd5b5061069d6110e7565b005b3480156106ab57600080fd5b506106c660048036038101906106c19190613718565b6110fb565b005b3480156106d457600080fd5b506106dd611170565b6040516106ea9190613680565b60405180910390f35b3480156106ff57600080fd5b50610708611176565b005b34801561071657600080fd5b50610731600480360381019061072c9190613581565b61119b565b005b61074d6004803603810190610748919061386e565b6111bb565b005b34801561075b57600080fd5b50610776600480360381019061077191906138fb565b61127f565b005b34801561078457600080fd5b5061078d611320565b60405161079a9190613680565b60405180910390f35b3480156107af57600080fd5b506107b8611326565b6040516107c591906136fd565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f0919061394e565b611350565b005b34801561080357600080fd5b5061080c611375565b60405161081991906134e6565b60405180910390f35b34801561082e57600080fd5b506108496004803603810190610844919061386e565b611407565b005b34801561085757600080fd5b50610872600480360381019061086d919061382e565b61142d565b005b34801561088057600080fd5b5061089b6004803603810190610896919061377c565b61151e565b005b3480156108a957600080fd5b506108c460048036038101906108bf9190613581565b6115d9565b6040516108d191906135dc565b60405180910390f35b3480156108e657600080fd5b506108ef6115fc565b6040516108fc91906136fd565b60405180910390f35b34801561091157600080fd5b5061092c6004803603810190610927919061377c565b611622565b60405161093991906135dc565b60405180910390f35b34801561094e57600080fd5b50610969600480360381019061096491906139b9565b611642565b005b34801561097757600080fd5b50610992600480360381019061098d91906138fb565b6116f8565b005b3480156109a057600080fd5b506109a9611799565b6040516109b69190613680565b60405180910390f35b3480156109cb57600080fd5b506109d461179f565b6040516109e19190613680565b60405180910390f35b3480156109f657600080fd5b50610a116004803603810190610a0c91906137d5565b6117a5565b005b348015610a1f57600080fd5b50610a28611848565b604051610a359190613680565b60405180910390f35b348015610a4a57600080fd5b50610a656004803603810190610a6091906139f9565b61184e565b604051610a729190613680565b60405180910390f35b348015610a8757600080fd5b50610a906118d5565b604051610a9d9190613680565b60405180910390f35b348015610ab257600080fd5b50610abb6118db565b604051610ac89190613680565b60405180910390f35b348015610add57600080fd5b50610af86004803603810190610af3919061377c565b6118e1565b005b348015610b0657600080fd5b50610b0f611967565b604051610b1c9190613680565b60405180910390f35b348015610b3157600080fd5b50610b3a61196d565b604051610b479190613680565b60405180910390f35b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610b8590613a68565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb190613a68565b8015610bfe5780601f10610bd357610100808354040283529160200191610bfe565b820191906000526020600020905b815481529060010190602001808311610be157829003601f168201915b5050505050905090565b600080610c13611973565b9050610c2081858561197b565b600191505092915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600080610c58611973565b9050610c6585828561198d565b610c70858585611a21565b60019150509392505050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610caa611b15565b6103e86001610cb7610c43565b610cc19190613ac8565b610ccb9190613b39565b811015610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0490613bdc565b60405180910390fd5b8060078190555050565b60006012905090565b610d28611b15565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e90613c48565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610de3611b15565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4990613c48565b60405180910390fd5b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ea7610ea1611973565b82611b9c565b50565b600e5481565b7f000000000000000000000000a68180978475024356dec23a03ab8409faa1c51781565b600960019054906101000a900460ff1681565b610eef611b15565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610f52611b15565b620186a06001610f60610c43565b610f6a9190613ac8565b610f749190613b39565b811015610fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fad90613cda565b60405180910390fd5b6103e86005610fc3610c43565b610fcd9190613ac8565b610fd79190613b39565b811115611019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101090613d6c565b60405180910390fd5b8060088190555050565b61102b611b15565b80600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60145481565b600960039054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110ef611b15565b6110f96000611c1e565b565b611103611b15565b6103e86001611110610c43565b61111a9190613ac8565b6111249190613b39565b811015611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d90613dfe565b60405180910390fd5b8060068190555050565b60125481565b61117e611b15565b6000600960016101000a81548160ff021916908315150217905550565b6111ad826111a7611973565b8361198d565b6111b78282611b9c565b5050565b6111c3611b15565b600960029054906101000a900460ff1615611213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120a90613e6a565b60405180910390fd5b600061121e3061109f565b9050611232813461122d611326565b611ce4565b611240878787878787611407565b6001600960026101000a81548160ff0219169083151502179055506001600960036101000a81548160ff02191690831515021790555050505050505050565b611287611b15565b82600d8190555081600e8190555080600f81905550600f54600e54600d546112af9190613e8a565b6112b99190613e8a565b601081905550600960019054906101000a900460ff1661131b576103e8601054111561131a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131190613f30565b60405180910390fd5b5b505050565b600f5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611358611b15565b80600960036101000a81548160ff02191690831515021790555050565b60606004805461138490613a68565b80601f01602080910402602001604051908101604052809291908181526020018280546113b090613a68565b80156113fd5780601f106113d2576101008083540402835291602001916113fd565b820191906000526020600020905b8154815290600101906020018083116113e057829003601f168201915b5050505050905090565b61140f611b15565b61141a86868661127f565b6114258383836116f8565b505050505050565b611435611b15565b7f000000000000000000000000a68180978475024356dec23a03ab8409faa1c51773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba90613f9c565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611526611b15565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c90613c48565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806115e4611973565b90506115f1818585611a21565b600191505092915050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c6020528060005260406000206000915054906101000a900460ff1681565b61164a611b15565b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161168591906136fd565b602060405180830381865afa1580156116a2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c69190613fd1565b90506116f382828573ffffffffffffffffffffffffffffffffffffffff16611da79092919063ffffffff16565b505050565b611700611b15565b8260118190555081601281905550806013819055506013546012546011546117289190613e8a565b6117329190613e8a565b601481905550600960019054906101000a900460ff16611794576103e86014541115611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178a90613f30565b60405180910390fd5b5b505050565b60065481565b60135481565b6117ad611b15565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361181c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118139061404a565b60405180910390fd5b611845478273ffffffffffffffffffffffffffffffffffffffff16611e2690919063ffffffff16565b50565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b600d5481565b6118e9611b15565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361195b5760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161195291906136fd565b60405180910390fd5b61196481611c1e565b50565b60115481565b60075481565b600033905090565b6119888383836001611f13565b505050565b6000611999848461184e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a1b5781811015611a0b578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611a029392919061406a565b60405180910390fd5b611a1a84848484036000611f13565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a935760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611a8a91906136fd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b055760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611afc91906136fd565b60405180910390fd5b611b108383836120ea565b505050565b611b1d611973565b73ffffffffffffffffffffffffffffffffffffffff16611b3b611326565b73ffffffffffffffffffffffffffffffffffffffff1614611b9a57611b5e611973565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611b9191906136fd565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c0e5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611c0591906136fd565b60405180910390fd5b611c1a826000836120ea565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d0330737a250d5630b4cf539739df2c5dacb4c659f2488d8561197b565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71983308660008087426040518863ffffffff1660e01b8152600401611d5c969594939291906140dc565b60606040518083038185885af1158015611d7a573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d9f919061413d565b505050505050565b611e21838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8585604051602401611dda929190614190565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612b27565b505050565b80471015611e6b57306040517fcd786059000000000000000000000000000000000000000000000000000000008152600401611e6291906136fd565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611e91906141ea565b60006040518083038185875af1925050503d8060008114611ece576040519150601f19603f3d011682016040523d82523d6000602084013e611ed3565b606091505b5050905080611f0e576040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611f855760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401611f7c91906136fd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ff75760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401611fee91906136fd565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156120e4578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516120db9190613680565b60405180910390a35b50505050565b73ae2fc483527b8ef99eb5d9b44875f005ba1fae1373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561217a575073ae2fc483527b8ef99eb5d9b44875f005ba1fae1373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b6121b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b09061424b565b60405180910390fd5b600960029054906101000a900460ff166122fb576121d5611326565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806122405750612211611326565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8061227657503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806122ac57503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6122eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e2906142b7565b60405180910390fd5b6122f6838383612bbe565b612b22565b600960019054906101000a900460ff161561270157612318611326565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156123865750612356611326565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123bf5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123f9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124125750600960009054906101000a900460ff16155b1561270057600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124ba5750600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561256157600654811115612504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fb90614349565b60405180910390fd5b6007546125108361109f565b8261251b9190613e8a565b111561255c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612553906143b5565b60405180910390fd5b6126ff565b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126045750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156126535760065481111561264e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264590614447565b60405180910390fd5b6126fe565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166126fd576007546126b08361109f565b826126bb9190613e8a565b11156126fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f3906143b5565b60405180910390fd5b5b5b5b5b5b600060085461270f3061109f565b1015905080801561272c5750600960039054906101000a900460ff165b80156127455750600960009054906101000a900460ff16155b801561279b5750600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156127f15750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128475750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561288b576001600960006101000a81548160ff02191690831515021790555061286f612de3565b6000600960006101000a81548160ff0219169083151502179055505b6000600960009054906101000a900460ff16159050600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806129415750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561294b57600090505b6000808215612b1257600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129af57506000601454115b15612a0057612710601254866129c59190613ac8565b6129cf9190613b39565b91506127106011546013546129e49190613e8a565b866129ef9190613ac8565b6129f99190613b39565b9050612aa9565b600c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a5b57506000601054115b15612aa857612710600e5486612a719190613ac8565b612a7b9190613b39565b9150612710600d54600f54612a909190613e8a565b86612a9b9190613ac8565b612aa59190613b39565b90505b5b6000821115612aee57612adf87601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612bbe565b8185612aeb9190614467565b94505b6000811115612b1157612b02873083612bbe565b8085612b0e9190614467565b94505b5b612b1d878787612bbe565b505050505b505050565b6000612b52828473ffffffffffffffffffffffffffffffffffffffff1661302a90919063ffffffff16565b90506000815114158015612b77575080806020019051810190612b7591906144b0565b155b15612bb957826040517f5274afe7000000000000000000000000000000000000000000000000000000008152600401612bb091906136fd565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612c10578060026000828254612c049190613e8a565b92505081905550612ce3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612c9c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401612c939392919061406a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d2c5780600260008282540392505081905550612d79565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612dd69190613680565b60405180910390a3505050565b600060085490506014600854612df99190613ac8565b612e023061109f565b1115612e1a576014600854612e179190613ac8565b90505b6000601354600f54601154600d54612e329190613e8a565b612e3c9190613e8a565b612e469190613e8a565b905060008103612e57575050613028565b600081601154600d54612e6a9190613e8a565b84612e759190613ac8565b612e7f9190613b39565b9050600082601354600f54612e949190613e8a565b85612e9f9190613ac8565b612ea99190613b39565b905060008183612eb99190613e8a565b905060008103612ecd575050505050613028565b612eed82600285612ede9190613b39565b612ee89190613e8a565b613040565b600047905060008111156130215760008260028684612f0c9190613ac8565b612f169190613b39565b612f209190613b39565b90506000838584612f319190613ac8565b612f3b9190613b39565b90506000821115612f8057612f7f600287612f569190613b39565b83601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611ce4565b5b6000811115612fd557612fd481601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611e2690919063ffffffff16565b5b7f93efcf28fbf701a930e0ad258987a2e4f08eb3aa99f9c02029e7ba049f69405f88828460028a6130069190613b39565b60405161301694939291906144dd565b60405180910390a150505b5050505050505b565b606061303883836000613259565b905092915050565b6000600267ffffffffffffffff81111561305d5761305c614522565b5b60405190808252806020026020018201604052801561308b5781602001602082028036833780820191505090505b50905030816000815181106130a3576130a2614551565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561313c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131609190614595565b8160018151811061317457613173614551565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506131cd30737a250d5630b4cf539739df2c5dacb4c659f2488d8461197b565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613223959493929190614680565b600060405180830381600087803b15801561323d57600080fd5b505af1158015613251573d6000803e3d6000fd5b505050505050565b6060814710156132a057306040517fcd78605900000000000000000000000000000000000000000000000000000000815260040161329791906136fd565b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff1684866040516132c99190614716565b60006040518083038185875af1925050503d8060008114613306576040519150601f19603f3d011682016040523d82523d6000602084013e61330b565b606091505b509150915061331b868383613326565b925050509392505050565b60608261333b57613336826133b5565b6133ad565b60008251148015613363575060008473ffffffffffffffffffffffffffffffffffffffff163b145b156133a557836040517f9996b31500000000000000000000000000000000000000000000000000000000815260040161339c91906136fd565b60405180910390fd5b8190506133ae565b5b9392505050565b6000815111156133c85780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613425826133fa565b9050919050565b6134358161341a565b82525050565b6000602082019050613450600083018461342c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613490578082015181840152602081019050613475565b60008484015250505050565b6000601f19601f8301169050919050565b60006134b882613456565b6134c28185613461565b93506134d2818560208601613472565b6134db8161349c565b840191505092915050565b6000602082019050818103600083015261350081846134ad565b905092915050565b600080fd5b6000613518826133fa565b9050919050565b6135288161350d565b811461353357600080fd5b50565b6000813590506135458161351f565b92915050565b6000819050919050565b61355e8161354b565b811461356957600080fd5b50565b60008135905061357b81613555565b92915050565b6000806040838503121561359857613597613508565b5b60006135a685828601613536565b92505060206135b78582860161356c565b9150509250929050565b60008115159050919050565b6135d6816135c1565b82525050565b60006020820190506135f160008301846135cd565b92915050565b6000819050919050565b600061361c613617613612846133fa565b6135f7565b6133fa565b9050919050565b600061362e82613601565b9050919050565b600061364082613623565b9050919050565b61365081613635565b82525050565b600060208201905061366b6000830184613647565b92915050565b61367a8161354b565b82525050565b60006020820190506136956000830184613671565b92915050565b6000806000606084860312156136b4576136b3613508565b5b60006136c286828701613536565b93505060206136d386828701613536565b92505060406136e48682870161356c565b9150509250925092565b6136f78161350d565b82525050565b600060208201905061371260008301846136ee565b92915050565b60006020828403121561372e5761372d613508565b5b600061373c8482850161356c565b91505092915050565b600060ff82169050919050565b61375b81613745565b82525050565b60006020820190506137766000830184613752565b92915050565b60006020828403121561379257613791613508565b5b60006137a084828501613536565b91505092915050565b6137b28161341a565b81146137bd57600080fd5b50565b6000813590506137cf816137a9565b92915050565b6000602082840312156137eb576137ea613508565b5b60006137f9848285016137c0565b91505092915050565b61380b816135c1565b811461381657600080fd5b50565b60008135905061382881613802565b92915050565b6000806040838503121561384557613844613508565b5b600061385385828601613536565b925050602061386485828601613819565b9150509250929050565b60008060008060008060c0878903121561388b5761388a613508565b5b600061389989828a0161356c565b96505060206138aa89828a0161356c565b95505060406138bb89828a0161356c565b94505060606138cc89828a0161356c565b93505060806138dd89828a0161356c565b92505060a06138ee89828a0161356c565b9150509295509295509295565b60008060006060848603121561391457613913613508565b5b60006139228682870161356c565b93505060206139338682870161356c565b92505060406139448682870161356c565b9150509250925092565b60006020828403121561396457613963613508565b5b600061397284828501613819565b91505092915050565b60006139868261350d565b9050919050565b6139968161397b565b81146139a157600080fd5b50565b6000813590506139b38161398d565b92915050565b600080604083850312156139d0576139cf613508565b5b60006139de858286016139a4565b92505060206139ef85828601613536565b9150509250929050565b60008060408385031215613a1057613a0f613508565b5b6000613a1e85828601613536565b9250506020613a2f85828601613536565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613a8057607f821691505b602082108103613a9357613a92613a39565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ad38261354b565b9150613ade8361354b565b9250828202613aec8161354b565b91508282048414831517613b0357613b02613a99565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b448261354b565b9150613b4f8361354b565b925082613b5f57613b5e613b0a565b5b828204905092915050565b7f4657423a2043616e6e6f7420736574206d61782077616c6c6574206c6f77657260008201527f207468616e20302e312500000000000000000000000000000000000000000000602082015250565b6000613bc6602a83613461565b9150613bd182613b6a565b604082019050919050565b60006020820190508181036000830152613bf581613bb9565b9050919050565b7f4657423a20416464726573732063616e6e6f74206265207a65726f0000000000600082015250565b6000613c32601b83613461565b9150613c3d82613bfc565b602082019050919050565b60006020820190508181036000830152613c6181613c25565b9050919050565b7f4657423a205377617020616d6f756e742063616e6e6f74206265206c6f77657260008201527f207468616e20302e30303125206f662074686520737570706c79000000000000602082015250565b6000613cc4603a83613461565b9150613ccf82613c68565b604082019050919050565b60006020820190508181036000830152613cf381613cb7565b9050919050565b7f4657423a205377617020616d6f756e742063616e6e6f7420626520686967686560008201527f72207468616e20302e3525206f662074686520737570706c7900000000000000602082015250565b6000613d56603983613461565b9150613d6182613cfa565b604082019050919050565b60006020820190508181036000830152613d8581613d49565b9050919050565b7f4657423a2043616e6e6f7420736574206d6178207472616e73616374696f6e2060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613de8602f83613461565b9150613df382613d8c565b604082019050919050565b60006020820190508181036000830152613e1781613ddb565b9050919050565b7f4657423a20416c7265616479206c61756e636865640000000000000000000000600082015250565b6000613e54601583613461565b9150613e5f82613e1e565b602082019050919050565b60006020820190508181036000830152613e8381613e47565b9050919050565b6000613e958261354b565b9150613ea08361354b565b9250828201905080821115613eb857613eb7613a99565b5b92915050565b7f4657423a204d757374206b656570206665657320617420313025206f72206c6560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f1a602283613461565b9150613f2582613ebe565b604082019050919050565b60006020820190508181036000830152613f4981613f0d565b9050919050565b7f4657423a2054686520706169722063616e6e6f742062652072656d6f76656400600082015250565b6000613f86601f83613461565b9150613f9182613f50565b602082019050919050565b60006020820190508181036000830152613fb581613f79565b9050919050565b600081519050613fcb81613555565b92915050565b600060208284031215613fe757613fe6613508565b5b6000613ff584828501613fbc565b91505092915050565b7f4657423a20496e76616c69642061646472657373000000000000000000000000600082015250565b6000614034601483613461565b915061403f82613ffe565b602082019050919050565b6000602082019050818103600083015261406381614027565b9050919050565b600060608201905061407f60008301866136ee565b61408c6020830185613671565b6140996040830184613671565b949350505050565b6000819050919050565b60006140c66140c16140bc846140a1565b6135f7565b61354b565b9050919050565b6140d6816140ab565b82525050565b600060c0820190506140f160008301896136ee565b6140fe6020830188613671565b61410b60408301876140cd565b61411860608301866140cd565b61412560808301856136ee565b61413260a0830184613671565b979650505050505050565b60008060006060848603121561415657614155613508565b5b600061416486828701613fbc565b935050602061417586828701613fbc565b925050604061418686828701613fbc565b9150509250925092565b60006040820190506141a560008301856136ee565b6141b26020830184613671565b9392505050565b600081905092915050565b50565b60006141d46000836141b9565b91506141df826141c4565b600082019050919050565b60006141f5826141c7565b9150819050919050565b7f4657423a20536f727279204a61726564203a2728000000000000000000000000600082015250565b6000614235601483613461565b9150614240826141ff565b602082019050919050565b6000602082019050818103600083015261426481614228565b9050919050565b7f4657423a204e6f74206c61756e63686564207965740000000000000000000000600082015250565b60006142a1601583613461565b91506142ac8261426b565b602082019050919050565b600060208201905081810360008301526142d081614294565b9050919050565b7f4657423a20427579207472616e7366657220616d6f756e74206578636565647360008201527f20746865206d6178547800000000000000000000000000000000000000000000602082015250565b6000614333602a83613461565b915061433e826142d7565b604082019050919050565b6000602082019050818103600083015261436281614326565b9050919050565b7f4657423a204d61782077616c6c65742065786365656465640000000000000000600082015250565b600061439f601883613461565b91506143aa82614369565b602082019050919050565b600060208201905081810360008301526143ce81614392565b9050919050565b7f4657423a2053656c6c207472616e7366657220616d6f756e742065786365656460008201527f7320746865206d61785478000000000000000000000000000000000000000000602082015250565b6000614431602b83613461565b915061443c826143d5565b604082019050919050565b6000602082019050818103600083015261446081614424565b9050919050565b60006144728261354b565b915061447d8361354b565b925082820390508181111561449557614494613a99565b5b92915050565b6000815190506144aa81613802565b92915050565b6000602082840312156144c6576144c5613508565b5b60006144d48482850161449b565b91505092915050565b60006080820190506144f26000830187613671565b6144ff6020830186613671565b61450c6040830185613671565b6145196060830184613671565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061458f8161351f565b92915050565b6000602082840312156145ab576145aa613508565b5b60006145b984828501614580565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6145f78161350d565b82525050565b600061460983836145ee565b60208301905092915050565b6000602082019050919050565b600061462d826145c2565b61463781856145cd565b9350614642836145de565b8060005b8381101561467357815161465a88826145fd565b975061466583614615565b925050600181019050614646565b5085935050505092915050565b600060a0820190506146956000830188613671565b6146a260208301876140cd565b81810360408301526146b48186614622565b90506146c360608301856136ee565b6146d06080830184613671565b9695505050505050565b600081519050919050565b60006146f0826146da565b6146fa81856141b9565b935061470a818560208601613472565b80840191505092915050565b600061472282846146e5565b91508190509291505056fea2646970667358221220fda14fa3bd2109302b6d080ab6d0487139988615ddc3625cd17b2b323bbed3f064736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a32c54ed93b97329b5917d4ae8ebfc7c6c50ac130000000000000000000000005e1be5a831e6c6f0a4080fc11bd1edb4a4020136000000000000000000000000da1ef9bc8df22d8e17de3302e56543d30c328639
-----Decoded View---------------
Arg [0] : _treasuryVault (address): 0xA32c54ed93B97329b5917d4aE8ebFC7C6C50ac13
Arg [1] : _stakingVault (address): 0x5E1be5A831e6C6F0A4080fc11bd1EdB4a4020136
Arg [2] : _operationVault (address): 0xdA1Ef9bC8DF22d8E17De3302e56543d30C328639
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000a32c54ed93b97329b5917d4ae8ebfc7c6c50ac13
Arg [1] : 0000000000000000000000005e1be5a831e6c6f0a4080fc11bd1edb4a4020136
Arg [2] : 000000000000000000000000da1ef9bc8df22d8e17de3302e56543d30c328639
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.