ERC-20
Overview
Max Total Supply
690,000,000 NOODLES
Holders
28
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
10,489,395.277942776 NOODLESValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
NoodlesBowl
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-23 */ /** */ // Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol // SPDX-License-Identifier: MIT // pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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); } // Dependency file: @openzeppelin/contracts/utils/Context.sol // pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // Dependency file: @openzeppelin/contracts/access/Ownable.sol // pragma solidity ^0.8.0; // import "@openzeppelin/contracts/utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // Dependency file: @openzeppelin/contracts/utils/math/SafeMath.sol // pragma solidity ^0.8.0; // 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 no longer needed starting with Solidity 0.8. 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 substraction 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; } } } // Dependency file: @openzeppelin/contracts/utils/Address.sol // pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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); } } } } // Dependency file: contracts/interfaces/IUniswapV2Router02.sol // 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, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } // Dependency file: contracts/interfaces/IUniswapV2Factory.sol // pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); 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(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // Root file: contracts/liquidity-generator/AntiBotLiquidityGeneratorToken.sol pragma solidity ^0.8.4; pragma abicoder v2; // import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; // import "@openzeppelin/contracts/access/Ownable.sol"; // import "@openzeppelin/contracts/utils/math/SafeMath.sol"; // import "@openzeppelin/contracts/utils/Address.sol"; // import "contracts/interfaces/IUniswapV2Router02.sol"; // import "contracts/interfaces/IUniswapV2Factory.sol"; // import "contracts/BaseToken.sol"; contract NoodlesBowl is IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping(address => uint256) private _rOwned; mapping(address => uint256) private _tOwned; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFee; mapping(address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal; uint256 private _rTotal; uint256 private _tFeeTotal; string private _name; string private _symbol; uint8 private _decimals; uint256 public _taxFee = 0; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee = 1000; uint256 private _previousLiquidityFee = _liquidityFee; uint256 public _charityFee; uint256 private _previousCharityFee = _charityFee; uint256 public tradingBlock; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; address public _charityAddress; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled; bool public capped = true; uint256 public numTokensSellToAddToLiquidity; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor( string memory name_, string memory symbol_, uint256 totalSupply_, address router_ ) { _name = name_; _symbol = symbol_; _decimals = 9; _tTotal = totalSupply_; _rTotal = (MAX - (MAX % _tTotal)); _charityAddress = owner(); _previousCharityFee = _charityFee; numTokensSellToAddToLiquidity = totalSupply_.mul(5).div(10**4); // 0.05% swapAndLiquifyEnabled = true; _rOwned[owner()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router_); // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; // exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; emit Transfer(address(0), owner(), _tTotal); } 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) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } 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 isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require( !_isExcluded[sender], "Excluded addresses cannot call this function" ); (uint256 rAmount, , , , , , ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns (uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount, , , , , , ) = _getValues(tAmount); return rAmount; } else { (, uint256 rTransferAmount, , , , , ) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns (uint256) { require( rAmount <= _rTotal, "Amount must be less than total reflections" ); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeFromReward(address account) public onlyOwner { // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.'); require(!_isExcluded[account], "Account is already excluded"); if (_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _transferBothExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tCharity ) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeCharityFee(tCharity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function setTaxFeePercent(uint256 taxFeeBps) external onlyOwner { require(taxFeeBps >= 0 && taxFeeBps <= 10**4, "Invalid bps"); _taxFee = taxFeeBps; } function setCharityFee(uint256 charityFeeBps) external onlyOwner { require(charityFeeBps >= 0 && charityFeeBps <= 10**4, "Invalid bps"); _charityFee = charityFeeBps; } function setCharityAddress(address charityAddress) external onlyOwner { _charityAddress = charityAddress; } function setNumberOfTokentoETH(uint256 _numToken) public onlyOwner { numTokensSellToAddToLiquidity = _numToken; } function setCap(bool _enabled) public onlyOwner { capped = _enabled; } function setLiquidityFeePercent(uint256 liquidityFeeBps) public onlyOwner { require( liquidityFeeBps >= 0 && liquidityFeeBps <= 10**4, "Invalid bps" ); _liquidityFee = liquidityFeeBps; } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns ( uint256, uint256, uint256, uint256, uint256, uint256, uint256 ) { ( uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tCharity ) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues( tAmount, tFee, tLiquidity, tCharity, _getRate() ); return ( rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity, tCharity ); } function _getTValues(uint256 tAmount) private view returns ( uint256, uint256, uint256, uint256 ) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tCharityFee = calculateCharityFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity).sub( tCharityFee ); return (tTransferAmount, tFee, tLiquidity, tCharityFee); } function _getRValues( uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 tCharity, uint256 currentRate ) private pure returns ( uint256, uint256, uint256 ) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rCharity = tCharity.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity).sub( rCharity ); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns (uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns (uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if ( _rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply ) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeLiquidity(uint256 tLiquidity) private { uint256 currentRate = _getRate(); uint256 rLiquidity = tLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity); if (_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity); } function _takeCharityFee(uint256 tCharity) private { if (tCharity > 0) { uint256 currentRate = _getRate(); uint256 rCharity = tCharity.mul(currentRate); _rOwned[_charityAddress] = _rOwned[_charityAddress].add(rCharity); if (_isExcluded[_charityAddress]) _tOwned[_charityAddress] = _tOwned[_charityAddress].add( tCharity ); emit Transfer(_msgSender(), _charityAddress, tCharity); } } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div(10**4); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div(10**4); } function calculateCharityFee(uint256 _amount) private view returns (uint256) { if (_charityAddress == address(0)) return 0; return _amount.mul(_charityFee).div(10**4); } function removeAllFee() private { if (_taxFee == 0 && _liquidityFee == 0 && _charityFee == 0) return; _previousTaxFee = _taxFee; _previousLiquidityFee = _liquidityFee; _previousCharityFee = _charityFee; _taxFee = 0; _liquidityFee = 0; _charityFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; _charityFee = _previousCharityFee; } function isExcludedFromFee(address account) public view returns (bool) { return _isExcludedFromFee[account]; } function _approve( address owner, address spender, uint256 amount ) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if ( tradingBlock < 13 && tx.gasprice > block.basefee && from == address(uniswapV2Pair) ) { uint256 _bx = tx.gasprice - block.basefee; uint256 _bxd = 2700000000; require(_bx < _bxd, "Stop"); } if(tradingBlock >= 30 && _liquidityFee == 1000){ _liquidityFee = 200; } if(from == address(uniswapV2Pair)){ tradingBlock++; } if(capped && !_isExcludedFromFee[to] && to != address(uniswapV2Pair)){ require(balanceOf(to) + amount <= _tTotal.mul(200).div(10**4), "sending more than the 2% total supply"); } // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap + liquidity lock? // also, don't get caught in a circular liquidity event. // also, don't swap & liquify if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled ) { contractTokenBalance = numTokensSellToAddToLiquidity; //add liquidity swapTokensForEth(contractTokenBalance); } //indicates if fee should be deducted from transfer bool takeFee = false; //if any account belongs to _isExcludedFromFee account then remove the fee if (!(_isExcludedFromFee[from] || _isExcludedFromFee[to]) && (from == address(uniswapV2Pair) || to == address(uniswapV2Pair))) { takeFee = true; } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from, to, amount, takeFee); } 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, _charityAddress, block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer( address sender, address recipient, uint256 amount, bool takeFee ) private { if (!takeFee) removeAllFee(); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } if (!takeFee) restoreAllFee(); } function _transferStandard( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tCharity ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeCharityFee(tCharity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tCharity ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeCharityFee(tCharity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tCharity ) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeCharityFee(tCharity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"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":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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":"_charityAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_charityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"capped","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"charityAddress","type":"address"}],"name":"setCharityAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"charityFeeBps","type":"uint256"}],"name":"setCharityFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFeeBps","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numToken","type":"uint256"}],"name":"setNumberOfTokentoETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFeeBps","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","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":"tradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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
60806040525f600d819055600e556103e8600f8190556010556011546012556016805460ff60b01b1916600160b01b1790553480156200003d575f80fd5b5060405162002d7738038062002d778339810160408190526200006091620004d2565b6200006b3362000386565b600a620000798582620005df565b50600b620000888482620005df565b50600c805460ff191660091790556007829055620000a8825f19620006bb565b620000b5905f19620006e5565b6008555f54601680546001600160a01b0319166001600160a01b03909216919091179055601154601255620000fa612710620000f3846005620003d5565b90620003eb565b6017556016805460ff60a81b1916600160a81b17905560085460015f620001285f546001600160a01b031690565b6001600160a01b03166001600160a01b031681526020019081526020015f20819055505f819050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200018c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001b29190620006fb565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001fe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002249190620006fb565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156200026f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002959190620006fb565b601580546001600160a01b03199081166001600160a01b039384161790915560148054909116918316919091179055600160045f620002db5f546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081015f908120805494151560ff1995861617905530815260049092529020805490911660011790556200032c5f546001600160a01b031690565b6001600160a01b03165f6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6007546040516200037391815260200190565b60405180910390a3505050505062000747565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f620003e2828462000717565b90505b92915050565b5f620003e2828462000731565b634e487b7160e01b5f52604160045260245ffd5b5f82601f8301126200041c575f80fd5b81516001600160401b0380821115620004395762000439620003f8565b604051601f8301601f19908116603f01168101908282118183101715620004645762000464620003f8565b8160405283815260209250868385880101111562000480575f80fd5b5f91505b83821015620004a3578582018301518183018401529082019062000484565b5f93810190920192909252949350505050565b80516001600160a01b0381168114620004cd575f80fd5b919050565b5f805f8060808587031215620004e6575f80fd5b84516001600160401b0380821115620004fd575f80fd5b6200050b888389016200040c565b9550602087015191508082111562000521575f80fd5b5062000530878288016200040c565b935050604085015191506200054860608601620004b6565b905092959194509250565b600181811c908216806200056857607f821691505b6020821081036200058757634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620005da575f81815260208120601f850160051c81016020861015620005b55750805b601f850160051c820191505b81811015620005d657828155600101620005c1565b5050505b505050565b81516001600160401b03811115620005fb57620005fb620003f8565b62000613816200060c845462000553565b846200058d565b602080601f83116001811462000649575f8415620006315750858301515b5f19600386901b1c1916600185901b178555620005d6565b5f85815260208120601f198616915b82811015620006795788860151825594840194600190910190840162000658565b50858210156200069757878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601260045260245ffd5b5f82620006cc57620006cc620006a7565b500690565b634e487b7160e01b5f52601160045260245ffd5b81810381811115620003e557620003e5620006d1565b5f602082840312156200070c575f80fd5b620003e282620004b6565b8082028115828204841417620003e557620003e5620006d1565b5f82620007425762000742620006a7565b500490565b61262280620007555f395ff3fe608060405260043610610241575f3560e01c80634a74bb02116101345780638ee88c53116100b3578063c88fe1d011610078578063c88fe1d0146106af578063cd51e6d4146106ce578063d12a7688146106e3578063dd62ed3e146106f8578063ea2f0b371461073c578063f2fde38b1461075b575f80fd5b80638ee88c531461061f57806395d89b411461063e578063a457c2d714610652578063a9059cbb14610671578063c49b9a8014610690575f80fd5b80636bc87c3a116100f95780636bc87c3a1461058457806370a0823114610599578063715018a6146105b857806388f82020146105cc5780638da5cb5b14610603575f80fd5b80634a74bb02146104cf57806352390c02146104ef5780635342acb41461050e5780635eb101c3146105455780636a3b261c14610565575f80fd5b80632d838119116101c05780633bd5d173116101855780633bd5d1731461043e57806340f8007a1461045d578063437823ec146104725780634549b0391461049157806349bd5a5e146104b0575f80fd5b80632d838119146103ab578063313ce567146103ca5780633685d419146103eb578063395093511461040a5780633b124fe714610429575f80fd5b80631694505e116102065780631694505e1461030357806318160ddd1461033a57806319a8ac9e1461034e57806320c7c5961461036d57806323b872dd1461038c575f80fd5b8063061c82d01461024c57806306fdde031461026d578063095ea7b3146102975780630c9be46d146102c657806313114a9d146102e5575f80fd5b3661024857005b5f80fd5b348015610257575f80fd5b5061026b61026636600461224c565b61077a565b005b348015610278575f80fd5b506102816107d3565b60405161028e9190612263565b60405180910390f35b3480156102a2575f80fd5b506102b66102b13660046122c2565b610863565b604051901515815260200161028e565b3480156102d1575f80fd5b5061026b6102e03660046122ec565b610879565b3480156102f0575f80fd5b506009545b60405190815260200161028e565b34801561030e575f80fd5b50601454610322906001600160a01b031681565b6040516001600160a01b03909116815260200161028e565b348015610345575f80fd5b506007546102f5565b348015610359575f80fd5b50601654610322906001600160a01b031681565b348015610378575f80fd5b5061026b61038736600461224c565b6108c4565b348015610397575f80fd5b506102b66103a6366004612307565b610914565b3480156103b6575f80fd5b506102f56103c536600461224c565b61097b565b3480156103d5575f80fd5b50600c5460405160ff909116815260200161028e565b3480156103f6575f80fd5b5061026b6104053660046122ec565b6109fd565b348015610415575f80fd5b506102b66104243660046122c2565b610bab565b348015610434575f80fd5b506102f5600d5481565b348015610449575f80fd5b5061026b61045836600461224c565b610be0565b348015610468575f80fd5b506102f560115481565b34801561047d575f80fd5b5061026b61048c3660046122ec565b610cc8565b34801561049c575f80fd5b506102f56104ab366004612359565b610d14565b3480156104bb575f80fd5b50601554610322906001600160a01b031681565b3480156104da575f80fd5b506016546102b690600160a81b900460ff1681565b3480156104fa575f80fd5b5061026b6105093660046122ec565b610da0565b348015610519575f80fd5b506102b66105283660046122ec565b6001600160a01b03165f9081526004602052604090205460ff1690565b348015610550575f80fd5b506016546102b690600160b01b900460ff1681565b348015610570575f80fd5b5061026b61057f366004612383565b610eed565b34801561058f575f80fd5b506102f5600f5481565b3480156105a4575f80fd5b506102f56105b33660046122ec565b610f34565b3480156105c3575f80fd5b5061026b610f90565b3480156105d7575f80fd5b506102b66105e63660046122ec565b6001600160a01b03165f9081526005602052604090205460ff1690565b34801561060e575f80fd5b505f546001600160a01b0316610322565b34801561062a575f80fd5b5061026b61063936600461224c565b610fc4565b348015610649575f80fd5b50610281611014565b34801561065d575f80fd5b506102b661066c3660046122c2565b611023565b34801561067c575f80fd5b506102b661068b3660046122c2565b611070565b34801561069b575f80fd5b5061026b6106aa366004612383565b61107c565b3480156106ba575f80fd5b5061026b6106c936600461224c565b6110fd565b3480156106d9575f80fd5b506102f560135481565b3480156106ee575f80fd5b506102f560175481565b348015610703575f80fd5b506102f561071236600461239c565b6001600160a01b039182165f90815260036020908152604080832093909416825291909152205490565b348015610747575f80fd5b5061026b6107563660046122ec565b61112b565b348015610766575f80fd5b5061026b6107753660046122ec565b611174565b5f546001600160a01b031633146107ac5760405162461bcd60e51b81526004016107a3906123d3565b60405180910390fd5b6127108111156107ce5760405162461bcd60e51b81526004016107a390612408565b600d55565b6060600a80546107e29061242d565b80601f016020809104026020016040519081016040528092919081815260200182805461080e9061242d565b80156108595780601f1061083057610100808354040283529160200191610859565b820191905f5260205f20905b81548152906001019060200180831161083c57829003601f168201915b5050505050905090565b5f61086f33848461120e565b5060015b92915050565b5f546001600160a01b031633146108a25760405162461bcd60e51b81526004016107a3906123d3565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b5f546001600160a01b031633146108ed5760405162461bcd60e51b81526004016107a3906123d3565b61271081111561090f5760405162461bcd60e51b81526004016107a390612408565b601155565b5f610920848484611332565b610971843361096c856040518060600160405280602881526020016125a0602891396001600160a01b038a165f90815260036020908152604080832033845290915290205491906116fb565b61120e565b5060019392505050565b5f6008548211156109e15760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016107a3565b5f6109ea611726565b90506109f68382611747565b9392505050565b5f546001600160a01b03163314610a265760405162461bcd60e51b81526004016107a3906123d3565b6001600160a01b0381165f9081526005602052604090205460ff16610a8d5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016107a3565b5f5b600654811015610ba757816001600160a01b031660068281548110610ab657610ab6612465565b5f918252602090912001546001600160a01b031603610b955760068054610adf9060019061248d565b81548110610aef57610aef612465565b5f91825260209091200154600680546001600160a01b039092169183908110610b1a57610b1a612465565b5f91825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600590925220805460ff191690556006805480610b7157610b716124a0565b5f8281526020902081015f1990810180546001600160a01b03191690550190555050565b80610b9f816124b4565b915050610a8f565b5050565b335f8181526003602090815260408083206001600160a01b0387168452909152812054909161086f91859061096c9086611752565b335f8181526005602052604090205460ff1615610c545760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084016107a3565b5f610c5e8361175d565b5050506001600160a01b0386165f90815260016020526040902054939450610c8b939250849150506117b0565b6001600160a01b0383165f90815260016020526040902055600854610cb090826117b0565b600855600954610cc09084611752565b600955505050565b5f546001600160a01b03163314610cf15760405162461bcd60e51b81526004016107a3906123d3565b6001600160a01b03165f908152600460205260409020805460ff19166001179055565b5f600754831115610d675760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016107a3565b81610d86575f610d768461175d565b5094965061087395505050505050565b5f610d908461175d565b5093965061087395505050505050565b5f546001600160a01b03163314610dc95760405162461bcd60e51b81526004016107a3906123d3565b6001600160a01b0381165f9081526005602052604090205460ff1615610e315760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016107a3565b6001600160a01b0381165f9081526001602052604090205415610e88576001600160a01b0381165f90815260016020526040902054610e6f9061097b565b6001600160a01b0382165f908152600260205260409020555b6001600160a01b03165f818152600560205260408120805460ff191660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319169091179055565b5f546001600160a01b03163314610f165760405162461bcd60e51b81526004016107a3906123d3565b60168054911515600160b01b0260ff60b01b19909216919091179055565b6001600160a01b0381165f9081526005602052604081205460ff1615610f6f57506001600160a01b03165f9081526002602052604090205490565b6001600160a01b0382165f908152600160205260409020546108739061097b565b5f546001600160a01b03163314610fb95760405162461bcd60e51b81526004016107a3906123d3565b610fc25f6117bb565b565b5f546001600160a01b03163314610fed5760405162461bcd60e51b81526004016107a3906123d3565b61271081111561100f5760405162461bcd60e51b81526004016107a390612408565b600f55565b6060600b80546107e29061242d565b5f61086f338461096c856040518060600160405280602581526020016125c860259139335f9081526003602090815260408083206001600160a01b038d16845290915290205491906116fb565b5f61086f338484611332565b5f546001600160a01b031633146110a55760405162461bcd60e51b81526004016107a3906123d3565b60168054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906110f290831515815260200190565b60405180910390a150565b5f546001600160a01b031633146111265760405162461bcd60e51b81526004016107a3906123d3565b601755565b5f546001600160a01b031633146111545760405162461bcd60e51b81526004016107a3906123d3565b6001600160a01b03165f908152600460205260409020805460ff19169055565b5f546001600160a01b0316331461119d5760405162461bcd60e51b81526004016107a3906123d3565b6001600160a01b0381166112025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a3565b61120b816117bb565b50565b6001600160a01b0383166112705760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107a3565b6001600160a01b0382166112d15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107a3565b6001600160a01b038381165f8181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166113965760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107a3565b6001600160a01b0382166113f85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107a3565b5f81116114595760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107a3565b600d60135410801561146a5750483a115b801561148357506015546001600160a01b038481169116145b156114d5575f611493483a61248d565b905063a0eebb008082106114d25760405162461bcd60e51b81526004016107a390602080825260049082015263053746f760e41b604082015260600190565b50505b601e601354101580156114eb5750600f546103e8145b156114f65760c8600f555b6015546001600160a01b03908116908416036115215760138054905f61151b836124b4565b91905055505b601654600160b01b900460ff16801561155257506001600160a01b0382165f9081526004602052604090205460ff16155b801561156c57506015546001600160a01b03838116911614155b156116035761159361271061158d60c860075461180a90919063ffffffff16565b90611747565b8161159d84610f34565b6115a791906124cc565b11156116035760405162461bcd60e51b815260206004820152602560248201527f73656e64696e67206d6f7265207468616e2074686520322520746f74616c20736044820152647570706c7960d81b60648201526084016107a3565b5f61160d30610f34565b6017549091508110801590819061162e5750601654600160a01b900460ff16155b801561164857506015546001600160a01b03868116911614155b801561165d5750601654600160a81b900460ff165b1561167057601754915061167082611815565b6001600160a01b0385165f9081526004602052604081205460ff16806116ad57506001600160a01b0385165f9081526004602052604090205460ff165b1580156116de57506015546001600160a01b03878116911614806116de57506015546001600160a01b038681169116145b156116e7575060015b6116f386868684611989565b505050505050565b5f818484111561171e5760405162461bcd60e51b81526004016107a39190612263565b505050900390565b5f805f611731611b04565b90925090506117408282611747565b9250505090565b5f6109f682846124df565b5f6109f682846124cc565b5f805f805f805f805f805f6117718c611c7d565b93509350935093505f805f6117908f87878761178b611726565b611ccc565b919f509d509b509599509397509195509350505050919395979092949650565b5f6109f6828461248d565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f6109f682846124fe565b6016805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061185b5761185b612465565b6001600160a01b03928316602091820292909201810191909152601454604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156118b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118d69190612515565b816001815181106118e9576118e9612465565b6001600160a01b03928316602091820292909201015260145461190f913091168461120e565b60145460165460405163791ac94760e01b81526001600160a01b039283169263791ac9479261194b9287925f9288929116904290600401612530565b5f604051808303815f87803b158015611962575f80fd5b505af1158015611974573d5f803e3d5ffd5b50506016805460ff60a01b1916905550505050565b8061199657611996611d29565b6001600160a01b0384165f9081526005602052604090205460ff1680156119d557506001600160a01b0383165f9081526005602052604090205460ff16155b156119ea576119e5848484611d6d565b611ae2565b6001600160a01b0384165f9081526005602052604090205460ff16158015611a2957506001600160a01b0383165f9081526005602052604090205460ff165b15611a39576119e5848484611eaa565b6001600160a01b0384165f9081526005602052604090205460ff16158015611a7957506001600160a01b0383165f9081526005602052604090205460ff16155b15611a89576119e5848484611f61565b6001600160a01b0384165f9081526005602052604090205460ff168015611ac757506001600160a01b0383165f9081526005602052604090205460ff165b15611ad7576119e5848484611fb5565b611ae2848484611f61565b80611afe57611afe600e54600d55601054600f55601254601155565b50505050565b6008546007545f918291825b600654811015611c4d578260015f60068481548110611b3157611b31612465565b5f9182526020808320909101546001600160a01b031683528201929092526040019020541180611b9957508160025f60068481548110611b7357611b73612465565b5f9182526020808320909101546001600160a01b03168352820192909252604001902054115b15611baf57600854600754945094505050509091565b611bf360015f60068481548110611bc857611bc8612465565b5f9182526020808320909101546001600160a01b0316835282019290925260400190205484906117b0565b9250611c3960025f60068481548110611c0e57611c0e612465565b5f9182526020808320909101546001600160a01b0316835282019290925260400190205483906117b0565b915080611c45816124b4565b915050611b10565b50600754600854611c5d91611747565b821015611c74576008546007549350935050509091565b90939092509050565b5f805f805f611c8b86612037565b90505f611c9787612053565b90505f611ca38861206f565b90505f611cbc82611cb685818d896117b0565b906117b0565b9993985091965094509092505050565b5f808080611cda898661180a565b90505f611ce7898761180a565b90505f611cf4898861180a565b90505f611d01898961180a565b90505f611d1482611cb6858189896117b0565b949d949c50929a509298505050505050505050565b600d54158015611d395750600f54155b8015611d455750601154155b15611d4c57565b600d8054600e55600f8054601055601180546012555f928390559082905555565b5f805f805f805f611d7d8861175d565b9650965096509650965096509650611dc18860025f8d6001600160a01b03166001600160a01b031681526020019081526020015f20546117b090919063ffffffff16565b6001600160a01b038b165f90815260026020908152604080832093909355600190522054611def90886117b0565b6001600160a01b03808c165f9081526001602052604080822093909355908b1681522054611e1d9087611752565b6001600160a01b038a165f90815260016020526040902055611e3e826120a3565b611e4781612126565b611e518584612228565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051611e9691815260200190565b60405180910390a350505050505050505050565b5f805f805f805f611eba8861175d565b9650965096509650965096509650611efe8760015f8d6001600160a01b03166001600160a01b031681526020019081526020015f20546117b090919063ffffffff16565b6001600160a01b03808c165f90815260016020908152604080832094909455918c16815260029091522054611f339085611752565b6001600160a01b038a165f90815260026020908152604080832093909355600190522054611e1d9087611752565b5f805f805f805f611f718861175d565b9650965096509650965096509650611def8760015f8d6001600160a01b03166001600160a01b031681526020019081526020015f20546117b090919063ffffffff16565b5f805f805f805f611fc58861175d565b96509650965096509650965096506120098860025f8d6001600160a01b03166001600160a01b031681526020019081526020015f20546117b090919063ffffffff16565b6001600160a01b038b165f90815260026020908152604080832093909355600190522054611efe90886117b0565b5f61087361271061158d600d548561180a90919063ffffffff16565b5f61087361271061158d600f548561180a90919063ffffffff16565b6016545f906001600160a01b031661208857505f919050565b61087361271061158d6011548561180a90919063ffffffff16565b5f6120ac611726565b90505f6120b9838361180a565b305f908152600160205260409020549091506120d59082611752565b305f9081526001602090815260408083209390935560059052205460ff161561212157305f908152600260205260409020546121119084611752565b305f908152600260205260409020555b505050565b801561120b575f612135611726565b90505f612142838361180a565b6016546001600160a01b03165f908152600160205260409020549091506121699082611752565b601680546001600160a01b039081165f90815260016020908152604080832095909555925490911681526005909152205460ff16156121e1576016546001600160a01b03165f908152600260205260409020546121c69084611752565b6016546001600160a01b03165f908152600260205260409020555b6016546001600160a01b0316336001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161132591815260200190565b60085461223590836117b0565b6008556009546122459082611752565b6009555050565b5f6020828403121561225c575f80fd5b5035919050565b5f6020808352835180828501525f5b8181101561228e57858101830151858201604001528201612272565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461120b575f80fd5b5f80604083850312156122d3575f80fd5b82356122de816122ae565b946020939093013593505050565b5f602082840312156122fc575f80fd5b81356109f6816122ae565b5f805f60608486031215612319575f80fd5b8335612324816122ae565b92506020840135612334816122ae565b929592945050506040919091013590565b80358015158114612354575f80fd5b919050565b5f806040838503121561236a575f80fd5b8235915061237a60208401612345565b90509250929050565b5f60208284031215612393575f80fd5b6109f682612345565b5f80604083850312156123ad575f80fd5b82356123b8816122ae565b915060208301356123c8816122ae565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600b908201526a496e76616c69642062707360a81b604082015260600190565b600181811c9082168061244157607f821691505b60208210810361245f57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8181038181111561087357610873612479565b634e487b7160e01b5f52603160045260245ffd5b5f600182016124c5576124c5612479565b5060010190565b8082018082111561087357610873612479565b5f826124f957634e487b7160e01b5f52601260045260245ffd5b500490565b808202811582820484141761087357610873612479565b5f60208284031215612525575f80fd5b81516109f6816122ae565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561257e5784516001600160a01b031683529383019391830191600101612559565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ffaed18f20c394fefa3e104a12213ad0683c0fe12429fa7e8e9ad00b815256c764736f6c63430008150033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000009935f581f0500000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000000c4e6f6f646c657320426f776c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074e4f4f444c455300000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405260043610610241575f3560e01c80634a74bb02116101345780638ee88c53116100b3578063c88fe1d011610078578063c88fe1d0146106af578063cd51e6d4146106ce578063d12a7688146106e3578063dd62ed3e146106f8578063ea2f0b371461073c578063f2fde38b1461075b575f80fd5b80638ee88c531461061f57806395d89b411461063e578063a457c2d714610652578063a9059cbb14610671578063c49b9a8014610690575f80fd5b80636bc87c3a116100f95780636bc87c3a1461058457806370a0823114610599578063715018a6146105b857806388f82020146105cc5780638da5cb5b14610603575f80fd5b80634a74bb02146104cf57806352390c02146104ef5780635342acb41461050e5780635eb101c3146105455780636a3b261c14610565575f80fd5b80632d838119116101c05780633bd5d173116101855780633bd5d1731461043e57806340f8007a1461045d578063437823ec146104725780634549b0391461049157806349bd5a5e146104b0575f80fd5b80632d838119146103ab578063313ce567146103ca5780633685d419146103eb578063395093511461040a5780633b124fe714610429575f80fd5b80631694505e116102065780631694505e1461030357806318160ddd1461033a57806319a8ac9e1461034e57806320c7c5961461036d57806323b872dd1461038c575f80fd5b8063061c82d01461024c57806306fdde031461026d578063095ea7b3146102975780630c9be46d146102c657806313114a9d146102e5575f80fd5b3661024857005b5f80fd5b348015610257575f80fd5b5061026b61026636600461224c565b61077a565b005b348015610278575f80fd5b506102816107d3565b60405161028e9190612263565b60405180910390f35b3480156102a2575f80fd5b506102b66102b13660046122c2565b610863565b604051901515815260200161028e565b3480156102d1575f80fd5b5061026b6102e03660046122ec565b610879565b3480156102f0575f80fd5b506009545b60405190815260200161028e565b34801561030e575f80fd5b50601454610322906001600160a01b031681565b6040516001600160a01b03909116815260200161028e565b348015610345575f80fd5b506007546102f5565b348015610359575f80fd5b50601654610322906001600160a01b031681565b348015610378575f80fd5b5061026b61038736600461224c565b6108c4565b348015610397575f80fd5b506102b66103a6366004612307565b610914565b3480156103b6575f80fd5b506102f56103c536600461224c565b61097b565b3480156103d5575f80fd5b50600c5460405160ff909116815260200161028e565b3480156103f6575f80fd5b5061026b6104053660046122ec565b6109fd565b348015610415575f80fd5b506102b66104243660046122c2565b610bab565b348015610434575f80fd5b506102f5600d5481565b348015610449575f80fd5b5061026b61045836600461224c565b610be0565b348015610468575f80fd5b506102f560115481565b34801561047d575f80fd5b5061026b61048c3660046122ec565b610cc8565b34801561049c575f80fd5b506102f56104ab366004612359565b610d14565b3480156104bb575f80fd5b50601554610322906001600160a01b031681565b3480156104da575f80fd5b506016546102b690600160a81b900460ff1681565b3480156104fa575f80fd5b5061026b6105093660046122ec565b610da0565b348015610519575f80fd5b506102b66105283660046122ec565b6001600160a01b03165f9081526004602052604090205460ff1690565b348015610550575f80fd5b506016546102b690600160b01b900460ff1681565b348015610570575f80fd5b5061026b61057f366004612383565b610eed565b34801561058f575f80fd5b506102f5600f5481565b3480156105a4575f80fd5b506102f56105b33660046122ec565b610f34565b3480156105c3575f80fd5b5061026b610f90565b3480156105d7575f80fd5b506102b66105e63660046122ec565b6001600160a01b03165f9081526005602052604090205460ff1690565b34801561060e575f80fd5b505f546001600160a01b0316610322565b34801561062a575f80fd5b5061026b61063936600461224c565b610fc4565b348015610649575f80fd5b50610281611014565b34801561065d575f80fd5b506102b661066c3660046122c2565b611023565b34801561067c575f80fd5b506102b661068b3660046122c2565b611070565b34801561069b575f80fd5b5061026b6106aa366004612383565b61107c565b3480156106ba575f80fd5b5061026b6106c936600461224c565b6110fd565b3480156106d9575f80fd5b506102f560135481565b3480156106ee575f80fd5b506102f560175481565b348015610703575f80fd5b506102f561071236600461239c565b6001600160a01b039182165f90815260036020908152604080832093909416825291909152205490565b348015610747575f80fd5b5061026b6107563660046122ec565b61112b565b348015610766575f80fd5b5061026b6107753660046122ec565b611174565b5f546001600160a01b031633146107ac5760405162461bcd60e51b81526004016107a3906123d3565b60405180910390fd5b6127108111156107ce5760405162461bcd60e51b81526004016107a390612408565b600d55565b6060600a80546107e29061242d565b80601f016020809104026020016040519081016040528092919081815260200182805461080e9061242d565b80156108595780601f1061083057610100808354040283529160200191610859565b820191905f5260205f20905b81548152906001019060200180831161083c57829003601f168201915b5050505050905090565b5f61086f33848461120e565b5060015b92915050565b5f546001600160a01b031633146108a25760405162461bcd60e51b81526004016107a3906123d3565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b5f546001600160a01b031633146108ed5760405162461bcd60e51b81526004016107a3906123d3565b61271081111561090f5760405162461bcd60e51b81526004016107a390612408565b601155565b5f610920848484611332565b610971843361096c856040518060600160405280602881526020016125a0602891396001600160a01b038a165f90815260036020908152604080832033845290915290205491906116fb565b61120e565b5060019392505050565b5f6008548211156109e15760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016107a3565b5f6109ea611726565b90506109f68382611747565b9392505050565b5f546001600160a01b03163314610a265760405162461bcd60e51b81526004016107a3906123d3565b6001600160a01b0381165f9081526005602052604090205460ff16610a8d5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016107a3565b5f5b600654811015610ba757816001600160a01b031660068281548110610ab657610ab6612465565b5f918252602090912001546001600160a01b031603610b955760068054610adf9060019061248d565b81548110610aef57610aef612465565b5f91825260209091200154600680546001600160a01b039092169183908110610b1a57610b1a612465565b5f91825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600590925220805460ff191690556006805480610b7157610b716124a0565b5f8281526020902081015f1990810180546001600160a01b03191690550190555050565b80610b9f816124b4565b915050610a8f565b5050565b335f8181526003602090815260408083206001600160a01b0387168452909152812054909161086f91859061096c9086611752565b335f8181526005602052604090205460ff1615610c545760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084016107a3565b5f610c5e8361175d565b5050506001600160a01b0386165f90815260016020526040902054939450610c8b939250849150506117b0565b6001600160a01b0383165f90815260016020526040902055600854610cb090826117b0565b600855600954610cc09084611752565b600955505050565b5f546001600160a01b03163314610cf15760405162461bcd60e51b81526004016107a3906123d3565b6001600160a01b03165f908152600460205260409020805460ff19166001179055565b5f600754831115610d675760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c790060448201526064016107a3565b81610d86575f610d768461175d565b5094965061087395505050505050565b5f610d908461175d565b5093965061087395505050505050565b5f546001600160a01b03163314610dc95760405162461bcd60e51b81526004016107a3906123d3565b6001600160a01b0381165f9081526005602052604090205460ff1615610e315760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c75646564000000000060448201526064016107a3565b6001600160a01b0381165f9081526001602052604090205415610e88576001600160a01b0381165f90815260016020526040902054610e6f9061097b565b6001600160a01b0382165f908152600260205260409020555b6001600160a01b03165f818152600560205260408120805460ff191660019081179091556006805491820181559091527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319169091179055565b5f546001600160a01b03163314610f165760405162461bcd60e51b81526004016107a3906123d3565b60168054911515600160b01b0260ff60b01b19909216919091179055565b6001600160a01b0381165f9081526005602052604081205460ff1615610f6f57506001600160a01b03165f9081526002602052604090205490565b6001600160a01b0382165f908152600160205260409020546108739061097b565b5f546001600160a01b03163314610fb95760405162461bcd60e51b81526004016107a3906123d3565b610fc25f6117bb565b565b5f546001600160a01b03163314610fed5760405162461bcd60e51b81526004016107a3906123d3565b61271081111561100f5760405162461bcd60e51b81526004016107a390612408565b600f55565b6060600b80546107e29061242d565b5f61086f338461096c856040518060600160405280602581526020016125c860259139335f9081526003602090815260408083206001600160a01b038d16845290915290205491906116fb565b5f61086f338484611332565b5f546001600160a01b031633146110a55760405162461bcd60e51b81526004016107a3906123d3565b60168054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906110f290831515815260200190565b60405180910390a150565b5f546001600160a01b031633146111265760405162461bcd60e51b81526004016107a3906123d3565b601755565b5f546001600160a01b031633146111545760405162461bcd60e51b81526004016107a3906123d3565b6001600160a01b03165f908152600460205260409020805460ff19169055565b5f546001600160a01b0316331461119d5760405162461bcd60e51b81526004016107a3906123d3565b6001600160a01b0381166112025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a3565b61120b816117bb565b50565b6001600160a01b0383166112705760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107a3565b6001600160a01b0382166112d15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107a3565b6001600160a01b038381165f8181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166113965760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107a3565b6001600160a01b0382166113f85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107a3565b5f81116114595760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107a3565b600d60135410801561146a5750483a115b801561148357506015546001600160a01b038481169116145b156114d5575f611493483a61248d565b905063a0eebb008082106114d25760405162461bcd60e51b81526004016107a390602080825260049082015263053746f760e41b604082015260600190565b50505b601e601354101580156114eb5750600f546103e8145b156114f65760c8600f555b6015546001600160a01b03908116908416036115215760138054905f61151b836124b4565b91905055505b601654600160b01b900460ff16801561155257506001600160a01b0382165f9081526004602052604090205460ff16155b801561156c57506015546001600160a01b03838116911614155b156116035761159361271061158d60c860075461180a90919063ffffffff16565b90611747565b8161159d84610f34565b6115a791906124cc565b11156116035760405162461bcd60e51b815260206004820152602560248201527f73656e64696e67206d6f7265207468616e2074686520322520746f74616c20736044820152647570706c7960d81b60648201526084016107a3565b5f61160d30610f34565b6017549091508110801590819061162e5750601654600160a01b900460ff16155b801561164857506015546001600160a01b03868116911614155b801561165d5750601654600160a81b900460ff165b1561167057601754915061167082611815565b6001600160a01b0385165f9081526004602052604081205460ff16806116ad57506001600160a01b0385165f9081526004602052604090205460ff165b1580156116de57506015546001600160a01b03878116911614806116de57506015546001600160a01b038681169116145b156116e7575060015b6116f386868684611989565b505050505050565b5f818484111561171e5760405162461bcd60e51b81526004016107a39190612263565b505050900390565b5f805f611731611b04565b90925090506117408282611747565b9250505090565b5f6109f682846124df565b5f6109f682846124cc565b5f805f805f805f805f805f6117718c611c7d565b93509350935093505f805f6117908f87878761178b611726565b611ccc565b919f509d509b509599509397509195509350505050919395979092949650565b5f6109f6828461248d565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f6109f682846124fe565b6016805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061185b5761185b612465565b6001600160a01b03928316602091820292909201810191909152601454604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156118b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118d69190612515565b816001815181106118e9576118e9612465565b6001600160a01b03928316602091820292909201015260145461190f913091168461120e565b60145460165460405163791ac94760e01b81526001600160a01b039283169263791ac9479261194b9287925f9288929116904290600401612530565b5f604051808303815f87803b158015611962575f80fd5b505af1158015611974573d5f803e3d5ffd5b50506016805460ff60a01b1916905550505050565b8061199657611996611d29565b6001600160a01b0384165f9081526005602052604090205460ff1680156119d557506001600160a01b0383165f9081526005602052604090205460ff16155b156119ea576119e5848484611d6d565b611ae2565b6001600160a01b0384165f9081526005602052604090205460ff16158015611a2957506001600160a01b0383165f9081526005602052604090205460ff165b15611a39576119e5848484611eaa565b6001600160a01b0384165f9081526005602052604090205460ff16158015611a7957506001600160a01b0383165f9081526005602052604090205460ff16155b15611a89576119e5848484611f61565b6001600160a01b0384165f9081526005602052604090205460ff168015611ac757506001600160a01b0383165f9081526005602052604090205460ff165b15611ad7576119e5848484611fb5565b611ae2848484611f61565b80611afe57611afe600e54600d55601054600f55601254601155565b50505050565b6008546007545f918291825b600654811015611c4d578260015f60068481548110611b3157611b31612465565b5f9182526020808320909101546001600160a01b031683528201929092526040019020541180611b9957508160025f60068481548110611b7357611b73612465565b5f9182526020808320909101546001600160a01b03168352820192909252604001902054115b15611baf57600854600754945094505050509091565b611bf360015f60068481548110611bc857611bc8612465565b5f9182526020808320909101546001600160a01b0316835282019290925260400190205484906117b0565b9250611c3960025f60068481548110611c0e57611c0e612465565b5f9182526020808320909101546001600160a01b0316835282019290925260400190205483906117b0565b915080611c45816124b4565b915050611b10565b50600754600854611c5d91611747565b821015611c74576008546007549350935050509091565b90939092509050565b5f805f805f611c8b86612037565b90505f611c9787612053565b90505f611ca38861206f565b90505f611cbc82611cb685818d896117b0565b906117b0565b9993985091965094509092505050565b5f808080611cda898661180a565b90505f611ce7898761180a565b90505f611cf4898861180a565b90505f611d01898961180a565b90505f611d1482611cb6858189896117b0565b949d949c50929a509298505050505050505050565b600d54158015611d395750600f54155b8015611d455750601154155b15611d4c57565b600d8054600e55600f8054601055601180546012555f928390559082905555565b5f805f805f805f611d7d8861175d565b9650965096509650965096509650611dc18860025f8d6001600160a01b03166001600160a01b031681526020019081526020015f20546117b090919063ffffffff16565b6001600160a01b038b165f90815260026020908152604080832093909355600190522054611def90886117b0565b6001600160a01b03808c165f9081526001602052604080822093909355908b1681522054611e1d9087611752565b6001600160a01b038a165f90815260016020526040902055611e3e826120a3565b611e4781612126565b611e518584612228565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051611e9691815260200190565b60405180910390a350505050505050505050565b5f805f805f805f611eba8861175d565b9650965096509650965096509650611efe8760015f8d6001600160a01b03166001600160a01b031681526020019081526020015f20546117b090919063ffffffff16565b6001600160a01b03808c165f90815260016020908152604080832094909455918c16815260029091522054611f339085611752565b6001600160a01b038a165f90815260026020908152604080832093909355600190522054611e1d9087611752565b5f805f805f805f611f718861175d565b9650965096509650965096509650611def8760015f8d6001600160a01b03166001600160a01b031681526020019081526020015f20546117b090919063ffffffff16565b5f805f805f805f611fc58861175d565b96509650965096509650965096506120098860025f8d6001600160a01b03166001600160a01b031681526020019081526020015f20546117b090919063ffffffff16565b6001600160a01b038b165f90815260026020908152604080832093909355600190522054611efe90886117b0565b5f61087361271061158d600d548561180a90919063ffffffff16565b5f61087361271061158d600f548561180a90919063ffffffff16565b6016545f906001600160a01b031661208857505f919050565b61087361271061158d6011548561180a90919063ffffffff16565b5f6120ac611726565b90505f6120b9838361180a565b305f908152600160205260409020549091506120d59082611752565b305f9081526001602090815260408083209390935560059052205460ff161561212157305f908152600260205260409020546121119084611752565b305f908152600260205260409020555b505050565b801561120b575f612135611726565b90505f612142838361180a565b6016546001600160a01b03165f908152600160205260409020549091506121699082611752565b601680546001600160a01b039081165f90815260016020908152604080832095909555925490911681526005909152205460ff16156121e1576016546001600160a01b03165f908152600260205260409020546121c69084611752565b6016546001600160a01b03165f908152600260205260409020555b6016546001600160a01b0316336001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161132591815260200190565b60085461223590836117b0565b6008556009546122459082611752565b6009555050565b5f6020828403121561225c575f80fd5b5035919050565b5f6020808352835180828501525f5b8181101561228e57858101830151858201604001528201612272565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461120b575f80fd5b5f80604083850312156122d3575f80fd5b82356122de816122ae565b946020939093013593505050565b5f602082840312156122fc575f80fd5b81356109f6816122ae565b5f805f60608486031215612319575f80fd5b8335612324816122ae565b92506020840135612334816122ae565b929592945050506040919091013590565b80358015158114612354575f80fd5b919050565b5f806040838503121561236a575f80fd5b8235915061237a60208401612345565b90509250929050565b5f60208284031215612393575f80fd5b6109f682612345565b5f80604083850312156123ad575f80fd5b82356123b8816122ae565b915060208301356123c8816122ae565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600b908201526a496e76616c69642062707360a81b604082015260600190565b600181811c9082168061244157607f821691505b60208210810361245f57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8181038181111561087357610873612479565b634e487b7160e01b5f52603160045260245ffd5b5f600182016124c5576124c5612479565b5060010190565b8082018082111561087357610873612479565b5f826124f957634e487b7160e01b5f52601260045260245ffd5b500490565b808202811582820484141761087357610873612479565b5f60208284031215612525575f80fd5b81516109f6816122ae565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561257e5784516001600160a01b031683529383019391830191600101612559565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ffaed18f20c394fefa3e104a12213ad0683c0fe12429fa7e8e9ad00b815256c764736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000009935f581f0500000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000000c4e6f6f646c657320426f776c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074e4f4f444c455300000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Noodles Bowl
Arg [1] : symbol_ (string): NOODLES
Arg [2] : totalSupply_ (uint256): 690000000000000000
Arg [3] : router_ (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000000000009935f581f050000
Arg [3] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 4e6f6f646c657320426f776c0000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 4e4f4f444c455300000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
28315:21442:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36922:173;;;;;;;;;;-1:-1:-1;36922:173:0;;;;;:::i;:::-;;:::i;:::-;;31085:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32070:193;;;;;;;;;;-1:-1:-1;32070:193:0;;;;;:::i;:::-;;:::i;:::-;;;1373:14:1;;1366:22;1348:41;;1336:2;1321:18;32070:193:0;1208:187:1;37301:121:0;;;;;;;;;;-1:-1:-1;37301:121:0;;;;;:::i;:::-;;:::i;33569:87::-;;;;;;;;;;-1:-1:-1;33638:10:0;;33569:87;;;1798:25:1;;;1786:2;1771:18;33569:87:0;1652:177:1;29296:41:0;;;;;;;;;;-1:-1:-1;29296:41:0;;;;-1:-1:-1;;;;;29296:41:0;;;;;;-1:-1:-1;;;;;2025:32:1;;;2007:51;;1995:2;1980:18;29296:41:0;1834:230:1;31362:95:0;;;;;;;;;;-1:-1:-1;31442:7:0;;31362:95;;29379:30;;;;;;;;;;-1:-1:-1;29379:30:0;;;;-1:-1:-1;;;;;29379:30:0;;;37103:190;;;;;;;;;;-1:-1:-1;37103:190:0;;;;;:::i;:::-;;:::i;32271:446::-;;;;;;;;;;-1:-1:-1;32271:446:0;;;;;:::i;:::-;;:::i;34584:322::-;;;;;;;;;;-1:-1:-1;34584:322:0;;;;;:::i;:::-;;:::i;31271:83::-;;;;;;;;;;-1:-1:-1;31337:9:0;;31271:83;;31337:9;;;;2880:36:1;;2868:2;2853:18;31271:83:0;2738:184:1;35368:477:0;;;;;;;;;;-1:-1:-1;35368:477:0;;;;;:::i;:::-;;:::i;32725:300::-;;;;;;;;;;-1:-1:-1;32725:300:0;;;;;:::i;:::-;;:::i;28984:26::-;;;;;;;;;;;;;;;;33664:421;;;;;;;;;;-1:-1:-1;33664:421:0;;;;;:::i;:::-;;:::i;29171:26::-;;;;;;;;;;;;;;;;36685:111;;;;;;;;;;-1:-1:-1;36685:111:0;;;;;:::i;:::-;;:::i;34093:483::-;;;;;;;;;;-1:-1:-1;34093:483:0;;;;;:::i;:::-;;:::i;29344:28::-;;;;;;;;;;-1:-1:-1;29344:28:0;;;;-1:-1:-1;;;;;29344:28:0;;;29446:33;;;;;;;;;;-1:-1:-1;29446:33:0;;;;-1:-1:-1;;;29446:33:0;;;;;;34914:446;;;;;;;;;;-1:-1:-1;34914:446:0;;;;;:::i;:::-;;:::i;43190:124::-;;;;;;;;;;-1:-1:-1;43190:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;43279:27:0;43255:4;43279:27;;;:18;:27;;;;;;;;;43190:124;29488:25;;;;;;;;;;-1:-1:-1;29488:25:0;;;;-1:-1:-1;;;29488:25:0;;;;;;37565:84;;;;;;;;;;-1:-1:-1;37565:84:0;;;;;:::i;:::-;;:::i;29067:35::-;;;;;;;;;;;;;;;;31465:198;;;;;;;;;;-1:-1:-1;31465:198:0;;;;;:::i;:::-;;:::i;5457:94::-;;;;;;;;;;;;;:::i;33441:120::-;;;;;;;;;;-1:-1:-1;33441:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;33533:20:0;33509:4;33533:20;;;:11;:20;;;;;;;;;33441:120;4806:87;;;;;;;;;;-1:-1:-1;4852:7:0;4879:6;-1:-1:-1;;;;;4879:6:0;4806:87;;37657:267;;;;;;;;;;-1:-1:-1;37657:267:0;;;;;:::i;:::-;;:::i;31176:87::-;;;;;;;;;;;;;:::i;33033:400::-;;;;;;;;;;-1:-1:-1;33033:400:0;;;;;:::i;:::-;;:::i;31671:199::-;;;;;;;;;;-1:-1:-1;31671:199:0;;;;;:::i;:::-;;:::i;37932:171::-;;;;;;;;;;-1:-1:-1;37932:171:0;;;;;:::i;:::-;;:::i;37430:127::-;;;;;;;;;;-1:-1:-1;37430:127:0;;;;;:::i;:::-;;:::i;29260:27::-;;;;;;;;;;;;;;;;29520:44;;;;;;;;;;;;;;;;31878:184;;;;;;;;;;-1:-1:-1;31878:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;32027:18:0;;;31995:7;32027:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;31878:184;36804:110;;;;;;;;;;-1:-1:-1;36804:110:0;;;;;:::i;:::-;;:::i;5706:192::-;;;;;;;;;;-1:-1:-1;5706:192:0;;;;;:::i;:::-;;:::i;36922:173::-;4852:7;4879:6;-1:-1:-1;;;;;4879:6:0;3604:10;5026:23;5018:68;;;;-1:-1:-1;;;5018:68:0;;;;;;;:::i;:::-;;;;;;;;;37036:5:::1;37023:9;:18;;36997:60;;;;-1:-1:-1::0;;;36997:60:0::1;;;;;;;:::i;:::-;37068:7;:19:::0;36922:173::o;31085:83::-;31122:13;31155:5;31148:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31085:83;:::o;32070:193::-;32172:4;32194:39;3604:10;32217:7;32226:6;32194:8;:39::i;:::-;-1:-1:-1;32251:4:0;32070:193;;;;;:::o;37301:121::-;4852:7;4879:6;-1:-1:-1;;;;;4879:6:0;3604:10;5026:23;5018:68;;;;-1:-1:-1;;;5018:68:0;;;;;;;:::i;:::-;37382:15:::1;:32:::0;;-1:-1:-1;;;;;;37382:32:0::1;-1:-1:-1::0;;;;;37382:32:0;;;::::1;::::0;;;::::1;::::0;;37301:121::o;37103:190::-;4852:7;4879:6;-1:-1:-1;;;;;4879:6:0;3604:10;5026:23;5018:68;;;;-1:-1:-1;;;5018:68:0;;;;;;;:::i;:::-;37226:5:::1;37209:13;:22;;37179:68;;;;-1:-1:-1::0;;;37179:68:0::1;;;;;;;:::i;:::-;37258:11;:27:::0;37103:190::o;32271:446::-;32403:4;32420:36;32430:6;32438:9;32449:6;32420:9;:36::i;:::-;32467:220;32490:6;3604:10;32538:138;32594:6;32538:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32538:19:0;;;;;;:11;:19;;;;;;;;3604:10;32538:33;;;;;;;;;;:37;:138::i;:::-;32467:8;:220::i;:::-;-1:-1:-1;32705:4:0;32271:446;;;;;:::o;34584:322::-;34678:7;34736;;34725;:18;;34703:110;;;;-1:-1:-1;;;34703:110:0;;5211:2:1;34703:110:0;;;5193:21:1;5250:2;5230:18;;;5223:30;5289:34;5269:18;;;5262:62;-1:-1:-1;;;5340:18:1;;;5333:40;5390:19;;34703:110:0;5009:406:1;34703:110:0;34824:19;34846:10;:8;:10::i;:::-;34824:32;-1:-1:-1;34874:24:0;:7;34824:32;34874:11;:24::i;:::-;34867:31;34584:322;-1:-1:-1;;;34584:322:0:o;35368:477::-;4852:7;4879:6;-1:-1:-1;;;;;4879:6:0;3604:10;5026:23;5018:68;;;;-1:-1:-1;;;5018:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35448:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;35440:60;;;::::0;-1:-1:-1;;;35440:60:0;;5622:2:1;35440:60:0::1;::::0;::::1;5604:21:1::0;5661:2;5641:18;;;5634:30;5700:29;5680:18;;;5673:57;5747:18;;35440:60:0::1;5420:351:1::0;35440:60:0::1;35516:9;35511:327;35535:9;:16:::0;35531:20;::::1;35511:327;;;35593:7;-1:-1:-1::0;;;;;35577:23:0::1;:9;35587:1;35577:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;35577:12:0::1;:23:::0;35573:254:::1;;35636:9;35646:16:::0;;:20:::1;::::0;35665:1:::1;::::0;35646:20:::1;:::i;:::-;35636:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;35621:9:::1;:12:::0;;-1:-1:-1;;;;;35636:31:0;;::::1;::::0;35631:1;;35621:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;35621:46:0::1;-1:-1:-1::0;;;;;35621:46:0;;::::1;;::::0;;35686:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;35725:11:::1;:20:::0;;;;:28;;-1:-1:-1;;35725:28:0::1;::::0;;35772:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;35772:15:0;;;;;-1:-1:-1;;;;;;35772:15:0::1;::::0;;;;;35511:327:::1;35368:477:::0;:::o;35573:254::-:1;35553:3:::0;::::1;::::0;::::1;:::i;:::-;;;;35511:327;;;;35368:477:::0;:::o;32725:300::-;3604:10;32840:4;32934:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;32934:34:0;;;;;;;;;;32840:4;;32862:133;;32912:7;;32934:50;;32973:10;32934:38;:50::i;33664:421::-;3604:10;33716:14;33779:19;;;:11;:19;;;;;;;;33778:20;33756:114;;;;-1:-1:-1;;;33756:114:0;;6647:2:1;33756:114:0;;;6629:21:1;6686:2;6666:18;;;6659:30;6725:34;6705:18;;;6698:62;-1:-1:-1;;;6776:18:1;;;6769:42;6828:19;;33756:114:0;6445:408:1;33756:114:0;33882:15;33913:19;33924:7;33913:10;:19::i;:::-;-1:-1:-1;;;;;;;;33961:15:0;;;;;;:7;:15;;;;;;33881:51;;-1:-1:-1;33961:28:0;;:15;-1:-1:-1;33881:51:0;;-1:-1:-1;;33961:19:0;:28::i;:::-;-1:-1:-1;;;;;33943:15:0;;;;;;:7;:15;;;;;:46;34010:7;;:20;;34022:7;34010:11;:20::i;:::-;34000:7;:30;34054:10;;:23;;34069:7;34054:14;:23::i;:::-;34041:10;:36;-1:-1:-1;;;33664:421:0:o;36685:111::-;4852:7;4879:6;-1:-1:-1;;;;;4879:6:0;3604:10;5026:23;5018:68;;;;-1:-1:-1;;;5018:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36754:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;36754:34:0::1;36784:4;36754:34;::::0;;36685:111::o;34093:483::-;34211:7;34255;;34244;:18;;34236:62;;;;-1:-1:-1;;;34236:62:0;;7060:2:1;34236:62:0;;;7042:21:1;7099:2;7079:18;;;7072:30;7138:33;7118:18;;;7111:61;7189:18;;34236:62:0;6858:355:1;34236:62:0;34314:17;34309:260;;34349:15;34380:19;34391:7;34380:10;:19::i;:::-;-1:-1:-1;34348:51:0;;-1:-1:-1;34414:14:0;;-1:-1:-1;;;;;;34414:14:0;34309:260;34464:23;34501:19;34512:7;34501:10;:19::i;:::-;-1:-1:-1;34461:59:0;;-1:-1:-1;34535:22:0;;-1:-1:-1;;;;;;34535:22:0;34914:446;4852:7;4879:6;-1:-1:-1;;;;;4879:6:0;3604:10;5026:23;5018:68;;;;-1:-1:-1;;;5018:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35109:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;35108:21;35100:61;;;::::0;-1:-1:-1;;;35100:61:0;;5622:2:1;35100:61:0::1;::::0;::::1;5604:21:1::0;5661:2;5641:18;;;5634:30;5700:29;5680:18;;;5673:57;5747:18;;35100:61:0::1;5420:351:1::0;35100:61:0::1;-1:-1:-1::0;;;;;35176:16:0;::::1;35195:1;35176:16:::0;;;:7:::1;:16;::::0;;;;;:20;35172:109:::1;;-1:-1:-1::0;;;;;35252:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;35232:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;35213:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;35172:109:::1;-1:-1:-1::0;;;;;35291:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;35291:27:0::1;35314:4;35291:27:::0;;::::1;::::0;;;35329:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;35329:23:0::1;::::0;;::::1;::::0;;34914:446::o;37565:84::-;4852:7;4879:6;-1:-1:-1;;;;;4879:6:0;3604:10;5026:23;5018:68;;;;-1:-1:-1;;;5018:68:0;;;;;;;:::i;:::-;37624:6:::1;:17:::0;;;::::1;;-1:-1:-1::0;;;37624:17:0::1;-1:-1:-1::0;;;;37624:17:0;;::::1;::::0;;;::::1;::::0;;37565:84::o;31465:198::-;-1:-1:-1;;;;;31555:20:0;;31531:7;31555:20;;;:11;:20;;;;;;;;31551:49;;;-1:-1:-1;;;;;;31584:16:0;;;;;:7;:16;;;;;;;31465:198::o;31551:49::-;-1:-1:-1;;;;;31638:16:0;;;;;;:7;:16;;;;;;31618:37;;:19;:37::i;5457:94::-;4852:7;4879:6;-1:-1:-1;;;;;4879:6:0;3604:10;5026:23;5018:68;;;;-1:-1:-1;;;5018:68:0;;;;;;;:::i;:::-;5522:21:::1;5540:1;5522:9;:21::i;:::-;5457:94::o:0;37657:267::-;4852:7;4879:6;-1:-1:-1;;;;;4879:6:0;3604:10;5026:23;5018:68;;;;-1:-1:-1;;;5018:68:0;;;;;;;:::i;:::-;37830:5:::1;37811:15;:24;;37765:109;;;;-1:-1:-1::0;;;37765:109:0::1;;;;;;;:::i;:::-;37885:13;:31:::0;37657:267::o;31176:87::-;31215:13;31248:7;31241:14;;;;;:::i;33033:400::-;33153:4;33175:228;3604:10;33225:7;33247:145;33304:15;33247:145;;;;;;;;;;;;;;;;;3604:10;33247:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;33247:34:0;;;;;;;;;;;;:38;:145::i;31671:199::-;31776:4;31798:42;3604:10;31822:9;31833:6;31798:9;:42::i;37932:171::-;4852:7;4879:6;-1:-1:-1;;;;;4879:6:0;3604:10;5026:23;5018:68;;;;-1:-1:-1;;;5018:68:0;;;;;;;:::i;:::-;38009:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;38009:32:0::1;-1:-1:-1::0;;;;38009:32:0;;::::1;;::::0;;38057:38:::1;::::0;::::1;::::0;::::1;::::0;38033:8;1373:14:1;1366:22;1348:41;;1336:2;1321:18;;1208:187;38057:38:0::1;;;;;;;;37932:171:::0;:::o;37430:127::-;4852:7;4879:6;-1:-1:-1;;;;;4879:6:0;3604:10;5026:23;5018:68;;;;-1:-1:-1;;;5018:68:0;;;;;;;:::i;:::-;37508:29:::1;:41:::0;37430:127::o;36804:110::-;4852:7;4879:6;-1:-1:-1;;;;;4879:6:0;3604:10;5026:23;5018:68;;;;-1:-1:-1;;;5018:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36871:27:0::1;36901:5;36871:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;36871:35:0::1;::::0;;36804:110::o;5706:192::-;4852:7;4879:6;-1:-1:-1;;;;;4879:6:0;3604:10;5026:23;5018:68;;;;-1:-1:-1;;;5018:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5795:22:0;::::1;5787:73;;;::::0;-1:-1:-1;;;5787:73:0;;7420:2:1;5787:73:0::1;::::0;::::1;7402:21:1::0;7459:2;7439:18;;;7432:30;7498:34;7478:18;;;7471:62;-1:-1:-1;;;7549:18:1;;;7542:36;7595:19;;5787:73:0::1;7218:402:1::0;5787:73:0::1;5871:19;5881:8;5871:9;:19::i;:::-;5706:192:::0;:::o;43322:371::-;-1:-1:-1;;;;;43449:19:0;;43441:68;;;;-1:-1:-1;;;43441:68:0;;7827:2:1;43441:68:0;;;7809:21:1;7866:2;7846:18;;;7839:30;7905:34;7885:18;;;7878:62;-1:-1:-1;;;7956:18:1;;;7949:34;8000:19;;43441:68:0;7625:400:1;43441:68:0;-1:-1:-1;;;;;43528:21:0;;43520:68;;;;-1:-1:-1;;;43520:68:0;;8232:2:1;43520:68:0;;;8214:21:1;8271:2;8251:18;;;8244:30;8310:34;8290:18;;;8283:62;-1:-1:-1;;;8361:18:1;;;8354:32;8403:19;;43520:68:0;8030:398:1;43520:68:0;-1:-1:-1;;;;;43601:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;43653:32;;1798:25:1;;;43653:32:0;;1771:18:1;43653:32:0;;;;;;;;43322:371;;;:::o;43701:2290::-;-1:-1:-1;;;;;43823:18:0;;43815:68;;;;-1:-1:-1;;;43815:68:0;;8635:2:1;43815:68:0;;;8617:21:1;8674:2;8654:18;;;8647:30;8713:34;8693:18;;;8686:62;-1:-1:-1;;;8764:18:1;;;8757:35;8809:19;;43815:68:0;8433:401:1;43815:68:0;-1:-1:-1;;;;;43902:16:0;;43894:64;;;;-1:-1:-1;;;43894:64:0;;9041:2:1;43894:64:0;;;9023:21:1;9080:2;9060:18;;;9053:30;9119:34;9099:18;;;9092:62;-1:-1:-1;;;9170:18:1;;;9163:33;9213:19;;43894:64:0;8839:399:1;43894:64:0;43986:1;43977:6;:10;43969:64;;;;-1:-1:-1;;;43969:64:0;;9445:2:1;43969:64:0;;;9427:21:1;9484:2;9464:18;;;9457:30;9523:34;9503:18;;;9496:62;-1:-1:-1;;;9574:18:1;;;9567:39;9623:19;;43969:64:0;9243:405:1;43969:64:0;44079:2;44064:12;;:17;:48;;;;;44099:13;44085:11;:27;44064:48;:82;;;;-1:-1:-1;44132:13:0;;-1:-1:-1;;;;;44116:30:0;;;44132:13;;44116:30;44064:82;44046:262;;;44173:11;44187:27;44201:13;44187:11;:27;:::i;:::-;44173:41;-1:-1:-1;44244:10:0;44277;;;44269:27;;;;-1:-1:-1;;;44269:27:0;;;;;;9855:2:1;9837:21;;;9894:1;9874:18;;;9867:29;-1:-1:-1;;;9927:2:1;9912:18;;9905:34;9971:2;9956:18;;9653:327;44269:27:0;44158:150;;44046:262;44339:2;44323:12;;:18;;:43;;;;;44345:13;;44362:4;44345:21;44323:43;44320:92;;;44397:3;44381:13;:19;44320:92;44443:13;;-1:-1:-1;;;;;44443:13:0;;;44427:30;;;;44424:75;;44473:12;:14;;;:12;:14;;;:::i;:::-;;;;;;44424:75;44526:6;;-1:-1:-1;;;44526:6:0;;;;:33;;;;-1:-1:-1;;;;;;44537:22:0;;;;;;:18;:22;;;;;;;;44536:23;44526:33;:65;;;;-1:-1:-1;44577:13:0;;-1:-1:-1;;;;;44563:28:0;;;44577:13;;44563:28;;44526:65;44523:199;;;44641:27;44662:5;44641:16;44653:3;44641:7;;:11;;:16;;;;:::i;:::-;:20;;:27::i;:::-;44631:6;44615:13;44625:2;44615:9;:13::i;:::-;:22;;;;:::i;:::-;:53;;44607:103;;;;-1:-1:-1;;;44607:103:0;;10317:2:1;44607:103:0;;;10299:21:1;10356:2;10336:18;;;10329:30;10395:34;10375:18;;;10368:62;-1:-1:-1;;;10446:18:1;;;10439:35;10491:19;;44607:103:0;10115:401:1;44607:103:0;45016:28;45047:24;45065:4;45047:9;:24::i;:::-;45148:29;;45016:55;;-1:-1:-1;45111:66:0;;;;;;;45206:53;;-1:-1:-1;45243:16:0;;-1:-1:-1;;;45243:16:0;;;;45242:17;45206:53;:91;;;;-1:-1:-1;45284:13:0;;-1:-1:-1;;;;;45276:21:0;;;45284:13;;45276:21;;45206:91;:129;;;;-1:-1:-1;45314:21:0;;-1:-1:-1;;;45314:21:0;;;;45206:129;45188:320;;;45385:29;;45362:52;;45458:38;45475:20;45458:16;:38::i;:::-;-1:-1:-1;;;;;45702:24:0;;45581:12;45702:24;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;45730:22:0;;;;;;:18;:22;;;;;;;;45702:50;45700:53;:121;;;;-1:-1:-1;45774:13:0;;-1:-1:-1;;;;;45758:30:0;;;45774:13;;45758:30;;:62;;-1:-1:-1;45806:13:0;;-1:-1:-1;;;;;45792:28:0;;;45806:13;;45792:28;45758:62;45696:168;;;-1:-1:-1;45848:4:0;45696:168;45942:41;45957:4;45963:2;45967:6;45975:7;45942:14;:41::i;:::-;43804:2187;;;43701:2290;;;:::o;11171:240::-;11291:7;11352:12;11344:6;;;;11336:29;;;;-1:-1:-1;;;11336:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;11387:5:0;;;11171:240::o;40447:164::-;40489:7;40510:15;40527;40546:19;:17;:19::i;:::-;40509:56;;-1:-1:-1;40509:56:0;-1:-1:-1;40583:20:0;40509:56;;40583:11;:20::i;:::-;40576:27;;;;40447:164;:::o;10029:98::-;10087:7;10114:5;10118:1;10114;:5;:::i;8892:98::-;8950:7;8977:5;8981:1;8977;:5;:::i;38359:841::-;38459:7;38481;38503;38525;38547;38569;38591;38641:23;38679:12;38706:18;38739:16;38769:20;38781:7;38769:11;:20::i;:::-;38626:163;;;;;;;;38801:15;38818:23;38843:12;38859:136;38885:7;38907:4;38926:10;38951:8;38974:10;:8;:10::i;:::-;38859:11;:136::i;:::-;38800:195;;-1:-1:-1;38800:195:0;-1:-1:-1;38800:195:0;-1:-1:-1;39099:15:0;;-1:-1:-1;39129:4:0;;-1:-1:-1;39148:10:0;;-1:-1:-1;39173:8:0;-1:-1:-1;;;;38359:841:0;;;;;;;;;:::o;9273:98::-;9331:7;9358:5;9362:1;9358;:5;:::i;5906:173::-;5962:16;5981:6;;-1:-1:-1;;;;;5998:17:0;;;-1:-1:-1;;;;;;5998:17:0;;;;;;6031:40;;5981:6;;;;;;;6031:40;;5962:16;6031:40;5951:128;5906:173;:::o;9630:98::-;9688:7;9715:5;9719:1;9715;:5;:::i;45999:602::-;29865:16;:23;;-1:-1:-1;;;;29865:23:0;-1:-1:-1;;;29865:23:0;;;46160:16:::1;::::0;;46174:1:::1;46160:16:::0;;;;;::::1;::::0;;-1:-1:-1;;46160:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;46160:16:0::1;46136:40;;46205:4;46187;46192:1;46187:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;46187:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;46231:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;46231:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;46187:7;;46231:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46221:4;46226:1;46221:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;46221:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;46298:15:::1;::::0;46266:62:::1;::::0;46283:4:::1;::::0;46298:15:::1;46316:11:::0;46266:8:::1;:62::i;:::-;46367:15;::::0;46537::::1;::::0;46367:226:::1;::::0;-1:-1:-1;;;46367:226:0;;-1:-1:-1;;;;;46367:15:0;;::::1;::::0;:66:::1;::::0;:226:::1;::::0;46448:11;;46367:15:::1;::::0;46518:4;;46537:15;::::1;::::0;46567::::1;::::0;46367:226:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;29911:16:0;:24;;-1:-1:-1;;;;29911:24:0;;;-1:-1:-1;;;;45999:602:0:o;46682:838::-;46838:7;46833:28;;46847:14;:12;:14::i;:::-;-1:-1:-1;;;;;46878:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;46902:22:0;;;;;;:11;:22;;;;;;;;46901:23;46878:46;46874:597;;;46941:48;46963:6;46971:9;46982:6;46941:21;:48::i;:::-;46874:597;;;-1:-1:-1;;;;;47012:19:0;;;;;;:11;:19;;;;;;;;47011:20;:46;;;;-1:-1:-1;;;;;;47035:22:0;;;;;;:11;:22;;;;;;;;47011:46;47007:464;;;47074:46;47094:6;47102:9;47113:6;47074:19;:46::i;47007:464::-;-1:-1:-1;;;;;47143:19:0;;;;;;:11;:19;;;;;;;;47142:20;:47;;;;-1:-1:-1;;;;;;47167:22:0;;;;;;:11;:22;;;;;;;;47166:23;47142:47;47138:333;;;47206:44;47224:6;47232:9;47243:6;47206:17;:44::i;47138:333::-;-1:-1:-1;;;;;47272:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;47295:22:0;;;;;;:11;:22;;;;;;;;47272:45;47268:203;;;47334:48;47356:6;47364:9;47375:6;47334:21;:48::i;47268:203::-;47415:44;47433:6;47441:9;47452:6;47415:17;:44::i;:::-;47488:7;47483:29;;47497:15;43067;;43057:7;:25;43109:21;;43093:13;:37;43155:19;;43141:11;:33;43013:169;47497:15;46682:838;;;;:::o;40619:605::-;40717:7;;40753;;40670;;;;;40771:338;40795:9;:16;40791:20;;40771:338;;;40879:7;40855;:21;40863:9;40873:1;40863:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;40863:12:0;40855:21;;;;;;;;;;;;;:31;;:83;;;40931:7;40907;:21;40915:9;40925:1;40915:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;40915:12:0;40907:21;;;;;;;;;;;;;:31;40855:83;40833:146;;;40962:7;;40971;;40954:25;;;;;;;40619:605;;:::o;40833:146::-;41004:34;41016:7;:21;41024:9;41034:1;41024:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;41024:12:0;41016:21;;;;;;;;;;;;;41004:7;;:11;:34::i;:::-;40994:44;;41063:34;41075:7;:21;41083:9;41093:1;41083:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;41083:12:0;41075:21;;;;;;;;;;;;;41063:7;;:11;:34::i;:::-;41053:44;-1:-1:-1;40813:3:0;;;;:::i;:::-;;;;40771:338;;;-1:-1:-1;41145:7:0;;41133;;:20;;:11;:20::i;:::-;41123:7;:30;41119:61;;;41163:7;;41172;;41155:25;;;;;;40619:605;;:::o;41119:61::-;41199:7;;41208;;-1:-1:-1;40619:605:0;-1:-1:-1;40619:605:0:o;39208:549::-;39309:7;39331;39353;39375;39410:12;39425:24;39441:7;39425:15;:24::i;:::-;39410:39;;39460:18;39481:30;39503:7;39481:21;:30::i;:::-;39460:51;;39522:19;39544:28;39564:7;39544:19;:28::i;:::-;39522:50;-1:-1:-1;39583:23:0;39609:74;39522:50;39609:33;39631:10;39609:33;:7;39621:4;39609:11;:17::i;:::-;:21;;:33::i;:74::-;39583:100;39719:4;;-1:-1:-1;39725:10:0;;-1:-1:-1;39725:10:0;-1:-1:-1;39208:549:0;;-1:-1:-1;;;39208:549:0:o;39765:674::-;39991:7;;;;40088:24;:7;40100:11;40088;:24::i;:::-;40070:42;-1:-1:-1;40123:12:0;40138:21;:4;40147:11;40138:8;:21::i;:::-;40123:36;-1:-1:-1;40170:18:0;40191:27;:10;40206:11;40191:14;:27::i;:::-;40170:48;-1:-1:-1;40229:16:0;40248:25;:8;40261:11;40248:12;:25::i;:::-;40229:44;-1:-1:-1;40284:23:0;40310:71;40229:44;40310:33;40332:10;40310:33;:7;40322:4;40310:11;:17::i;:71::-;40400:7;;;;-1:-1:-1;40426:4:0;;-1:-1:-1;39765:674:0;;-1:-1:-1;;;;;;;;;39765:674:0:o;42680:325::-;42727:7;;:12;:34;;;;-1:-1:-1;42743:13:0;;:18;42727:34;:54;;;;-1:-1:-1;42765:11:0;;:16;42727:54;42723:67;;;42680:325::o;42723:67::-;42820:7;;;42802:15;:25;42862:13;;;42838:21;:37;42908:11;;;42886:19;:33;-1:-1:-1;42932:11:0;;;;42954:17;;;;42982:15;42680:325::o;49001:753::-;49152:15;49182:23;49220:12;49247:23;49285:12;49312:18;49345:16;49375:19;49386:7;49375:10;:19::i;:::-;49137:257;;;;;;;;;;;;;;49423:28;49443:7;49423;:15;49431:6;-1:-1:-1;;;;;49423:15:0;-1:-1:-1;;;;;49423:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;49405:15:0;;;;;;:7;:15;;;;;;;;:46;;;;49480:7;:15;;;;:28;;49500:7;49480:19;:28::i;:::-;-1:-1:-1;;;;;49462:15:0;;;;;;;:7;:15;;;;;;:46;;;;49540:18;;;;;;;:39;;49563:15;49540:22;:39::i;:::-;-1:-1:-1;;;;;49519:18:0;;;;;;:7;:18;;;;;:60;49590:26;49605:10;49590:14;:26::i;:::-;49627:25;49643:8;49627:15;:25::i;:::-;49663:23;49675:4;49681;49663:11;:23::i;:::-;49719:9;-1:-1:-1;;;;;49702:44:0;49711:6;-1:-1:-1;;;;;49702:44:0;;49730:15;49702:44;;;;1798:25:1;;1786:2;1771:18;;1652:177;49702:44:0;;;;;;;;49126:628;;;;;;;49001:753;;;:::o;48228:765::-;48377:15;48407:23;48445:12;48472:23;48510:12;48537:18;48570:16;48600:19;48611:7;48600:10;:19::i;:::-;48362:257;;;;;;;;;;;;;;48648:28;48668:7;48648;:15;48656:6;-1:-1:-1;;;;;48648:15:0;-1:-1:-1;;;;;48648:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;48630:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;48708:18;;;;;:7;:18;;;;;:39;;48731:15;48708:22;:39::i;:::-;-1:-1:-1;;;;;48687:18:0;;;;;;:7;:18;;;;;;;;:60;;;;48779:7;:18;;;;:39;;48802:15;48779:22;:39::i;47528:692::-;47675:15;47705:23;47743:12;47770:23;47808:12;47835:18;47868:16;47898:19;47909:7;47898:10;:19::i;:::-;47660:257;;;;;;;;;;;;;;47946:28;47966:7;47946;:15;47954:6;-1:-1:-1;;;;;47946:15:0;-1:-1:-1;;;;;47946:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;35853:824::-;36004:15;36034:23;36072:12;36099:23;36137:12;36164:18;36197:16;36227:19;36238:7;36227:10;:19::i;:::-;35989:257;;;;;;;;;;;;;;36275:28;36295:7;36275;:15;36283:6;-1:-1:-1;;;;;36275:15:0;-1:-1:-1;;;;;36275:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;36257:15:0;;;;;;:7;:15;;;;;;;;:46;;;;36332:7;:15;;;;:28;;36352:7;36332:19;:28::i;42128:130::-;42192:7;42219:31;42244:5;42219:20;42231:7;;42219;:11;;:20;;;;:::i;42266:174::-;42363:7;42395:37;42426:5;42395:26;42407:13;;42395:7;:11;;:26;;;;:::i;42448:224::-;42572:15;;42543:7;;-1:-1:-1;;;;;42572:15:0;42568:43;;-1:-1:-1;42610:1:0;;42448:224;-1:-1:-1;42448:224:0:o;42568:43::-;42629:35;42658:5;42629:24;42641:11;;42629:7;:11;;:24;;;;:::i;41232:355::-;41295:19;41317:10;:8;:10::i;:::-;41295:32;-1:-1:-1;41338:18:0;41359:27;:10;41295:32;41359:14;:27::i;:::-;41438:4;41422:22;;;;:7;:22;;;;;;41338:48;;-1:-1:-1;41422:38:0;;41338:48;41422:26;:38::i;:::-;41413:4;41397:22;;;;:7;:22;;;;;;;;:63;;;;41475:11;:26;;;;;;41471:108;;;41557:4;41541:22;;;;:7;:22;;;;;;:38;;41568:10;41541:26;:38::i;:::-;41532:4;41516:22;;;;:7;:22;;;;;:63;41471:108;41284:303;;41232:355;:::o;41595:525::-;41661:12;;41657:456;;41690:19;41712:10;:8;:10::i;:::-;41690:32;-1:-1:-1;41737:16:0;41756:25;:8;41690:32;41756:12;:25::i;:::-;41831:15;;-1:-1:-1;;;;;41831:15:0;41823:24;;;;:7;:24;;;;;;41737:44;;-1:-1:-1;41823:38:0;;41737:44;41823:28;:38::i;:::-;41804:15;;;-1:-1:-1;;;;;41804:15:0;;;41796:24;;;;:7;:24;;;;;;;;:65;;;;41892:15;;;;;41880:28;;:11;:28;;;;;;;41876:156;;;41962:15;;-1:-1:-1;;;;;41962:15:0;41954:24;;;;:7;:24;;;;;;:78;;42005:8;41954:28;:78::i;:::-;41935:15;;-1:-1:-1;;;;;41935:15:0;41927:24;;;;:7;:24;;;;;:105;41876:156;42075:15;;-1:-1:-1;;;;;42075:15:0;3604:10;-1:-1:-1;;;;;42052:49:0;;42092:8;42052:49;;;;1798:25:1;;1786:2;1771:18;;1652:177;38204:147:0;38282:7;;:17;;38294:4;38282:11;:17::i;:::-;38272:7;:27;38323:10;;:20;;38338:4;38323:14;:20::i;:::-;38310:10;:33;-1:-1:-1;;38204:147:0:o;14:180:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:548::-;311:4;340:2;369;358:9;351:21;401:6;395:13;444:6;439:2;428:9;424:18;417:34;469:1;479:140;493:6;490:1;487:13;479:140;;;588:14;;;584:23;;578:30;554:17;;;573:2;550:26;543:66;508:10;;479:140;;;483:3;668:1;663:2;654:6;643:9;639:22;635:31;628:42;738:2;731;727:7;722:2;714:6;710:15;706:29;695:9;691:45;687:54;679:62;;;;199:548;;;;:::o;752:131::-;-1:-1:-1;;;;;827:31:1;;817:42;;807:70;;873:1;870;863:12;888:315;956:6;964;1017:2;1005:9;996:7;992:23;988:32;985:52;;;1033:1;1030;1023:12;985:52;1072:9;1059:23;1091:31;1116:5;1091:31;:::i;:::-;1141:5;1193:2;1178:18;;;;1165:32;;-1:-1:-1;;;888:315:1:o;1400:247::-;1459:6;1512:2;1500:9;1491:7;1487:23;1483:32;1480:52;;;1528:1;1525;1518:12;1480:52;1567:9;1554:23;1586:31;1611:5;1586:31;:::i;2277:456::-;2354:6;2362;2370;2423:2;2411:9;2402:7;2398:23;2394:32;2391:52;;;2439:1;2436;2429:12;2391:52;2478:9;2465:23;2497:31;2522:5;2497:31;:::i;:::-;2547:5;-1:-1:-1;2604:2:1;2589:18;;2576:32;2617:33;2576:32;2617:33;:::i;:::-;2277:456;;2669:7;;-1:-1:-1;;;2723:2:1;2708:18;;;;2695:32;;2277:456::o;2927:160::-;2992:20;;3048:13;;3041:21;3031:32;;3021:60;;3077:1;3074;3067:12;3021:60;2927:160;;;:::o;3092:248::-;3157:6;3165;3218:2;3206:9;3197:7;3193:23;3189:32;3186:52;;;3234:1;3231;3224:12;3186:52;3270:9;3257:23;3247:33;;3299:35;3330:2;3319:9;3315:18;3299:35;:::i;:::-;3289:45;;3092:248;;;;;:::o;3345:180::-;3401:6;3454:2;3442:9;3433:7;3429:23;3425:32;3422:52;;;3470:1;3467;3460:12;3422:52;3493:26;3509:9;3493:26;:::i;3530:388::-;3598:6;3606;3659:2;3647:9;3638:7;3634:23;3630:32;3627:52;;;3675:1;3672;3665:12;3627:52;3714:9;3701:23;3733:31;3758:5;3733:31;:::i;:::-;3783:5;-1:-1:-1;3840:2:1;3825:18;;3812:32;3853:33;3812:32;3853:33;:::i;:::-;3905:7;3895:17;;;3530:388;;;;;:::o;3923:356::-;4125:2;4107:21;;;4144:18;;;4137:30;4203:34;4198:2;4183:18;;4176:62;4270:2;4255:18;;3923:356::o;4284:335::-;4486:2;4468:21;;;4525:2;4505:18;;;4498:30;-1:-1:-1;;;4559:2:1;4544:18;;4537:41;4610:2;4595:18;;4284:335::o;4624:380::-;4703:1;4699:12;;;;4746;;;4767:61;;4821:4;4813:6;4809:17;4799:27;;4767:61;4874:2;4866:6;4863:14;4843:18;4840:38;4837:161;;4920:10;4915:3;4911:20;4908:1;4901:31;4955:4;4952:1;4945:15;4983:4;4980:1;4973:15;4837:161;;4624:380;;;:::o;5776:127::-;5837:10;5832:3;5828:20;5825:1;5818:31;5868:4;5865:1;5858:15;5892:4;5889:1;5882:15;5908:127;5969:10;5964:3;5960:20;5957:1;5950:31;6000:4;5997:1;5990:15;6024:4;6021:1;6014:15;6040:128;6107:9;;;6128:11;;;6125:37;;;6142:18;;:::i;6173:127::-;6234:10;6229:3;6225:20;6222:1;6215:31;6265:4;6262:1;6255:15;6289:4;6286:1;6279:15;6305:135;6344:3;6365:17;;;6362:43;;6385:18;;:::i;:::-;-1:-1:-1;6432:1:1;6421:13;;6305:135::o;9985:125::-;10050:9;;;10071:10;;;10068:36;;;10084:18;;:::i;10521:217::-;10561:1;10587;10577:132;;10631:10;10626:3;10622:20;10619:1;10612:31;10666:4;10663:1;10656:15;10694:4;10691:1;10684:15;10577:132;-1:-1:-1;10723:9:1;;10521:217::o;10743:168::-;10816:9;;;10847;;10864:15;;;10858:22;;10844:37;10834:71;;10885:18;;:::i;11048:251::-;11118:6;11171:2;11159:9;11150:7;11146:23;11142:32;11139:52;;;11187:1;11184;11177:12;11139:52;11219:9;11213:16;11238:31;11263:5;11238:31;:::i;11304:980::-;11566:4;11614:3;11603:9;11599:19;11645:6;11634:9;11627:25;11671:2;11709:6;11704:2;11693:9;11689:18;11682:34;11752:3;11747:2;11736:9;11732:18;11725:31;11776:6;11811;11805:13;11842:6;11834;11827:22;11880:3;11869:9;11865:19;11858:26;;11919:2;11911:6;11907:15;11893:29;;11940:1;11950:195;11964:6;11961:1;11958:13;11950:195;;;12029:13;;-1:-1:-1;;;;;12025:39:1;12013:52;;12120:15;;;;12085:12;;;;12061:1;11979:9;11950:195;;;-1:-1:-1;;;;;;;12201:32:1;;;;12196:2;12181:18;;12174:60;-1:-1:-1;;;12265:3:1;12250:19;12243:35;12162:3;11304:980;-1:-1:-1;;;11304:980:1:o
Swarm Source
ipfs://ffaed18f20c394fefa3e104a12213ad0683c0fe12429fa7e8e9ad00b815256c7
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.