Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
69,420,000,000 WOPE
Holders
78
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000001 WOPEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WoolishPepe
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.18; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract RandomTrueFalse { uint256 private seed = 0; function getRandom() public returns (bool) { seed = uint(keccak256(abi.encodePacked(block.timestamp, block.difficulty, msg.sender, seed))); return (seed % 2 == 0); } } contract WoolishPepe is ERC20, Ownable { IUniswapV2Router02 public uniswapRouter; IERC20 public woolToken; IERC20 public pepeToken; RandomTrueFalse private randomTrueFalse; address public rewardPoolAddress; using Address for address payable; bool public rewardEnabled; event TransferWithReward( address indexed recipient, uint256 amount, uint256 rewardAmount, uint256 rewardPoolAmount ); event Mint(address indexed to, uint256 amount); event RewardPoolAddressUpdated(address indexed previousRewardPoolAddress, address indexed newRewardPoolAddress); constructor(address _uniswapRouter, address _woolToken, address _pepeToken, address _rewardPoolAddress) ERC20("WoolishPepe", "WOPE") { uniswapRouter = IUniswapV2Router02(_uniswapRouter); woolToken = IERC20(_woolToken); pepeToken = IERC20(_pepeToken); rewardPoolAddress = _rewardPoolAddress; randomTrueFalse = new RandomTrueFalse(); rewardEnabled = false; } function setUniswapRouter(IUniswapV2Router02 _router) public onlyOwner { uniswapRouter = _router; } function setRewardEnabled(bool _enabled) public onlyOwner { rewardEnabled = _enabled; } function mint(address to, uint256 amount) public onlyOwner { _mint(to, amount); emit Mint(to, amount); } function changeOwner(address newOwner) public onlyOwner { transferOwnership(newOwner); } function updateRewardPoolAddress(address newRewardPoolAddress) public onlyOwner { require(newRewardPoolAddress != address(0), "New reward pool address cannot be a zero address"); require(newRewardPoolAddress != rewardPoolAddress, "New reward pool address must be different from the current address"); address previousRewardPoolAddress = rewardPoolAddress; rewardPoolAddress = newRewardPoolAddress; emit RewardPoolAddressUpdated(previousRewardPoolAddress, newRewardPoolAddress); } function transfer( address recipient, uint256 amount ) public override returns (bool) { // Calculate the amounts for the transfer and the reward uint256 percentage = rewardEnabled ? 95 : 97; uint256 transferAmount = (amount * percentage) / 100; uint256 rewardAmount = (amount * 2) / 100; uint256 rewardPoolAmount = (amount * 3) / 100; // Transfer 95% or 97% of PepeWool tokens from the sender to the recipient super.transfer(recipient, transferAmount); // Transfer 3% of PepeWool tokens from the sender to the reward pool address super.transfer(rewardPoolAddress, rewardPoolAmount); if (rewardEnabled) { // Transfer 2% of PepeWool tokens from the sender to the contract for the reward super.transfer(address(this), rewardAmount); // Swap the reward amount for WOOL or PEPE tokens _swapAndReward(rewardAmount, recipient); // Emit the TransferWithReward event emit TransferWithReward(recipient, transferAmount, rewardAmount, rewardPoolAmount); } return true; } function _swapAndReward(uint256 rewardAmount, address recipient) private { bool shouldRewardInWool = randomTrueFalse.getRandom(); // Define the path for the token swap (PepeWool -> output token) address[] memory path = new address[](2); path[0] = address(this); path[1] = shouldRewardInWool ? address(woolToken) : address(pepeToken); // Approve the Uniswap router to spend PepeWool tokens on behalf of the contract IERC20 outputToken = IERC20(path[1]); // Approve the Uniswap router to spend PepeWool tokens on behalf of the contract _approve(address(this), address(uniswapRouter), rewardAmount); // Execute the token swap on Uniswap uniswapRouter.swapExactTokensForTokens( rewardAmount, 0, path, address(this), block.timestamp + 300 ); // Transfer the swapped tokens to the recipient uint256 tokenBalance = outputToken.balanceOf(address(this)); if (tokenBalance > 0) { outputToken.transfer(recipient, tokenBalance); } } function drainEther() external onlyOwner { address payable rewardPoolAddressPayable = payable(rewardPoolAddress); uint256 etherBalance = address(this).balance; require(etherBalance > 0, "No Ether available to drain"); rewardPoolAddressPayable.sendValue(etherBalance); } function drainTokens(address tokenAddress) external onlyOwner { IERC20 token = IERC20(tokenAddress); uint256 tokenBalance = token.balanceOf(address(this)); require(tokenBalance > 0, "No tokens available to drain"); token.transfer(rewardPoolAddress, tokenBalance); } function renounceContractOwnership() external onlyOwner { renounceOwnership(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_uniswapRouter","type":"address"},{"internalType":"address","name":"_woolToken","type":"address"},{"internalType":"address","name":"_pepeToken","type":"address"},{"internalType":"address","name":"_rewardPoolAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousRewardPoolAddress","type":"address"},{"indexed":true,"internalType":"address","name":"newRewardPoolAddress","type":"address"}],"name":"RewardPoolAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"rewardAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"rewardPoolAmount","type":"uint256"}],"name":"TransferWithReward","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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"changeOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"drainEther","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"drainTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pepeToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceContractOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPoolAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setRewardEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IUniswapV2Router02","name":"_router","type":"address"}],"name":"setUniswapRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newRewardPoolAddress","type":"address"}],"name":"updateRewardPoolAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"woolToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162003d1638038062003d168339818101604052810190620000379190620003c4565b6040518060400160405280600b81526020017f576f6f6c697368506570650000000000000000000000000000000000000000008152506040518060400160405280600481526020017f574f5045000000000000000000000000000000000000000000000000000000008152508160039081620000b49190620006b0565b508060049081620000c69190620006b0565b505050620000e9620000dd6200027e60201b60201c565b6200028660201b60201c565b83600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604051620001fb906200034c565b604051809103906000f08015801562000218573d6000803e3d6000fd5b50600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600a60146101000a81548160ff0219169083151502179055505050505062000797565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6102828062003a9483390190565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200038c826200035f565b9050919050565b6200039e816200037f565b8114620003aa57600080fd5b50565b600081519050620003be8162000393565b92915050565b60008060008060808587031215620003e157620003e06200035a565b5b6000620003f187828801620003ad565b94505060206200040487828801620003ad565b93505060406200041787828801620003ad565b92505060606200042a87828801620003ad565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004b857607f821691505b602082108103620004ce57620004cd62000470565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005387fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004f9565b620005448683620004f9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005916200058b62000585846200055c565b62000566565b6200055c565b9050919050565b6000819050919050565b620005ad8362000570565b620005c5620005bc8262000598565b84845462000506565b825550505050565b600090565b620005dc620005cd565b620005e9818484620005a2565b505050565b5b81811015620006115762000605600082620005d2565b600181019050620005ef565b5050565b601f82111562000660576200062a81620004d4565b6200063584620004e9565b8101602085101562000645578190505b6200065d6200065485620004e9565b830182620005ee565b50505b505050565b600082821c905092915050565b6000620006856000198460080262000665565b1980831691505092915050565b6000620006a0838362000672565b9150826002028217905092915050565b620006bb8262000436565b67ffffffffffffffff811115620006d757620006d662000441565b5b620006e382546200049f565b620006f082828562000615565b600060209050601f83116001811462000728576000841562000713578287015190505b6200071f858262000692565b8655506200078f565b601f1984166200073886620004d4565b60005b8281101562000762578489015182556001820191506020850194506020810190506200073b565b868310156200078257848901516200077e601f89168262000672565b8355505b6001600288020188555050505b505050505050565b6132ed80620007a76000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063a6f9dae111610097578063dd62ed3e11610071578063dd62ed3e14610488578063ee5c02a2146104b8578063f2fde38b146104d4578063fc0c833a146104f0576101a9565b8063a6f9dae114610420578063a9059cbb1461043c578063bea9849e1461046c576101a9565b8063845a51ec116100d3578063845a51ec146103965780638da5cb5b146103b457806395d89b41146103d2578063a457c2d7146103f0576101a9565b8063715018a614610352578063735de9f71461035c5780638017c9d41461037a576101a9565b806320874c8b11610166578063313ce56711610140578063313ce567146102b857806339509351146102d657806340c10f191461030657806370a0823114610322576101a9565b806320874c8b1461024c57806321cc4c3f1461026a57806323b872dd14610288576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806313c69896146101fc57806317ee69951461020657806318160ddd146102245780631927a75414610242575b600080fd5b6101b661050c565b6040516101c391906120ae565b60405180910390f35b6101e660048036038101906101e19190612178565b61059e565b6040516101f391906121d3565b60405180910390f35b6102046105c1565b005b61020e610647565b60405161021b91906121d3565b60405180910390f35b61022c61065a565b60405161023991906121fd565b60405180910390f35b61024a610664565b005b61025461077c565b6040516102619190612277565b60405180910390f35b6102726107a2565b60405161027f9190612277565b60405180910390f35b6102a2600480360381019061029d9190612292565b6107c8565b6040516102af91906121d3565b60405180910390f35b6102c06107f7565b6040516102cd9190612301565b60405180910390f35b6102f060048036038101906102eb9190612178565b610800565b6040516102fd91906121d3565b60405180910390f35b610320600480360381019061031b9190612178565b610837565b005b61033c6004803603810190610337919061231c565b61090f565b60405161034991906121fd565b60405180910390f35b61035a610957565b005b6103646109df565b604051610371919061236a565b60405180910390f35b610394600480360381019061038f919061231c565b610a05565b005b61039e610c46565b6040516103ab9190612394565b60405180910390f35b6103bc610c6c565b6040516103c99190612394565b60405180910390f35b6103da610c96565b6040516103e791906120ae565b60405180910390f35b61040a60048036038101906104059190612178565b610d28565b60405161041791906121d3565b60405180910390f35b61043a6004803603810190610435919061231c565b610d9f565b005b61045660048036038101906104519190612178565b610e27565b60405161046391906121d3565b60405180910390f35b610486600480360381019061048191906123ed565b610f66565b005b6104a2600480360381019061049d919061241a565b611026565b6040516104af91906121fd565b60405180910390f35b6104d260048036038101906104cd9190612486565b6110ad565b005b6104ee60048036038101906104e9919061231c565b611146565b005b61050a6004803603810190610505919061231c565b61123d565b005b60606003805461051b906124e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610547906124e2565b80156105945780601f1061056957610100808354040283529160200191610594565b820191906000526020600020905b81548152906001019060200180831161057757829003601f168201915b5050505050905090565b6000806105a9611425565b90506105b681858561142d565b600191505092915050565b6105c9611425565b73ffffffffffffffffffffffffffffffffffffffff166105e7610c6c565b73ffffffffffffffffffffffffffffffffffffffff161461063d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106349061255f565b60405180910390fd5b610645610957565b565b600a60149054906101000a900460ff1681565b6000600254905090565b61066c611425565b73ffffffffffffffffffffffffffffffffffffffff1661068a610c6c565b73ffffffffffffffffffffffffffffffffffffffff16146106e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d79061255f565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060004790506000811161074f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610746906125cb565b60405180910390fd5b610778818373ffffffffffffffffffffffffffffffffffffffff166115f690919063ffffffff16565b5050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806107d3611425565b90506107e08582856116ea565b6107eb858585611776565b60019150509392505050565b60006012905090565b60008061080b611425565b905061082c81858561081d8589611026565b610827919061261a565b61142d565b600191505092915050565b61083f611425565b73ffffffffffffffffffffffffffffffffffffffff1661085d610c6c565b73ffffffffffffffffffffffffffffffffffffffff16146108b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108aa9061255f565b60405180910390fd5b6108bd82826119ec565b8173ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968858260405161090391906121fd565b60405180910390a25050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61095f611425565b73ffffffffffffffffffffffffffffffffffffffff1661097d610c6c565b73ffffffffffffffffffffffffffffffffffffffff16146109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca9061255f565b60405180910390fd5b6109dd6000611b42565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a0d611425565b73ffffffffffffffffffffffffffffffffffffffff16610a2b610c6c565b73ffffffffffffffffffffffffffffffffffffffff1614610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a789061255f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae7906126c0565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7790612778565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f1a68d9f2f3827e84ede5135106c6f1a01780e0e36aa58e5358e64eb72f83185360405160405180910390a35050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ca5906124e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd1906124e2565b8015610d1e5780601f10610cf357610100808354040283529160200191610d1e565b820191906000526020600020905b815481529060010190602001808311610d0157829003601f168201915b5050505050905090565b600080610d33611425565b90506000610d418286611026565b905083811015610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d9061280a565b60405180910390fd5b610d93828686840361142d565b60019250505092915050565b610da7611425565b73ffffffffffffffffffffffffffffffffffffffff16610dc5610c6c565b73ffffffffffffffffffffffffffffffffffffffff1614610e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e129061255f565b60405180910390fd5b610e2481611146565b50565b600080600a60149054906101000a900460ff16610e45576061610e48565b605f5b60ff169050600060648285610e5d919061282a565b610e67919061289b565b905060006064600286610e7a919061282a565b610e84919061289b565b905060006064600387610e97919061282a565b610ea1919061289b565b9050610ead8784611c08565b50610eda600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611c08565b50600a60149054906101000a900460ff1615610f5857610efa3083611c08565b50610f058288611c2b565b8673ffffffffffffffffffffffffffffffffffffffff167fae592e671eb7482a45500e1646373d2b8d3d97ac6937fb91c15252792dfb735f848484604051610f4f939291906128cc565b60405180910390a25b600194505050505092915050565b610f6e611425565b73ffffffffffffffffffffffffffffffffffffffff16610f8c610c6c565b73ffffffffffffffffffffffffffffffffffffffff1614610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd99061255f565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6110b5611425565b73ffffffffffffffffffffffffffffffffffffffff166110d3610c6c565b73ffffffffffffffffffffffffffffffffffffffff1614611129576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111209061255f565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b61114e611425565b73ffffffffffffffffffffffffffffffffffffffff1661116c610c6c565b73ffffffffffffffffffffffffffffffffffffffff16146111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b99061255f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122890612975565b60405180910390fd5b61123a81611b42565b50565b611245611425565b73ffffffffffffffffffffffffffffffffffffffff16611263610c6c565b73ffffffffffffffffffffffffffffffffffffffff16146112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b09061255f565b60405180910390fd5b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016112f99190612394565b602060405180830381865afa158015611316573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133a91906129aa565b90506000811161137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690612a23565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b81526004016113dc929190612a43565b6020604051808303816000875af11580156113fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141f9190612a81565b50505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361149c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149390612b20565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150290612bb2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115e991906121fd565b60405180910390a3505050565b80471015611639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163090612c1e565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161165f90612c6f565b60006040518083038185875af1925050503d806000811461169c576040519150601f19603f3d011682016040523d82523d6000602084013e6116a1565b606091505b50509050806116e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dc90612cf6565b60405180910390fd5b505050565b60006116f68484611026565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117705781811015611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990612d62565b60405180910390fd5b61176f848484840361142d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc90612df4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184b90612e86565b60405180910390fd5b61185f838383612014565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dc90612f18565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119d391906121fd565b60405180910390a36119e6848484612019565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5290612f84565b60405180910390fd5b611a6760008383612014565b8060026000828254611a79919061261a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b2a91906121fd565b60405180910390a3611b3e60008383612019565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080611c13611425565b9050611c20818585611776565b600191505092915050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663aacc5a176040518163ffffffff1660e01b81526004016020604051808303816000875af1158015611c9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cc09190612a81565b90506000600267ffffffffffffffff811115611cdf57611cde612fa4565b5b604051908082528060200260200182016040528015611d0d5781602001602082028036833780820191505090505b5090503081600081518110611d2557611d24612fd3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505081611d8c57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611db0565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff165b81600181518110611dc457611dc3612fd3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600081600181518110611e1457611e13612fd3565b5b60200260200101519050611e4b30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168761142d565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338ed1739866000853061012c42611e9c919061261a565b6040518663ffffffff1660e01b8152600401611ebc9594939291906130fb565b6000604051808303816000875af1158015611edb573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611f04919061326e565b5060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611f409190612394565b602060405180830381865afa158015611f5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f8191906129aa565b9050600081111561200c578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb86836040518363ffffffff1660e01b8152600401611fc7929190612a43565b6020604051808303816000875af1158015611fe6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061200a9190612a81565b505b505050505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561205857808201518184015260208101905061203d565b60008484015250505050565b6000601f19601f8301169050919050565b60006120808261201e565b61208a8185612029565b935061209a81856020860161203a565b6120a381612064565b840191505092915050565b600060208201905081810360008301526120c88184612075565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061210f826120e4565b9050919050565b61211f81612104565b811461212a57600080fd5b50565b60008135905061213c81612116565b92915050565b6000819050919050565b61215581612142565b811461216057600080fd5b50565b6000813590506121728161214c565b92915050565b6000806040838503121561218f5761218e6120da565b5b600061219d8582860161212d565b92505060206121ae85828601612163565b9150509250929050565b60008115159050919050565b6121cd816121b8565b82525050565b60006020820190506121e860008301846121c4565b92915050565b6121f781612142565b82525050565b600060208201905061221260008301846121ee565b92915050565b6000819050919050565b600061223d612238612233846120e4565b612218565b6120e4565b9050919050565b600061224f82612222565b9050919050565b600061226182612244565b9050919050565b61227181612256565b82525050565b600060208201905061228c6000830184612268565b92915050565b6000806000606084860312156122ab576122aa6120da565b5b60006122b98682870161212d565b93505060206122ca8682870161212d565b92505060406122db86828701612163565b9150509250925092565b600060ff82169050919050565b6122fb816122e5565b82525050565b600060208201905061231660008301846122f2565b92915050565b600060208284031215612332576123316120da565b5b60006123408482850161212d565b91505092915050565b600061235482612244565b9050919050565b61236481612349565b82525050565b600060208201905061237f600083018461235b565b92915050565b61238e81612104565b82525050565b60006020820190506123a96000830184612385565b92915050565b60006123ba82612104565b9050919050565b6123ca816123af565b81146123d557600080fd5b50565b6000813590506123e7816123c1565b92915050565b600060208284031215612403576124026120da565b5b6000612411848285016123d8565b91505092915050565b60008060408385031215612431576124306120da565b5b600061243f8582860161212d565b92505060206124508582860161212d565b9150509250929050565b612463816121b8565b811461246e57600080fd5b50565b6000813590506124808161245a565b92915050565b60006020828403121561249c5761249b6120da565b5b60006124aa84828501612471565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806124fa57607f821691505b60208210810361250d5761250c6124b3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612549602083612029565b915061255482612513565b602082019050919050565b600060208201905081810360008301526125788161253c565b9050919050565b7f4e6f20457468657220617661696c61626c6520746f20647261696e0000000000600082015250565b60006125b5601b83612029565b91506125c08261257f565b602082019050919050565b600060208201905081810360008301526125e4816125a8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061262582612142565b915061263083612142565b9250828201905080821115612648576126476125eb565b5b92915050565b7f4e65772072657761726420706f6f6c20616464726573732063616e6e6f74206260008201527f652061207a65726f206164647265737300000000000000000000000000000000602082015250565b60006126aa603083612029565b91506126b58261264e565b604082019050919050565b600060208201905081810360008301526126d98161269d565b9050919050565b7f4e65772072657761726420706f6f6c2061646472657373206d7573742062652060008201527f646966666572656e742066726f6d207468652063757272656e7420616464726560208201527f7373000000000000000000000000000000000000000000000000000000000000604082015250565b6000612762604283612029565b915061276d826126e0565b606082019050919050565b6000602082019050818103600083015261279181612755565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006127f4602583612029565b91506127ff82612798565b604082019050919050565b60006020820190508181036000830152612823816127e7565b9050919050565b600061283582612142565b915061284083612142565b925082820261284e81612142565b91508282048414831517612865576128646125eb565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006128a682612142565b91506128b183612142565b9250826128c1576128c061286c565b5b828204905092915050565b60006060820190506128e160008301866121ee565b6128ee60208301856121ee565b6128fb60408301846121ee565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061295f602683612029565b915061296a82612903565b604082019050919050565b6000602082019050818103600083015261298e81612952565b9050919050565b6000815190506129a48161214c565b92915050565b6000602082840312156129c0576129bf6120da565b5b60006129ce84828501612995565b91505092915050565b7f4e6f20746f6b656e7320617661696c61626c6520746f20647261696e00000000600082015250565b6000612a0d601c83612029565b9150612a18826129d7565b602082019050919050565b60006020820190508181036000830152612a3c81612a00565b9050919050565b6000604082019050612a586000830185612385565b612a6560208301846121ee565b9392505050565b600081519050612a7b8161245a565b92915050565b600060208284031215612a9757612a966120da565b5b6000612aa584828501612a6c565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612b0a602483612029565b9150612b1582612aae565b604082019050919050565b60006020820190508181036000830152612b3981612afd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b9c602283612029565b9150612ba782612b40565b604082019050919050565b60006020820190508181036000830152612bcb81612b8f565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000612c08601d83612029565b9150612c1382612bd2565b602082019050919050565b60006020820190508181036000830152612c3781612bfb565b9050919050565b600081905092915050565b50565b6000612c59600083612c3e565b9150612c6482612c49565b600082019050919050565b6000612c7a82612c4c565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000612ce0603a83612029565b9150612ceb82612c84565b604082019050919050565b60006020820190508181036000830152612d0f81612cd3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612d4c601d83612029565b9150612d5782612d16565b602082019050919050565b60006020820190508181036000830152612d7b81612d3f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612dde602583612029565b9150612de982612d82565b604082019050919050565b60006020820190508181036000830152612e0d81612dd1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612e70602383612029565b9150612e7b82612e14565b604082019050919050565b60006020820190508181036000830152612e9f81612e63565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612f02602683612029565b9150612f0d82612ea6565b604082019050919050565b60006020820190508181036000830152612f3181612ef5565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612f6e601f83612029565b9150612f7982612f38565b602082019050919050565b60006020820190508181036000830152612f9d81612f61565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061302761302261301d84613002565b612218565b612142565b9050919050565b6130378161300c565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61307281612104565b82525050565b60006130848383613069565b60208301905092915050565b6000602082019050919050565b60006130a88261303d565b6130b28185613048565b93506130bd83613059565b8060005b838110156130ee5781516130d58882613078565b97506130e083613090565b9250506001810190506130c1565b5085935050505092915050565b600060a08201905061311060008301886121ee565b61311d602083018761302e565b818103604083015261312f818661309d565b905061313e6060830185612385565b61314b60808301846121ee565b9695505050505050565b600080fd5b61316382612064565b810181811067ffffffffffffffff8211171561318257613181612fa4565b5b80604052505050565b60006131956120d0565b90506131a1828261315a565b919050565b600067ffffffffffffffff8211156131c1576131c0612fa4565b5b602082029050602081019050919050565b600080fd5b60006131ea6131e5846131a6565b61318b565b9050808382526020820190506020840283018581111561320d5761320c6131d2565b5b835b8181101561323657806132228882612995565b84526020840193505060208101905061320f565b5050509392505050565b600082601f83011261325557613254613155565b5b81516132658482602086016131d7565b91505092915050565b600060208284031215613284576132836120da565b5b600082015167ffffffffffffffff8111156132a2576132a16120df565b5b6132ae84828501613240565b9150509291505056fea26469706673582212207149e8b107e197e4749e826d5cb765d71c088f6514fc1ee312b78ab070a506b464736f6c6343000812003360806040526000805534801561001457600080fd5b5061025e806100246000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c8063aacc5a1714610030575b600080fd5b61003861004e565b60405161004591906100ba565b60405180910390f35b6000424433600054604051602001610069949392919061017a565b6040516020818303038152906040528051906020012060001c6000819055506000600260005461009991906101f7565b14905090565b60008115159050919050565b6100b48161009f565b82525050565b60006020820190506100cf60008301846100ab565b92915050565b6000819050919050565b6000819050919050565b6100fa6100f5826100d5565b6100df565b82525050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061012b82610100565b9050919050565b60008160601b9050919050565b600061014a82610132565b9050919050565b600061015c8261013f565b9050919050565b61017461016f82610120565b610151565b82525050565b600061018682876100e9565b60208201915061019682866100e9565b6020820191506101a68285610163565b6014820191506101b682846100e9565b60208201915081905095945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000610202826100d5565b915061020d836100d5565b92508261021d5761021c6101c8565b5b82820690509291505056fea2646970667358221220b2811b9d08cca0465d55b3c340296de5643d272816de295414a0294a62fcb25164736f6c634300081200330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000008355dbe8b0e275abad27eb843f3eaf3fc855e5250000000000000000000000006982508145454ce325ddbe47a25d4ec3d2311933000000000000000000000000a0eb6ffe53677ebeec3815c1736ba32f7ebe6fbb
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063a6f9dae111610097578063dd62ed3e11610071578063dd62ed3e14610488578063ee5c02a2146104b8578063f2fde38b146104d4578063fc0c833a146104f0576101a9565b8063a6f9dae114610420578063a9059cbb1461043c578063bea9849e1461046c576101a9565b8063845a51ec116100d3578063845a51ec146103965780638da5cb5b146103b457806395d89b41146103d2578063a457c2d7146103f0576101a9565b8063715018a614610352578063735de9f71461035c5780638017c9d41461037a576101a9565b806320874c8b11610166578063313ce56711610140578063313ce567146102b857806339509351146102d657806340c10f191461030657806370a0823114610322576101a9565b806320874c8b1461024c57806321cc4c3f1461026a57806323b872dd14610288576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806313c69896146101fc57806317ee69951461020657806318160ddd146102245780631927a75414610242575b600080fd5b6101b661050c565b6040516101c391906120ae565b60405180910390f35b6101e660048036038101906101e19190612178565b61059e565b6040516101f391906121d3565b60405180910390f35b6102046105c1565b005b61020e610647565b60405161021b91906121d3565b60405180910390f35b61022c61065a565b60405161023991906121fd565b60405180910390f35b61024a610664565b005b61025461077c565b6040516102619190612277565b60405180910390f35b6102726107a2565b60405161027f9190612277565b60405180910390f35b6102a2600480360381019061029d9190612292565b6107c8565b6040516102af91906121d3565b60405180910390f35b6102c06107f7565b6040516102cd9190612301565b60405180910390f35b6102f060048036038101906102eb9190612178565b610800565b6040516102fd91906121d3565b60405180910390f35b610320600480360381019061031b9190612178565b610837565b005b61033c6004803603810190610337919061231c565b61090f565b60405161034991906121fd565b60405180910390f35b61035a610957565b005b6103646109df565b604051610371919061236a565b60405180910390f35b610394600480360381019061038f919061231c565b610a05565b005b61039e610c46565b6040516103ab9190612394565b60405180910390f35b6103bc610c6c565b6040516103c99190612394565b60405180910390f35b6103da610c96565b6040516103e791906120ae565b60405180910390f35b61040a60048036038101906104059190612178565b610d28565b60405161041791906121d3565b60405180910390f35b61043a6004803603810190610435919061231c565b610d9f565b005b61045660048036038101906104519190612178565b610e27565b60405161046391906121d3565b60405180910390f35b610486600480360381019061048191906123ed565b610f66565b005b6104a2600480360381019061049d919061241a565b611026565b6040516104af91906121fd565b60405180910390f35b6104d260048036038101906104cd9190612486565b6110ad565b005b6104ee60048036038101906104e9919061231c565b611146565b005b61050a6004803603810190610505919061231c565b61123d565b005b60606003805461051b906124e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610547906124e2565b80156105945780601f1061056957610100808354040283529160200191610594565b820191906000526020600020905b81548152906001019060200180831161057757829003601f168201915b5050505050905090565b6000806105a9611425565b90506105b681858561142d565b600191505092915050565b6105c9611425565b73ffffffffffffffffffffffffffffffffffffffff166105e7610c6c565b73ffffffffffffffffffffffffffffffffffffffff161461063d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106349061255f565b60405180910390fd5b610645610957565b565b600a60149054906101000a900460ff1681565b6000600254905090565b61066c611425565b73ffffffffffffffffffffffffffffffffffffffff1661068a610c6c565b73ffffffffffffffffffffffffffffffffffffffff16146106e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d79061255f565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060004790506000811161074f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610746906125cb565b60405180910390fd5b610778818373ffffffffffffffffffffffffffffffffffffffff166115f690919063ffffffff16565b5050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806107d3611425565b90506107e08582856116ea565b6107eb858585611776565b60019150509392505050565b60006012905090565b60008061080b611425565b905061082c81858561081d8589611026565b610827919061261a565b61142d565b600191505092915050565b61083f611425565b73ffffffffffffffffffffffffffffffffffffffff1661085d610c6c565b73ffffffffffffffffffffffffffffffffffffffff16146108b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108aa9061255f565b60405180910390fd5b6108bd82826119ec565b8173ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968858260405161090391906121fd565b60405180910390a25050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61095f611425565b73ffffffffffffffffffffffffffffffffffffffff1661097d610c6c565b73ffffffffffffffffffffffffffffffffffffffff16146109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca9061255f565b60405180910390fd5b6109dd6000611b42565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a0d611425565b73ffffffffffffffffffffffffffffffffffffffff16610a2b610c6c565b73ffffffffffffffffffffffffffffffffffffffff1614610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a789061255f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae7906126c0565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7790612778565b60405180910390fd5b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f1a68d9f2f3827e84ede5135106c6f1a01780e0e36aa58e5358e64eb72f83185360405160405180910390a35050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ca5906124e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd1906124e2565b8015610d1e5780601f10610cf357610100808354040283529160200191610d1e565b820191906000526020600020905b815481529060010190602001808311610d0157829003601f168201915b5050505050905090565b600080610d33611425565b90506000610d418286611026565b905083811015610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d9061280a565b60405180910390fd5b610d93828686840361142d565b60019250505092915050565b610da7611425565b73ffffffffffffffffffffffffffffffffffffffff16610dc5610c6c565b73ffffffffffffffffffffffffffffffffffffffff1614610e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e129061255f565b60405180910390fd5b610e2481611146565b50565b600080600a60149054906101000a900460ff16610e45576061610e48565b605f5b60ff169050600060648285610e5d919061282a565b610e67919061289b565b905060006064600286610e7a919061282a565b610e84919061289b565b905060006064600387610e97919061282a565b610ea1919061289b565b9050610ead8784611c08565b50610eda600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611c08565b50600a60149054906101000a900460ff1615610f5857610efa3083611c08565b50610f058288611c2b565b8673ffffffffffffffffffffffffffffffffffffffff167fae592e671eb7482a45500e1646373d2b8d3d97ac6937fb91c15252792dfb735f848484604051610f4f939291906128cc565b60405180910390a25b600194505050505092915050565b610f6e611425565b73ffffffffffffffffffffffffffffffffffffffff16610f8c610c6c565b73ffffffffffffffffffffffffffffffffffffffff1614610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd99061255f565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6110b5611425565b73ffffffffffffffffffffffffffffffffffffffff166110d3610c6c565b73ffffffffffffffffffffffffffffffffffffffff1614611129576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111209061255f565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b61114e611425565b73ffffffffffffffffffffffffffffffffffffffff1661116c610c6c565b73ffffffffffffffffffffffffffffffffffffffff16146111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b99061255f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122890612975565b60405180910390fd5b61123a81611b42565b50565b611245611425565b73ffffffffffffffffffffffffffffffffffffffff16611263610c6c565b73ffffffffffffffffffffffffffffffffffffffff16146112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b09061255f565b60405180910390fd5b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016112f99190612394565b602060405180830381865afa158015611316573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133a91906129aa565b90506000811161137f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137690612a23565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b81526004016113dc929190612a43565b6020604051808303816000875af11580156113fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141f9190612a81565b50505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361149c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149390612b20565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150290612bb2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115e991906121fd565b60405180910390a3505050565b80471015611639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163090612c1e565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161165f90612c6f565b60006040518083038185875af1925050503d806000811461169c576040519150601f19603f3d011682016040523d82523d6000602084013e6116a1565b606091505b50509050806116e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dc90612cf6565b60405180910390fd5b505050565b60006116f68484611026565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117705781811015611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990612d62565b60405180910390fd5b61176f848484840361142d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc90612df4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184b90612e86565b60405180910390fd5b61185f838383612014565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dc90612f18565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119d391906121fd565b60405180910390a36119e6848484612019565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5290612f84565b60405180910390fd5b611a6760008383612014565b8060026000828254611a79919061261a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611b2a91906121fd565b60405180910390a3611b3e60008383612019565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080611c13611425565b9050611c20818585611776565b600191505092915050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663aacc5a176040518163ffffffff1660e01b81526004016020604051808303816000875af1158015611c9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cc09190612a81565b90506000600267ffffffffffffffff811115611cdf57611cde612fa4565b5b604051908082528060200260200182016040528015611d0d5781602001602082028036833780820191505090505b5090503081600081518110611d2557611d24612fd3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505081611d8c57600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611db0565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff165b81600181518110611dc457611dc3612fd3565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600081600181518110611e1457611e13612fd3565b5b60200260200101519050611e4b30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168761142d565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338ed1739866000853061012c42611e9c919061261a565b6040518663ffffffff1660e01b8152600401611ebc9594939291906130fb565b6000604051808303816000875af1158015611edb573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611f04919061326e565b5060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611f409190612394565b602060405180830381865afa158015611f5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f8191906129aa565b9050600081111561200c578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb86836040518363ffffffff1660e01b8152600401611fc7929190612a43565b6020604051808303816000875af1158015611fe6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061200a9190612a81565b505b505050505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561205857808201518184015260208101905061203d565b60008484015250505050565b6000601f19601f8301169050919050565b60006120808261201e565b61208a8185612029565b935061209a81856020860161203a565b6120a381612064565b840191505092915050565b600060208201905081810360008301526120c88184612075565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061210f826120e4565b9050919050565b61211f81612104565b811461212a57600080fd5b50565b60008135905061213c81612116565b92915050565b6000819050919050565b61215581612142565b811461216057600080fd5b50565b6000813590506121728161214c565b92915050565b6000806040838503121561218f5761218e6120da565b5b600061219d8582860161212d565b92505060206121ae85828601612163565b9150509250929050565b60008115159050919050565b6121cd816121b8565b82525050565b60006020820190506121e860008301846121c4565b92915050565b6121f781612142565b82525050565b600060208201905061221260008301846121ee565b92915050565b6000819050919050565b600061223d612238612233846120e4565b612218565b6120e4565b9050919050565b600061224f82612222565b9050919050565b600061226182612244565b9050919050565b61227181612256565b82525050565b600060208201905061228c6000830184612268565b92915050565b6000806000606084860312156122ab576122aa6120da565b5b60006122b98682870161212d565b93505060206122ca8682870161212d565b92505060406122db86828701612163565b9150509250925092565b600060ff82169050919050565b6122fb816122e5565b82525050565b600060208201905061231660008301846122f2565b92915050565b600060208284031215612332576123316120da565b5b60006123408482850161212d565b91505092915050565b600061235482612244565b9050919050565b61236481612349565b82525050565b600060208201905061237f600083018461235b565b92915050565b61238e81612104565b82525050565b60006020820190506123a96000830184612385565b92915050565b60006123ba82612104565b9050919050565b6123ca816123af565b81146123d557600080fd5b50565b6000813590506123e7816123c1565b92915050565b600060208284031215612403576124026120da565b5b6000612411848285016123d8565b91505092915050565b60008060408385031215612431576124306120da565b5b600061243f8582860161212d565b92505060206124508582860161212d565b9150509250929050565b612463816121b8565b811461246e57600080fd5b50565b6000813590506124808161245a565b92915050565b60006020828403121561249c5761249b6120da565b5b60006124aa84828501612471565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806124fa57607f821691505b60208210810361250d5761250c6124b3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612549602083612029565b915061255482612513565b602082019050919050565b600060208201905081810360008301526125788161253c565b9050919050565b7f4e6f20457468657220617661696c61626c6520746f20647261696e0000000000600082015250565b60006125b5601b83612029565b91506125c08261257f565b602082019050919050565b600060208201905081810360008301526125e4816125a8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061262582612142565b915061263083612142565b9250828201905080821115612648576126476125eb565b5b92915050565b7f4e65772072657761726420706f6f6c20616464726573732063616e6e6f74206260008201527f652061207a65726f206164647265737300000000000000000000000000000000602082015250565b60006126aa603083612029565b91506126b58261264e565b604082019050919050565b600060208201905081810360008301526126d98161269d565b9050919050565b7f4e65772072657761726420706f6f6c2061646472657373206d7573742062652060008201527f646966666572656e742066726f6d207468652063757272656e7420616464726560208201527f7373000000000000000000000000000000000000000000000000000000000000604082015250565b6000612762604283612029565b915061276d826126e0565b606082019050919050565b6000602082019050818103600083015261279181612755565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006127f4602583612029565b91506127ff82612798565b604082019050919050565b60006020820190508181036000830152612823816127e7565b9050919050565b600061283582612142565b915061284083612142565b925082820261284e81612142565b91508282048414831517612865576128646125eb565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006128a682612142565b91506128b183612142565b9250826128c1576128c061286c565b5b828204905092915050565b60006060820190506128e160008301866121ee565b6128ee60208301856121ee565b6128fb60408301846121ee565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061295f602683612029565b915061296a82612903565b604082019050919050565b6000602082019050818103600083015261298e81612952565b9050919050565b6000815190506129a48161214c565b92915050565b6000602082840312156129c0576129bf6120da565b5b60006129ce84828501612995565b91505092915050565b7f4e6f20746f6b656e7320617661696c61626c6520746f20647261696e00000000600082015250565b6000612a0d601c83612029565b9150612a18826129d7565b602082019050919050565b60006020820190508181036000830152612a3c81612a00565b9050919050565b6000604082019050612a586000830185612385565b612a6560208301846121ee565b9392505050565b600081519050612a7b8161245a565b92915050565b600060208284031215612a9757612a966120da565b5b6000612aa584828501612a6c565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612b0a602483612029565b9150612b1582612aae565b604082019050919050565b60006020820190508181036000830152612b3981612afd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b9c602283612029565b9150612ba782612b40565b604082019050919050565b60006020820190508181036000830152612bcb81612b8f565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000612c08601d83612029565b9150612c1382612bd2565b602082019050919050565b60006020820190508181036000830152612c3781612bfb565b9050919050565b600081905092915050565b50565b6000612c59600083612c3e565b9150612c6482612c49565b600082019050919050565b6000612c7a82612c4c565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000612ce0603a83612029565b9150612ceb82612c84565b604082019050919050565b60006020820190508181036000830152612d0f81612cd3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612d4c601d83612029565b9150612d5782612d16565b602082019050919050565b60006020820190508181036000830152612d7b81612d3f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612dde602583612029565b9150612de982612d82565b604082019050919050565b60006020820190508181036000830152612e0d81612dd1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612e70602383612029565b9150612e7b82612e14565b604082019050919050565b60006020820190508181036000830152612e9f81612e63565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612f02602683612029565b9150612f0d82612ea6565b604082019050919050565b60006020820190508181036000830152612f3181612ef5565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612f6e601f83612029565b9150612f7982612f38565b602082019050919050565b60006020820190508181036000830152612f9d81612f61565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061302761302261301d84613002565b612218565b612142565b9050919050565b6130378161300c565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61307281612104565b82525050565b60006130848383613069565b60208301905092915050565b6000602082019050919050565b60006130a88261303d565b6130b28185613048565b93506130bd83613059565b8060005b838110156130ee5781516130d58882613078565b97506130e083613090565b9250506001810190506130c1565b5085935050505092915050565b600060a08201905061311060008301886121ee565b61311d602083018761302e565b818103604083015261312f818661309d565b905061313e6060830185612385565b61314b60808301846121ee565b9695505050505050565b600080fd5b61316382612064565b810181811067ffffffffffffffff8211171561318257613181612fa4565b5b80604052505050565b60006131956120d0565b90506131a1828261315a565b919050565b600067ffffffffffffffff8211156131c1576131c0612fa4565b5b602082029050602081019050919050565b600080fd5b60006131ea6131e5846131a6565b61318b565b9050808382526020820190506020840283018581111561320d5761320c6131d2565b5b835b8181101561323657806132228882612995565b84526020840193505060208101905061320f565b5050509392505050565b600082601f83011261325557613254613155565b5b81516132658482602086016131d7565b91505092915050565b600060208284031215613284576132836120da565b5b600082015167ffffffffffffffff8111156132a2576132a16120df565b5b6132ae84828501613240565b9150509291505056fea26469706673582212207149e8b107e197e4749e826d5cb765d71c088f6514fc1ee312b78ab070a506b464736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000008355dbe8b0e275abad27eb843f3eaf3fc855e5250000000000000000000000006982508145454ce325ddbe47a25d4ec3d2311933000000000000000000000000a0eb6ffe53677ebeec3815c1736ba32f7ebe6fbb
-----Decoded View---------------
Arg [0] : _uniswapRouter (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _woolToken (address): 0x8355DBE8B0e275ABAd27eB843F3eaF3FC855e525
Arg [2] : _pepeToken (address): 0x6982508145454Ce325dDbE47a25d4ec3d2311933
Arg [3] : _rewardPoolAddress (address): 0xa0EB6fFE53677ebEEc3815C1736BA32f7EBE6Fbb
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 0000000000000000000000008355dbe8b0e275abad27eb843f3eaf3fc855e525
Arg [2] : 0000000000000000000000006982508145454ce325ddbe47a25d4ec3d2311933
Arg [3] : 000000000000000000000000a0eb6ffe53677ebeec3815c1736ba32f7ebe6fbb
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.