ERC-20
Overview
Max Total Supply
1,000,000,000,000 EGGMAN🥚
Holders
33
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
94,525,000 EGGMAN🥚Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DREGGMAN
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-19 */ /** sonic and tails thought dr. eggman had all his eggs in one basket… oh how wrong they were... Stealthing soon… https://ipfs.io/ipfs/QmdELxHtJdxcUVSR6BzqYoY9a7sSBbaP7b9nhk4JB3UXDL */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @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); } } /** * @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); } /** * @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); } } } } // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } 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; } /** sonic and tails thought dr. eggman had all his eggs in one basket… they were wrong… Stealthing soon… https://ipfs.io/ipfs/QmW99KXckXYF8vMhm4tbaz8sZXNV5WL2qTFPFF44Ji5oxB */ // Contract implementation contract DREGGMAN is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; // standard variables string private _name = "Dr. Eggman"; string private _symbol = unicode"EGGMAN🥚"; uint8 private _decimals = 18; // baseline token construction uint256 private constant MAX = ~uint256(0); uint256 private _totalTokenSupply = 1 * 10**12 * 10**_decimals; uint256 private _totalReflections = (MAX - (MAX % _totalTokenSupply)); mapping(address => uint256) private _reflectionsOwned; mapping(address => mapping(address => uint256)) private _allowances; // limitations uint256 private _maxPercentagePerAddress = 3; bool public tradingActive = false; // taxes and fees address payable public _treasuryAddress; uint256 private _currentBuyTax = 5; // modified depending on context of tx uint256 private _currentSellTax = 5; // modified depending on context of tx uint256 public _fixedBuyTax = 5; // unchanged save by owner transaction uint256 public _fixedSellTax = 5; // unchanged save by owner transaction // tax exempt addresses mapping(address => bool) private _isExcludedFromTaxes; // whale addresses mapping(address => bool) private _renderedUseless; // uniswap matters -- n.b. we are married to this particular uniswap v2 pair // contract will not survive as is and will require migration if a new pool // is stood up on sushiswap, uniswapv3, etc. address private uniDefault = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; IUniswapV2Router02 public immutable uniswapV2Router; bool private _inSwap = false; address public immutable uniswapV2Pair; // minimum tokens to initiate a swap uint256 private _minimumTokensToSwap = 10 * 10**3 * 10**_decimals; modifier lockTheSwap() { _inSwap = true; _; _inSwap = false; } constructor(address payable treasuryAddress, address router) { require( (treasuryAddress != address(0)), "Give me the treasury address" ); _treasuryAddress = treasuryAddress; _reflectionsOwned[_msgSender()] = _totalReflections; // connect to uniswap router if (router == address(0)) { router = uniDefault; } IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router); // setup uniswap pair address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Pair = _uniswapV2Pair; uniswapV2Router = _uniswapV2Router; // Exclude owner, treasury, and this contract from fee _isExcludedFromTaxes[owner()] = true; _isExcludedFromTaxes[address(this)] = true; _isExcludedFromTaxes[_treasuryAddress] = true; emit Transfer(address(0), _msgSender(), _totalTokenSupply); } // recieve ETH from uniswapV2Router when swaping receive() external payable { return; } // We expose this function to modify the max %age per wallet function setMaxPercentagePerWallet(uint256 amount) external onlyOwner { _maxPercentagePerAddress = amount; } // We expose this function to modify the address where the treasuryTax goes function setTreasuryAddress(address payable treasuryAddress) external { require(_msgSender() == _treasuryAddress, "You cannot call this"); require( (treasuryAddress != address(0)), "Give me the treasury address" ); address _previousTreasuryAddress = _treasuryAddress; _treasuryAddress = treasuryAddress; _isExcludedFromTaxes[treasuryAddress] = true; _isExcludedFromTaxes[_previousTreasuryAddress] = false; } // We allow the owner to set addresses that are unaffected by taxes function excludeFromTaxes(address account, bool excluded) external onlyOwner { _isExcludedFromTaxes[account] = excluded; } function eggdrop() external onlyOwner { tradingActive = true; } // We expose these functions to be able to modify the fees and tx amounts function setBuyTax(uint256 tax) external onlyOwner { require(tax <= 15, "ERC20: tax out of band"); _currentBuyTax = tax; _fixedBuyTax = tax; } function setSellTax(uint256 tax) external onlyOwner { require(tax <= 15, "ERC20: tax out of band"); _currentSellTax = tax; _fixedSellTax = tax; } // We expose these functions to be able to manual swap and send function manualSend() external onlyOwner { uint256 _contractETHBalance = address(this).balance; _sendETHToTreasury(_contractETHBalance); } function manualSwap() external onlyOwner { uint256 _contractBalance = balanceOf(address(this)); _swapTokensForEth(_contractBalance); } // public functions to do things function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } // used by smart contracts rather than users function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue) ); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { uint256 currentRate = _getRate(); return _totalReflections.div(currentRate); } function getETHBalance() public view returns (uint256 balance) { return address(this).balance; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function balanceOf(address account) public view override returns (uint256) { return tokensFromReflection(_reflectionsOwned[account]); } function reflectionFromToken( uint256 amountOfTokens, bool deductTaxForReflections ) public view returns (uint256) { require( amountOfTokens <= _totalTokenSupply, "Amount must be less than supply" ); if (!deductTaxForReflections) { (uint256 reflectionsToDebit, , , ) = _getValues(amountOfTokens); return reflectionsToDebit; } else { (, uint256 reflectionsToCredit, , ) = _getValues(amountOfTokens); return reflectionsToCredit; } } function tokensFromReflection(uint256 amountOfReflections) public view returns (uint256) { require( amountOfReflections <= _totalReflections, "ERC20: Amount too large" ); uint256 currentRate = _getRate(); return amountOfReflections.div(currentRate); } function _approve( address owner, address spender, uint256 amount ) private { require(owner != address(0), "ERC20: approve from 0 address"); require(spender != address(0), "ERC20: approve to 0 address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } // transfer function that sets up the context so that the // _tokenTransfer function can do the accounting work // to perform the transfer function function _transfer( address sender, address recipient, uint256 amountOfTokens ) private { if (!_isExcludedFromTaxes[sender]) { require(tradingActive, "Trading has not yet been enabled"); } require(sender != address(0), "ERC20: transfer from 0 address"); require(recipient != address(0), "ERC20: transfer to 0 address"); require(amountOfTokens > 0, "ERC20: Transfer more than zero"); if (recipient != address(_treasuryAddress)) { require(!(_renderedUseless[sender]), "you cannot trade"); } // if either side of transfer account belongs to _isExcludedFromTaxes // account then remove the fee bool takeFee = true; if (_isExcludedFromTaxes[sender] || _isExcludedFromTaxes[recipient]) { takeFee = false; } // check if we're buy side or sell side in a swap; if buy side apply // buy side taxes; if sell side then apply those taxes; duh bool buySide = false; if (sender == address(uniswapV2Pair)) { buySide = true; } // based on context set the correct fee structure if (!takeFee) { _setNoFees(); } else if (buySide) { _setBuySideTaxes(); } else { _setSellSideTaxes(); } // conduct the transfer _tokenTransfer(sender, recipient, amountOfTokens); // reset the fees for the next go around _restoreAllTaxesToDefaults(); } // primary transfer function that does all the work function _tokenTransfer( address sender, address recipient, uint256 amountOfTokens ) private { // when treasury transfers to the contract we automatically // remove these reflections from pool such that all token hodlers // benefit prorata and the treasury's reflections are removed. // // this allows for gas effective distribution of farming profits // to be returned cleanly to all token hodlers. // // we do not emit a Transfer event here because it is not strictly // speaking a transfer due to the lack of a recipient if (sender == _treasuryAddress && recipient == address(this)) { _manualReflect(amountOfTokens); return; } // the below allows for a consolidated handling of the necessary // math to support the possible transfer+tax combinations ( uint256 reflectionsToDebit, // sender uint256 reflectionsToCredit, // recipient uint256 reflectionsForBuyTax, // to all the hodlers uint256 reflectionsForSellTax // to treasury ) = _getValues(amountOfTokens); // implement max wallet percentage check -- this is ugly as fuck. // sorry y'all if ( recipient != uniswapV2Pair && !_isExcludedFromTaxes[sender] && !_isExcludedFromTaxes[recipient] && tokensFromReflection( _reflectionsOwned[recipient].add(reflectionsToCredit) ) >= _totalTokenSupply.mul(_maxPercentagePerAddress).div(100) ) { revert("over max percentage per wallet"); } // take taxes -- this is not a tax free zone ser if (sender == address(uniswapV2Pair)) { _takeTaxes(reflectionsForBuyTax); } else { _takeTaxes(reflectionsForSellTax); } // only do inline swaps on the sells. buys just accumulate into the contract. uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= _minimumTokensToSwap; if (!_inSwap && overMinTokenBalance && reflectionsForSellTax != 0) { _swapTokensForEth(contractTokenBalance); } // we shouldn't have any balance. but if we do send it to the treasury uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { _sendETHToTreasury(contractETHBalance); } // debit the correct reflections from the sender's account and credit // the correct number of reflections to the recipient's (accounting for // taxes) _reflectionsOwned[sender] = _reflectionsOwned[sender].sub( reflectionsToDebit ); _reflectionsOwned[recipient] = _reflectionsOwned[recipient].add( reflectionsToCredit ); // let the world know emit Transfer(sender, recipient, reflectionsToCredit.div(_getRate())); } // allows for treasury to cleanly distribute earnings back to // tokenhodlers pro rata function _manualReflect(uint256 amountOfTokens) private { uint256 currentRate = _getRate(); uint256 amountOfReflections = amountOfTokens.mul(currentRate); // we remove the reflections from the treasury address and then // burn them by removing them from the reflections pool thus // reducing the denominator and "distributing" the reflections // to all hodlers pro rata _reflectionsOwned[_treasuryAddress] = _reflectionsOwned[ _treasuryAddress ].sub(amountOfReflections); _totalReflections = _totalReflections.sub(amountOfReflections); emit Transfer(_msgSender(), address(this), amountOfTokens); } // reflections are added to the balance of this contract and are // subsequently swapped out with the uniswap pair within the same // transaction; the resulting eth is transfered to the treasury. // // the below function is simple accounting which will not survive // to the end of the transaction as long as the totaly amount of // reflections taken by the tax are more than the _minimumTokensToSwap // // in the case where they are not more than _minimumTokensToSwap // the tokens will not be swapped due to gas concerns and will simply // accrue within the contract until the contract's acyc balance is // more than _minimumTokensToSwap at which time the automatic swap // will occur sending eth to the treasury. function _takeTaxes(uint256 reflectionsForTaxes) private { _reflectionsOwned[address(this)] = _reflectionsOwned[address(this)].add( reflectionsForTaxes ); } // baking this in so deeply will mean if the uni v2 pool ever dries up // then the contract will effectively stop functioning and it will need // to be migrated function _swapTokensForEth(uint256 tokenAmount) private lockTheSwap { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(_treasuryAddress), block.timestamp ); } function _sendETHToTreasury(uint256 amount) private { _treasuryAddress.call{value: amount}(""); } // on buy side we collect tax and apply that to reflections; there is // no tax taken for the treasury on the buy side function _setBuySideTaxes() private { _currentBuyTax = _fixedBuyTax; _currentSellTax = 0; } // on sell side we collect tax and apply that to the treasury account; // there is no sell side tax taken for reflections function _setSellSideTaxes() private { _currentBuyTax = 0; _currentSellTax = _fixedSellTax; } // if a tax exempt address is transfering we turn off all the taxes function _setNoFees() private { _currentBuyTax = 0; _currentSellTax = 0; } // once a transfer occurs we reset the taxes. this is strictly speaking // not necessary due to the construction of the transfer function which // will opinionated-ly always set the tax structure before performing // the math (in the functions below). however, for reasons of super- // stition it remains function _restoreAllTaxesToDefaults() private { _currentBuyTax = _fixedBuyTax; _currentSellTax = _fixedSellTax; } // this function is the primary math function which calculates the // proper accounting to support a transfer based on the context of // that transfer (buy side; sell side; tax free). function _getValues(uint256 amountOfTokens) private view returns ( uint256, uint256, uint256, uint256 ) { // given tokens split those out into what goes where (reflections, // treasury, and recipient) ( uint256 tokensToTransfer, uint256 buySideTokensTax, uint256 sellSideTokensTax ) = _getTokenValues(amountOfTokens); // given the proper split of tokens, turn those into reflections // based on the current ratio of _tokenTokenSupply:_totalReflections uint256 currentRate = _getRate(); uint256 reflectionsTotal = amountOfTokens.mul(currentRate); uint256 reflectionsToTransfer = tokensToTransfer.mul(currentRate); uint256 reflectionsForBuyTax = buySideTokensTax.mul(currentRate); uint256 reflectionsForSellTax = sellSideTokensTax.mul(currentRate); return ( reflectionsTotal, reflectionsToTransfer, reflectionsForBuyTax, reflectionsForSellTax ); } // the golden and necssary function that allows us to calculate the // ratio of total token supply to total reflections on which the // entire token accounting infrastructure resides function _getRate() private view returns (uint256) { return _totalReflections.div(_totalTokenSupply); } // the below function calculates where tokens needs to go based on the // inputted amount of tokens. n.b., this function does not work in // reflections, those typically happen later in the processing when the // token distribution calculated by this function is turned to reflections // based on the golden ratio of total token supply to total reflections. function _getTokenValues(uint256 amountOfTokens) private view returns ( uint256, uint256, uint256 ) { uint256 buySideTokensTax = amountOfTokens.mul(_currentBuyTax).div(100); uint256 sellSideTokensTax = amountOfTokens.mul(_currentSellTax).div( 100 ); uint256 tokensToTransfer = amountOfTokens.sub(buySideTokensTax).sub( sellSideTokensTax ); return (tokensToTransfer, buySideTokensTax, sellSideTokensTax); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address payable","name":"treasuryAddress","type":"address"},{"internalType":"address","name":"router","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_fixedBuyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_fixedSellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_treasuryAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"eggdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","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":[{"internalType":"uint256","name":"amountOfTokens","type":"uint256"},{"internalType":"bool","name":"deductTaxForReflections","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tax","type":"uint256"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxPercentagePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tax","type":"uint256"}],"name":"setSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"treasuryAddress","type":"address"}],"name":"setTreasuryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOfReflections","type":"uint256"}],"name":"tokensFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
610100604052600a60c0819052692239171022b3b3b6b0b760b11b60e09081526200002e9160019190620004b0565b5060408051808201909152600a8082526922a3a3a6a0a7784fd2cd60b11b60209092019182526200006291600291620004b0565b506003805460ff191660129081179091556200008090600a6200066b565b620000919064e8d4a5100062000683565b6004819055620000a490600019620006a5565b620000b290600019620006c8565b6005908155600360088190556009805460ff19169055600a828155600b839055600c839055600d92909255601080546001600160a81b031916737a250d5630b4cf539739df2c5dacb4c659f2488d17905554620001169160ff91909116906200066b565b620001249061271062000683565b6011553480156200013457600080fd5b5060405162002427380380620024278339810160408190526200015791620006fb565b620001623362000460565b6001600160a01b038216620001bd5760405162461bcd60e51b815260206004820152601c60248201527f47697665206d6520746865207472656173757279206164647265737300000000604482015260640160405180910390fd5b60098054610100600160a81b0319166101006001600160a01b0385160217905560055460066000620001ec3390565b6001600160a01b03908116825260208201929092526040016000209190915581166200022057506010546001600160a01b03165b60008190506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000266573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028c91906200073a565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200030091906200073a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200034e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200037491906200073a565b6001600160a01b0380821660a052831660805290506001600e6000620003a26000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600e9093528183208054851660019081179091556009546101009004909116835291208054909216179055620004063390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6004546040516200044e91815260200190565b60405180910390a35050505062000797565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620004be906200075a565b90600052602060002090601f016020900481019282620004e257600085556200052d565b82601f10620004fd57805160ff19168380011785556200052d565b828001600101855582156200052d579182015b828111156200052d57825182559160200191906001019062000510565b506200053b9291506200053f565b5090565b5b808211156200053b576000815560010162000540565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620005ad57816000190482111562000591576200059162000556565b808516156200059f57918102915b93841c939080029062000571565b509250929050565b600082620005c65750600162000665565b81620005d55750600062000665565b8160018114620005ee5760028114620005f95762000619565b600191505062000665565b60ff8411156200060d576200060d62000556565b50506001821b62000665565b5060208310610133831016604e8410600b84101617156200063e575081810a62000665565b6200064a83836200056c565b806000190482111562000661576200066162000556565b0290505b92915050565b60006200067c60ff841683620005b5565b9392505050565b6000816000190483118215151615620006a057620006a062000556565b500290565b600082620006c357634e487b7160e01b600052601260045260246000fd5b500690565b600082821015620006dd57620006dd62000556565b500390565b6001600160a01b0381168114620006f857600080fd5b50565b600080604083850312156200070f57600080fd5b82516200071c81620006e2565b60208401519092506200072f81620006e2565b809150509250929050565b6000602082840312156200074d57600080fd5b81516200067c81620006e2565b600181811c908216806200076f57607f821691505b602082108114156200079157634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051611c40620007e76000396000818161037e015281816110640152818161149901526115b901526000818161025501528181611215015281816112ce015261130d0152611c406000f3fe6080604052600436106101dc5760003560e01c806370a0823111610102578063a457c2d711610095578063dc1052e211610064578063dc1052e21461055a578063dd62ed3e1461057a578063f2fde38b146105c0578063f4293890146105e057600080fd5b8063a457c2d7146104ea578063a9059cbb1461050a578063b27f4ca61461052a578063bbc0c7421461054057600080fd5b80638890c4c1116100d15780638890c4c1146104825780638cd09d50146104975780638da5cb5b146104b757806395d89b41146104d557600080fd5b806370a0823114610408578063715018a614610428578063829397651461043d5780638743da6d1461045d57600080fd5b8063395093511161017a57806351bc3c851161014957806351bc3c85146103a057806356d91e16146103b55780636605bfda146103d55780636e947298146103f557600080fd5b8063395093511461031657806343ad737c146103365780634549b0391461034c57806349bd5a5e1461036c57600080fd5b806318160ddd116101b657806318160ddd1461028f57806322603661146102b257806323b872dd146102d4578063313ce567146102f457600080fd5b806306fdde03146101e8578063095ea7b3146102135780631694505e1461024357600080fd5b366101e357005b600080fd5b3480156101f457600080fd5b506101fd6105f5565b60405161020a9190611870565b60405180910390f35b34801561021f57600080fd5b5061023361022e3660046118da565b610687565b604051901515815260200161020a565b34801561024f57600080fd5b506102777f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161020a565b34801561029b57600080fd5b506102a461069e565b60405190815260200161020a565b3480156102be57600080fd5b506102d26102cd36600461191b565b6106bf565b005b3480156102e057600080fd5b506102336102ef366004611950565b61071d565b34801561030057600080fd5b5060035460405160ff909116815260200161020a565b34801561032257600080fd5b506102336103313660046118da565b610786565b34801561034257600080fd5b506102a4600c5481565b34801561035857600080fd5b506102a4610367366004611991565b6107bc565b34801561037857600080fd5b506102777f000000000000000000000000000000000000000000000000000000000000000081565b3480156103ac57600080fd5b506102d2610845565b3480156103c157600080fd5b506102a46103d03660046119b4565b610888565b3480156103e157600080fd5b506102d26103f03660046119cd565b6108f9565b34801561040157600080fd5b50476102a4565b34801561041457600080fd5b506102a46104233660046119cd565b610a06565b34801561043457600080fd5b506102d2610a28565b34801561044957600080fd5b506102d26104583660046119b4565b610a5e565b34801561046957600080fd5b506009546102779061010090046001600160a01b031681565b34801561048e57600080fd5b506102d2610a8d565b3480156104a357600080fd5b506102d26104b23660046119b4565b610ac6565b3480156104c357600080fd5b506000546001600160a01b0316610277565b3480156104e157600080fd5b506101fd610b44565b3480156104f657600080fd5b506102336105053660046118da565b610b53565b34801561051657600080fd5b506102336105253660046118da565b610ba2565b34801561053657600080fd5b506102a4600d5481565b34801561054c57600080fd5b506009546102339060ff1681565b34801561056657600080fd5b506102d26105753660046119b4565b610baf565b34801561058657600080fd5b506102a46105953660046119ea565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b3480156105cc57600080fd5b506102d26105db3660046119cd565b610c2d565b3480156105ec57600080fd5b506102d2610cc5565b60606001805461060490611a23565b80601f016020809104026020016040519081016040528092919081815260200182805461063090611a23565b801561067d5780601f106106525761010080835404028352916020019161067d565b820191906000526020600020905b81548152906001019060200180831161066057829003601f168201915b5050505050905090565b6000610694338484610cf9565b5060015b92915050565b6000806106a9610e07565b6005549091506106b99082610e25565b91505090565b6000546001600160a01b031633146106f25760405162461bcd60e51b81526004016106e990611a5e565b60405180910390fd5b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b600061072a848484610e31565b61077c843361077785604051806060016040528060288152602001611bbe602891396001600160a01b038a1660009081526007602090815260408083203384529091529020549190611102565b610cf9565b5060019392505050565b3360008181526007602090815260408083206001600160a01b03871684529091528120549091610694918590610777908661112e565b60006004548311156108105760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016106e9565b8161082d5760006108208461113a565b5091935061069892505050565b60006108388461113a565b5090935061069892505050565b6000546001600160a01b0316331461086f5760405162461bcd60e51b81526004016106e990611a5e565b600061087a30610a06565b9050610885816111ab565b50565b60006005548211156108dc5760405162461bcd60e51b815260206004820152601760248201527f45524332303a20416d6f756e7420746f6f206c6172676500000000000000000060448201526064016106e9565b60006108e6610e07565b90506108f28382610e25565b9392505050565b60095461010090046001600160a01b0316336001600160a01b0316146109585760405162461bcd60e51b8152602060048201526014602482015273596f752063616e6e6f742063616c6c207468697360601b60448201526064016106e9565b6001600160a01b0381166109ae5760405162461bcd60e51b815260206004820152601c60248201527f47697665206d652074686520747265617375727920616464726573730000000060448201526064016106e9565b600980546001600160a01b03928316610100818102610100600160a81b03198416179093556000908152600e6020526040808220805460ff199081166001179091559390920493909316835290912080549091169055565b6001600160a01b03811660009081526006602052604081205461069890610888565b6000546001600160a01b03163314610a525760405162461bcd60e51b81526004016106e990611a5e565b610a5c6000611397565b565b6000546001600160a01b03163314610a885760405162461bcd60e51b81526004016106e990611a5e565b600855565b6000546001600160a01b03163314610ab75760405162461bcd60e51b81526004016106e990611a5e565b6009805460ff19166001179055565b6000546001600160a01b03163314610af05760405162461bcd60e51b81526004016106e990611a5e565b600f811115610b3a5760405162461bcd60e51b8152602060048201526016602482015275115490cc8c0e881d185e081bdd5d081bd98818985b9960521b60448201526064016106e9565b600b819055600d55565b60606002805461060490611a23565b6000610694338461077785604051806060016040528060258152602001611be6602591393360009081526007602090815260408083206001600160a01b038d1684529091529020549190611102565b6000610694338484610e31565b6000546001600160a01b03163314610bd95760405162461bcd60e51b81526004016106e990611a5e565b600f811115610c235760405162461bcd60e51b8152602060048201526016602482015275115490cc8c0e881d185e081bdd5d081bd98818985b9960521b60448201526064016106e9565b600a819055600c55565b6000546001600160a01b03163314610c575760405162461bcd60e51b81526004016106e990611a5e565b6001600160a01b038116610cbc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e9565b61088581611397565b6000546001600160a01b03163314610cef5760405162461bcd60e51b81526004016106e990611a5e565b47610885816113e7565b6001600160a01b038316610d4f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20617070726f76652066726f6d2030206164647265737300000060448201526064016106e9565b6001600160a01b038216610da55760405162461bcd60e51b815260206004820152601b60248201527f45524332303a20617070726f766520746f20302061646472657373000000000060448201526064016106e9565b6001600160a01b0383811660008181526007602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610e20600454600554610e2590919063ffffffff16565b905090565b60006108f28284611aa9565b6001600160a01b0383166000908152600e602052604090205460ff16610ea35760095460ff16610ea35760405162461bcd60e51b815260206004820181905260248201527f54726164696e6720686173206e6f7420796574206265656e20656e61626c656460448201526064016106e9565b6001600160a01b038316610ef95760405162461bcd60e51b815260206004820152601e60248201527f45524332303a207472616e736665722066726f6d20302061646472657373000060448201526064016106e9565b6001600160a01b038216610f4f5760405162461bcd60e51b815260206004820152601c60248201527f45524332303a207472616e7366657220746f203020616464726573730000000060448201526064016106e9565b60008111610f9f5760405162461bcd60e51b815260206004820152601e60248201527f45524332303a205472616e73666572206d6f7265207468616e207a65726f000060448201526064016106e9565b6009546001600160a01b038381166101009092041614611015576001600160a01b0383166000908152600f602052604090205460ff16156110155760405162461bcd60e51b815260206004820152601060248201526f796f752063616e6e6f7420747261646560801b60448201526064016106e9565b6001600160a01b0383166000908152600e602052604090205460019060ff168061105757506001600160a01b0383166000908152600e602052604090205460ff165b15611060575060005b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614156110a0575060015b816110b9576110b46000600a819055600b55565b6110df565b80156110cf576110b4600c54600a556000600b55565b6110df6000600a55600d54600b55565b6110ea858585611443565b6110fb600c54600a55600d54600b55565b5050505050565b600081848411156111265760405162461bcd60e51b81526004016106e99190611870565b505050900390565b60006108f28284611acb565b600080600080600080600061114e8861171e565b925092509250600061115e610e07565b9050600061116c8a83611782565b9050600061117a8684611782565b905060006111888685611782565b905060006111968686611782565b939d929c50909a509198509650505050505050565b6010805460ff60a01b1916600160a01b17905560408051600280825260608201835260009260208301908036833701905050905030816000815181106111f3576111f3611ae3565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611271573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112959190611af9565b816001815181106112a8576112a8611ae3565b60200260200101906001600160a01b031690816001600160a01b0316815250506112f3307f000000000000000000000000000000000000000000000000000000000000000084610cf9565b60095460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac947926113549287926000928892610100909204909116904290600401611b16565b600060405180830381600087803b15801561136e57600080fd5b505af1158015611382573d6000803e3d6000fd5b50506010805460ff60a01b1916905550505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009546040516101009091046001600160a01b0316908290600081818185875af1925050503d8060008114611438576040519150601f19603f3d011682016040523d82523d6000602084013e61143d565b606091505b50505050565b6009546001600160a01b038481166101009092041614801561146d57506001600160a01b03821630145b156114805761147b8161178e565b505050565b60008060008061148f8561113a565b93509350935093507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b0316141580156114f257506001600160a01b0387166000908152600e602052604090205460ff16155b801561151757506001600160a01b0386166000908152600e602052604090205460ff16155b801561156a5750611540606461153a60085460045461178290919063ffffffff16565b90610e25565b6001600160a01b038716600090815260066020526040902054611567906103d0908661112e565b10155b156115b75760405162461bcd60e51b815260206004820152601e60248201527f6f766572206d61782070657263656e74616765207065722077616c6c6574000060448201526064016106e9565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b031614156115ff576115fa82611837565b611608565b61160881611837565b600061161330610a06565b60115460105491925082101590600160a01b900460ff161580156116345750805b801561163f57508215155b1561164d5761164d826111ab565b47801561165d5761165d816113e7565b6001600160a01b038a166000908152600660205260409020546116809088611864565b6001600160a01b03808c1660009081526006602052604080822093909355908b16815220546116af908761112e565b6001600160a01b03808b166000818152600660205260409020929092558b167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6117016116fa610e07565b8a90610e25565b60405190815260200160405180910390a350505050505050505050565b60008060008061173e606461153a600a548861178290919063ffffffff16565b9050600061175c606461153a600b548961178290919063ffffffff16565b905060006117748261176e8986611864565b90611864565b979296509094509092505050565b60006108f28284611b87565b6000611798610e07565b905060006117a68383611782565b60095461010090046001600160a01b03166000908152600660205260409020549091506117d39082611864565b60095461010090046001600160a01b03166000908152600660205260409020556005546118009082611864565b600555604051838152309033907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610dfa565b30600090815260066020526040902054611851908261112e565b3060009081526006602052604090205550565b60006108f28284611ba6565b600060208083528351808285015260005b8181101561189d57858101830151858201604001528201611881565b818111156118af576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461088557600080fd5b600080604083850312156118ed57600080fd5b82356118f8816118c5565b946020939093013593505050565b8035801515811461191657600080fd5b919050565b6000806040838503121561192e57600080fd5b8235611939816118c5565b915061194760208401611906565b90509250929050565b60008060006060848603121561196557600080fd5b8335611970816118c5565b92506020840135611980816118c5565b929592945050506040919091013590565b600080604083850312156119a457600080fd5b8235915061194760208401611906565b6000602082840312156119c657600080fd5b5035919050565b6000602082840312156119df57600080fd5b81356108f2816118c5565b600080604083850312156119fd57600080fd5b8235611a08816118c5565b91506020830135611a18816118c5565b809150509250929050565b600181811c90821680611a3757607f821691505b60208210811415611a5857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082611ac657634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611ade57611ade611a93565b500190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611b0b57600080fd5b81516108f2816118c5565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611b665784516001600160a01b031683529383019391830191600101611b41565b50506001600160a01b03969096166060850152505050608001529392505050565b6000816000190483118215151615611ba157611ba1611a93565b500290565b600082821015611bb857611bb8611a93565b50039056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207f89c5f777da4c10b86ca00e6c4e302c431f95ae487a9ab1e6dbc9fc33b4127f64736f6c634300080b003300000000000000000000000074b8fef79fad2e1ba507de3ac1c5c50ee9c63e930000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Deployed Bytecode
0x6080604052600436106101dc5760003560e01c806370a0823111610102578063a457c2d711610095578063dc1052e211610064578063dc1052e21461055a578063dd62ed3e1461057a578063f2fde38b146105c0578063f4293890146105e057600080fd5b8063a457c2d7146104ea578063a9059cbb1461050a578063b27f4ca61461052a578063bbc0c7421461054057600080fd5b80638890c4c1116100d15780638890c4c1146104825780638cd09d50146104975780638da5cb5b146104b757806395d89b41146104d557600080fd5b806370a0823114610408578063715018a614610428578063829397651461043d5780638743da6d1461045d57600080fd5b8063395093511161017a57806351bc3c851161014957806351bc3c85146103a057806356d91e16146103b55780636605bfda146103d55780636e947298146103f557600080fd5b8063395093511461031657806343ad737c146103365780634549b0391461034c57806349bd5a5e1461036c57600080fd5b806318160ddd116101b657806318160ddd1461028f57806322603661146102b257806323b872dd146102d4578063313ce567146102f457600080fd5b806306fdde03146101e8578063095ea7b3146102135780631694505e1461024357600080fd5b366101e357005b600080fd5b3480156101f457600080fd5b506101fd6105f5565b60405161020a9190611870565b60405180910390f35b34801561021f57600080fd5b5061023361022e3660046118da565b610687565b604051901515815260200161020a565b34801561024f57600080fd5b506102777f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161020a565b34801561029b57600080fd5b506102a461069e565b60405190815260200161020a565b3480156102be57600080fd5b506102d26102cd36600461191b565b6106bf565b005b3480156102e057600080fd5b506102336102ef366004611950565b61071d565b34801561030057600080fd5b5060035460405160ff909116815260200161020a565b34801561032257600080fd5b506102336103313660046118da565b610786565b34801561034257600080fd5b506102a4600c5481565b34801561035857600080fd5b506102a4610367366004611991565b6107bc565b34801561037857600080fd5b506102777f00000000000000000000000013e5fd69ff352d15ff889b2be5f88402c7917a7e81565b3480156103ac57600080fd5b506102d2610845565b3480156103c157600080fd5b506102a46103d03660046119b4565b610888565b3480156103e157600080fd5b506102d26103f03660046119cd565b6108f9565b34801561040157600080fd5b50476102a4565b34801561041457600080fd5b506102a46104233660046119cd565b610a06565b34801561043457600080fd5b506102d2610a28565b34801561044957600080fd5b506102d26104583660046119b4565b610a5e565b34801561046957600080fd5b506009546102779061010090046001600160a01b031681565b34801561048e57600080fd5b506102d2610a8d565b3480156104a357600080fd5b506102d26104b23660046119b4565b610ac6565b3480156104c357600080fd5b506000546001600160a01b0316610277565b3480156104e157600080fd5b506101fd610b44565b3480156104f657600080fd5b506102336105053660046118da565b610b53565b34801561051657600080fd5b506102336105253660046118da565b610ba2565b34801561053657600080fd5b506102a4600d5481565b34801561054c57600080fd5b506009546102339060ff1681565b34801561056657600080fd5b506102d26105753660046119b4565b610baf565b34801561058657600080fd5b506102a46105953660046119ea565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b3480156105cc57600080fd5b506102d26105db3660046119cd565b610c2d565b3480156105ec57600080fd5b506102d2610cc5565b60606001805461060490611a23565b80601f016020809104026020016040519081016040528092919081815260200182805461063090611a23565b801561067d5780601f106106525761010080835404028352916020019161067d565b820191906000526020600020905b81548152906001019060200180831161066057829003601f168201915b5050505050905090565b6000610694338484610cf9565b5060015b92915050565b6000806106a9610e07565b6005549091506106b99082610e25565b91505090565b6000546001600160a01b031633146106f25760405162461bcd60e51b81526004016106e990611a5e565b60405180910390fd5b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b600061072a848484610e31565b61077c843361077785604051806060016040528060288152602001611bbe602891396001600160a01b038a1660009081526007602090815260408083203384529091529020549190611102565b610cf9565b5060019392505050565b3360008181526007602090815260408083206001600160a01b03871684529091528120549091610694918590610777908661112e565b60006004548311156108105760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016106e9565b8161082d5760006108208461113a565b5091935061069892505050565b60006108388461113a565b5090935061069892505050565b6000546001600160a01b0316331461086f5760405162461bcd60e51b81526004016106e990611a5e565b600061087a30610a06565b9050610885816111ab565b50565b60006005548211156108dc5760405162461bcd60e51b815260206004820152601760248201527f45524332303a20416d6f756e7420746f6f206c6172676500000000000000000060448201526064016106e9565b60006108e6610e07565b90506108f28382610e25565b9392505050565b60095461010090046001600160a01b0316336001600160a01b0316146109585760405162461bcd60e51b8152602060048201526014602482015273596f752063616e6e6f742063616c6c207468697360601b60448201526064016106e9565b6001600160a01b0381166109ae5760405162461bcd60e51b815260206004820152601c60248201527f47697665206d652074686520747265617375727920616464726573730000000060448201526064016106e9565b600980546001600160a01b03928316610100818102610100600160a81b03198416179093556000908152600e6020526040808220805460ff199081166001179091559390920493909316835290912080549091169055565b6001600160a01b03811660009081526006602052604081205461069890610888565b6000546001600160a01b03163314610a525760405162461bcd60e51b81526004016106e990611a5e565b610a5c6000611397565b565b6000546001600160a01b03163314610a885760405162461bcd60e51b81526004016106e990611a5e565b600855565b6000546001600160a01b03163314610ab75760405162461bcd60e51b81526004016106e990611a5e565b6009805460ff19166001179055565b6000546001600160a01b03163314610af05760405162461bcd60e51b81526004016106e990611a5e565b600f811115610b3a5760405162461bcd60e51b8152602060048201526016602482015275115490cc8c0e881d185e081bdd5d081bd98818985b9960521b60448201526064016106e9565b600b819055600d55565b60606002805461060490611a23565b6000610694338461077785604051806060016040528060258152602001611be6602591393360009081526007602090815260408083206001600160a01b038d1684529091529020549190611102565b6000610694338484610e31565b6000546001600160a01b03163314610bd95760405162461bcd60e51b81526004016106e990611a5e565b600f811115610c235760405162461bcd60e51b8152602060048201526016602482015275115490cc8c0e881d185e081bdd5d081bd98818985b9960521b60448201526064016106e9565b600a819055600c55565b6000546001600160a01b03163314610c575760405162461bcd60e51b81526004016106e990611a5e565b6001600160a01b038116610cbc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e9565b61088581611397565b6000546001600160a01b03163314610cef5760405162461bcd60e51b81526004016106e990611a5e565b47610885816113e7565b6001600160a01b038316610d4f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20617070726f76652066726f6d2030206164647265737300000060448201526064016106e9565b6001600160a01b038216610da55760405162461bcd60e51b815260206004820152601b60248201527f45524332303a20617070726f766520746f20302061646472657373000000000060448201526064016106e9565b6001600160a01b0383811660008181526007602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610e20600454600554610e2590919063ffffffff16565b905090565b60006108f28284611aa9565b6001600160a01b0383166000908152600e602052604090205460ff16610ea35760095460ff16610ea35760405162461bcd60e51b815260206004820181905260248201527f54726164696e6720686173206e6f7420796574206265656e20656e61626c656460448201526064016106e9565b6001600160a01b038316610ef95760405162461bcd60e51b815260206004820152601e60248201527f45524332303a207472616e736665722066726f6d20302061646472657373000060448201526064016106e9565b6001600160a01b038216610f4f5760405162461bcd60e51b815260206004820152601c60248201527f45524332303a207472616e7366657220746f203020616464726573730000000060448201526064016106e9565b60008111610f9f5760405162461bcd60e51b815260206004820152601e60248201527f45524332303a205472616e73666572206d6f7265207468616e207a65726f000060448201526064016106e9565b6009546001600160a01b038381166101009092041614611015576001600160a01b0383166000908152600f602052604090205460ff16156110155760405162461bcd60e51b815260206004820152601060248201526f796f752063616e6e6f7420747261646560801b60448201526064016106e9565b6001600160a01b0383166000908152600e602052604090205460019060ff168061105757506001600160a01b0383166000908152600e602052604090205460ff165b15611060575060005b60007f00000000000000000000000013e5fd69ff352d15ff889b2be5f88402c7917a7e6001600160a01b0316856001600160a01b031614156110a0575060015b816110b9576110b46000600a819055600b55565b6110df565b80156110cf576110b4600c54600a556000600b55565b6110df6000600a55600d54600b55565b6110ea858585611443565b6110fb600c54600a55600d54600b55565b5050505050565b600081848411156111265760405162461bcd60e51b81526004016106e99190611870565b505050900390565b60006108f28284611acb565b600080600080600080600061114e8861171e565b925092509250600061115e610e07565b9050600061116c8a83611782565b9050600061117a8684611782565b905060006111888685611782565b905060006111968686611782565b939d929c50909a509198509650505050505050565b6010805460ff60a01b1916600160a01b17905560408051600280825260608201835260009260208301908036833701905050905030816000815181106111f3576111f3611ae3565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611271573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112959190611af9565b816001815181106112a8576112a8611ae3565b60200260200101906001600160a01b031690816001600160a01b0316815250506112f3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610cf9565b60095460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac947926113549287926000928892610100909204909116904290600401611b16565b600060405180830381600087803b15801561136e57600080fd5b505af1158015611382573d6000803e3d6000fd5b50506010805460ff60a01b1916905550505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6009546040516101009091046001600160a01b0316908290600081818185875af1925050503d8060008114611438576040519150601f19603f3d011682016040523d82523d6000602084013e61143d565b606091505b50505050565b6009546001600160a01b038481166101009092041614801561146d57506001600160a01b03821630145b156114805761147b8161178e565b505050565b60008060008061148f8561113a565b93509350935093507f00000000000000000000000013e5fd69ff352d15ff889b2be5f88402c7917a7e6001600160a01b0316866001600160a01b0316141580156114f257506001600160a01b0387166000908152600e602052604090205460ff16155b801561151757506001600160a01b0386166000908152600e602052604090205460ff16155b801561156a5750611540606461153a60085460045461178290919063ffffffff16565b90610e25565b6001600160a01b038716600090815260066020526040902054611567906103d0908661112e565b10155b156115b75760405162461bcd60e51b815260206004820152601e60248201527f6f766572206d61782070657263656e74616765207065722077616c6c6574000060448201526064016106e9565b7f00000000000000000000000013e5fd69ff352d15ff889b2be5f88402c7917a7e6001600160a01b0316876001600160a01b031614156115ff576115fa82611837565b611608565b61160881611837565b600061161330610a06565b60115460105491925082101590600160a01b900460ff161580156116345750805b801561163f57508215155b1561164d5761164d826111ab565b47801561165d5761165d816113e7565b6001600160a01b038a166000908152600660205260409020546116809088611864565b6001600160a01b03808c1660009081526006602052604080822093909355908b16815220546116af908761112e565b6001600160a01b03808b166000818152600660205260409020929092558b167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6117016116fa610e07565b8a90610e25565b60405190815260200160405180910390a350505050505050505050565b60008060008061173e606461153a600a548861178290919063ffffffff16565b9050600061175c606461153a600b548961178290919063ffffffff16565b905060006117748261176e8986611864565b90611864565b979296509094509092505050565b60006108f28284611b87565b6000611798610e07565b905060006117a68383611782565b60095461010090046001600160a01b03166000908152600660205260409020549091506117d39082611864565b60095461010090046001600160a01b03166000908152600660205260409020556005546118009082611864565b600555604051838152309033907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610dfa565b30600090815260066020526040902054611851908261112e565b3060009081526006602052604090205550565b60006108f28284611ba6565b600060208083528351808285015260005b8181101561189d57858101830151858201604001528201611881565b818111156118af576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461088557600080fd5b600080604083850312156118ed57600080fd5b82356118f8816118c5565b946020939093013593505050565b8035801515811461191657600080fd5b919050565b6000806040838503121561192e57600080fd5b8235611939816118c5565b915061194760208401611906565b90509250929050565b60008060006060848603121561196557600080fd5b8335611970816118c5565b92506020840135611980816118c5565b929592945050506040919091013590565b600080604083850312156119a457600080fd5b8235915061194760208401611906565b6000602082840312156119c657600080fd5b5035919050565b6000602082840312156119df57600080fd5b81356108f2816118c5565b600080604083850312156119fd57600080fd5b8235611a08816118c5565b91506020830135611a18816118c5565b809150509250929050565b600181811c90821680611a3757607f821691505b60208210811415611a5857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082611ac657634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611ade57611ade611a93565b500190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611b0b57600080fd5b81516108f2816118c5565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611b665784516001600160a01b031683529383019391830191600101611b41565b50506001600160a01b03969096166060850152505050608001529392505050565b6000816000190483118215151615611ba157611ba1611a93565b500290565b600082821015611bb857611bb8611a93565b50039056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207f89c5f777da4c10b86ca00e6c4e302c431f95ae487a9ab1e6dbc9fc33b4127f64736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000074b8fef79fad2e1ba507de3ac1c5c50ee9c63e930000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
-----Decoded View---------------
Arg [0] : treasuryAddress (address): 0x74b8feF79faD2e1BA507de3aC1C5C50ee9C63E93
Arg [1] : router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000074b8fef79fad2e1ba507de3ac1c5c50ee9c63e93
Arg [1] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Deployed Bytecode Sourcemap
29631:20482:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36426:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35005:193;;;;;;;;;;-1:-1:-1;35005:193:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;35005:193:0;1072:187:1;31244:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1455:32:1;;;1437:51;;1425:2;1410:18;31244:51:0;1264:230:1;36703:165:0;;;;;;;;;;;;;:::i;:::-;;;1645:25:1;;;1633:2;1618:18;36703:165:0;1499:177:1;33634:159:0;;;;;;;;;;-1:-1:-1;33634:159:0;;;;;:::i;:::-;;:::i;:::-;;35256:446;;;;;;;;;;-1:-1:-1;35256:446:0;;;;;:::i;:::-;;:::i;36612:83::-;;;;;;;;;;-1:-1:-1;36678:9:0;;36612:83;;36678:9;;;;2769:36:1;;2757:2;2742:18;36612:83:0;2627:184:1;35710:300:0;;;;;;;;;;-1:-1:-1;35710:300:0;;;;;:::i;:::-;;:::i;30617:31::-;;;;;;;;;;;;;;;;37343:581;;;;;;;;;;-1:-1:-1;37343:581:0;;;;;:::i;:::-;;:::i;31337:38::-;;;;;;;;;;;;;;;34595:157;;;;;;;;;;;;;:::i;37932:350::-;;;;;;;;;;-1:-1:-1;37932:350:0;;;;;:::i;:::-;;:::i;33052:501::-;;;;;;;;;;-1:-1:-1;33052:501:0;;;;;:::i;:::-;;:::i;36876:110::-;;;;;;;;;;-1:-1:-1;36957:21:0;36876:110;;37186:149;;;;;;;;;;-1:-1:-1;37186:149:0;;;;;:::i;:::-;;:::i;2599:103::-;;;;;;;;;;;;;:::i;32841:122::-;;;;;;;;;;-1:-1:-1;32841:122:0;;;;;:::i;:::-;;:::i;30410:39::-;;;;;;;;;;-1:-1:-1;30410:39:0;;;;;;;-1:-1:-1;;;;;30410:39:0;;;33803:100;;;;;;;;;;;;;:::i;34172:177::-;;;;;;;;;;-1:-1:-1;34172:177:0;;;;;:::i;:::-;;:::i;1948:87::-;;;;;;;;;;-1:-1:-1;1994:7:0;2021:6;-1:-1:-1;;;;;2021:6:0;1948:87;;36517;;;;;;;;;;;;;:::i;36018:400::-;;;;;;;;;;-1:-1:-1;36018:400:0;;;;;:::i;:::-;;:::i;34798:199::-;;;;;;;;;;-1:-1:-1;34798:199:0;;;;;:::i;:::-;;:::i;30694:32::-;;;;;;;;;;;;;;;;30345:33;;;;;;;;;;-1:-1:-1;30345:33:0;;;;;;;;33990:174;;;;;;;;;;-1:-1:-1;33990:174:0;;;;;:::i;:::-;;:::i;36994:184::-;;;;;;;;;;-1:-1:-1;36994:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;37143:18:0;;;37111:7;37143:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;36994:184;2857:201;;;;;;;;;;-1:-1:-1;2857:201:0;;;;;:::i;:::-;;:::i;34426:161::-;;;;;;;;;;;;;:::i;36426:83::-;36463:13;36496:5;36489:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36426:83;:::o;35005:193::-;35107:4;35129:39;889:10;35152:7;35161:6;35129:8;:39::i;:::-;-1:-1:-1;35186:4:0;35005:193;;;;;:::o;36703:165::-;36756:7;36776:19;36798:10;:8;:10::i;:::-;36826:17;;36776:32;;-1:-1:-1;36826:34:0;;36776:32;36826:21;:34::i;:::-;36819:41;;;36703:165;:::o;33634:159::-;1994:7;2021:6;-1:-1:-1;;;;;2021:6:0;889:10;2168:23;2160:68;;;;-1:-1:-1;;;2160:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;33745:29:0;;;::::1;;::::0;;;:20:::1;:29;::::0;;;;:40;;-1:-1:-1;;33745:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;33634:159::o;35256:446::-;35388:4;35405:36;35415:6;35423:9;35434:6;35405:9;:36::i;:::-;35452:220;35475:6;889:10;35523:138;35579:6;35523:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35523:19:0;;;;;;:11;:19;;;;;;;;889:10;35523:33;;;;;;;;;;:37;:138::i;:::-;35452:8;:220::i;:::-;-1:-1:-1;35690:4:0;35256:446;;;;;:::o;35710:300::-;889:10;35825:4;35919:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;35919:34:0;;;;;;;;;;35825:4;;35847:133;;35897:7;;35919:50;;35958:10;35919:38;:50::i;37343:581::-;37472:7;37532:17;;37514:14;:35;;37492:116;;;;-1:-1:-1;;;37492:116:0;;5539:2:1;37492:116:0;;;5521:21:1;5578:2;5558:18;;;5551:30;5617:33;5597:18;;;5590:61;5668:18;;37492:116:0;5337:355:1;37492:116:0;37624:23;37619:298;;37665:26;37701;37712:14;37701:10;:26::i;:::-;-1:-1:-1;37664:63:0;;-1:-1:-1;37742:25:0;;-1:-1:-1;;;37742:25:0;37619:298;37803:27;37838:26;37849:14;37838:10;:26::i;:::-;-1:-1:-1;37800:64:0;;-1:-1:-1;37879:26:0;;-1:-1:-1;;;37879:26:0;34595:157;1994:7;2021:6;-1:-1:-1;;;;;2021:6:0;889:10;2168:23;2160:68;;;;-1:-1:-1;;;2160:68:0;;;;;;;:::i;:::-;34647:24:::1;34674;34692:4;34674:9;:24::i;:::-;34647:51;;34709:35;34727:16;34709:17;:35::i;:::-;34636:116;34595:157::o:0;37932:350::-;38039:7;38109:17;;38086:19;:40;;38064:113;;;;-1:-1:-1;;;38064:113:0;;5899:2:1;38064:113:0;;;5881:21:1;5938:2;5918:18;;;5911:30;5977:25;5957:18;;;5950:53;6020:18;;38064:113:0;5697:347:1;38064:113:0;38188:19;38210:10;:8;:10::i;:::-;38188:32;-1:-1:-1;38238:36:0;:19;38188:32;38238:23;:36::i;:::-;38231:43;37932:350;-1:-1:-1;;;37932:350:0:o;33052:501::-;33157:16;;;;;-1:-1:-1;;;;;33157:16:0;889:10;-1:-1:-1;;;;;33141:32:0;;33133:65;;;;-1:-1:-1;;;33133:65:0;;6251:2:1;33133:65:0;;;6233:21:1;6290:2;6270:18;;;6263:30;-1:-1:-1;;;6309:18:1;;;6302:50;6369:18;;33133:65:0;6049:344:1;33133:65:0;-1:-1:-1;;;;;33232:29:0;;33209:109;;;;-1:-1:-1;;;33209:109:0;;6600:2:1;33209:109:0;;;6582:21:1;6639:2;6619:18;;;6612:30;6678;6658:18;;;6651:58;6726:18;;33209:109:0;6398:352:1;33209:109:0;33364:16;;;-1:-1:-1;;;;;33391:34:0;;;33364:16;33391:34;;;-1:-1:-1;;;;;;33391:34:0;;;;;;33329:32;33436:37;;;:20;:37;;;;;;:44;;-1:-1:-1;;33436:44:0;;;33364:16;33436:44;;;;33364:16;;;;;;;;33491:46;;;;;:54;;;;;;;33052:501::o;37186:149::-;-1:-1:-1;;;;;37300:26:0;;37252:7;37300:26;;;:17;:26;;;;;;37279:48;;:20;:48::i;2599:103::-;1994:7;2021:6;-1:-1:-1;;;;;2021:6:0;889:10;2168:23;2160:68;;;;-1:-1:-1;;;2160:68:0;;;;;;;:::i;:::-;2664:30:::1;2691:1;2664:18;:30::i;:::-;2599:103::o:0;32841:122::-;1994:7;2021:6;-1:-1:-1;;;;;2021:6:0;889:10;2168:23;2160:68;;;;-1:-1:-1;;;2160:68:0;;;;;;;:::i;:::-;32922:24:::1;:33:::0;32841:122::o;33803:100::-;1994:7;2021:6;-1:-1:-1;;;;;2021:6:0;889:10;2168:23;2160:68;;;;-1:-1:-1;;;2160:68:0;;;;;;;:::i;:::-;33875:13:::1;:20:::0;;-1:-1:-1;;33875:20:0::1;33891:4;33875:20;::::0;;33803:100::o;34172:177::-;1994:7;2021:6;-1:-1:-1;;;;;2021:6:0;889:10;2168:23;2160:68;;;;-1:-1:-1;;;2160:68:0;;;;;;;:::i;:::-;34250:2:::1;34243:3;:9;;34235:44;;;::::0;-1:-1:-1;;;34235:44:0;;6957:2:1;34235:44:0::1;::::0;::::1;6939:21:1::0;6996:2;6976:18;;;6969:30;-1:-1:-1;;;7015:18:1;;;7008:52;7077:18;;34235:44:0::1;6755:346:1::0;34235:44:0::1;34290:15;:21:::0;;;34322:13:::1;:19:::0;34172:177::o;36517:87::-;36556:13;36589:7;36582:14;;;;;:::i;36018:400::-;36138:4;36160:228;889:10;36210:7;36232:145;36289:15;36232:145;;;;;;;;;;;;;;;;;889:10;36232:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;36232:34:0;;;;;;;;;;;;:38;:145::i;34798:199::-;34903:4;34925:42;889:10;34949:9;34960:6;34925:9;:42::i;33990:174::-;1994:7;2021:6;-1:-1:-1;;;;;2021:6:0;889:10;2168:23;2160:68;;;;-1:-1:-1;;;2160:68:0;;;;;;;:::i;:::-;34067:2:::1;34060:3;:9;;34052:44;;;::::0;-1:-1:-1;;;34052:44:0;;6957:2:1;34052:44:0::1;::::0;::::1;6939:21:1::0;6996:2;6976:18;;;6969:30;-1:-1:-1;;;7015:18:1;;;7008:52;7077:18;;34052:44:0::1;6755:346:1::0;34052:44:0::1;34107:14;:20:::0;;;34138:12:::1;:18:::0;33990:174::o;2857:201::-;1994:7;2021:6;-1:-1:-1;;;;;2021:6:0;889:10;2168:23;2160:68;;;;-1:-1:-1;;;2160:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2946:22:0;::::1;2938:73;;;::::0;-1:-1:-1;;;2938:73:0;;7308:2:1;2938:73:0::1;::::0;::::1;7290:21:1::0;7347:2;7327:18;;;7320:30;7386:34;7366:18;;;7359:62;-1:-1:-1;;;7437:18:1;;;7430:36;7483:19;;2938:73:0::1;7106:402:1::0;2938:73:0::1;3022:28;3041:8;3022:18;:28::i;34426:161::-:0;1994:7;2021:6;-1:-1:-1;;;;;2021:6:0;889:10;2168:23;2160:68;;;;-1:-1:-1;;;2160:68:0;;;;;;;:::i;:::-;34508:21:::1;34540:39;34508:21:::0;34540:18:::1;:39::i;38290:355::-:0;-1:-1:-1;;;;;38417:19:0;;38409:61;;;;-1:-1:-1;;;38409:61:0;;7715:2:1;38409:61:0;;;7697:21:1;7754:2;7734:18;;;7727:30;7793:31;7773:18;;;7766:59;7842:18;;38409:61:0;7513:353:1;38409:61:0;-1:-1:-1;;;;;38489:21:0;;38481:61;;;;-1:-1:-1;;;38481:61:0;;8073:2:1;38481:61:0;;;8055:21:1;8112:2;8092:18;;;8085:30;8151:29;8131:18;;;8124:57;8198:18;;38481:61:0;7871:351:1;38481:61:0;-1:-1:-1;;;;;38553:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;38605:32;;1645:25:1;;;38605:32:0;;1618:18:1;38605:32:0;;;;;;;;38290:355;;;:::o;49032:117::-;49074:7;49101:40;49123:17;;49101;;:21;;:40;;;;:::i;:::-;49094:47;;49032:117;:::o;18327:98::-;18385:7;18412:5;18416:1;18412;:5;:::i;38816:1585::-;-1:-1:-1;;;;;38952:28:0;;;;;;:20;:28;;;;;;;;38947:120;;39005:13;;;;38997:58;;;;-1:-1:-1;;;38997:58:0;;8783:2:1;38997:58:0;;;8765:21:1;;;8802:18;;;8795:30;8861:34;8841:18;;;8834:62;8913:18;;38997:58:0;8581:356:1;38997:58:0;-1:-1:-1;;;;;39085:20:0;;39077:63;;;;-1:-1:-1;;;39077:63:0;;9144:2:1;39077:63:0;;;9126:21:1;9183:2;9163:18;;;9156:30;9222:32;9202:18;;;9195:60;9272:18;;39077:63:0;8942:354:1;39077:63:0;-1:-1:-1;;;;;39159:23:0;;39151:64;;;;-1:-1:-1;;;39151:64:0;;9503:2:1;39151:64:0;;;9485:21:1;9542:2;9522:18;;;9515:30;9581;9561:18;;;9554:58;9629:18;;39151:64:0;9301:352:1;39151:64:0;39251:1;39234:14;:18;39226:61;;;;-1:-1:-1;;;39226:61:0;;9860:2:1;39226:61:0;;;9842:21:1;9899:2;9879:18;;;9872:30;9938:32;9918:18;;;9911:60;9988:18;;39226:61:0;9658:354:1;39226:61:0;39325:16;;-1:-1:-1;;;;;39304:38:0;;;39325:16;;;;;39304:38;39300:127;;-1:-1:-1;;;;;39369:24:0;;;;;;:16;:24;;;;;;;;39367:27;39359:56;;;;-1:-1:-1;;;39359:56:0;;10219:2:1;39359:56:0;;;10201:21:1;10258:2;10238:18;;;10231:30;-1:-1:-1;;;10277:18:1;;;10270:46;10333:18;;39359:56:0;10017:340:1;39359:56:0;-1:-1:-1;;;;;39592:28:0;;39558:12;39592:28;;;:20;:28;;;;;;39573:4;;39592:28;;;:63;;-1:-1:-1;;;;;;39624:31:0;;;;;;:20;:31;;;;;;;;39592:63;39588:111;;;-1:-1:-1;39682:5:0;39588:111;39858:12;39911:13;-1:-1:-1;;;;;39893:32:0;:6;-1:-1:-1;;;;;39893:32:0;;39889:79;;;-1:-1:-1;39952:4:0;39889:79;40044:7;40039:169;;40068:12;46951:1;46934:14;:18;;;46963:15;:19;46893:97;40068:12;40039:169;;;40102:7;40098:110;;;40126:18;46506:12;;46489:14;:29;-1:-1:-1;46529:15:0;:19;46442:114;40098:110;40177:19;46761:1;46744:14;:18;46791:13;;46773:15;:31;46696:116;40177:19;40253:49;40268:6;40276:9;40287:14;40253;:49::i;:::-;40365:28;47402:12;;47385:14;:29;47443:13;;47425:15;:31;47328:136;40365:28;38936:1465;;38816:1585;;;:::o;19469:240::-;19589:7;19650:12;19642:6;;;;19634:29;;;;-1:-1:-1;;;19634:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;19685:5:0;;;19469:240::o;17190:98::-;17248:7;17275:5;17279:1;17275;:5;:::i;47671:1155::-;47778:7;47800;47822;47844;48007:24;48046;48085:25;48124:31;48140:14;48124:15;:31::i;:::-;47992:163;;;;;;48320:19;48342:10;:8;:10::i;:::-;48320:32;-1:-1:-1;48363:24:0;48390:31;:14;48320:32;48390:18;:31::i;:::-;48363:58;-1:-1:-1;48432:29:0;48464:33;:16;48485:11;48464:20;:33::i;:::-;48432:65;-1:-1:-1;48508:28:0;48539:33;:16;48560:11;48539:20;:33::i;:::-;48508:64;-1:-1:-1;48583:29:0;48615:34;:17;48637:11;48615:21;:34::i;:::-;48684:16;;48715:21;;-1:-1:-1;48751:20:0;;-1:-1:-1;48684:16:0;;-1:-1:-1;47671:1155:0;-1:-1:-1;;;;;;;47671:1155:0:o;45572:614::-;31534:7;:14;;-1:-1:-1;;;;31534:14:0;-1:-1:-1;;;31534:14:0;;;45735:16:::1;::::0;;45749:1:::1;45735:16:::0;;;;;::::1;::::0;;-1:-1:-1;;45735:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;45735:16:0::1;45711:40;;45780:4;45762;45767:1;45762:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;45762:23:0::1;;;-1:-1:-1::0;;;;;45762:23:0::1;;;::::0;::::1;45806:15;-1:-1:-1::0;;;;;45806:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45796:4;45801:1;45796:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;45796:32:0::1;;;-1:-1:-1::0;;;;;45796:32:0::1;;;::::0;::::1;45841:62;45858:4;45873:15;45891:11;45841:8;:62::i;:::-;46120:16;::::0;45942:236:::1;::::0;-1:-1:-1;;;45942:236:0;;-1:-1:-1;;;;;45942:15:0::1;:66:::0;::::1;::::0;::::1;::::0;:236:::1;::::0;46023:11;;46049:1:::1;::::0;46093:4;;46120:16:::1;::::0;;::::1;::::0;;::::1;::::0;46152:15:::1;::::0;45942:236:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;31571:7:0;:15;;-1:-1:-1;;;;31571:15:0;;;-1:-1:-1;;;;45572:614:0:o;3218:191::-;3292:16;3311:6;;-1:-1:-1;;;;;3328:17:0;;;-1:-1:-1;;;;;;3328:17:0;;;;;;3361:40;;3311:6;;;;;;;3361:40;;3292:16;3361:40;3281:128;3218:191;:::o;46194:111::-;46257:16;;:40;;:16;;;;-1:-1:-1;;;;;46257:16:0;;46286:6;;46257:40;;;;46286:6;46257:16;:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46194:111;:::o;40466:3127::-;41126:16;;-1:-1:-1;;;;;41116:26:0;;;41126:16;;;;;41116:26;:56;;;;-1:-1:-1;;;;;;41146:26:0;;41167:4;41146:26;41116:56;41112:140;;;41189:30;41204:14;41189;:30::i;:::-;40466:3127;;;:::o;41112:140::-;41420:26;41471:27;41526:28;41591:29;41649:26;41660:14;41649:10;:26::i;:::-;41405:270;;;;;;;;41818:13;-1:-1:-1;;;;;41805:26:0;:9;-1:-1:-1;;;;;41805:26:0;;;:72;;;;-1:-1:-1;;;;;;41849:28:0;;;;;;:20;:28;;;;;;;;41848:29;41805:72;:121;;;;-1:-1:-1;;;;;;41895:31:0;;;;;;:20;:31;;;;;;;;41894:32;41805:121;:318;;;;;42067:56;42119:3;42067:47;42089:24;;42067:17;;:21;;:47;;;;:::i;:::-;:51;;:56::i;:::-;-1:-1:-1;;;;;41982:28:0;;;;;;:17;:28;;;;;;41943:107;;41982:53;;42015:19;41982:32;:53::i;41943:107::-;:180;;41805:318;41787:415;;;42150:40;;-1:-1:-1;;;42150:40:0;;12412:2:1;42150:40:0;;;12394:21:1;12451:2;12431:18;;;12424:30;12490:32;12470:18;;;12463:60;12540:18;;42150:40:0;12210:354:1;41787:415:0;42294:13;-1:-1:-1;;;;;42276:32:0;:6;-1:-1:-1;;;;;42276:32:0;;42272:163;;;42325:32;42336:20;42325:10;:32::i;:::-;42272:163;;;42390:33;42401:21;42390:10;:33::i;:::-;42534:28;42565:24;42583:4;42565:9;:24::i;:::-;42651:20;;42687:7;;42534:55;;-1:-1:-1;42627:44:0;;;;-1:-1:-1;;;42687:7:0;;;;42686:8;:31;;;;;42698:19;42686:31;:61;;;;-1:-1:-1;42721:26:0;;;42686:61;42682:133;;;42764:39;42782:20;42764:17;:39::i;:::-;42936:21;42972:22;;42968:93;;43011:38;43030:18;43011;:38::i;:::-;-1:-1:-1;;;;;43280:25:0;;;;;;:17;:25;;;;;;:73;;43324:18;43280:29;:73::i;:::-;-1:-1:-1;;;;;43252:25:0;;;;;;;:17;:25;;;;;;:101;;;;43395:28;;;;;;;:77;;43442:19;43395:32;:77::i;:::-;-1:-1:-1;;;;;43364:28:0;;;;;;;:17;:28;;;;;:108;;;;43521:64;;;43549:35;43573:10;:8;:10::i;:::-;43549:19;;:23;:35::i;:::-;43521:64;;1645:25:1;;;1633:2;1618:18;43521:64:0;;;;;;;40591:3002;;;;;;;40466:3127;;;:::o;49540:570::-;49652:7;49674;49696;49731:24;49758:43;49797:3;49758:34;49777:14;;49758;:18;;:34;;;;:::i;:43::-;49731:70;;49812:25;49840:68;49894:3;49840:35;49859:15;;49840:14;:18;;:35;;;;:::i;:68::-;49812:96;-1:-1:-1;49919:24:0;49946:83;49812:96;49946:36;:14;49965:16;49946:18;:36::i;:::-;:40;;:83::i;:::-;49919:110;50066:16;;-1:-1:-1;50084:17:0;;-1:-1:-1;49540:570:0;;-1:-1:-1;;;49540:570:0:o;17928:98::-;17986:7;18013:5;18017:1;18013;:5;:::i;43698:709::-;43765:19;43787:10;:8;:10::i;:::-;43765:32;-1:-1:-1;43808:27:0;43838:31;:14;43765:32;43838:18;:31::i;:::-;44203:16;;;;;-1:-1:-1;;;;;44203:16:0;44171:59;;;;:17;:59;;;;;;43808:61;;-1:-1:-1;44171:84:0;;43808:61;44171:63;:84::i;:::-;44151:16;;;;;-1:-1:-1;;;;;44151:16:0;44133:35;;;;:17;:35;;;;;:122;44286:17;;:42;;44308:19;44286:21;:42::i;:::-;44266:17;:62;44346:53;;1645:25:1;;;44377:4:0;;889:10;;44346:53;;1633:2:1;1618:18;44346:53:0;1499:177:1;45196:192:0;45325:4;45299:32;;;;:17;:32;;;;;;:81;;45350:19;45299:36;:81::i;:::-;45290:4;45264:32;;;;:17;:32;;;;;:116;-1:-1:-1;45196:192:0:o;17571:98::-;17629:7;17656:5;17660:1;17656;:5;:::i;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1681:160::-;1746:20;;1802:13;;1795:21;1785:32;;1775:60;;1831:1;1828;1821:12;1775:60;1681:160;;;:::o;1846:315::-;1911:6;1919;1972:2;1960:9;1951:7;1947:23;1943:32;1940:52;;;1988:1;1985;1978:12;1940:52;2027:9;2014:23;2046:31;2071:5;2046:31;:::i;:::-;2096:5;-1:-1:-1;2120:35:1;2151:2;2136:18;;2120:35;:::i;:::-;2110:45;;1846:315;;;;;:::o;2166:456::-;2243:6;2251;2259;2312:2;2300:9;2291:7;2287:23;2283:32;2280:52;;;2328:1;2325;2318:12;2280:52;2367:9;2354:23;2386:31;2411:5;2386:31;:::i;:::-;2436:5;-1:-1:-1;2493:2:1;2478:18;;2465:32;2506:33;2465:32;2506:33;:::i;:::-;2166:456;;2558:7;;-1:-1:-1;;;2612:2:1;2597:18;;;;2584:32;;2166:456::o;2816:248::-;2881:6;2889;2942:2;2930:9;2921:7;2917:23;2913:32;2910:52;;;2958:1;2955;2948:12;2910:52;2994:9;2981:23;2971:33;;3023:35;3054:2;3043:9;3039:18;3023:35;:::i;3277:180::-;3336:6;3389:2;3377:9;3368:7;3364:23;3360:32;3357:52;;;3405:1;3402;3395:12;3357:52;-1:-1:-1;3428:23:1;;3277:180;-1:-1:-1;3277:180:1:o;3462:255::-;3529:6;3582:2;3570:9;3561:7;3557:23;3553:32;3550:52;;;3598:1;3595;3588:12;3550:52;3637:9;3624:23;3656:31;3681:5;3656:31;:::i;4198:388::-;4266:6;4274;4327:2;4315:9;4306:7;4302:23;4298:32;4295:52;;;4343:1;4340;4333:12;4295:52;4382:9;4369:23;4401:31;4426:5;4401:31;:::i;:::-;4451:5;-1:-1:-1;4508:2:1;4493:18;;4480:32;4521:33;4480:32;4521:33;:::i;:::-;4573:7;4563:17;;;4198:388;;;;;:::o;4591:380::-;4670:1;4666:12;;;;4713;;;4734:61;;4788:4;4780:6;4776:17;4766:27;;4734:61;4841:2;4833:6;4830:14;4810:18;4807:38;4804:161;;;4887:10;4882:3;4878:20;4875:1;4868:31;4922:4;4919:1;4912:15;4950:4;4947:1;4940:15;4804:161;;4591:380;;;:::o;4976:356::-;5178:2;5160:21;;;5197:18;;;5190:30;5256:34;5251:2;5236:18;;5229:62;5323:2;5308:18;;4976:356::o;8227:127::-;8288:10;8283:3;8279:20;8276:1;8269:31;8319:4;8316:1;8309:15;8343:4;8340:1;8333:15;8359:217;8399:1;8425;8415:132;;8469:10;8464:3;8460:20;8457:1;8450:31;8504:4;8501:1;8494:15;8532:4;8529:1;8522:15;8415:132;-1:-1:-1;8561:9:1;;8359:217::o;10362:128::-;10402:3;10433:1;10429:6;10426:1;10423:13;10420:39;;;10439:18;;:::i;:::-;-1:-1:-1;10475:9:1;;10362:128::o;10627:127::-;10688:10;10683:3;10679:20;10676:1;10669:31;10719:4;10716:1;10709:15;10743:4;10740:1;10733:15;10759:251;10829:6;10882:2;10870:9;10861:7;10857:23;10853:32;10850:52;;;10898:1;10895;10888:12;10850:52;10930:9;10924:16;10949:31;10974:5;10949:31;:::i;11015:980::-;11277:4;11325:3;11314:9;11310:19;11356:6;11345:9;11338:25;11382:2;11420:6;11415:2;11404:9;11400:18;11393:34;11463:3;11458:2;11447:9;11443:18;11436:31;11487:6;11522;11516:13;11553:6;11545;11538:22;11591:3;11580:9;11576:19;11569:26;;11630:2;11622:6;11618:15;11604:29;;11651:1;11661:195;11675:6;11672:1;11669:13;11661:195;;;11740:13;;-1:-1:-1;;;;;11736:39:1;11724:52;;11831:15;;;;11796:12;;;;11772:1;11690:9;11661:195;;;-1:-1:-1;;;;;;;11912:32:1;;;;11907:2;11892:18;;11885:60;-1:-1:-1;;;11976:3:1;11961:19;11954:35;11873:3;11015:980;-1:-1:-1;;;11015:980:1:o;12569:168::-;12609:7;12675:1;12671;12667:6;12663:14;12660:1;12657:21;12652:1;12645:9;12638:17;12634:45;12631:71;;;12682:18;;:::i;:::-;-1:-1:-1;12722:9:1;;12569:168::o;12742:125::-;12782:4;12810:1;12807;12804:8;12801:34;;;12815:18;;:::i;:::-;-1:-1:-1;12852:9:1;;12742:125::o
Swarm Source
ipfs://7f89c5f777da4c10b86ca00e6c4e302c431f95ae487a9ab1e6dbc9fc33b4127f
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.