ERC-20
Overview
Max Total Supply
1,000,000,000 NERD
Holders
43
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
1,184,837.397179489 NERDValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
NERD
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-11-29 */ pragma solidity ^0.8.1; // SPDX-License-Identifier: Unlicensed interface IERC20 { 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); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @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) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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. */ contract Ownable is Context { address private _owner; address private _previousOwner; uint256 private _lockTime; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } function geUnlockTime() public view returns (uint256) { return _lockTime; } //Locks the contract for owner for the amount of time provided function lock(uint256 time) public virtual onlyOwner { _previousOwner = _owner; _owner = address(0); _lockTime = block.timestamp + time; emit OwnershipTransferred(_owner, address(0)); } //Unlocks the contract for owner when _lockTime is exceeds function unlock() public virtual { require(_previousOwner == msg.sender, "You don't have permission to unlock"); require(block.timestamp > _lockTime , "Contract is locked until 7 days"); emit OwnershipTransferred(_owner, _previousOwner); _owner = _previousOwner; } } // pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract NERD is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; address deadAddress = 0x000000000000000000000000000000000000dEaD; string private _name = "NERD"; string private _symbol = "NERD"; uint8 private _decimals = 9; uint256 private initialsupply = 1_000_000_000; uint256 private _tTotal = initialsupply * 10 ** _decimals; address payable private _marketingWallet; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping(address => uint256) private buycooldown; mapping(address => uint256) private sellcooldown; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private _isExcluded; mapping (address => bool) private _isBlacklisted; address[] private _excluded; bool private cooldownEnabled = true; uint256 public cooldown = 30 seconds; uint256 private constant MAX = ~uint256(0); uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint256 public _taxFee = 0; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee = 5; uint256 private _previousLiquidityFee = _liquidityFee; uint256 public _marketingFee = 5; uint256 private _previousMarketingFee = _marketingFee; uint256 private maxBuyPercent = 10; uint256 private maxBuyDivisor = 1000; uint256 private _maxBuyAmount = (_tTotal * maxBuyPercent) / maxBuyDivisor; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 private numTokensSellToAddToLiquidity = _tTotal / 100; // 1% event ToMarketing(uint256 bnbSent); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor (address marketingWallet) { _rOwned[_msgSender()] = _rTotal; _marketingWallet = payable(marketingWallet); // Pancake Swap V2 address // IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x10ED43C718714eb63d5aA57B78B54704E256024E); // uniswap address IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_marketingWallet] = true; emit Transfer(address(0), _msgSender(), _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 allowance(address owner, address spender) public view override returns (uint256) {return _allowances[owner][spender];} function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function setNumTokensSellToAddToLiquidity(uint256 percent, uint256 divisor) external onlyOwner() { uint256 swapAmount = _tTotal.mul(percent).div(divisor); numTokensSellToAddToLiquidity = swapAmount; } function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() { _liquidityFee = liquidityFee; } function setMarketingFeePercent(uint256 marketingFee) external onlyOwner() { _marketingFee = marketingFee; } function setCooldown(uint256 _cooldown) external onlyOwner() { cooldown = _cooldown; } function setMaxBuyPercent(uint256 percent, uint divisor) external onlyOwner { require(percent >= 1 && divisor <= 1000); // cannot set lower than .1% uint256 new_tx = _tTotal.mul(percent).div(divisor); require(new_tx >= (_tTotal / 1000), "Max tx must be above 0.1% of total supply."); _maxBuyAmount = new_tx; } 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 setBlacklistStatus(address account, bool Blacklisted) external onlyOwner { if (Blacklisted = true) { _isBlacklisted[account] = true; } else if(Blacklisted = false) { _isBlacklisted[account] = false; } } 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 isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function excludeFromReward(address account) public onlyOwner() { require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.'); // require(account != 0x10ED43C718714eb63d5aA57B78B54704E256024E, '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 excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } //to receive ETH from uniswapV2Router when swapping 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 tMarketing) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, tMarketing, _getRate()); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity, tMarketing); } function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256) { uint256 tFee = calculateTaxFee(tAmount); uint256 tMarketing = calculateMarketingFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity).sub(tMarketing); return (tTransferAmount, tFee, tMarketing, tLiquidity); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rMarketing = tMarketing.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity).sub(rMarketing); 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 _takeMarketing(uint256 tMarketing) private { uint256 currentRate = _getRate(); uint256 rMarketing = tMarketing.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tMarketing); } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div( 10**2 ); } function calculateMarketingFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_marketingFee).div( 10**2 ); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div( 10**2 ); } function removeAllFee() private { if(_taxFee == 0 && _liquidityFee == 0 && _marketingFee == 0) return; _previousTaxFee = _taxFee; _previousMarketingFee = _marketingFee; _previousLiquidityFee = _liquidityFee; _taxFee = 0; _marketingFee = 0; _liquidityFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _marketingFee = _previousMarketingFee; _liquidityFee = _previousLiquidityFee; } 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); } // swapAndLiquify takes the balance to be liquified and make sure it is equally distributed // in BNB and Harold function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { // 1/2 balance is sent to the marketing wallet, 1/2 is added to the liquidity pool uint256 marketingTokenBalance = contractTokenBalance.div(2); uint256 liquidityTokenBalance = contractTokenBalance.sub(marketingTokenBalance); uint256 tokenBalanceToLiquifyAsBNB = liquidityTokenBalance.div(2); uint256 tokenBalanceToLiquify = liquidityTokenBalance.sub(tokenBalanceToLiquifyAsBNB); uint256 initialBalance = address(this).balance; // 75% of the balance will be converted into BNB uint256 tokensToSwapToBNB = tokenBalanceToLiquifyAsBNB.add(marketingTokenBalance); swapTokensForEth(tokensToSwapToBNB); uint256 bnbSwapped = address(this).balance.sub(initialBalance); uint256 bnbToLiquify = bnbSwapped.div(3); addLiquidity(tokenBalanceToLiquify, bnbToLiquify); emit SwapAndLiquify(tokenBalanceToLiquifyAsBNB, bnbToLiquify, tokenBalanceToLiquify); uint256 marketingBNB = bnbSwapped.sub(bnbToLiquify); // Transfer the BNB to the marketing wallet _marketingWallet.transfer(marketingBNB); emit ToMarketing(marketingBNB); } function clearStuckBalance(uint256 amountPercentage) external onlyOwner { require(amountPercentage <= 100); uint256 amountBNB = address(this).balance; payable(_marketingWallet).transfer(amountBNB.mul(amountPercentage).div(100)); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } 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 _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"); require(_isBlacklisted[from] == false, "Hehe"); require(_isBlacklisted[to] == false, "Hehe"); if (from == uniswapV2Pair && to != address(uniswapV2Router) && !_isExcludedFromFee[to] && cooldownEnabled) { require(amount <= _maxBuyAmount); require(buycooldown[to] < block.timestamp); buycooldown[to] = block.timestamp.add(cooldown); } else if(from == uniswapV2Pair && cooldownEnabled && !_isExcludedFromFee[to]) { require(sellcooldown[from] <= block.timestamp); sellcooldown[from] = block.timestamp.add(cooldown); } uint256 contractTokenBalance = balanceOf(address(this)); if(contractTokenBalance >= numTokensSellToAddToLiquidity) { contractTokenBalance = numTokensSellToAddToLiquidity; } bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled ) { contractTokenBalance = numTokensSellToAddToLiquidity; swapAndLiquify(contractTokenBalance); } //indicates if fee should be deducted from transfer bool takeFee = true; //if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){ takeFee = false; } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from,to,amount,takeFee); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } //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 tMarketing) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeMarketing(tMarketing); _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 tMarketing) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeMarketing(tMarketing); _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 tMarketing) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeMarketing(tMarketing); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tMarketing) = _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); _takeMarketing(tMarketing); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function cooldownStatus() public view returns (bool) { return cooldownEnabled; } function setCooldownEnabled(bool onoff) external onlyOwner() { cooldownEnabled = onoff; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"marketingWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":false,"internalType":"uint256","name":"bnbSent","type":"uint256"}],"name":"ToMarketing","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":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","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":[{"internalType":"uint256","name":"amountPercentage","type":"uint256"}],"name":"clearStuckBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cooldownStatus","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":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"address","name":"account","type":"address"},{"internalType":"bool","name":"Blacklisted","type":"bool"}],"name":"setBlacklistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cooldown","type":"uint256"}],"name":"setCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"setMarketingFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"},{"internalType":"uint256","name":"divisor","type":"uint256"}],"name":"setMaxBuyPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"},{"internalType":"uint256","name":"divisor","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","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":[{"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"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
600380546001600160a01b03191661dead179055610100604052600460c0819052631391549160e21b60e09081526200003a91908162000462565b50604080518082019091526004808252631391549160e21b6020909201918252620000689160059162000462565b506006805460ff19166009908117909155633b9aca006007556200008e90600a6200059a565b6007546200009d91906200065b565b60088190556013805460ff19166001179055601e601455620000c290600019620006d4565b620000d0906000196200067d565b60155560006017556017546018556005601955601954601a556005601b55601b54601c55600a601d556103e8601e55601e54601d546008546200011491906200065b565b6200012091906200053a565b601f556020805461ff00191661010017905560085462000143906064906200053a565b6021553480156200015357600080fd5b50604051620036a1380380620036a1833981016040819052620001769162000508565b600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601554336000908152600a602090815260409182902092909255600980546001600160a01b0319166001600160a01b038516179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a01559260048083019392829003018186803b1580156200023457600080fd5b505afa15801562000249573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026f919062000508565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002b857600080fd5b505afa158015620002cd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f3919062000508565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200033c57600080fd5b505af115801562000351573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000377919062000508565b6001600160601b0319606091821b811660a0529082901b166080526001600f6000620003ab6000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600f9093528183208054851660019081179091556009549091168352912080549092161790556200040a3390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6008546040516200045291815260200190565b60405180910390a3505062000717565b828054620004709062000697565b90600052602060002090601f016020900481019282620004945760008555620004df565b82601f10620004af57805160ff1916838001178555620004df565b82800160010185558215620004df579182015b82811115620004df578251825591602001919060010190620004c2565b50620004ed929150620004f1565b5090565b5b80821115620004ed5760008155600101620004f2565b6000602082840312156200051b57600080fd5b81516001600160a01b03811681146200053357600080fd5b9392505050565b6000826200054c576200054c62000701565b500490565b600181815b8085111562000592578160001904821115620005765762000576620006eb565b808516156200058457918102915b93841c939080029062000556565b509250929050565b60006200053360ff841683600082620005b65750600162000655565b81620005c55750600062000655565b8160018114620005de5760028114620005e95762000609565b600191505062000655565b60ff841115620005fd57620005fd620006eb565b50506001821b62000655565b5060208310610133831016604e8410600b84101617156200062e575081810a62000655565b6200063a838362000551565b8060001904821115620006515762000651620006eb565b0290505b92915050565b6000816000190483118215151615620006785762000678620006eb565b500290565b600082821015620006925762000692620006eb565b500390565b600181811c90821680620006ac57607f821691505b60208210811415620006ce57634e487b7160e01b600052602260045260246000fd5b50919050565b600082620006e657620006e662000701565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b60805160601c60a05160601c612f1f62000782600039600081816104f401528181611a3501528181611b3f0152611c3201526000818161032501528181611a71015281816123de015281816124a6015281816124e201528181612554015261257b0152612f1f6000f3fe60806040526004361061026b5760003560e01c806352390c02116101445780638fcc250d116100b6578063b6c523241161007a578063b6c5232414610768578063c49b9a801461077d578063dd4670641461079d578063dd62ed3e146107bd578063ea2f0b3714610803578063f2fde38b1461082357600080fd5b80638fcc250d146106de57806395d89b41146106fe578063a457c2d714610713578063a69df4b514610733578063a9059cbb1461074857600080fd5b8063715018a611610108578063715018a614610624578063787a08a614610639578063809157c51461064f57806388f82020146106675780638da5cb5b146106a05780638ee88c53146106be57600080fd5b806352390c02146105755780635342acb4146105955780635932ead1146105ce5780636bc87c3a146105ee57806370a082311461060457600080fd5b80633685d419116101dd5780634549b039116101a15780634549b039146104a2578063457c194c146104c257806349bd5a5e146104e25780634a74bb02146105165780634f662566146105355780634fc3f41a1461055557600080fd5b80633685d4191461040c578063395093511461042c5780633b124fe71461044c5780633bd5d17314610462578063437823ec1461048257600080fd5b806318160ddd1161022f57806318160ddd1461035f5780631da1db5e1461037457806322976e0d1461039457806323b872dd146103aa5780632d838119146103ca578063313ce567146103ea57600080fd5b806303d29d281461027757806306fdde0314610299578063095ea7b3146102c457806313114a9d146102f45780631694505e1461031357600080fd5b3661027257005b600080fd5b34801561028357600080fd5b50610297610292366004612b59565b610843565b005b3480156102a557600080fd5b506102ae6108a1565b6040516102bb9190612c61565b60405180910390f35b3480156102d057600080fd5b506102e46102df366004612b8e565b610933565b60405190151581526020016102bb565b34801561030057600080fd5b506016545b6040519081526020016102bb565b34801561031f57600080fd5b506103477f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102bb565b34801561036b57600080fd5b50600854610305565b34801561038057600080fd5b5061029761038f366004612bd5565b61094a565b3480156103a057600080fd5b50610305601b5481565b3480156103b657600080fd5b506102e46103c5366004612b18565b6109d5565b3480156103d657600080fd5b506103056103e5366004612bd5565b610a3e565b3480156103f657600080fd5b5060065460405160ff90911681526020016102bb565b34801561041857600080fd5b50610297610427366004612aa5565b610ac2565b34801561043857600080fd5b506102e4610447366004612b8e565b610c75565b34801561045857600080fd5b5061030560175481565b34801561046e57600080fd5b5061029761047d366004612bd5565b610cab565b34801561048e57600080fd5b5061029761049d366004612aa5565b610d97565b3480156104ae57600080fd5b506103056104bd366004612bee565b610de5565b3480156104ce57600080fd5b506102976104dd366004612bd5565b610e74565b3480156104ee57600080fd5b506103477f000000000000000000000000000000000000000000000000000000000000000081565b34801561052257600080fd5b506020546102e490610100900460ff1681565b34801561054157600080fd5b50610297610550366004612c11565b610ea3565b34801561056157600080fd5b50610297610570366004612bd5565b610f7f565b34801561058157600080fd5b50610297610590366004612aa5565b610fae565b3480156105a157600080fd5b506102e46105b0366004612aa5565b6001600160a01b03166000908152600f602052604090205460ff1690565b3480156105da57600080fd5b506102976105e9366004612bba565b611179565b3480156105fa57600080fd5b5061030560195481565b34801561061057600080fd5b5061030561061f366004612aa5565b6111b6565b34801561063057600080fd5b50610297611215565b34801561064557600080fd5b5061030560145481565b34801561065b57600080fd5b5060135460ff166102e4565b34801561067357600080fd5b506102e4610682366004612aa5565b6001600160a01b031660009081526010602052604090205460ff1690565b3480156106ac57600080fd5b506000546001600160a01b0316610347565b3480156106ca57600080fd5b506102976106d9366004612bd5565b611277565b3480156106ea57600080fd5b506102976106f9366004612c11565b6112a6565b34801561070a57600080fd5b506102ae6112f3565b34801561071f57600080fd5b506102e461072e366004612b8e565b611302565b34801561073f57600080fd5b50610297611351565b34801561075457600080fd5b506102e4610763366004612b8e565b611457565b34801561077457600080fd5b50600254610305565b34801561078957600080fd5b50610297610798366004612bba565b611464565b3480156107a957600080fd5b506102976107b8366004612bd5565b6114da565b3480156107c957600080fd5b506103056107d8366004612adf565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b34801561080f57600080fd5b5061029761081e366004612aa5565b61155f565b34801561082f57600080fd5b5061029761083e366004612aa5565b6115aa565b6000546001600160a01b031633146108765760405162461bcd60e51b815260040161086d90612cb6565b60405180910390fd5b5060016001600160a01b0382166000908152601160205260409020805460ff191660011790555b5050565b6060600480546108b090612dcc565b80601f01602080910402602001604051908101604052809291908181526020018280546108dc90612dcc565b80156109295780601f106108fe57610100808354040283529160200191610929565b820191906000526020600020905b81548152906001019060200180831161090c57829003601f168201915b5050505050905090565b6000610940338484611682565b5060015b92915050565b6000546001600160a01b031633146109745760405162461bcd60e51b815260040161086d90612cb6565b606481111561098257600080fd5b60095447906001600160a01b03166108fc6109a860646109a285876117a6565b90611825565b6040518115909202916000818181858888f193505050501580156109d0573d6000803e3d6000fd5b505050565b60006109e2848484611867565b610a348433610a2f85604051806060016040528060288152602001612e7d602891396001600160a01b038a166000908152600e602090815260408083203384529091529020549190611cec565b611682565b5060019392505050565b6000601554821115610aa55760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b606482015260840161086d565b6000610aaf611d26565b9050610abb8382611825565b9392505050565b6000546001600160a01b03163314610aec5760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b03811660009081526010602052604090205460ff16610b545760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161086d565b60005b60125481101561089d57816001600160a01b031660128281548110610b7e57610b7e612e4e565b6000918252602090912001546001600160a01b03161415610c635760128054610ba990600190612db5565b81548110610bb957610bb9612e4e565b600091825260209091200154601280546001600160a01b039092169183908110610be557610be5612e4e565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600b82526040808220829055601090925220805460ff191690556012805480610c3d57610c3d612e38565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610c6d81612e07565b915050610b57565b336000818152600e602090815260408083206001600160a01b03871684529091528120549091610940918590610a2f9086611d49565b3360008181526010602052604090205460ff1615610d205760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b606482015260840161086d565b6000610d2b83611da8565b5050506001600160a01b0386166000908152600a6020526040902054939450610d5993925084915050611e03565b6001600160a01b0383166000908152600a6020526040902055601554610d7f9082611e03565b601555601654610d8f9084611d49565b601655505050565b6000546001600160a01b03163314610dc15760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b03166000908152600f60205260409020805460ff19166001179055565b6000600854831115610e395760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015260640161086d565b81610e59576000610e4984611da8565b5094965061094495505050505050565b6000610e6484611da8565b5093965061094495505050505050565b6000546001600160a01b03163314610e9e5760405162461bcd60e51b815260040161086d90612cb6565b601b55565b6000546001600160a01b03163314610ecd5760405162461bcd60e51b815260040161086d90612cb6565b60018210158015610ee057506103e88111155b610ee957600080fd5b6000610f04826109a2856008546117a690919063ffffffff16565b90506103e8600854610f169190612d74565b811015610f785760405162461bcd60e51b815260206004820152602a60248201527f4d6178207478206d7573742062652061626f766520302e3125206f6620746f7460448201526930b61039bab838363c9760b11b606482015260840161086d565b601f555050565b6000546001600160a01b03163314610fa95760405162461bcd60e51b815260040161086d90612cb6565b601455565b6000546001600160a01b03163314610fd85760405162461bcd60e51b815260040161086d90612cb6565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156110505760405162461bcd60e51b815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f757465604482015261391760f11b606482015260840161086d565b6001600160a01b03811660009081526010602052604090205460ff16156110b95760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161086d565b6001600160a01b0381166000908152600a602052604090205415611113576001600160a01b0381166000908152600a60205260409020546110f990610a3e565b6001600160a01b0382166000908152600b60205260409020555b6001600160a01b03166000818152601060205260408120805460ff191660019081179091556012805491820181559091527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34440180546001600160a01b0319169091179055565b6000546001600160a01b031633146111a35760405162461bcd60e51b815260040161086d90612cb6565b6013805460ff1916911515919091179055565b6001600160a01b03811660009081526010602052604081205460ff16156111f357506001600160a01b03166000908152600b602052604090205490565b6001600160a01b0382166000908152600a602052604090205461094490610a3e565b6000546001600160a01b0316331461123f5760405162461bcd60e51b815260040161086d90612cb6565b600080546040516001600160a01b0390911690600080516020612ea5833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146112a15760405162461bcd60e51b815260040161086d90612cb6565b601955565b6000546001600160a01b031633146112d05760405162461bcd60e51b815260040161086d90612cb6565b60006112eb826109a2856008546117a690919063ffffffff16565b602155505050565b6060600580546108b090612dcc565b60006109403384610a2f85604051806060016040528060258152602001612ec560259139336000908152600e602090815260408083206001600160a01b038d1684529091529020549190611cec565b6001546001600160a01b031633146113b75760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b606482015260840161086d565b60025442116114085760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015260640161086d565b600154600080546040516001600160a01b039384169390911691600080516020612ea583398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610940338484611867565b6000546001600160a01b0316331461148e5760405162461bcd60e51b815260040161086d90612cb6565b6020805461ff0019166101008315159081029190911782556040519081527f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159910160405180910390a150565b6000546001600160a01b031633146115045760405162461bcd60e51b815260040161086d90612cb6565b60008054600180546001600160a01b03199081166001600160a01b038416179091551690556115338142612d5c565b600255600080546040516001600160a01b0390911690600080516020612ea5833981519152908390a350565b6000546001600160a01b031633146115895760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b03166000908152600f60205260409020805460ff19169055565b6000546001600160a01b031633146115d45760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b0381166116395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161086d565b600080546040516001600160a01b0380851693921691600080516020612ea583398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166116e45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161086d565b6001600160a01b0382166117455760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161086d565b6001600160a01b038381166000818152600e602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000826117b557506000610944565b60006117c18385612d96565b9050826117ce8583612d74565b14610abb5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161086d565b6000610abb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e45565b6001600160a01b0383166118cb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161086d565b6001600160a01b03821661192d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161086d565b6000811161198f5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161086d565b6001600160a01b03831660009081526011602052604090205460ff16156119e15760405162461bcd60e51b815260040161086d906020808252600490820152634865686560e01b604082015260600190565b6001600160a01b03821660009081526011602052604090205460ff1615611a335760405162461bcd60e51b815260040161086d906020808252600490820152634865686560e01b604082015260600190565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148015611aa657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611acb57506001600160a01b0382166000908152600f602052604090205460ff16155b8015611ad9575060135460ff165b15611b3d57601f54811115611aed57600080fd5b6001600160a01b0382166000908152600c60205260409020544211611b1157600080fd5b601454611b1f904290611d49565b6001600160a01b0383166000908152600c6020526040902055611bf7565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148015611b80575060135460ff165b8015611ba557506001600160a01b0382166000908152600f602052604090205460ff16155b15611bf7576001600160a01b0383166000908152600d6020526040902054421015611bcf57600080fd5b601454611bdd904290611d49565b6001600160a01b0384166000908152600d60205260409020555b6000611c02306111b6565b90506021548110611c1257506021545b60215481108015908190611c29575060205460ff16155b8015611c6757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611c7a5750602054610100900460ff165b15611c8d576021549150611c8d82611e73565b6001600160a01b0385166000908152600f602052604090205460019060ff1680611ccf57506001600160a01b0385166000908152600f602052604090205460ff165b15611cd8575060005b611ce486868684611fcb565b505050505050565b60008184841115611d105760405162461bcd60e51b815260040161086d9190612c61565b506000611d1d8486612db5565b95945050505050565b6000806000611d3361214e565b9092509050611d428282611825565b9250505090565b600080611d568385612d5c565b905083811015610abb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161086d565b6000806000806000806000806000806000611dc28c6122d0565b93509350935093506000806000611de38f878787611dde611d26565b612325565b919f509d509b509599509397509195509350505050919395979092949650565b6000610abb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611cec565b60008183611e665760405162461bcd60e51b815260040161086d9190612c61565b506000611d1d8486612d74565b6020805460ff191660011790556000611e8d826002611825565b90506000611e9b8383611e03565b90506000611eaa826002611825565b90506000611eb88383611e03565b9050476000611ec78487611d49565b9050611ed281612387565b6000611ede4784611e03565b90506000611eed826003611825565b9050611ef9858261254e565b60408051878152602081018390529081018690527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a16000611f468383611e03565b6009546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611f81573d6000803e3d6000fd5b506040518181527f4d5c7c4ddada689ed3a12644234d0a26ec361d8a6f55c9b05805a57bd636f14b9060200160405180910390a150506020805460ff191690555050505050505050565b80611fd857611fd8612663565b6001600160a01b03841660009081526010602052604090205460ff16801561201957506001600160a01b03831660009081526010602052604090205460ff16155b1561202e576120298484846126a8565b61212c565b6001600160a01b03841660009081526010602052604090205460ff1615801561206f57506001600160a01b03831660009081526010602052604090205460ff165b1561207f576120298484846127ee565b6001600160a01b03841660009081526010602052604090205460ff161580156120c157506001600160a01b03831660009081526010602052604090205460ff16155b156120d1576120298484846128ad565b6001600160a01b03841660009081526010602052604090205460ff16801561211157506001600160a01b03831660009081526010602052604090205460ff165b1561212157612029848484612907565b61212c8484846128ad565b8061214857612148601854601755601c54601b55601a54601955565b50505050565b6015546008546000918291825b6012548110156122a05782600a60006012848154811061217d5761217d612e4e565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806121e8575081600b6000601284815481106121c1576121c1612e4e565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156121fe57601554600854945094505050509091565b612244600a60006012848154811061221857612218612e4e565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e03565b925061228c600b60006012848154811061226057612260612e4e565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e03565b91508061229881612e07565b91505061215b565b506008546015546122b091611825565b8210156122c7576015546008549350935050509091565b90939092509050565b60008060008060006122e186612990565b905060006122ee876129ac565b905060006122fb886129c8565b905060006123158361230f84818d89611e03565b90611e03565b9993985091965094509092505050565b600080808061233489866117a6565b9050600061234289876117a6565b9050600061235088886117a6565b9050600061235e8a896117a6565b905060006123728361230f84818989611e03565b949d949c50929a509298505050505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123bc576123bc612e4e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561243557600080fd5b505afa158015612449573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061246d9190612ac2565b8160018151811061248057612480612e4e565b60200260200101906001600160a01b031690816001600160a01b0316815250506124cb307f000000000000000000000000000000000000000000000000000000000000000084611682565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612520908590600090869030904290600401612ceb565b600060405180830381600087803b15801561253a57600080fd5b505af1158015611ce4573d6000803e3d6000fd5b612579307f000000000000000000000000000000000000000000000000000000000000000084611682565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806125c06000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561262357600080fd5b505af1158015612637573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061265c9190612c33565b5050505050565b6017541580156126735750601954155b801561267f5750601b54155b1561268657565b60178054601855601b8054601c5560198054601a556000928390559082905555565b60008060008060008060006126bc88611da8565b965096509650965096509650965061270288600b60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b6001600160a01b038b166000908152600b6020908152604080832093909355600a905220546127319088611e03565b6001600160a01b03808c166000908152600a602052604080822093909355908b16815220546127609087611d49565b6001600160a01b038a166000908152600a6020526040902055612782826129e4565b61278b816129e4565b6127958584612a6c565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516127da91815260200190565b60405180910390a350505050505050505050565b600080600080600080600061280288611da8565b965096509650965096509650965061284887600a60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b6001600160a01b03808c166000908152600a6020908152604080832094909455918c168152600b909152205461287e9085611d49565b6001600160a01b038a166000908152600b6020908152604080832093909355600a905220546127609087611d49565b60008060008060008060006128c188611da8565b965096509650965096509650965061273187600a60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b600080600080600080600061291b88611da8565b965096509650965096509650965061296188600b60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b6001600160a01b038b166000908152600b6020908152604080832093909355600a905220546128489088611e03565b600061094460646109a2601754856117a690919063ffffffff16565b600061094460646109a2601b54856117a690919063ffffffff16565b600061094460646109a2601954856117a690919063ffffffff16565b60006129ee611d26565b905060006129fc83836117a6565b306000908152600a6020526040902054909150612a199082611d49565b306000908152600a602090815260408083209390935560109052205460ff16156109d057306000908152600b6020526040902054612a579084611d49565b306000908152600b6020526040902055505050565b601554612a799083611e03565b601555601654612a899082611d49565b6016555050565b80358015158114612aa057600080fd5b919050565b600060208284031215612ab757600080fd5b8135610abb81612e64565b600060208284031215612ad457600080fd5b8151610abb81612e64565b60008060408385031215612af257600080fd5b8235612afd81612e64565b91506020830135612b0d81612e64565b809150509250929050565b600080600060608486031215612b2d57600080fd5b8335612b3881612e64565b92506020840135612b4881612e64565b929592945050506040919091013590565b60008060408385031215612b6c57600080fd5b8235612b7781612e64565b9150612b8560208401612a90565b90509250929050565b60008060408385031215612ba157600080fd5b8235612bac81612e64565b946020939093013593505050565b600060208284031215612bcc57600080fd5b610abb82612a90565b600060208284031215612be757600080fd5b5035919050565b60008060408385031215612c0157600080fd5b82359150612b8560208401612a90565b60008060408385031215612c2457600080fd5b50508035926020909101359150565b600080600060608486031215612c4857600080fd5b8351925060208401519150604084015190509250925092565b600060208083528351808285015260005b81811015612c8e57858101830151858201604001528201612c72565b81811115612ca0576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612d3b5784516001600160a01b031683529383019391830191600101612d16565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612d6f57612d6f612e22565b500190565b600082612d9157634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612db057612db0612e22565b500290565b600082821015612dc757612dc7612e22565b500390565b600181811c90821680612de057607f821691505b60208210811415612e0157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e1b57612e1b612e22565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114612e7957600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220bd35d691f0f4ec34dd5b2a8b95a9d20ef8b20a4da0021d9b153c85c2df2cf47d64736f6c63430008070033000000000000000000000000fe65b82b216fbcba3e8233b06517f09db5b44503
Deployed Bytecode
0x60806040526004361061026b5760003560e01c806352390c02116101445780638fcc250d116100b6578063b6c523241161007a578063b6c5232414610768578063c49b9a801461077d578063dd4670641461079d578063dd62ed3e146107bd578063ea2f0b3714610803578063f2fde38b1461082357600080fd5b80638fcc250d146106de57806395d89b41146106fe578063a457c2d714610713578063a69df4b514610733578063a9059cbb1461074857600080fd5b8063715018a611610108578063715018a614610624578063787a08a614610639578063809157c51461064f57806388f82020146106675780638da5cb5b146106a05780638ee88c53146106be57600080fd5b806352390c02146105755780635342acb4146105955780635932ead1146105ce5780636bc87c3a146105ee57806370a082311461060457600080fd5b80633685d419116101dd5780634549b039116101a15780634549b039146104a2578063457c194c146104c257806349bd5a5e146104e25780634a74bb02146105165780634f662566146105355780634fc3f41a1461055557600080fd5b80633685d4191461040c578063395093511461042c5780633b124fe71461044c5780633bd5d17314610462578063437823ec1461048257600080fd5b806318160ddd1161022f57806318160ddd1461035f5780631da1db5e1461037457806322976e0d1461039457806323b872dd146103aa5780632d838119146103ca578063313ce567146103ea57600080fd5b806303d29d281461027757806306fdde0314610299578063095ea7b3146102c457806313114a9d146102f45780631694505e1461031357600080fd5b3661027257005b600080fd5b34801561028357600080fd5b50610297610292366004612b59565b610843565b005b3480156102a557600080fd5b506102ae6108a1565b6040516102bb9190612c61565b60405180910390f35b3480156102d057600080fd5b506102e46102df366004612b8e565b610933565b60405190151581526020016102bb565b34801561030057600080fd5b506016545b6040519081526020016102bb565b34801561031f57600080fd5b506103477f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102bb565b34801561036b57600080fd5b50600854610305565b34801561038057600080fd5b5061029761038f366004612bd5565b61094a565b3480156103a057600080fd5b50610305601b5481565b3480156103b657600080fd5b506102e46103c5366004612b18565b6109d5565b3480156103d657600080fd5b506103056103e5366004612bd5565b610a3e565b3480156103f657600080fd5b5060065460405160ff90911681526020016102bb565b34801561041857600080fd5b50610297610427366004612aa5565b610ac2565b34801561043857600080fd5b506102e4610447366004612b8e565b610c75565b34801561045857600080fd5b5061030560175481565b34801561046e57600080fd5b5061029761047d366004612bd5565b610cab565b34801561048e57600080fd5b5061029761049d366004612aa5565b610d97565b3480156104ae57600080fd5b506103056104bd366004612bee565b610de5565b3480156104ce57600080fd5b506102976104dd366004612bd5565b610e74565b3480156104ee57600080fd5b506103477f000000000000000000000000acd9c4a7164998f3d799c8e44ef9e668abdf5d4281565b34801561052257600080fd5b506020546102e490610100900460ff1681565b34801561054157600080fd5b50610297610550366004612c11565b610ea3565b34801561056157600080fd5b50610297610570366004612bd5565b610f7f565b34801561058157600080fd5b50610297610590366004612aa5565b610fae565b3480156105a157600080fd5b506102e46105b0366004612aa5565b6001600160a01b03166000908152600f602052604090205460ff1690565b3480156105da57600080fd5b506102976105e9366004612bba565b611179565b3480156105fa57600080fd5b5061030560195481565b34801561061057600080fd5b5061030561061f366004612aa5565b6111b6565b34801561063057600080fd5b50610297611215565b34801561064557600080fd5b5061030560145481565b34801561065b57600080fd5b5060135460ff166102e4565b34801561067357600080fd5b506102e4610682366004612aa5565b6001600160a01b031660009081526010602052604090205460ff1690565b3480156106ac57600080fd5b506000546001600160a01b0316610347565b3480156106ca57600080fd5b506102976106d9366004612bd5565b611277565b3480156106ea57600080fd5b506102976106f9366004612c11565b6112a6565b34801561070a57600080fd5b506102ae6112f3565b34801561071f57600080fd5b506102e461072e366004612b8e565b611302565b34801561073f57600080fd5b50610297611351565b34801561075457600080fd5b506102e4610763366004612b8e565b611457565b34801561077457600080fd5b50600254610305565b34801561078957600080fd5b50610297610798366004612bba565b611464565b3480156107a957600080fd5b506102976107b8366004612bd5565b6114da565b3480156107c957600080fd5b506103056107d8366004612adf565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b34801561080f57600080fd5b5061029761081e366004612aa5565b61155f565b34801561082f57600080fd5b5061029761083e366004612aa5565b6115aa565b6000546001600160a01b031633146108765760405162461bcd60e51b815260040161086d90612cb6565b60405180910390fd5b5060016001600160a01b0382166000908152601160205260409020805460ff191660011790555b5050565b6060600480546108b090612dcc565b80601f01602080910402602001604051908101604052809291908181526020018280546108dc90612dcc565b80156109295780601f106108fe57610100808354040283529160200191610929565b820191906000526020600020905b81548152906001019060200180831161090c57829003601f168201915b5050505050905090565b6000610940338484611682565b5060015b92915050565b6000546001600160a01b031633146109745760405162461bcd60e51b815260040161086d90612cb6565b606481111561098257600080fd5b60095447906001600160a01b03166108fc6109a860646109a285876117a6565b90611825565b6040518115909202916000818181858888f193505050501580156109d0573d6000803e3d6000fd5b505050565b60006109e2848484611867565b610a348433610a2f85604051806060016040528060288152602001612e7d602891396001600160a01b038a166000908152600e602090815260408083203384529091529020549190611cec565b611682565b5060019392505050565b6000601554821115610aa55760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b606482015260840161086d565b6000610aaf611d26565b9050610abb8382611825565b9392505050565b6000546001600160a01b03163314610aec5760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b03811660009081526010602052604090205460ff16610b545760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161086d565b60005b60125481101561089d57816001600160a01b031660128281548110610b7e57610b7e612e4e565b6000918252602090912001546001600160a01b03161415610c635760128054610ba990600190612db5565b81548110610bb957610bb9612e4e565b600091825260209091200154601280546001600160a01b039092169183908110610be557610be5612e4e565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600b82526040808220829055601090925220805460ff191690556012805480610c3d57610c3d612e38565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610c6d81612e07565b915050610b57565b336000818152600e602090815260408083206001600160a01b03871684529091528120549091610940918590610a2f9086611d49565b3360008181526010602052604090205460ff1615610d205760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b606482015260840161086d565b6000610d2b83611da8565b5050506001600160a01b0386166000908152600a6020526040902054939450610d5993925084915050611e03565b6001600160a01b0383166000908152600a6020526040902055601554610d7f9082611e03565b601555601654610d8f9084611d49565b601655505050565b6000546001600160a01b03163314610dc15760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b03166000908152600f60205260409020805460ff19166001179055565b6000600854831115610e395760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015260640161086d565b81610e59576000610e4984611da8565b5094965061094495505050505050565b6000610e6484611da8565b5093965061094495505050505050565b6000546001600160a01b03163314610e9e5760405162461bcd60e51b815260040161086d90612cb6565b601b55565b6000546001600160a01b03163314610ecd5760405162461bcd60e51b815260040161086d90612cb6565b60018210158015610ee057506103e88111155b610ee957600080fd5b6000610f04826109a2856008546117a690919063ffffffff16565b90506103e8600854610f169190612d74565b811015610f785760405162461bcd60e51b815260206004820152602a60248201527f4d6178207478206d7573742062652061626f766520302e3125206f6620746f7460448201526930b61039bab838363c9760b11b606482015260840161086d565b601f555050565b6000546001600160a01b03163314610fa95760405162461bcd60e51b815260040161086d90612cb6565b601455565b6000546001600160a01b03163314610fd85760405162461bcd60e51b815260040161086d90612cb6565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156110505760405162461bcd60e51b815260206004820152602260248201527f57652063616e206e6f74206578636c75646520556e697377617020726f757465604482015261391760f11b606482015260840161086d565b6001600160a01b03811660009081526010602052604090205460ff16156110b95760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015260640161086d565b6001600160a01b0381166000908152600a602052604090205415611113576001600160a01b0381166000908152600a60205260409020546110f990610a3e565b6001600160a01b0382166000908152600b60205260409020555b6001600160a01b03166000818152601060205260408120805460ff191660019081179091556012805491820181559091527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34440180546001600160a01b0319169091179055565b6000546001600160a01b031633146111a35760405162461bcd60e51b815260040161086d90612cb6565b6013805460ff1916911515919091179055565b6001600160a01b03811660009081526010602052604081205460ff16156111f357506001600160a01b03166000908152600b602052604090205490565b6001600160a01b0382166000908152600a602052604090205461094490610a3e565b6000546001600160a01b0316331461123f5760405162461bcd60e51b815260040161086d90612cb6565b600080546040516001600160a01b0390911690600080516020612ea5833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146112a15760405162461bcd60e51b815260040161086d90612cb6565b601955565b6000546001600160a01b031633146112d05760405162461bcd60e51b815260040161086d90612cb6565b60006112eb826109a2856008546117a690919063ffffffff16565b602155505050565b6060600580546108b090612dcc565b60006109403384610a2f85604051806060016040528060258152602001612ec560259139336000908152600e602090815260408083206001600160a01b038d1684529091529020549190611cec565b6001546001600160a01b031633146113b75760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b606482015260840161086d565b60025442116114085760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015260640161086d565b600154600080546040516001600160a01b039384169390911691600080516020612ea583398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610940338484611867565b6000546001600160a01b0316331461148e5760405162461bcd60e51b815260040161086d90612cb6565b6020805461ff0019166101008315159081029190911782556040519081527f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159910160405180910390a150565b6000546001600160a01b031633146115045760405162461bcd60e51b815260040161086d90612cb6565b60008054600180546001600160a01b03199081166001600160a01b038416179091551690556115338142612d5c565b600255600080546040516001600160a01b0390911690600080516020612ea5833981519152908390a350565b6000546001600160a01b031633146115895760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b03166000908152600f60205260409020805460ff19169055565b6000546001600160a01b031633146115d45760405162461bcd60e51b815260040161086d90612cb6565b6001600160a01b0381166116395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161086d565b600080546040516001600160a01b0380851693921691600080516020612ea583398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166116e45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161086d565b6001600160a01b0382166117455760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161086d565b6001600160a01b038381166000818152600e602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000826117b557506000610944565b60006117c18385612d96565b9050826117ce8583612d74565b14610abb5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161086d565b6000610abb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e45565b6001600160a01b0383166118cb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161086d565b6001600160a01b03821661192d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161086d565b6000811161198f5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161086d565b6001600160a01b03831660009081526011602052604090205460ff16156119e15760405162461bcd60e51b815260040161086d906020808252600490820152634865686560e01b604082015260600190565b6001600160a01b03821660009081526011602052604090205460ff1615611a335760405162461bcd60e51b815260040161086d906020808252600490820152634865686560e01b604082015260600190565b7f000000000000000000000000acd9c4a7164998f3d799c8e44ef9e668abdf5d426001600160a01b0316836001600160a01b0316148015611aa657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611acb57506001600160a01b0382166000908152600f602052604090205460ff16155b8015611ad9575060135460ff165b15611b3d57601f54811115611aed57600080fd5b6001600160a01b0382166000908152600c60205260409020544211611b1157600080fd5b601454611b1f904290611d49565b6001600160a01b0383166000908152600c6020526040902055611bf7565b7f000000000000000000000000acd9c4a7164998f3d799c8e44ef9e668abdf5d426001600160a01b0316836001600160a01b0316148015611b80575060135460ff165b8015611ba557506001600160a01b0382166000908152600f602052604090205460ff16155b15611bf7576001600160a01b0383166000908152600d6020526040902054421015611bcf57600080fd5b601454611bdd904290611d49565b6001600160a01b0384166000908152600d60205260409020555b6000611c02306111b6565b90506021548110611c1257506021545b60215481108015908190611c29575060205460ff16155b8015611c6757507f000000000000000000000000acd9c4a7164998f3d799c8e44ef9e668abdf5d426001600160a01b0316856001600160a01b031614155b8015611c7a5750602054610100900460ff165b15611c8d576021549150611c8d82611e73565b6001600160a01b0385166000908152600f602052604090205460019060ff1680611ccf57506001600160a01b0385166000908152600f602052604090205460ff165b15611cd8575060005b611ce486868684611fcb565b505050505050565b60008184841115611d105760405162461bcd60e51b815260040161086d9190612c61565b506000611d1d8486612db5565b95945050505050565b6000806000611d3361214e565b9092509050611d428282611825565b9250505090565b600080611d568385612d5c565b905083811015610abb5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161086d565b6000806000806000806000806000806000611dc28c6122d0565b93509350935093506000806000611de38f878787611dde611d26565b612325565b919f509d509b509599509397509195509350505050919395979092949650565b6000610abb83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611cec565b60008183611e665760405162461bcd60e51b815260040161086d9190612c61565b506000611d1d8486612d74565b6020805460ff191660011790556000611e8d826002611825565b90506000611e9b8383611e03565b90506000611eaa826002611825565b90506000611eb88383611e03565b9050476000611ec78487611d49565b9050611ed281612387565b6000611ede4784611e03565b90506000611eed826003611825565b9050611ef9858261254e565b60408051878152602081018390529081018690527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a16000611f468383611e03565b6009546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015611f81573d6000803e3d6000fd5b506040518181527f4d5c7c4ddada689ed3a12644234d0a26ec361d8a6f55c9b05805a57bd636f14b9060200160405180910390a150506020805460ff191690555050505050505050565b80611fd857611fd8612663565b6001600160a01b03841660009081526010602052604090205460ff16801561201957506001600160a01b03831660009081526010602052604090205460ff16155b1561202e576120298484846126a8565b61212c565b6001600160a01b03841660009081526010602052604090205460ff1615801561206f57506001600160a01b03831660009081526010602052604090205460ff165b1561207f576120298484846127ee565b6001600160a01b03841660009081526010602052604090205460ff161580156120c157506001600160a01b03831660009081526010602052604090205460ff16155b156120d1576120298484846128ad565b6001600160a01b03841660009081526010602052604090205460ff16801561211157506001600160a01b03831660009081526010602052604090205460ff165b1561212157612029848484612907565b61212c8484846128ad565b8061214857612148601854601755601c54601b55601a54601955565b50505050565b6015546008546000918291825b6012548110156122a05782600a60006012848154811061217d5761217d612e4e565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806121e8575081600b6000601284815481106121c1576121c1612e4e565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156121fe57601554600854945094505050509091565b612244600a60006012848154811061221857612218612e4e565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611e03565b925061228c600b60006012848154811061226057612260612e4e565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611e03565b91508061229881612e07565b91505061215b565b506008546015546122b091611825565b8210156122c7576015546008549350935050509091565b90939092509050565b60008060008060006122e186612990565b905060006122ee876129ac565b905060006122fb886129c8565b905060006123158361230f84818d89611e03565b90611e03565b9993985091965094509092505050565b600080808061233489866117a6565b9050600061234289876117a6565b9050600061235088886117a6565b9050600061235e8a896117a6565b905060006123728361230f84818989611e03565b949d949c50929a509298505050505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123bc576123bc612e4e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561243557600080fd5b505afa158015612449573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061246d9190612ac2565b8160018151811061248057612480612e4e565b60200260200101906001600160a01b031690816001600160a01b0316815250506124cb307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611682565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612520908590600090869030904290600401612ceb565b600060405180830381600087803b15801561253a57600080fd5b505af1158015611ce4573d6000803e3d6000fd5b612579307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611682565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806125c06000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561262357600080fd5b505af1158015612637573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061265c9190612c33565b5050505050565b6017541580156126735750601954155b801561267f5750601b54155b1561268657565b60178054601855601b8054601c5560198054601a556000928390559082905555565b60008060008060008060006126bc88611da8565b965096509650965096509650965061270288600b60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b6001600160a01b038b166000908152600b6020908152604080832093909355600a905220546127319088611e03565b6001600160a01b03808c166000908152600a602052604080822093909355908b16815220546127609087611d49565b6001600160a01b038a166000908152600a6020526040902055612782826129e4565b61278b816129e4565b6127958584612a6c565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516127da91815260200190565b60405180910390a350505050505050505050565b600080600080600080600061280288611da8565b965096509650965096509650965061284887600a60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b6001600160a01b03808c166000908152600a6020908152604080832094909455918c168152600b909152205461287e9085611d49565b6001600160a01b038a166000908152600b6020908152604080832093909355600a905220546127609087611d49565b60008060008060008060006128c188611da8565b965096509650965096509650965061273187600a60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b600080600080600080600061291b88611da8565b965096509650965096509650965061296188600b60008d6001600160a01b03166001600160a01b0316815260200190815260200160002054611e0390919063ffffffff16565b6001600160a01b038b166000908152600b6020908152604080832093909355600a905220546128489088611e03565b600061094460646109a2601754856117a690919063ffffffff16565b600061094460646109a2601b54856117a690919063ffffffff16565b600061094460646109a2601954856117a690919063ffffffff16565b60006129ee611d26565b905060006129fc83836117a6565b306000908152600a6020526040902054909150612a199082611d49565b306000908152600a602090815260408083209390935560109052205460ff16156109d057306000908152600b6020526040902054612a579084611d49565b306000908152600b6020526040902055505050565b601554612a799083611e03565b601555601654612a899082611d49565b6016555050565b80358015158114612aa057600080fd5b919050565b600060208284031215612ab757600080fd5b8135610abb81612e64565b600060208284031215612ad457600080fd5b8151610abb81612e64565b60008060408385031215612af257600080fd5b8235612afd81612e64565b91506020830135612b0d81612e64565b809150509250929050565b600080600060608486031215612b2d57600080fd5b8335612b3881612e64565b92506020840135612b4881612e64565b929592945050506040919091013590565b60008060408385031215612b6c57600080fd5b8235612b7781612e64565b9150612b8560208401612a90565b90509250929050565b60008060408385031215612ba157600080fd5b8235612bac81612e64565b946020939093013593505050565b600060208284031215612bcc57600080fd5b610abb82612a90565b600060208284031215612be757600080fd5b5035919050565b60008060408385031215612c0157600080fd5b82359150612b8560208401612a90565b60008060408385031215612c2457600080fd5b50508035926020909101359150565b600080600060608486031215612c4857600080fd5b8351925060208401519150604084015190509250925092565b600060208083528351808285015260005b81811015612c8e57858101830151858201604001528201612c72565b81811115612ca0576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612d3b5784516001600160a01b031683529383019391830191600101612d16565b50506001600160a01b03969096166060850152505050608001529392505050565b60008219821115612d6f57612d6f612e22565b500190565b600082612d9157634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612db057612db0612e22565b500290565b600082821015612dc757612dc7612e22565b500390565b600181811c90821680612de057607f821691505b60208210811415612e0157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e1b57612e1b612e22565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114612e7957600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220bd35d691f0f4ec34dd5b2a8b95a9d20ef8b20a4da0021d9b153c85c2df2cf47d64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000fe65b82b216fbcba3e8233b06517f09db5b44503
-----Decoded View---------------
Arg [0] : marketingWallet (address): 0xfe65b82B216fbcBA3E8233b06517F09db5b44503
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000fe65b82b216fbcba3e8233b06517f09db5b44503
Deployed Bytecode Sourcemap
25571:22146:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30961:282;;;;;;;;;;-1:-1:-1;30961:282:0;;;;;:::i;:::-;;:::i;:::-;;28655:67;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29300:161;;;;;;;;;;-1:-1:-1;29300:161:0;;;;;:::i;:::-;;:::i;:::-;;;4353:14:1;;4346:22;4328:41;;4316:2;4301:18;29300:161:0;4188:187:1;33905:87:0;;;;;;;;;;-1:-1:-1;33974:10:0;;33905:87;;;12367:25:1;;;12355:2;12340:18;33905:87:0;12221:177:1;27209:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3532:32:1;;;3514:51;;3502:2;3487:18;27209:51:0;3368:203:1;28878:79:0;;;;;;;;;;-1:-1:-1;28948:7:0;;28878:79;;40110:262;;;;;;;;;;-1:-1:-1;40110:262:0;;;;;:::i;:::-;;:::i;26935:32::-;;;;;;;;;;;;;;;;41502:313;;;;;;;;;;-1:-1:-1;41502:313:0;;;;;:::i;:::-;;:::i;32087:253::-;;;;;;;;;;-1:-1:-1;32087:253:0;;;;;:::i;:::-;;:::i;28805:67::-;;;;;;;;;;-1:-1:-1;28861:9:0;;28805:67;;28861:9;;;;13854:36:1;;13842:2;13827:18;28805:67:0;13712:184:1;33042:479:0;;;;;;;;;;-1:-1:-1;33042:479:0;;;;;:::i;:::-;;:::i;30454:218::-;;;;;;;;;;-1:-1:-1;30454:218:0;;;;;:::i;:::-;;:::i;26755:26::-;;;;;;;;;;;;;;;;31255:378;;;;;;;;;;-1:-1:-1;31255:378:0;;;;;:::i;:::-;;:::i;33529:111::-;;;;;;;;;;-1:-1:-1;33529:111:0;;;;;:::i;:::-;;:::i;31641:438::-;;;;;;;;;;-1:-1:-1;31641:438:0;;;;;:::i;:::-;;:::i;29846:122::-;;;;;;;;;;-1:-1:-1;29846:122:0;;;;;:::i;:::-;;:::i;27267:38::-;;;;;;;;;;;;;;;27340:40;;;;;;;;;;-1:-1:-1;27340:40:0;;;;;;;;;;;30096:350;;;;;;;;;;-1:-1:-1;30096:350:0;;;;;:::i;:::-;;:::i;29984:100::-;;;;;;;;;;-1:-1:-1;29984:100:0;;;;;:::i;:::-;;:::i;32476:558::-;;;;;;;;;;-1:-1:-1;32476:558:0;;;;;:::i;:::-;;:::i;33770:123::-;;;;;;;;;;-1:-1:-1;33770:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;33858:27:0;33834:4;33858:27;;;:18;:27;;;;;;;;;33770:123;47611:103;;;;;;;;;;-1:-1:-1;47611:103:0;;;;;:::i;:::-;;:::i;26836:32::-;;;;;;;;;;;;;;;;29096:198;;;;;;;;;;-1:-1:-1;29096:198:0;;;;;:::i;:::-;;:::i;16184:148::-;;;;;;;;;;;;;:::i;26568:36::-;;;;;;;;;;;;;;;;47505:94;;;;;;;;;;-1:-1:-1;47576:15:0;;;;47505:94;;32348:120;;;;;;;;;;-1:-1:-1;32348:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;32440:20:0;32416:4;32440:20;;;:11;:20;;;;;;;;;32348:120;15548:79;;;;;;;;;;-1:-1:-1;15586:7:0;15613:6;-1:-1:-1;;;;;15613:6:0;15548:79;;29708:122;;;;;;;;;;-1:-1:-1;29708:122:0;;;;;:::i;:::-;;:::i;29469:223::-;;;;;;;;;;-1:-1:-1;29469:223:0;;;;;:::i;:::-;;:::i;28728:71::-;;;;;;;;;;;;;:::i;30680:269::-;;;;;;;;;;-1:-1:-1;30680:269:0;;;;;:::i;:::-;;:::i;17206:305::-;;;;;;;;;;;;;:::i;43862:167::-;;;;;;;;;;-1:-1:-1;43862:167:0;;;;;:::i;:::-;;:::i;16739:89::-;;;;;;;;;;-1:-1:-1;16811:9:0;;16739:89;;34000:171;;;;;;;;;;-1:-1:-1;34000:171:0;;;;;:::i;:::-;;:::i;16904:226::-;;;;;;;;;;-1:-1:-1;16904:226:0;;;;;:::i;:::-;;:::i;28963:127::-;;;;;;;;;;-1:-1:-1;28963:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;29061:18:0;;;29044:7;29061:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28963:127;33648:110;;;;;;;;;;-1:-1:-1;33648:110:0;;;;;:::i;:::-;;:::i;16487:244::-;;;;;;;;;;-1:-1:-1;16487:244:0;;;;;:::i;:::-;;:::i;30961:282::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;31070:4:0::1;-1:-1:-1::0;;;;;31095:23:0;::::1;;::::0;;;:14:::1;:23;::::0;;;;:30;;-1:-1:-1;;31095:30:0::1;31121:4;31095:30;::::0;;31142:94:::1;30961:282:::0;;:::o;28655:67::-;28692:13;28715:5;28708:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28655:67;:::o;29300:161::-;29375:4;29392:39;8051:10;29415:7;29424:6;29392:8;:39::i;:::-;-1:-1:-1;29449:4:0;29300:161;;;;;:::o;40110:262::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;40221:3:::1;40201:16;:23;;40193:32;;;::::0;::::1;;40296:16;::::0;40256:21:::1;::::0;-1:-1:-1;;;;;40296:16:0::1;40288:76;40323:40;40359:3;40323:31;40256:21:::0;40337:16;40323:13:::1;:31::i;:::-;:35:::0;::::1;:40::i;:::-;40288:76;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;40182:190;40110:262:::0;:::o;41502:313::-;41600:4;41617:36;41627:6;41635:9;41646:6;41617:9;:36::i;:::-;41664:121;41673:6;8051:10;41695:89;41733:6;41695:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41695:19:0;;;;;;:11;:19;;;;;;;;8051:10;41695:33;;;;;;;;;;:37;:89::i;:::-;41664:8;:121::i;:::-;-1:-1:-1;41803:4:0;41502:313;;;;;:::o;32087:253::-;32153:7;32192;;32181;:18;;32173:73;;;;-1:-1:-1;;;32173:73:0;;5823:2:1;32173:73:0;;;5805:21:1;5862:2;5842:18;;;5835:30;5901:34;5881:18;;;5874:62;-1:-1:-1;;;5952:18:1;;;5945:40;6002:19;;32173:73:0;5621:406:1;32173:73:0;32257:19;32280:10;:8;:10::i;:::-;32257:33;-1:-1:-1;32308:24:0;:7;32257:33;32308:11;:24::i;:::-;32301:31;32087:253;-1:-1:-1;;;32087:253:0:o;33042:479::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33124:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33116:60;;;::::0;-1:-1:-1;;;33116:60:0;;7811:2:1;33116:60:0::1;::::0;::::1;7793:21:1::0;7850:2;7830:18;;;7823:30;7889:29;7869:18;;;7862:57;7936:18;;33116:60:0::1;7609:351:1::0;33116:60:0::1;33192:9;33187:327;33211:9;:16:::0;33207:20;::::1;33187:327;;;33269:7;-1:-1:-1::0;;;;;33253:23:0::1;:9;33263:1;33253:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33253:12:0::1;:23;33249:254;;;33312:9;33322:16:::0;;:20:::1;::::0;33341:1:::1;::::0;33322:20:::1;:::i;:::-;33312:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;33297:9:::1;:12:::0;;-1:-1:-1;;;;;33312:31:0;;::::1;::::0;33307:1;;33297:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;33297:46:0::1;-1:-1:-1::0;;;;;33297:46:0;;::::1;;::::0;;33362:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;33401:11:::1;:20:::0;;;;:28;;-1:-1:-1;;33401:28:0::1;::::0;;33448:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;33448:15:0;;;;;-1:-1:-1;;;;;;33448:15:0::1;::::0;;;;;30961:282;;:::o;33249:254::-:1;33229:3:::0;::::1;::::0;::::1;:::i;:::-;;;;33187:327;;30454:218:::0;8051:10;30542:4;30591:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30591:34:0;;;;;;;;;;30542:4;;30559:83;;30582:7;;30591:50;;30630:10;30591:38;:50::i;31255:378::-;8051:10;31307:14;31356:19;;;:11;:19;;;;;;;;31355:20;31347:77;;;;-1:-1:-1;;;31347:77:0;;11606:2:1;31347:77:0;;;11588:21:1;11645:2;11625:18;;;11618:30;11684:34;11664:18;;;11657:62;-1:-1:-1;;;11735:18:1;;;11728:42;11787:19;;31347:77:0;11404:408:1;31347:77:0;31436:15;31461:19;31472:7;31461:10;:19::i;:::-;-1:-1:-1;;;;;;;;31509:15:0;;;;;;:7;:15;;;;;;31435:45;;-1:-1:-1;31509:28:0;;:15;-1:-1:-1;31435:45:0;;-1:-1:-1;;31509:19:0;:28::i;:::-;-1:-1:-1;;;;;31491:15:0;;;;;;:7;:15;;;;;:46;31558:7;;:20;;31570:7;31558:11;:20::i;:::-;31548:7;:30;31602:10;;:23;;31617:7;31602:14;:23::i;:::-;31589:10;:36;-1:-1:-1;;;31255:378:0:o;33529:111::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33598:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;33598:34:0::1;33628:4;33598:34;::::0;;33529:111::o;31641:438::-;31731:7;31770;;31759;:18;;31751:62;;;;-1:-1:-1;;;31751:62:0;;8167:2:1;31751:62:0;;;8149:21:1;8206:2;8186:18;;;8179:30;8245:33;8225:18;;;8218:61;8296:18;;31751:62:0;7965:355:1;31751:62:0;31829:17;31824:248;;31864:15;31889:19;31900:7;31889:10;:19::i;:::-;-1:-1:-1;31863:45:0;;-1:-1:-1;31923:14:0;;-1:-1:-1;;;;;;31923:14:0;31824:248;31972:23;32004:19;32015:7;32004:10;:19::i;:::-;-1:-1:-1;31970:53:0;;-1:-1:-1;32038:22:0;;-1:-1:-1;;;;;;32038:22:0;29846:122;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;29932:13:::1;:28:::0;29846:122::o;30096:350::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;30202:1:::1;30191:7;:12;;:31;;;;;30218:4;30207:7;:15;;30191:31;30183:40;;;::::0;::::1;;30263:14;30280:33;30305:7;30280:20;30292:7;30280;;:11;;:20;;;;:::i;:33::-;30263:50;;30353:4;30343:7;;:14;;;;:::i;:::-;30332:6;:26;;30324:81;;;::::0;-1:-1:-1;;;30324:81:0;;7400:2:1;30324:81:0::1;::::0;::::1;7382:21:1::0;7439:2;7419:18;;;7412:30;7478:34;7458:18;;;7451:62;-1:-1:-1;;;7529:18:1;;;7522:40;7579:19;;30324:81:0::1;7198:406:1::0;30324:81:0::1;30416:13;:22:::0;-1:-1:-1;;30096:350:0:o;29984:100::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;30056:8:::1;:20:::0;29984:100::o;32476:558::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;32569:42:::1;-1:-1:-1::0;;;;;32558:53:0;::::1;;;32550:100;;;::::0;-1:-1:-1;;;32550:100:0;;11203:2:1;32550:100:0::1;::::0;::::1;11185:21:1::0;11242:2;11222:18;;;11215:30;11281:34;11261:18;;;11254:62;-1:-1:-1;;;11332:18:1;;;11325:32;11374:19;;32550:100:0::1;11001:398:1::0;32550:100:0::1;-1:-1:-1::0;;;;;32784:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32783:21;32775:61;;;::::0;-1:-1:-1;;;32775:61:0;;7811:2:1;32775:61:0::1;::::0;::::1;7793:21:1::0;7850:2;7830:18;;;7823:30;7889:29;7869:18;;;7862:57;7936:18;;32775:61:0::1;7609:351:1::0;32775:61:0::1;-1:-1:-1::0;;;;;32850:16:0;::::1;32869:1;32850:16:::0;;;:7:::1;:16;::::0;;;;;:20;32847:108:::1;;-1:-1:-1::0;;;;;32926:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;32906:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;32887:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;32847:108:::1;-1:-1:-1::0;;;;;32965:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;32965:27:0::1;32988:4;32965:27:::0;;::::1;::::0;;;33003:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33003:23:0::1;::::0;;::::1;::::0;;32476:558::o;47611:103::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;47683:15:::1;:23:::0;;-1:-1:-1;;47683:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47611:103::o;29096:198::-;-1:-1:-1;;;;;29186:20:0;;29162:7;29186:20;;;:11;:20;;;;;;;;29182:49;;;-1:-1:-1;;;;;;29215:16:0;;;;;:7;:16;;;;;;;29096:198::o;29182:49::-;-1:-1:-1;;;;;29269:16:0;;;;;;:7;:16;;;;;;29249:37;;:19;:37::i;16184:148::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;16291:1:::1;16275:6:::0;;16254:40:::1;::::0;-1:-1:-1;;;;;16275:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16254:40:0;16291:1;;16254:40:::1;16322:1;16305:19:::0;;-1:-1:-1;;;;;;16305:19:0::1;::::0;;16184:148::o;29708:122::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;29794:13:::1;:28:::0;29708:122::o;29469:223::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;29577:18:::1;29598:33;29623:7;29598:20;29610:7;29598;;:11;;:20;;;;:::i;:33::-;29642:29;:42:::0;-1:-1:-1;;;29469:223:0:o;28728:71::-;28767:13;28790:7;28783:14;;;;;:::i;30680:269::-;30773:4;30790:129;8051:10;30813:7;30822:96;30861:15;30822:96;;;;;;;;;;;;;;;;;8051:10;30822:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30822:34:0;;;;;;;;;;;;:38;:96::i;17206:305::-;17258:14;;-1:-1:-1;;;;;17258:14:0;17276:10;17258:28;17250:76;;;;-1:-1:-1;;;17250:76:0;;12019:2:1;17250:76:0;;;12001:21:1;12058:2;12038:18;;;12031:30;12097:34;12077:18;;;12070:62;-1:-1:-1;;;12148:18:1;;;12141:33;12191:19;;17250:76:0;11817:399:1;17250:76:0;17363:9;;17345:15;:27;17337:72;;;;-1:-1:-1;;;17337:72:0;;10843:2:1;17337:72:0;;;10825:21:1;10882:2;10862:18;;;10855:30;10921:33;10901:18;;;10894:61;10972:18;;17337:72:0;10641:355:1;17337:72:0;17454:14;;;17446:6;;17425:44;;-1:-1:-1;;;;;17454:14:0;;;;17446:6;;;;-1:-1:-1;;;;;;;;;;;17425:44:0;;17489:14;;;17480:23;;-1:-1:-1;;;;;;17480:23:0;-1:-1:-1;;;;;17489:14:0;;;17480:23;;;;;;17206:305::o;43862:167::-;43940:4;43957:42;8051:10;43981:9;43992:6;43957:9;:42::i;34000:171::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;34077:21:::1;:32:::0;;-1:-1:-1;;34077:32:0::1;;::::0;::::1;;::::0;;::::1;::::0;;;::::1;::::0;;34125:38:::1;::::0;4328:41:1;;;34125:38:0::1;::::0;4301:18:1;34125:38:0::1;;;;;;;34000:171:::0;:::o;16904:226::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;16985:6:::1;::::0;;;16968:23;;-1:-1:-1;;;;;;16968:23:0;;::::1;-1:-1:-1::0;;;;;16985:6:0;::::1;16968:23;::::0;;;17002:19:::1;::::0;;17044:22:::1;17062:4:::0;17044:15:::1;:22;:::i;:::-;17032:9;:34:::0;17119:1:::1;17103:6:::0;;17082:40:::1;::::0;-1:-1:-1;;;;;17103:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;17082:40:0;17119:1;;17082:40:::1;16904:226:::0;:::o;33648:110::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33715:27:0::1;33745:5;33715:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;33715:35:0::1;::::0;;33648:110::o;16487:244::-;15760:6;;-1:-1:-1;;;;;15760:6:0;8051:10;15760:22;15752:67;;;;-1:-1:-1;;;15752:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16576:22:0;::::1;16568:73;;;::::0;-1:-1:-1;;;16568:73:0;;6234:2:1;16568:73:0::1;::::0;::::1;6216:21:1::0;6273:2;6253:18;;;6246:30;6312:34;6292:18;;;6285:62;-1:-1:-1;;;6363:18:1;;;6356:36;6409:19;;16568:73:0::1;6032:402:1::0;16568:73:0::1;16678:6;::::0;;16657:38:::1;::::0;-1:-1:-1;;;;;16657:38:0;;::::1;::::0;16678:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16657:38:0;::::1;16706:6;:17:::0;;-1:-1:-1;;;;;;16706:17:0::1;-1:-1:-1::0;;;;;16706:17:0;;;::::1;::::0;;;::::1;::::0;;16487:244::o;38374:337::-;-1:-1:-1;;;;;38467:19:0;;38459:68;;;;-1:-1:-1;;;38459:68:0;;10438:2:1;38459:68:0;;;10420:21:1;10477:2;10457:18;;;10450:30;10516:34;10496:18;;;10489:62;-1:-1:-1;;;10567:18:1;;;10560:34;10611:19;;38459:68:0;10236:400:1;38459:68:0;-1:-1:-1;;;;;38546:21:0;;38538:68;;;;-1:-1:-1;;;38538:68:0;;6641:2:1;38538:68:0;;;6623:21:1;6680:2;6660:18;;;6653:30;6719:34;6699:18;;;6692:62;-1:-1:-1;;;6770:18:1;;;6763:32;6812:19;;38538:68:0;6439:398:1;38538:68:0;-1:-1:-1;;;;;38619:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;38671:32;;12367:25:1;;;38671:32:0;;12340:18:1;38671:32:0;;;;;;;38374:337;;;:::o;4832:471::-;4890:7;5135:6;5131:47;;-1:-1:-1;5165:1:0;5158:8;;5131:47;5190:9;5202:5;5206:1;5202;:5;:::i;:::-;5190:17;-1:-1:-1;5235:1:0;5226:5;5230:1;5190:17;5226:5;:::i;:::-;:10;5218:56;;;;-1:-1:-1;;;5218:56:0;;8527:2:1;5218:56:0;;;8509:21:1;8566:2;8546:18;;;8539:30;8605:34;8585:18;;;8578:62;-1:-1:-1;;;8656:18:1;;;8649:31;8697:19;;5218:56:0;8325:397:1;5779:132:0;5837:7;5864:39;5868:1;5871;5864:39;;;;;;;;;;;;;;;;;:3;:39::i;41823:2031::-;-1:-1:-1;;;;;41945:18:0;;41937:68;;;;-1:-1:-1;;;41937:68:0;;10032:2:1;41937:68:0;;;10014:21:1;10071:2;10051:18;;;10044:30;10110:34;10090:18;;;10083:62;-1:-1:-1;;;10161:18:1;;;10154:35;10206:19;;41937:68:0;9830:401:1;41937:68:0;-1:-1:-1;;;;;42024:16:0;;42016:64;;;;-1:-1:-1;;;42016:64:0;;5419:2:1;42016:64:0;;;5401:21:1;5458:2;5438:18;;;5431:30;5497:34;5477:18;;;5470:62;-1:-1:-1;;;5548:18:1;;;5541:33;5591:19;;42016:64:0;5217:399:1;42016:64:0;42108:1;42099:6;:10;42091:64;;;;-1:-1:-1;;;42091:64:0;;9290:2:1;42091:64:0;;;9272:21:1;9329:2;9309:18;;;9302:30;9368:34;9348:18;;;9341:62;-1:-1:-1;;;9419:18:1;;;9412:39;9468:19;;42091:64:0;9088:405:1;42091:64:0;-1:-1:-1;;;;;42174:20:0;;;;;;:14;:20;;;;;;;;:29;42166:46;;;;-1:-1:-1;;;42166:46:0;;;;;;9700:2:1;9682:21;;;9739:1;9719:18;;;9712:29;-1:-1:-1;;;9772:2:1;9757:18;;9750:34;9816:2;9801:18;;9498:327;42166:46:0;-1:-1:-1;;;;;42231:18:0;;;;;;:14;:18;;;;;;;;:27;42223:44;;;;-1:-1:-1;;;42223:44:0;;;;;;9700:2:1;9682:21;;;9739:1;9719:18;;;9712:29;-1:-1:-1;;;9772:2:1;9757:18;;9750:34;9816:2;9801:18;;9498:327;42223:44:0;42290:13;-1:-1:-1;;;;;42282:21:0;:4;-1:-1:-1;;;;;42282:21:0;;:55;;;;;42321:15;-1:-1:-1;;;;;42307:30:0;:2;-1:-1:-1;;;;;42307:30:0;;;42282:55;:82;;;;-1:-1:-1;;;;;;42342:22:0;;;;;;:18;:22;;;;;;;;42341:23;42282:82;:101;;;;-1:-1:-1;42368:15:0;;;;42282:101;42278:525;;;42422:13;;42412:6;:23;;42404:32;;;;;;-1:-1:-1;;;;;42463:15:0;;;;;;:11;:15;;;;;;42481;-1:-1:-1;42455:42:0;;;;;;42554:8;;42534:29;;:15;;:19;:29::i;:::-;-1:-1:-1;;;;;42516:15:0;;;;;;:11;:15;;;;;:47;42278:525;;;42604:13;-1:-1:-1;;;;;42596:21:0;:4;-1:-1:-1;;;;;42596:21:0;;:40;;;;-1:-1:-1;42621:15:0;;;;42596:40;:67;;;;-1:-1:-1;;;;;;42641:22:0;;;;;;:18;:22;;;;;;;;42640:23;42596:67;42593:210;;;-1:-1:-1;;;;;42688:18:0;;;;;;:12;:18;;;;;;42710:15;-1:-1:-1;42688:37:0;42680:46;;;;;;42782:8;;42762:29;;:15;;:19;:29::i;:::-;-1:-1:-1;;;;;42741:18:0;;;;;;:12;:18;;;;;:50;42593:210;42827:28;42858:24;42876:4;42858:9;:24::i;:::-;42827:55;;42922:29;;42898:20;:53;42895:146;;-1:-1:-1;43000:29:0;;42895:146;43104:29;;43080:53;;;;;;;43162;;-1:-1:-1;43199:16:0;;;;43198:17;43162:53;:91;;;;;43240:13;-1:-1:-1;;;;;43232:21:0;:4;-1:-1:-1;;;;;43232:21:0;;;43162:91;:129;;;;-1:-1:-1;43270:21:0;;;;;;;43162:129;43144:301;;;43353:29;;43330:52;;43397:36;43412:20;43397:14;:36::i;:::-;-1:-1:-1;;;;;43637:24:0;;43518:12;43637:24;;;:18;:24;;;;;;43533:4;;43637:24;;;:50;;-1:-1:-1;;;;;;43665:22:0;;;;;;:18;:22;;;;;;;;43637:50;43634:96;;;-1:-1:-1;43713:5:0;43634:96;43808:38;43823:4;43828:2;43831:6;43838:7;43808:14;:38::i;:::-;41926:1928;;;41823:2031;;;:::o;4381:192::-;4467:7;4503:12;4495:6;;;;4487:29;;;;-1:-1:-1;;;4487:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4527:9:0;4539:5;4543:1;4539;:5;:::i;:::-;4527:17;4381:192;-1:-1:-1;;;;;4381:192:0:o;35877:163::-;35918:7;35939:15;35956;35975:19;:17;:19::i;:::-;35938:56;;-1:-1:-1;35938:56:0;-1:-1:-1;36012:20:0;35938:56;;36012:11;:20::i;:::-;36005:27;;;;35877:163;:::o;3478:181::-;3536:7;;3568:5;3572:1;3568;:5;:::i;:::-;3556:17;;3597:1;3592;:6;;3584:46;;;;-1:-1:-1;;;3584:46:0;;7044:2:1;3584:46:0;;;7026:21:1;7083:2;7063:18;;;7056:30;7122:29;7102:18;;;7095:57;7169:18;;3584:46:0;6842:351:1;34428:472:0;34487:7;34496;34505;34514;34523;34532;34541;34562:23;34587:12;34601:18;34621;34643:20;34655:7;34643:11;:20::i;:::-;34561:102;;;;;;;;34675:15;34692:23;34717:12;34733:62;34745:7;34754:4;34760:10;34772;34784;:8;:10::i;:::-;34733:11;:62::i;:::-;34674:121;;-1:-1:-1;34674:121:0;-1:-1:-1;34674:121:0;-1:-1:-1;34846:15:0;;-1:-1:-1;34863:4:0;;-1:-1:-1;34869:10:0;;-1:-1:-1;34881:10:0;-1:-1:-1;;;;34428:472:0;;;;;;;;;:::o;3942:136::-;4000:7;4027:43;4031:1;4034;4027:43;;;;;;;;;;;;;;;;;:3;:43::i;6407:278::-;6493:7;6528:12;6521:5;6513:28;;;;-1:-1:-1;;;6513:28:0;;;;;;;;:::i;:::-;-1:-1:-1;6552:9:0;6564:5;6568:1;6564;:5;:::i;38842:1260::-;27740:16;:23;;-1:-1:-1;;27740:23:0;27759:4;27740:23;;;:16;39051:27:::1;:20:::0;39076:1:::1;39051:24;:27::i;:::-;39019:59:::0;-1:-1:-1;39089:29:0::1;39121:47;:20:::0;39019:59;39121:24:::1;:47::i;:::-;39089:79:::0;-1:-1:-1;39179:34:0::1;39216:28;39089:79:::0;39242:1:::1;39216:25;:28::i;:::-;39179:65:::0;-1:-1:-1;39255:29:0::1;39287:53;:21:::0;39179:65;39287:25:::1;:53::i;:::-;39255:85:::0;-1:-1:-1;39376:21:0::1;39351:22;39496:53;:26:::0;39527:21;39496:30:::1;:53::i;:::-;39468:81;;39562:35;39579:17;39562:16;:35::i;:::-;39610:18;39631:41;:21;39657:14:::0;39631:25:::1;:41::i;:::-;39610:62:::0;-1:-1:-1;39685:20:0::1;39708:17;39610:62:::0;39723:1:::1;39708:14;:17::i;:::-;39685:40;;39738:49;39751:21;39774:12;39738;:49::i;:::-;39805:79;::::0;;13590:25:1;;;13646:2;13631:18;;13624:34;;;13674:18;;;13667:34;;;39805:79:0::1;::::0;13578:2:1;13563:18;39805:79:0::1;;;;;;;39897:20;39920:28;:10:::0;39935:12;39920:14:::1;:28::i;:::-;40014:16;::::0;:39:::1;::::0;39897:51;;-1:-1:-1;;;;;;40014:16:0::1;::::0;:39;::::1;;;::::0;39897:51;;40014:16:::1;:39:::0;:16;:39;39897:51;40014:16;:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;40069:25:0::1;::::0;12367::1;;;40069::0::1;::::0;12355:2:1;12340:18;40069:25:0::1;;;;;;;-1:-1:-1::0;;27786:16:0;:24;;-1:-1:-1;;27786:24:0;;;-1:-1:-1;;;;;;;;38842:1260:0:o;44110:818::-;44221:7;44217:40;;44243:14;:12;:14::i;:::-;-1:-1:-1;;;;;44274:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;44298:22:0;;;;;;:11;:22;;;;;;;;44297:23;44274:46;44270:597;;;44337:48;44359:6;44367:9;44378:6;44337:21;:48::i;:::-;44270:597;;;-1:-1:-1;;;;;44408:19:0;;;;;;:11;:19;;;;;;;;44407:20;:46;;;;-1:-1:-1;;;;;;44431:22:0;;;;;;:11;:22;;;;;;;;44407:46;44403:464;;;44470:46;44490:6;44498:9;44509:6;44470:19;:46::i;44403:464::-;-1:-1:-1;;;;;44539:19:0;;;;;;:11;:19;;;;;;;;44538:20;:47;;;;-1:-1:-1;;;;;;44563:22:0;;;;;;:11;:22;;;;;;;;44562:23;44538:47;44534:333;;;44602:44;44620:6;44628:9;44639:6;44602:17;:44::i;44534:333::-;-1:-1:-1;;;;;44668:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;44691:22:0;;;;;;:11;:22;;;;;;;;44668:45;44664:203;;;44730:48;44752:6;44760:9;44771:6;44730:21;:48::i;44664:203::-;44811:44;44829:6;44837:9;44848:6;44811:17;:44::i;:::-;44883:7;44879:41;;44905:15;38247;;38237:7;:25;38289:21;;38273:13;:37;38337:21;;38321:13;:37;38193:173;44905:15;44110:818;;;;:::o;36048:555::-;36145:7;;36181;;36098;;;;;36199:289;36223:9;:16;36219:20;;36199:289;;;36289:7;36265;:21;36273:9;36283:1;36273:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;36273:12:0;36265:21;;;;;;;;;;;;;:31;;:66;;;36324:7;36300;:21;36308:9;36318:1;36308:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;36308:12:0;36300:21;;;;;;;;;;;;;:31;36265:66;36261:97;;;36341:7;;36350;;36333:25;;;;;;;36048:555;;:::o;36261:97::-;36383:34;36395:7;:21;36403:9;36413:1;36403:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;36403:12:0;36395:21;;;;;;;;;;;;;36383:7;;:11;:34::i;:::-;36373:44;;36442:34;36454:7;:21;36462:9;36472:1;36462:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;36462:12:0;36454:21;;;;;;;;;;;;;36442:7;;:11;:34::i;:::-;36432:44;-1:-1:-1;36241:3:0;;;;:::i;:::-;;;;36199:289;;;-1:-1:-1;36524:7:0;;36512;;:20;;:11;:20::i;:::-;36502:7;:30;36498:61;;;36542:7;;36551;;36534:25;;;;;;36048:555;;:::o;36498:61::-;36578:7;;36587;;-1:-1:-1;36048:555:0;-1:-1:-1;36048:555:0:o;34908:429::-;34968:7;34977;34986;34995;35015:12;35030:24;35046:7;35030:15;:24::i;:::-;35015:39;;35065:18;35086:30;35108:7;35086:21;:30::i;:::-;35065:51;;35127:18;35148:30;35170:7;35148:21;:30::i;:::-;35127:51;-1:-1:-1;35189:23:0;35215:49;35253:10;35215:33;35127:51;35215:33;:7;35227:4;35215:11;:17::i;:::-;:21;;:33::i;:49::-;35189:75;35300:4;;-1:-1:-1;35306:10:0;;-1:-1:-1;35306:10:0;-1:-1:-1;34908:429:0;;-1:-1:-1;;;34908:429:0:o;35345:524::-;35480:7;;;;35536:24;:7;35548:11;35536;:24::i;:::-;35518:42;-1:-1:-1;35571:12:0;35586:21;:4;35595:11;35586:8;:21::i;:::-;35571:36;-1:-1:-1;35618:18:0;35639:27;:10;35654:11;35639:14;:27::i;:::-;35618:48;-1:-1:-1;35677:18:0;35698:27;:10;35713:11;35698:14;:27::i;:::-;35677:48;-1:-1:-1;35736:23:0;35762:49;35800:10;35762:33;35677:48;35762:33;:7;35774:4;35762:11;:17::i;:49::-;35830:7;;;;-1:-1:-1;35856:4:0;;-1:-1:-1;35345:524:0;;-1:-1:-1;;;;;;;;;35345:524:0:o;40380:589::-;40530:16;;;40544:1;40530:16;;;;;;;;40506:21;;40530:16;;;;;;;;;;-1:-1:-1;40530:16:0;40506:40;;40575:4;40557;40562:1;40557:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;40557:23:0;;;-1:-1:-1;;;;;40557:23:0;;;;;40601:15;-1:-1:-1;;;;;40601:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40591:4;40596:1;40591:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;40591:32:0;;;-1:-1:-1;;;;;40591:32:0;;;;;40636:62;40653:4;40668:15;40686:11;40636:8;:62::i;:::-;40737:224;;-1:-1:-1;;;40737:224:0;;-1:-1:-1;;;;;40737:15:0;:66;;;;:224;;40818:11;;40844:1;;40888:4;;40915;;40935:15;;40737:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40977:513;41125:62;41142:4;41157:15;41175:11;41125:8;:62::i;:::-;41230:15;-1:-1:-1;;;;;41230:31:0;;41269:9;41302:4;41322:11;41348:1;41391;41434:7;15586;15613:6;-1:-1:-1;;;;;15613:6:0;;15548:79;41434:7;41230:252;;;;;;-1:-1:-1;;;;;;41230:252:0;;;-1:-1:-1;;;;;3935:15:1;;;41230:252:0;;;3917:34:1;3967:18;;;3960:34;;;;4010:18;;;4003:34;;;;4053:18;;;4046:34;4117:15;;;4096:19;;;4089:44;41456:15:0;4149:19:1;;;4142:35;3851:19;;41230:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;40977:513;;:::o;37853:332::-;37899:7;;:12;:34;;;;-1:-1:-1;37915:13:0;;:18;37899:34;:56;;;;-1:-1:-1;37937:13:0;;:18;37899:56;37896:68;;;37853:332::o;37896:68::-;37994:7;;;37976:15;:25;38036:13;;;38012:21;:37;38084:13;;;38060:21;:37;-1:-1:-1;38110:11:0;;;;38132:17;;;;38160;37853:332::o;46159:627::-;46262:15;46279:23;46304:12;46318:23;46343:12;46357:18;46377;46399:19;46410:7;46399:10;:19::i;:::-;46261:157;;;;;;;;;;;;;;46447:28;46467:7;46447;:15;46455:6;-1:-1:-1;;;;;46447:15:0;-1:-1:-1;;;;;46447:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;46429:15:0;;;;;;:7;:15;;;;;;;;:46;;;;46504:7;:15;;;;:28;;46524:7;46504:19;:28::i;:::-;-1:-1:-1;;;;;46486:15:0;;;;;;;:7;:15;;;;;;:46;;;;46564:18;;;;;;;:39;;46587:15;46564:22;:39::i;:::-;-1:-1:-1;;;;;46543:18:0;;;;;;:7;:18;;;;;:60;46614:26;46629:10;46614:14;:26::i;:::-;46658;46673:10;46658:14;:26::i;:::-;46695:23;46707:4;46713;46695:11;:23::i;:::-;46751:9;-1:-1:-1;;;;;46734:44:0;46743:6;-1:-1:-1;;;;;46734:44:0;;46762:15;46734:44;;;;12367:25:1;;12355:2;12340:18;;12221:177;46734:44:0;;;;;;;;46250:536;;;;;;;46159:627;;;:::o;45511:640::-;45612:15;45629:23;45654:12;45668:23;45693:12;45707:18;45727;45749:19;45760:7;45749:10;:19::i;:::-;45611:157;;;;;;;;;;;;;;45797:28;45817:7;45797;:15;45805:6;-1:-1:-1;;;;;45797:15:0;-1:-1:-1;;;;;45797:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;45779:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;45857:18;;;;;:7;:18;;;;;:39;;45880:15;45857:22;:39::i;:::-;-1:-1:-1;;;;;45836:18:0;;;;;;:7;:18;;;;;;;;:60;;;;45928:7;:18;;;;:39;;45951:15;45928:22;:39::i;44936:567::-;45035:15;45052:23;45077:12;45091:23;45116:12;45130:18;45150;45172:19;45183:7;45172:10;:19::i;:::-;45034:157;;;;;;;;;;;;;;45220:28;45240:7;45220;:15;45228:6;-1:-1:-1;;;;;45220:15:0;-1:-1:-1;;;;;45220:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;46798:699::-;46901:15;46918:23;46943:12;46957:23;46982:12;46996:18;47016;47038:19;47049:7;47038:10;:19::i;:::-;46900:157;;;;;;;;;;;;;;47086:28;47106:7;47086;:15;47094:6;-1:-1:-1;;;;;47086:15:0;-1:-1:-1;;;;;47086:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;47068:15:0;;;;;;:7;:15;;;;;;;;:46;;;;47143:7;:15;;;;:28;;47163:7;47143:19;:28::i;37345:154::-;37409:7;37436:55;37475:5;37436:20;37448:7;;37436;:11;;:20;;;;:::i;37507:166::-;37577:7;37604:61;37649:5;37604:26;37616:13;;37604:7;:11;;:26;;;;:::i;37679:166::-;37749:7;37776:61;37821:5;37776:26;37788:13;;37776:7;:11;;:26;;;;:::i;36611:355::-;36674:19;36697:10;:8;:10::i;:::-;36674:33;-1:-1:-1;36718:18:0;36739:27;:10;36674:33;36739:14;:27::i;:::-;36818:4;36802:22;;;;:7;:22;;;;;;36718:48;;-1:-1:-1;36802:38:0;;36718:48;36802:26;:38::i;:::-;36793:4;36777:22;;;;:7;:22;;;;;;;;:63;;;;36854:11;:26;;;;;;36851:107;;;36936:4;36920:22;;;;:7;:22;;;;;;:38;;36947:10;36920:26;:38::i;:::-;36911:4;36895:22;;;;:7;:22;;;;;:63;36663:303;;36611:355;:::o;34273:147::-;34351:7;;:17;;34363:4;34351:11;:17::i;:::-;34341:7;:27;34392:10;;:20;;34407:4;34392:14;:20::i;:::-;34379:10;:33;-1:-1:-1;;34273:147:0:o;14:160:1:-;79:20;;135:13;;128:21;118:32;;108:60;;164:1;161;154:12;108:60;14:160;;;:::o;179:247::-;238:6;291:2;279:9;270:7;266:23;262:32;259:52;;;307:1;304;297:12;259:52;346:9;333:23;365:31;390:5;365:31;:::i;431:251::-;501:6;554:2;542:9;533:7;529:23;525:32;522:52;;;570:1;567;560:12;522:52;602:9;596:16;621:31;646:5;621:31;:::i;687:388::-;755:6;763;816:2;804:9;795:7;791:23;787:32;784:52;;;832:1;829;822:12;784:52;871:9;858:23;890:31;915:5;890:31;:::i;:::-;940:5;-1:-1:-1;997:2:1;982:18;;969:32;1010:33;969:32;1010:33;:::i;:::-;1062:7;1052:17;;;687:388;;;;;:::o;1080:456::-;1157:6;1165;1173;1226:2;1214:9;1205:7;1201:23;1197:32;1194:52;;;1242:1;1239;1232:12;1194:52;1281:9;1268:23;1300:31;1325:5;1300:31;:::i;:::-;1350:5;-1:-1:-1;1407:2:1;1392:18;;1379:32;1420:33;1379:32;1420:33;:::i;:::-;1080:456;;1472:7;;-1:-1:-1;;;1526:2:1;1511:18;;;;1498:32;;1080:456::o;1541:315::-;1606:6;1614;1667:2;1655:9;1646:7;1642:23;1638:32;1635:52;;;1683:1;1680;1673:12;1635:52;1722:9;1709:23;1741:31;1766:5;1741:31;:::i;:::-;1791:5;-1:-1:-1;1815:35:1;1846:2;1831:18;;1815:35;:::i;:::-;1805:45;;1541:315;;;;;:::o;1861:::-;1929:6;1937;1990:2;1978:9;1969:7;1965:23;1961:32;1958:52;;;2006:1;2003;1996:12;1958:52;2045:9;2032:23;2064:31;2089:5;2064:31;:::i;:::-;2114:5;2166:2;2151:18;;;;2138:32;;-1:-1:-1;;;1861:315:1:o;2181:180::-;2237:6;2290:2;2278:9;2269:7;2265:23;2261:32;2258:52;;;2306:1;2303;2296:12;2258:52;2329:26;2345:9;2329:26;:::i;2366:180::-;2425:6;2478:2;2466:9;2457:7;2453:23;2449:32;2446:52;;;2494:1;2491;2484:12;2446:52;-1:-1:-1;2517:23:1;;2366:180;-1:-1:-1;2366:180:1:o;2551:248::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2729:9;2716:23;2706:33;;2758:35;2789:2;2778:9;2774:18;2758:35;:::i;2804:248::-;2872:6;2880;2933:2;2921:9;2912:7;2908:23;2904:32;2901:52;;;2949:1;2946;2939:12;2901:52;-1:-1:-1;;2972:23:1;;;3042:2;3027:18;;;3014:32;;-1:-1:-1;2804:248:1:o;3057:306::-;3145:6;3153;3161;3214:2;3202:9;3193:7;3189:23;3185:32;3182:52;;;3230:1;3227;3220:12;3182:52;3259:9;3253:16;3243:26;;3309:2;3298:9;3294:18;3288:25;3278:35;;3353:2;3342:9;3338:18;3332:25;3322:35;;3057:306;;;;;:::o;4615:597::-;4727:4;4756:2;4785;4774:9;4767:21;4817:6;4811:13;4860:6;4855:2;4844:9;4840:18;4833:34;4885:1;4895:140;4909:6;4906:1;4903:13;4895:140;;;5004:14;;;5000:23;;4994:30;4970:17;;;4989:2;4966:26;4959:66;4924:10;;4895:140;;;5053:6;5050:1;5047:13;5044:91;;;5123:1;5118:2;5109:6;5098:9;5094:22;5090:31;5083:42;5044:91;-1:-1:-1;5196:2:1;5175:15;-1:-1:-1;;5171:29:1;5156:45;;;;5203:2;5152:54;;4615:597;-1:-1:-1;;;4615:597:1:o;8727:356::-;8929:2;8911:21;;;8948:18;;;8941:30;9007:34;9002:2;8987:18;;8980:62;9074:2;9059:18;;8727:356::o;12403:980::-;12665:4;12713:3;12702:9;12698:19;12744:6;12733:9;12726:25;12770:2;12808:6;12803:2;12792:9;12788:18;12781:34;12851:3;12846:2;12835:9;12831:18;12824:31;12875:6;12910;12904:13;12941:6;12933;12926:22;12979:3;12968:9;12964:19;12957:26;;13018:2;13010:6;13006:15;12992:29;;13039:1;13049:195;13063:6;13060:1;13057:13;13049:195;;;13128:13;;-1:-1:-1;;;;;13124:39:1;13112:52;;13219:15;;;;13184:12;;;;13160:1;13078:9;13049:195;;;-1:-1:-1;;;;;;;13300:32:1;;;;13295:2;13280:18;;13273:60;-1:-1:-1;;;13364:3:1;13349:19;13342:35;13261:3;12403:980;-1:-1:-1;;;12403:980:1:o;13901:128::-;13941:3;13972:1;13968:6;13965:1;13962:13;13959:39;;;13978:18;;:::i;:::-;-1:-1:-1;14014:9:1;;13901:128::o;14034:217::-;14074:1;14100;14090:132;;14144:10;14139:3;14135:20;14132:1;14125:31;14179:4;14176:1;14169:15;14207:4;14204:1;14197:15;14090:132;-1:-1:-1;14236:9:1;;14034:217::o;14256:168::-;14296:7;14362:1;14358;14354:6;14350:14;14347:1;14344:21;14339:1;14332:9;14325:17;14321:45;14318:71;;;14369:18;;:::i;:::-;-1:-1:-1;14409:9:1;;14256:168::o;14429:125::-;14469:4;14497:1;14494;14491:8;14488:34;;;14502:18;;:::i;:::-;-1:-1:-1;14539:9:1;;14429:125::o;14559:380::-;14638:1;14634:12;;;;14681;;;14702:61;;14756:4;14748:6;14744:17;14734:27;;14702:61;14809:2;14801:6;14798:14;14778:18;14775:38;14772:161;;;14855:10;14850:3;14846:20;14843:1;14836:31;14890:4;14887:1;14880:15;14918:4;14915:1;14908:15;14772:161;;14559:380;;;:::o;14944:135::-;14983:3;-1:-1:-1;;15004:17:1;;15001:43;;;15024:18;;:::i;:::-;-1:-1:-1;15071:1:1;15060:13;;14944:135::o;15084:127::-;15145:10;15140:3;15136:20;15133:1;15126:31;15176:4;15173:1;15166:15;15200:4;15197:1;15190:15;15216:127;15277:10;15272:3;15268:20;15265:1;15258:31;15308:4;15305:1;15298:15;15332:4;15329:1;15322:15;15348:127;15409:10;15404:3;15400:20;15397:1;15390:31;15440:4;15437:1;15430:15;15464:4;15461:1;15454:15;15612:131;-1:-1:-1;;;;;15687:31:1;;15677:42;;15667:70;;15733:1;15730;15723:12;15667:70;15612:131;:::o
Swarm Source
ipfs://bd35d691f0f4ec34dd5b2a8b95a9d20ef8b20a4da0021d9b153c85c2df2cf47d
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.