ERC-20
Overview
Max Total Supply
1,000,000,000,000,000 BabyMono
Holders
103
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Filtered by Token Holder
BabyMononoke Inu: BabyMono TokenBalance
1,840,965,587,194.048346696897459316 BabyMonoValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Tora
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-25 */ /** *Submitted for verification at Etherscan.io on 2021-05-11 */ /** *Submitted for verification at Etherscan.io on 2021-05-11 */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal virtual view returns (address payable) { return msg.sender; } function _msgData() internal virtual view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } /** * @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; } function ceil(uint256 a, uint256 m) internal pure returns (uint256) { uint256 c = add(a,m); uint256 d = sub(c,1); return mul(div(d,m),m); } } /** * @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; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() internal { _owner =0x4D55b57fc9B2Ee421eeF385A6Ba9106B98A65010; emit OwnershipTransferred(address(0), _owner); } /** * @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; } } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Pair { function sync() external; } 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); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; 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; } contract Tora is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; string private _name = "BabyMononoke Inu"; string private _symbol = "BabyMono"; uint8 private _decimals = 18; mapping(address => uint256) internal _reflectionBalance; mapping(address => uint256) internal _balanceLimit; mapping(address => uint256) internal _tokenBalance; mapping (address => bool) public _blackList; mapping(address => mapping(address => uint256)) internal _allowances; uint256 private constant MAX = ~uint256(0); uint256 internal _tokenTotal = 1_000_000_000_000_000e18; uint256 internal _reflectionTotal = (MAX - (MAX % _tokenTotal)); mapping(address => bool) isTaxless; mapping(address => bool) internal _isExcluded; address[] internal _excluded; uint256 public _feeDecimal = 2; // do not change this value... uint256 public _taxFee = 100; // means 1% which distribute to all holders reflection fee uint256 public _marketingFee=200;// meanse 2% eth to marketing Wallet uint256 public _charityFee = 100; // means 1% uint256 public _devFee = 100; // means 1% uint256 public _SelltaxFee = 100; // means 1% which distribute to all holders reflection fee uint256 public _SellmarketingFee=200;// meanse 2% uint256 public _SellcharityFee = 100; // means 1% uint256 public _SelldevFee = 100; // means 1% address private marketingAddress=0xBCb19d9Ebd822aE646554371a01D7Bf857b97471; address private devWallet =0xEB02249cC62b1529867d923fb3ef927aAC7bD4ac; address private charityWallet = 0x0C816096676F1701008d5A733ec46F7fD20EaB23; address DEAD = 0x000000000000000000000000000000000000dEaD; uint256 public _taxFeeTotal; uint256 public _burnFeeTotal; uint256 public _liquidityFeeTotal; bool public isFeeActive = true; // should be true bool private inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; bool private tradingEnable = true; uint256 public maxTxAmount = _tokenTotal; // uint256 public minTokensBeforeSwap = 100_000e18; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify(uint256 tokensSwapped,uint256 ethReceived, uint256 tokensIntoLiqudity); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor() public { // IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x10ED43C718714eb63d5aA57B78B54704E256024E); // for BSC Pncake v2 // IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506); // for SushiSwap IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // for Ethereum uniswap v2 uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; isTaxless[owner()] = true; isTaxless[address(this)] = true; // exlcude pair address from tax rewards _isExcluded[address(uniswapV2Pair)] = true; _excluded.push(address(uniswapV2Pair)); _isExcluded[DEAD]=true; _excluded.push(DEAD); _reflectionBalance[owner()] = _reflectionTotal; emit Transfer(address(0),owner(), _tokenTotal); } 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 override view returns (uint256) { return _tokenTotal; } function balanceOf(address account) public override view returns (uint256) { if (_isExcluded[account]) return _tokenBalance[account]; return tokenFromReflection(_reflectionBalance[account]); } function transfer(address recipient, uint256 amount) public override virtual returns (bool) { _transfer(_msgSender(),recipient,amount); return true; } function allowance(address owner, address spender) public override view returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public override virtual returns (bool) { _transfer(sender,recipient,amount); _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub( amount,"ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue) ); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } function isExcluded(address account) public view returns (bool) { return _isExcluded[account]; } function reflectionFromToken(uint256 tokenAmount, bool deductTransferFee) public view returns (uint256) { require(tokenAmount <= _tokenTotal, "Amount must be less than supply"); if (!deductTransferFee) { return tokenAmount.mul(_getReflectionRate()); } else { return tokenAmount.sub(tokenAmount.mul(_taxFee).div(10** _feeDecimal + 2)).mul( _getReflectionRate() ); } } function tokenFromReflection(uint256 reflectionAmount) public view returns (uint256) { require( reflectionAmount <= _reflectionTotal, "Amount must be less than total reflections" ); uint256 currentRate = _getReflectionRate(); return reflectionAmount.div(currentRate); } function excludeAccount(address account) external onlyOwner() { require( account != address(uniswapV2Router), "ERC20: We can not exclude Uniswap router." ); require(!_isExcluded[account], "ERC20: Account is already excluded"); if (_reflectionBalance[account] > 0) { _tokenBalance[account] = tokenFromReflection( _reflectionBalance[account] ); } _isExcluded[account] = true; _excluded.push(account); } function includeAccount(address account) external onlyOwner() { require(_isExcluded[account], "ERC20: Account is already included"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tokenBalance[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _approve( address owner, address spender, uint256 amount ) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer( address sender, address recipient, uint256 amount ) private { require(sender != address(0), "ERC20: transfer from the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); require(amount <= maxTxAmount, "Transfer Limit Exceeds"); require(_blackList[sender] != true,"Address is blackListed"); require(tradingEnable == true,"trading is disable"); uint256 transferAmount = amount; uint256 rate = _getReflectionRate(); uint256 constractBal=balanceOf(address(this)); bool overMinTokenBalance = constractBal >= minTokensBeforeSwap; if(!inSwapAndLiquify && overMinTokenBalance && sender != uniswapV2Pair && swapAndLiquifyEnabled) { swapAndLiquify(constractBal); } if(sender == uniswapV2Pair) { if(!isTaxless[sender] && !isTaxless[recipient] && !inSwapAndLiquify){ transferAmount = collectBuyFee(sender,amount,rate); } //transfer reflection _reflectionBalance[sender] = _reflectionBalance[sender].sub(amount.mul(rate)); _reflectionBalance[recipient] = _reflectionBalance[recipient].add(transferAmount.mul(rate)); //if any account belongs to the excludedAccount transfer token if (_isExcluded[sender]) { _tokenBalance[sender] = _tokenBalance[sender].sub(amount); } if (_isExcluded[recipient]) { _tokenBalance[recipient] = _tokenBalance[recipient].add(transferAmount); } emit Transfer(sender, recipient, transferAmount); return; } if(recipient == uniswapV2Pair){ if(!isTaxless[sender] && !isTaxless[recipient] && !inSwapAndLiquify){ transferAmount = collectSellFee(sender,amount,rate); } //transfer reflection _reflectionBalance[sender] = _reflectionBalance[sender].sub(amount.mul(rate)); _reflectionBalance[recipient] = _reflectionBalance[recipient].add(transferAmount.mul(rate)); //if any account belongs to the excludedAccount transfer token if (_isExcluded[sender]) { _tokenBalance[sender] = _tokenBalance[sender].sub(amount); } if (_isExcluded[recipient]) { _tokenBalance[recipient] = _tokenBalance[recipient].add(transferAmount); } emit Transfer(sender, recipient, transferAmount); return; } //transfer reflection _reflectionBalance[sender] = _reflectionBalance[sender].sub(amount.mul(rate)); _reflectionBalance[recipient] = _reflectionBalance[recipient].add(transferAmount.mul(rate)); //if any account belongs to the excludedAccount transfer token if (_isExcluded[sender]) { _tokenBalance[sender] = _tokenBalance[sender].sub(amount); } if (_isExcluded[recipient]) { _tokenBalance[recipient] = _tokenBalance[recipient].add(transferAmount); } emit Transfer(sender, recipient, transferAmount); } function collectBuyFee(address account, uint256 amount, uint256 rate) private returns (uint256) { uint256 transferAmount = amount; //@dev tax fee if(_taxFee != 0){ uint256 taxFee = amount.mul(_taxFee).div(10**(_feeDecimal + 2)); transferAmount = transferAmount.sub(taxFee); _reflectionTotal = _reflectionTotal.sub(taxFee.mul(rate)); _taxFeeTotal = _taxFeeTotal.add(taxFee); } //@dev burn fee if(_marketingFee != 0){ uint256 marketingFee = amount.mul(_marketingFee).div(10**(_feeDecimal + 2)); transferAmount = transferAmount.sub(marketingFee); _reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(marketingFee.mul(rate)); if(_isExcluded[address(this)]){ _tokenBalance[address(this)] = _tokenBalance[address(this)].add(marketingFee); } emit Transfer(account,marketingAddress,marketingFee); } if(_devFee != 0){ uint256 marketingFee = amount.mul(_devFee).div(10**(_feeDecimal + 2)); transferAmount = transferAmount.sub(marketingFee); _reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(marketingFee.mul(rate)); if(_isExcluded[address(this)]){ _tokenBalance[address(this)] = _tokenBalance[address(this)].add(marketingFee); } emit Transfer(account,devWallet,marketingFee); } if(_charityFee != 0){ uint256 marketingFee = amount.mul(_charityFee).div(10**(_feeDecimal + 2)); transferAmount = transferAmount.sub(marketingFee); _reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(marketingFee.mul(rate)); if(_isExcluded[address(this)]){ _tokenBalance[address(this)] = _tokenBalance[address(this)].add(marketingFee); } emit Transfer(account,charityWallet,marketingFee); } return transferAmount; } function collectSellFee(address account, uint256 amount, uint256 rate) private returns (uint256) { uint256 transferAmount = amount; //@dev tax fee if(_SelltaxFee != 0){ uint256 taxFee = amount.mul(_SelltaxFee).div(10**(_feeDecimal + 2)); transferAmount = transferAmount.sub(taxFee); _reflectionTotal = _reflectionTotal.sub(taxFee.mul(rate)); _taxFeeTotal = _taxFeeTotal.add(taxFee); } if(_SellmarketingFee != 0){ uint256 marketingFee = amount.mul(_SellmarketingFee).div(10**(_feeDecimal + 2)); transferAmount = transferAmount.sub(marketingFee); _reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(marketingFee.mul(rate)); if(_isExcluded[address(this)]){ _tokenBalance[address(this)] = _tokenBalance[address(this)].add(marketingFee); } emit Transfer(account,marketingAddress,marketingFee); } if(_SelldevFee != 0){ uint256 marketingFee = amount.mul(_SelldevFee).div(10**(_feeDecimal + 2)); transferAmount = transferAmount.sub(marketingFee); _reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(marketingFee.mul(rate)); if(_isExcluded[address(this)]){ _tokenBalance[address(this)] = _tokenBalance[address(this)].add(marketingFee); } emit Transfer(account,devWallet,marketingFee); } if(_SellcharityFee != 0){ uint256 marketingFee = amount.mul(_SellcharityFee).div(10**(_feeDecimal + 2)); transferAmount = transferAmount.sub(marketingFee); _reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(marketingFee.mul(rate)); if(_isExcluded[address(this)]){ _tokenBalance[address(this)] = _tokenBalance[address(this)].add(marketingFee); } emit Transfer(account,charityWallet,marketingFee); } return transferAmount; } function _getReflectionRate() private view returns (uint256) { uint256 reflectionSupply = _reflectionTotal; uint256 tokenSupply = _tokenTotal; for (uint256 i = 0; i < _excluded.length; i++) { if ( _reflectionBalance[_excluded[i]] > reflectionSupply || _tokenBalance[_excluded[i]] > tokenSupply ) return _reflectionTotal.div(_tokenTotal); reflectionSupply = reflectionSupply.sub( _reflectionBalance[_excluded[i]] ); tokenSupply = tokenSupply.sub(_tokenBalance[_excluded[i]]); } if (reflectionSupply < _reflectionTotal.div(_tokenTotal)) return _reflectionTotal.div(_tokenTotal); return reflectionSupply.div(tokenSupply); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { if(contractTokenBalance > maxTxAmount){ contractTokenBalance = maxTxAmount; } uint256 initialBalance = address(this).balance; swapTokensForEth(contractTokenBalance); // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); uint256 marketingFee = newBalance.mul(_SellmarketingFee).div(10**(_feeDecimal + 2)); uint256 balanceAfterMarketing=newBalance.sub(marketingFee); payable(marketingAddress).transfer(marketingFee); uint256 charityFee = balanceAfterMarketing.mul(_SellcharityFee).div(10**(_feeDecimal + 2)); uint256 balanceAfterCharity =balanceAfterMarketing.sub(charityFee); payable(charityWallet).transfer(charityFee); payable(devWallet).transfer(balanceAfterCharity); } 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 setPair(address pair) external onlyOwner { uniswapV2Pair = pair; } function setTaxless(address account, bool value) external onlyOwner { isTaxless[account] = value; } function setSwapAndLiquifyEnabled(bool enabled) external onlyOwner { swapAndLiquifyEnabled = enabled; SwapAndLiquifyEnabledUpdated(enabled); } function setFeeActive(bool value) external onlyOwner { isFeeActive = value; } function setBuyFee(uint256 marketingFee,uint256 charityFee,uint256 devFee,uint256 taxFee) external onlyOwner { _marketingFee=marketingFee; _charityFee=charityFee; _devFee=devFee; _taxFee=taxFee; } function setSellFee(uint256 marketingFee,uint256 charityFee,uint256 devFee,uint256 taxFee) external onlyOwner { _SellmarketingFee=marketingFee; _SellcharityFee=charityFee; _SelldevFee=devFee; _SelltaxFee=taxFee; } function setWalletAddress(address _marketingAddress,address _devAddress,address _charityAddress) external onlyOwner{ marketingAddress=_marketingAddress; devWallet=_devAddress; charityWallet=_charityAddress; } function setBlackList (address add,bool value) external onlyOwner { _blackList[add]=value; } function setTrading(bool value) external onlyOwner { tradingEnable= value; } function setMaxTxAmount(uint256 amount) external onlyOwner { maxTxAmount = amount; } function setMinTokensBeforeSwap(uint256 amount) external onlyOwner { minTokensBeforeSwap = amount; } receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":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":"_SellcharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_SelldevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_SellmarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_SelltaxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_blackList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnFeeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_charityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeDecimal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFeeTotal","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":[],"name":"_taxFeeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","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":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFeeActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minTokensBeforeSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","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":"add","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"},{"internalType":"uint256","name":"charityFee","type":"uint256"},{"internalType":"uint256","name":"devFee","type":"uint256"},{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setFeeActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee","type":"uint256"},{"internalType":"uint256","name":"charityFee","type":"uint256"},{"internalType":"uint256","name":"devFee","type":"uint256"},{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setTaxless","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingAddress","type":"address"},{"internalType":"address","name":"_devAddress","type":"address"},{"internalType":"address","name":"_charityAddress","type":"address"}],"name":"setWalletAddress","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":"reflectionAmount","type":"uint256"}],"name":"tokenFromReflection","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052601060808190526f426162794d6f6e6f6e6f6b6520496e7560801b60a0908152620000339160019190620004fc565b5060408051808201909152600880825267426162794d6f6e6f60c01b60209092019182526200006591600291620004fc565b506003805460ff191660121790556d314dc6448d9338c15b0a0000000060098190556000190619600a556002600e556064600f81905560c860108190556011829055601282905560138290556014556015819055601655601780546001600160a01b031990811673bcb19d9ebd822ae646554371a01d7bf857b974711790915560188054821673eb02249cc62b1529867d923fb3ef927aac7bd4ac179055601980548216730c816096676f1701008d5a733ec46f7fd20eab23179055601a805490911661dead179055601e805463ff0000001962ff00001960ff19909216600117919091166201000017166301000000179055600954601f5569152d02c7e14af68000006020553480156200017957600080fd5b50600080546001600160a01b031916734d55b57fc9b2ee421eef385a6ba9106b98a65010178082556040516001600160a01b039190911691907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200022a57600080fd5b505afa1580156200023f573d6000803e3d6000fd5b505050506040513d60208110156200025657600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b158015620002a757600080fd5b505afa158015620002bc573d6000803e3d6000fd5b505050506040513d6020811015620002d357600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200032657600080fd5b505af11580156200033b573d6000803e3d6000fd5b505050506040513d60208110156200035257600080fd5b5051602280546001600160a01b03199081166001600160a01b0393841617909155602180549091169183169190911790556001600b600062000393620004ed565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600b84528281208054861660019081179091556022805484168352600c90955283822080548716821790559354600d805480870182557fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb590810180546001600160a01b0319908116948716949094179055601a805486168552958420805490981687179097559354845495860185559382529390940180549093169116179055600a549060049062000475620004ed565b6001600160a01b0316815260208101919091526040016000205562000499620004ed565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a35062000598565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200053f57805160ff19168380011785556200056f565b828001600101855582156200056f579182015b828111156200056f57825182559160200191906001019062000552565b506200057d92915062000581565b5090565b5b808211156200057d576000815560010162000582565b612e8780620005a86000396000f3fe6080604052600436106102b25760003560e01c8063715018a611610175578063b7bfff65116100dc578063e5d41c6b11610095578063ef4e96c51161006f578063ef4e96c514610a05578063f2cc0c1814610a1a578063f2fde38b14610a4d578063f84354f114610a80576102b9565b8063e5d41c6b1461098a578063e653da081461099f578063ec28438a146109db576102b9565b8063b7bfff651461089a578063c49b9a80146108c6578063cba0e996146108f2578063d3f8389414610925578063dd62ed3e1461093a578063e43504da14610975576102b9565b806395d89b411161012e57806395d89b41146107a457806397c44ed9146107b95780639d46cf8a146107fe578063a457c2d714610813578063a9059cbb1461084c578063aa45026b14610885576102b9565b8063715018a6146106ca5780638187f516146106df5780638c0b5e22146107125780638c5a133d146107275780638da5cb5b146107635780638f70ccf714610778576102b9565b8063395093511161021957806349bd5a5e116101d257806349bd5a5e146105ea5780634a74bb02146105ff57806355ff615614610614578063595dec3c1461062957806368092bd91461065c57806370a0823114610697576102b9565b806339509351146104ee5780633b124fe71461052757806340f8007a1461053c5780634549b0391461055157806347f2dc5b1461058357806348a46473146105c0576102b9565b806322976e0d1161026b57806322976e0d1461041757806323b872dd1461042c5780632d8381191461046f578063313ce56714610499578063354d7788146104c4578063355bc60b146104d9576102b9565b806306fdde03146102be578063095ea7b3146103485780630d9a5219146103955780631694505e146103bc57806318160ddd146103ed57806319db457d14610402576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102d3610ab3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561030d5781810151838201526020016102f5565b50505050905090810190601f16801561033a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561035457600080fd5b506103816004803603604081101561036b57600080fd5b506001600160a01b038135169060200135610b49565b604080519115158252519081900360200190f35b3480156103a157600080fd5b506103aa610b67565b60408051918252519081900360200190f35b3480156103c857600080fd5b506103d1610b6d565b604080516001600160a01b039092168252519081900360200190f35b3480156103f957600080fd5b506103aa610b7c565b34801561040e57600080fd5b506103aa610b82565b34801561042357600080fd5b506103aa610b88565b34801561043857600080fd5b506103816004803603606081101561044f57600080fd5b506001600160a01b03813581169160208101359091169060400135610b8e565b34801561047b57600080fd5b506103aa6004803603602081101561049257600080fd5b5035610c15565b3480156104a557600080fd5b506104ae610c77565b6040805160ff9092168252519081900360200190f35b3480156104d057600080fd5b506103aa610c80565b3480156104e557600080fd5b506103aa610c86565b3480156104fa57600080fd5b506103816004803603604081101561051157600080fd5b506001600160a01b038135169060200135610c8c565b34801561053357600080fd5b506103aa610cda565b34801561054857600080fd5b506103aa610ce0565b34801561055d57600080fd5b506103aa6004803603604081101561057457600080fd5b50803590602001351515610ce6565b34801561058f57600080fd5b506105be600480360360408110156105a657600080fd5b506001600160a01b0381351690602001351515610d9f565b005b3480156105cc57600080fd5b506105be600480360360208110156105e357600080fd5b5035610e22565b3480156105f657600080fd5b506103d1610e7f565b34801561060b57600080fd5b50610381610e8e565b34801561062057600080fd5b506103aa610e9d565b34801561063557600080fd5b506103816004803603602081101561064c57600080fd5b50356001600160a01b0316610ea3565b34801561066857600080fd5b506105be6004803603604081101561067f57600080fd5b506001600160a01b0381351690602001351515610eb8565b3480156106a357600080fd5b506103aa600480360360208110156106ba57600080fd5b50356001600160a01b0316610f3b565b3480156106d657600080fd5b506105be610f9d565b3480156106eb57600080fd5b506105be6004803603602081101561070257600080fd5b50356001600160a01b031661103f565b34801561071e57600080fd5b506103aa6110b9565b34801561073357600080fd5b506105be6004803603608081101561074a57600080fd5b50803590602081013590604081013590606001356110bf565b34801561076f57600080fd5b506103d161112b565b34801561078457600080fd5b506105be6004803603602081101561079b57600080fd5b5035151561113a565b3480156107b057600080fd5b506102d36111b0565b3480156107c557600080fd5b506105be600480360360608110156107dc57600080fd5b506001600160a01b03813581169160208101358216916040909101351661120e565b34801561080a57600080fd5b506103aa6112a5565b34801561081f57600080fd5b506103816004803603604081101561083657600080fd5b506001600160a01b0381351690602001356112ab565b34801561085857600080fd5b506103816004803603604081101561086f57600080fd5b506001600160a01b038135169060200135611313565b34801561089157600080fd5b506103aa611327565b3480156108a657600080fd5b506105be600480360360208110156108bd57600080fd5b5035151561132d565b3480156108d257600080fd5b506105be600480360360208110156108e957600080fd5b50351515611398565b3480156108fe57600080fd5b506103816004803603602081101561091557600080fd5b50356001600160a01b0316611441565b34801561093157600080fd5b506103aa61145f565b34801561094657600080fd5b506103aa6004803603604081101561095d57600080fd5b506001600160a01b0381358116916020013516611465565b34801561098157600080fd5b50610381611490565b34801561099657600080fd5b506103aa611499565b3480156109ab57600080fd5b506105be600480360360808110156109c257600080fd5b508035906020810135906040810135906060013561149f565b3480156109e757600080fd5b506105be600480360360208110156109fe57600080fd5b503561150b565b348015610a1157600080fd5b506103aa611568565b348015610a2657600080fd5b506105be60048036036020811015610a3d57600080fd5b50356001600160a01b031661156e565b348015610a5957600080fd5b506105be60048036036020811015610a7057600080fd5b50356001600160a01b031661172b565b348015610a8c57600080fd5b506105be60048036036020811015610aa357600080fd5b50356001600160a01b0316611823565b60018054604080516020601f60026000196101008789161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b3e5780601f10610b1357610100808354040283529160200191610b3e565b820191906000526020600020905b815481529060010190602001808311610b2157829003601f168201915b505050505090505b90565b6000610b5d610b566119ce565b84846119d2565b5060015b92915050565b601c5481565b6021546001600160a01b031681565b60095490565b600e5481565b60105481565b6000610b9b848484611abe565b610c0b84610ba76119ce565b610c0685604051806060016040528060288152602001612d08602891396001600160a01b038a16600090815260086020526040812090610be56119ce565b6001600160a01b03168152602081019190915260400160002054919061208b565b6119d2565b5060019392505050565b6000600a54821115610c585760405162461bcd60e51b815260040180806020018281038252602a815260200180612c75602a913960400191505060405180910390fd5b6000610c62612122565b9050610c6e8382612299565b9150505b919050565b60035460ff1690565b60155481565b601b5481565b6000610b5d610c996119ce565b84610c068560086000610caa6119ce565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906122e2565b600f5481565b60115481565b6000600954831115610d3f576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610d5d57610d56610d4f612122565b849061233c565b9050610b61565b610d56610d68612122565b610d99610d92600e54600a0a600201610d8c600f548961233c90919063ffffffff16565b90612299565b8690612395565b9061233c565b610da76119ce565b6000546001600160a01b03908116911614610df7576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b610e2a6119ce565b6000546001600160a01b03908116911614610e7a576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b602055565b6022546001600160a01b031681565b601e5462010000900460ff1681565b60145481565b60076020526000908152604090205460ff1681565b610ec06119ce565b6000546001600160a01b03908116911614610f10576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6001600160a01b0381166000908152600c602052604081205460ff1615610f7b57506001600160a01b038116600090815260066020526040902054610c72565b6001600160a01b038216600090815260046020526040902054610b6190610c15565b610fa56119ce565b6000546001600160a01b03908116911614610ff5576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6110476119ce565b6000546001600160a01b03908116911614611097576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b602280546001600160a01b0319166001600160a01b0392909216919091179055565b601f5481565b6110c76119ce565b6000546001600160a01b03908116911614611117576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b601093909355601191909155601255600f55565b6000546001600160a01b031690565b6111426119ce565b6000546001600160a01b03908116911614611192576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b601e805491151563010000000263ff00000019909216919091179055565b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815260609390929091830182828015610b3e5780601f10610b1357610100808354040283529160200191610b3e565b6112166119ce565b6000546001600160a01b03908116911614611266576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b601780546001600160a01b039485166001600160a01b031991821617909155601880549385169382169390931790925560198054919093169116179055565b601d5481565b6000610b5d6112b86119ce565b84610c0685604051806060016040528060258152602001612e2d60259139600860006112e26119ce565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061208b565b6000610b5d6113206119ce565b8484611abe565b60125481565b6113356119ce565b6000546001600160a01b03908116911614611385576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b601e805460ff1916911515919091179055565b6113a06119ce565b6000546001600160a01b039081169116146113f0576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b601e805482151562010000810262ff0000199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b6001600160a01b03166000908152600c602052604090205460ff1690565b60135481565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b601e5460ff1681565b60205481565b6114a76119ce565b6000546001600160a01b039081169116146114f7576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b601493909355601591909155601655601355565b6115136119ce565b6000546001600160a01b03908116911614611563576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b601f55565b60165481565b6115766119ce565b6000546001600160a01b039081169116146115c6576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b6021546001600160a01b03828116911614156116135760405162461bcd60e51b8152600401808060200182810382526029815260200180612d796029913960400191505060405180910390fd5b6001600160a01b0381166000908152600c602052604090205460ff161561166b5760405162461bcd60e51b8152600401808060200182810382526022815260200180612c536022913960400191505060405180910390fd5b6001600160a01b038116600090815260046020526040902054156116c5576001600160a01b0381166000908152600460205260409020546116ab90610c15565b6001600160a01b0382166000908152600660205260409020555b6001600160a01b03166000818152600c60205260408120805460ff19166001908117909155600d805491820181559091527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319169091179055565b6117336119ce565b6000546001600160a01b03908116911614611783576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b6001600160a01b0381166117c85760405162461bcd60e51b8152600401808060200182810382526026815260200180612c9f6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b61182b6119ce565b6000546001600160a01b0390811691161461187b576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600c602052604090205460ff166118d25760405162461bcd60e51b8152600401808060200182810382526022815260200180612e0b6022913960400191505060405180910390fd5b60005b600d548110156119ca57816001600160a01b0316600d82815481106118f657fe5b6000918252602090912001546001600160a01b031614156119c257600d8054600019810190811061192357fe5b600091825260209091200154600d80546001600160a01b03909216918390811061194957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600682526040808220829055600c90925220805460ff19169055600d80548061199b57fe5b600082815260209020810160001990810180546001600160a01b03191690550190556119ca565b6001016118d5565b5050565b3390565b6001600160a01b038316611a175760405162461bcd60e51b8152600401808060200182810382526024815260200180612de76024913960400191505060405180910390fd5b6001600160a01b038216611a5c5760405162461bcd60e51b8152600401808060200182810382526022815260200180612cc56022913960400191505060405180910390fd5b6001600160a01b03808416600081815260086020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611b035760405162461bcd60e51b8152600401808060200182810382526025815260200180612dc26025913960400191505060405180910390fd5b60008111611b425760405162461bcd60e51b8152600401808060200182810382526029815260200180612d506029913960400191505060405180910390fd5b601f54811115611b92576040805162461bcd60e51b81526020600482015260166024820152755472616e73666572204c696d6974204578636565647360501b604482015290519081900360640190fd5b6001600160a01b03831660009081526007602052604090205460ff16151560011415611bfe576040805162461bcd60e51b81526020600482015260166024820152751059191c995cdcc81a5cc8189b1858dad31a5cdd195960521b604482015290519081900360640190fd5b601e546301000000900460ff161515600114611c56576040805162461bcd60e51b815260206004820152601260248201527174726164696e672069732064697361626c6560701b604482015290519081900360640190fd5b806000611c61612122565b90506000611c6e30610f3b565b602054601e5491925082101590610100900460ff16158015611c8d5750805b8015611ca757506022546001600160a01b03888116911614155b8015611cbb5750601e5462010000900460ff165b15611cc957611cc9826123d7565b6022546001600160a01b0388811691161415611eca576001600160a01b0387166000908152600b602052604090205460ff16158015611d2157506001600160a01b0386166000908152600b602052604090205460ff16155b8015611d355750601e54610100900460ff16155b15611d4857611d45878685612536565b93505b611d74611d55868561233c565b6001600160a01b03891660009081526004602052604090205490612395565b6001600160a01b038816600090815260046020526040902055611db9611d9a858561233c565b6001600160a01b038816600090815260046020526040902054906122e2565b6001600160a01b03808816600090815260046020908152604080832094909455918a168152600c909152205460ff1615611e2a576001600160a01b038716600090815260066020526040902054611e109086612395565b6001600160a01b0388166000908152600660205260409020555b6001600160a01b0386166000908152600c602052604090205460ff1615611e88576001600160a01b038616600090815260066020526040902054611e6e90856122e2565b6001600160a01b0387166000908152600660205260409020555b856001600160a01b0316876001600160a01b0316600080516020612da2833981519152866040518082815260200191505060405180910390a350505050612086565b6022546001600160a01b0387811691161415611f46576001600160a01b0387166000908152600b602052604090205460ff16158015611f2257506001600160a01b0386166000908152600b602052604090205460ff16155b8015611f365750601e54610100900460ff16155b15611d4857611d4587868561281e565b611f53611d55868561233c565b6001600160a01b038816600090815260046020526040902055611f79611d9a858561233c565b6001600160a01b03808816600090815260046020908152604080832094909455918a168152600c909152205460ff1615611fea576001600160a01b038716600090815260066020526040902054611fd09086612395565b6001600160a01b0388166000908152600660205260409020555b6001600160a01b0386166000908152600c602052604090205460ff1615612048576001600160a01b03861660009081526006602052604090205461202e90856122e2565b6001600160a01b0387166000908152600660205260409020555b856001600160a01b0316876001600160a01b0316600080516020612da2833981519152866040518082815260200191505060405180910390a3505050505b505050565b6000818484111561211a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156120df5781810151838201526020016120c7565b50505050905090810190601f16801561210c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600a5460095460009190825b600d54811015612259578260046000600d848154811061214a57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806121af57508160066000600d848154811061218857fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156121cd57600954600a546121c391612299565b9350505050610b46565b61220d60046000600d84815481106121e157fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612395565b925061224f60066000600d848154811061222357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612395565b915060010161212e565b50600954600a5461226991612299565b82101561228857600954600a5461227f91612299565b92505050610b46565b6122928282612299565b9250505090565b60006122db83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612a3f565b9392505050565b6000828201838110156122db576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008261234b57506000610b61565b8282028284828161235857fe5b04146122db5760405162461bcd60e51b8152600401808060200182810382526021815260200180612ce76021913960400191505060405180910390fd5b60006122db83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061208b565b601e805461ff001916610100179055601f548111156123f55750601f545b476123ff82612aa4565b600061240b4783612395565b90506000612430600e54600201600a0a610d8c6014548561233c90919063ffffffff16565b9050600061243e8383612395565b6017546040519192506001600160a01b03169083156108fc029084906000818181858888f19350505050158015612479573d6000803e3d6000fd5b50600061249d600e54600201600a0a610d8c6015548561233c90919063ffffffff16565b905060006124ab8383612395565b6019546040519192506001600160a01b03169083156108fc029084906000818181858888f193505050501580156124e6573d6000803e3d6000fd5b506018546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612521573d6000803e3d6000fd5b5050601e805461ff0019169055505050505050565b600f5460009083901561259f576000612566600e54600201600a0a610d8c600f548861233c90919063ffffffff16565b90506125728282612395565b915061258a612581828661233c565b600a5490612395565b600a55601b5461259a90826122e2565b601b55505b601054156126805760006125ca600e54600201600a0a610d8c6010548861233c90919063ffffffff16565b90506125d68282612395565b91506125fb6125e5828661233c565b30600090815260046020526040902054906122e2565b30600090815260046020908152604080832093909355600c9052205460ff161561264a573060009081526006602052604090205461263990826122e2565b306000908152600660205260409020555b6017546040805183815290516001600160a01b0392831692891691600080516020612da2833981519152919081900360200190a3505b6012541561274b5760006126ab600e54600201600a0a610d8c6012548861233c90919063ffffffff16565b90506126b78282612395565b91506126c66125e5828661233c565b30600090815260046020908152604080832093909355600c9052205460ff1615612715573060009081526006602052604090205461270490826122e2565b306000908152600660205260409020555b6018546040805183815290516001600160a01b0392831692891691600080516020612da2833981519152919081900360200190a3505b60115415612816576000612776600e54600201600a0a610d8c6011548861233c90919063ffffffff16565b90506127828282612395565b91506127916125e5828661233c565b30600090815260046020908152604080832093909355600c9052205460ff16156127e057306000908152600660205260409020546127cf90826122e2565b306000908152600660205260409020555b6019546040805183815290516001600160a01b0392831692891691600080516020612da2833981519152919081900360200190a3505b949350505050565b60135460009083901561287e57600061284e600e54600201600a0a610d8c6013548861233c90919063ffffffff16565b905061285a8282612395565b9150612869612581828661233c565b600a55601b5461287990826122e2565b601b55505b601454156129495760006128a9600e54600201600a0a610d8c6014548861233c90919063ffffffff16565b90506128b58282612395565b91506128c46125e5828661233c565b30600090815260046020908152604080832093909355600c9052205460ff1615612913573060009081526006602052604090205461290290826122e2565b306000908152600660205260409020555b6017546040805183815290516001600160a01b0392831692891691600080516020612da2833981519152919081900360200190a3505b60165415612a14576000612974600e54600201600a0a610d8c6016548861233c90919063ffffffff16565b90506129808282612395565b915061298f6125e5828661233c565b30600090815260046020908152604080832093909355600c9052205460ff16156129de57306000908152600660205260409020546129cd90826122e2565b306000908152600660205260409020555b6018546040805183815290516001600160a01b0392831692891691600080516020612da2833981519152919081900360200190a3505b60155415612816576000612776600e54600201600a0a610d8c6015548861233c90919063ffffffff16565b60008183612a8e5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156120df5781810151838201526020016120c7565b506000838581612a9a57fe5b0495945050505050565b60408051600280825260608083018452926020830190803683370190505090503081600081518110612ad257fe5b6001600160a01b03928316602091820292909201810191909152602154604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612b2657600080fd5b505afa158015612b3a573d6000803e3d6000fd5b505050506040513d6020811015612b5057600080fd5b5051815182906001908110612b6157fe5b6001600160a01b039283166020918202929092010152602154612b8791309116846119d2565b60215460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015612c0d578181015183820152602001612bf5565b505050509050019650505050505050600060405180830381600087803b158015612c3657600080fd5b505af1158015612c4a573d6000803e3d6000fd5b50505050505056fe45524332303a204163636f756e7420697320616c7265616479206578636c75646564416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a2057652063616e206e6f74206578636c75646520556e697377617020726f757465722eddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a204163636f756e7420697320616c726561647920696e636c7564656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122041f00557e0b78fd00acb3926a782643fac15721bf78545fc497a44210c70072a64736f6c634300060c0033
Deployed Bytecode
0x6080604052600436106102b25760003560e01c8063715018a611610175578063b7bfff65116100dc578063e5d41c6b11610095578063ef4e96c51161006f578063ef4e96c514610a05578063f2cc0c1814610a1a578063f2fde38b14610a4d578063f84354f114610a80576102b9565b8063e5d41c6b1461098a578063e653da081461099f578063ec28438a146109db576102b9565b8063b7bfff651461089a578063c49b9a80146108c6578063cba0e996146108f2578063d3f8389414610925578063dd62ed3e1461093a578063e43504da14610975576102b9565b806395d89b411161012e57806395d89b41146107a457806397c44ed9146107b95780639d46cf8a146107fe578063a457c2d714610813578063a9059cbb1461084c578063aa45026b14610885576102b9565b8063715018a6146106ca5780638187f516146106df5780638c0b5e22146107125780638c5a133d146107275780638da5cb5b146107635780638f70ccf714610778576102b9565b8063395093511161021957806349bd5a5e116101d257806349bd5a5e146105ea5780634a74bb02146105ff57806355ff615614610614578063595dec3c1461062957806368092bd91461065c57806370a0823114610697576102b9565b806339509351146104ee5780633b124fe71461052757806340f8007a1461053c5780634549b0391461055157806347f2dc5b1461058357806348a46473146105c0576102b9565b806322976e0d1161026b57806322976e0d1461041757806323b872dd1461042c5780632d8381191461046f578063313ce56714610499578063354d7788146104c4578063355bc60b146104d9576102b9565b806306fdde03146102be578063095ea7b3146103485780630d9a5219146103955780631694505e146103bc57806318160ddd146103ed57806319db457d14610402576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102d3610ab3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561030d5781810151838201526020016102f5565b50505050905090810190601f16801561033a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561035457600080fd5b506103816004803603604081101561036b57600080fd5b506001600160a01b038135169060200135610b49565b604080519115158252519081900360200190f35b3480156103a157600080fd5b506103aa610b67565b60408051918252519081900360200190f35b3480156103c857600080fd5b506103d1610b6d565b604080516001600160a01b039092168252519081900360200190f35b3480156103f957600080fd5b506103aa610b7c565b34801561040e57600080fd5b506103aa610b82565b34801561042357600080fd5b506103aa610b88565b34801561043857600080fd5b506103816004803603606081101561044f57600080fd5b506001600160a01b03813581169160208101359091169060400135610b8e565b34801561047b57600080fd5b506103aa6004803603602081101561049257600080fd5b5035610c15565b3480156104a557600080fd5b506104ae610c77565b6040805160ff9092168252519081900360200190f35b3480156104d057600080fd5b506103aa610c80565b3480156104e557600080fd5b506103aa610c86565b3480156104fa57600080fd5b506103816004803603604081101561051157600080fd5b506001600160a01b038135169060200135610c8c565b34801561053357600080fd5b506103aa610cda565b34801561054857600080fd5b506103aa610ce0565b34801561055d57600080fd5b506103aa6004803603604081101561057457600080fd5b50803590602001351515610ce6565b34801561058f57600080fd5b506105be600480360360408110156105a657600080fd5b506001600160a01b0381351690602001351515610d9f565b005b3480156105cc57600080fd5b506105be600480360360208110156105e357600080fd5b5035610e22565b3480156105f657600080fd5b506103d1610e7f565b34801561060b57600080fd5b50610381610e8e565b34801561062057600080fd5b506103aa610e9d565b34801561063557600080fd5b506103816004803603602081101561064c57600080fd5b50356001600160a01b0316610ea3565b34801561066857600080fd5b506105be6004803603604081101561067f57600080fd5b506001600160a01b0381351690602001351515610eb8565b3480156106a357600080fd5b506103aa600480360360208110156106ba57600080fd5b50356001600160a01b0316610f3b565b3480156106d657600080fd5b506105be610f9d565b3480156106eb57600080fd5b506105be6004803603602081101561070257600080fd5b50356001600160a01b031661103f565b34801561071e57600080fd5b506103aa6110b9565b34801561073357600080fd5b506105be6004803603608081101561074a57600080fd5b50803590602081013590604081013590606001356110bf565b34801561076f57600080fd5b506103d161112b565b34801561078457600080fd5b506105be6004803603602081101561079b57600080fd5b5035151561113a565b3480156107b057600080fd5b506102d36111b0565b3480156107c557600080fd5b506105be600480360360608110156107dc57600080fd5b506001600160a01b03813581169160208101358216916040909101351661120e565b34801561080a57600080fd5b506103aa6112a5565b34801561081f57600080fd5b506103816004803603604081101561083657600080fd5b506001600160a01b0381351690602001356112ab565b34801561085857600080fd5b506103816004803603604081101561086f57600080fd5b506001600160a01b038135169060200135611313565b34801561089157600080fd5b506103aa611327565b3480156108a657600080fd5b506105be600480360360208110156108bd57600080fd5b5035151561132d565b3480156108d257600080fd5b506105be600480360360208110156108e957600080fd5b50351515611398565b3480156108fe57600080fd5b506103816004803603602081101561091557600080fd5b50356001600160a01b0316611441565b34801561093157600080fd5b506103aa61145f565b34801561094657600080fd5b506103aa6004803603604081101561095d57600080fd5b506001600160a01b0381358116916020013516611465565b34801561098157600080fd5b50610381611490565b34801561099657600080fd5b506103aa611499565b3480156109ab57600080fd5b506105be600480360360808110156109c257600080fd5b508035906020810135906040810135906060013561149f565b3480156109e757600080fd5b506105be600480360360208110156109fe57600080fd5b503561150b565b348015610a1157600080fd5b506103aa611568565b348015610a2657600080fd5b506105be60048036036020811015610a3d57600080fd5b50356001600160a01b031661156e565b348015610a5957600080fd5b506105be60048036036020811015610a7057600080fd5b50356001600160a01b031661172b565b348015610a8c57600080fd5b506105be60048036036020811015610aa357600080fd5b50356001600160a01b0316611823565b60018054604080516020601f60026000196101008789161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b3e5780601f10610b1357610100808354040283529160200191610b3e565b820191906000526020600020905b815481529060010190602001808311610b2157829003601f168201915b505050505090505b90565b6000610b5d610b566119ce565b84846119d2565b5060015b92915050565b601c5481565b6021546001600160a01b031681565b60095490565b600e5481565b60105481565b6000610b9b848484611abe565b610c0b84610ba76119ce565b610c0685604051806060016040528060288152602001612d08602891396001600160a01b038a16600090815260086020526040812090610be56119ce565b6001600160a01b03168152602081019190915260400160002054919061208b565b6119d2565b5060019392505050565b6000600a54821115610c585760405162461bcd60e51b815260040180806020018281038252602a815260200180612c75602a913960400191505060405180910390fd5b6000610c62612122565b9050610c6e8382612299565b9150505b919050565b60035460ff1690565b60155481565b601b5481565b6000610b5d610c996119ce565b84610c068560086000610caa6119ce565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906122e2565b600f5481565b60115481565b6000600954831115610d3f576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610d5d57610d56610d4f612122565b849061233c565b9050610b61565b610d56610d68612122565b610d99610d92600e54600a0a600201610d8c600f548961233c90919063ffffffff16565b90612299565b8690612395565b9061233c565b610da76119ce565b6000546001600160a01b03908116911614610df7576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b610e2a6119ce565b6000546001600160a01b03908116911614610e7a576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b602055565b6022546001600160a01b031681565b601e5462010000900460ff1681565b60145481565b60076020526000908152604090205460ff1681565b610ec06119ce565b6000546001600160a01b03908116911614610f10576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6001600160a01b0381166000908152600c602052604081205460ff1615610f7b57506001600160a01b038116600090815260066020526040902054610c72565b6001600160a01b038216600090815260046020526040902054610b6190610c15565b610fa56119ce565b6000546001600160a01b03908116911614610ff5576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6110476119ce565b6000546001600160a01b03908116911614611097576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b602280546001600160a01b0319166001600160a01b0392909216919091179055565b601f5481565b6110c76119ce565b6000546001600160a01b03908116911614611117576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b601093909355601191909155601255600f55565b6000546001600160a01b031690565b6111426119ce565b6000546001600160a01b03908116911614611192576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b601e805491151563010000000263ff00000019909216919091179055565b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815260609390929091830182828015610b3e5780601f10610b1357610100808354040283529160200191610b3e565b6112166119ce565b6000546001600160a01b03908116911614611266576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b601780546001600160a01b039485166001600160a01b031991821617909155601880549385169382169390931790925560198054919093169116179055565b601d5481565b6000610b5d6112b86119ce565b84610c0685604051806060016040528060258152602001612e2d60259139600860006112e26119ce565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061208b565b6000610b5d6113206119ce565b8484611abe565b60125481565b6113356119ce565b6000546001600160a01b03908116911614611385576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b601e805460ff1916911515919091179055565b6113a06119ce565b6000546001600160a01b039081169116146113f0576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b601e805482151562010000810262ff0000199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b6001600160a01b03166000908152600c602052604090205460ff1690565b60135481565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b601e5460ff1681565b60205481565b6114a76119ce565b6000546001600160a01b039081169116146114f7576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b601493909355601591909155601655601355565b6115136119ce565b6000546001600160a01b03908116911614611563576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b601f55565b60165481565b6115766119ce565b6000546001600160a01b039081169116146115c6576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b6021546001600160a01b03828116911614156116135760405162461bcd60e51b8152600401808060200182810382526029815260200180612d796029913960400191505060405180910390fd5b6001600160a01b0381166000908152600c602052604090205460ff161561166b5760405162461bcd60e51b8152600401808060200182810382526022815260200180612c536022913960400191505060405180910390fd5b6001600160a01b038116600090815260046020526040902054156116c5576001600160a01b0381166000908152600460205260409020546116ab90610c15565b6001600160a01b0382166000908152600660205260409020555b6001600160a01b03166000818152600c60205260408120805460ff19166001908117909155600d805491820181559091527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319169091179055565b6117336119ce565b6000546001600160a01b03908116911614611783576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b6001600160a01b0381166117c85760405162461bcd60e51b8152600401808060200182810382526026815260200180612c9f6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b61182b6119ce565b6000546001600160a01b0390811691161461187b576040805162461bcd60e51b81526020600482018190526024820152600080516020612d30833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600c602052604090205460ff166118d25760405162461bcd60e51b8152600401808060200182810382526022815260200180612e0b6022913960400191505060405180910390fd5b60005b600d548110156119ca57816001600160a01b0316600d82815481106118f657fe5b6000918252602090912001546001600160a01b031614156119c257600d8054600019810190811061192357fe5b600091825260209091200154600d80546001600160a01b03909216918390811061194957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600682526040808220829055600c90925220805460ff19169055600d80548061199b57fe5b600082815260209020810160001990810180546001600160a01b03191690550190556119ca565b6001016118d5565b5050565b3390565b6001600160a01b038316611a175760405162461bcd60e51b8152600401808060200182810382526024815260200180612de76024913960400191505060405180910390fd5b6001600160a01b038216611a5c5760405162461bcd60e51b8152600401808060200182810382526022815260200180612cc56022913960400191505060405180910390fd5b6001600160a01b03808416600081815260086020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611b035760405162461bcd60e51b8152600401808060200182810382526025815260200180612dc26025913960400191505060405180910390fd5b60008111611b425760405162461bcd60e51b8152600401808060200182810382526029815260200180612d506029913960400191505060405180910390fd5b601f54811115611b92576040805162461bcd60e51b81526020600482015260166024820152755472616e73666572204c696d6974204578636565647360501b604482015290519081900360640190fd5b6001600160a01b03831660009081526007602052604090205460ff16151560011415611bfe576040805162461bcd60e51b81526020600482015260166024820152751059191c995cdcc81a5cc8189b1858dad31a5cdd195960521b604482015290519081900360640190fd5b601e546301000000900460ff161515600114611c56576040805162461bcd60e51b815260206004820152601260248201527174726164696e672069732064697361626c6560701b604482015290519081900360640190fd5b806000611c61612122565b90506000611c6e30610f3b565b602054601e5491925082101590610100900460ff16158015611c8d5750805b8015611ca757506022546001600160a01b03888116911614155b8015611cbb5750601e5462010000900460ff165b15611cc957611cc9826123d7565b6022546001600160a01b0388811691161415611eca576001600160a01b0387166000908152600b602052604090205460ff16158015611d2157506001600160a01b0386166000908152600b602052604090205460ff16155b8015611d355750601e54610100900460ff16155b15611d4857611d45878685612536565b93505b611d74611d55868561233c565b6001600160a01b03891660009081526004602052604090205490612395565b6001600160a01b038816600090815260046020526040902055611db9611d9a858561233c565b6001600160a01b038816600090815260046020526040902054906122e2565b6001600160a01b03808816600090815260046020908152604080832094909455918a168152600c909152205460ff1615611e2a576001600160a01b038716600090815260066020526040902054611e109086612395565b6001600160a01b0388166000908152600660205260409020555b6001600160a01b0386166000908152600c602052604090205460ff1615611e88576001600160a01b038616600090815260066020526040902054611e6e90856122e2565b6001600160a01b0387166000908152600660205260409020555b856001600160a01b0316876001600160a01b0316600080516020612da2833981519152866040518082815260200191505060405180910390a350505050612086565b6022546001600160a01b0387811691161415611f46576001600160a01b0387166000908152600b602052604090205460ff16158015611f2257506001600160a01b0386166000908152600b602052604090205460ff16155b8015611f365750601e54610100900460ff16155b15611d4857611d4587868561281e565b611f53611d55868561233c565b6001600160a01b038816600090815260046020526040902055611f79611d9a858561233c565b6001600160a01b03808816600090815260046020908152604080832094909455918a168152600c909152205460ff1615611fea576001600160a01b038716600090815260066020526040902054611fd09086612395565b6001600160a01b0388166000908152600660205260409020555b6001600160a01b0386166000908152600c602052604090205460ff1615612048576001600160a01b03861660009081526006602052604090205461202e90856122e2565b6001600160a01b0387166000908152600660205260409020555b856001600160a01b0316876001600160a01b0316600080516020612da2833981519152866040518082815260200191505060405180910390a3505050505b505050565b6000818484111561211a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156120df5781810151838201526020016120c7565b50505050905090810190601f16801561210c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600a5460095460009190825b600d54811015612259578260046000600d848154811061214a57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806121af57508160066000600d848154811061218857fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156121cd57600954600a546121c391612299565b9350505050610b46565b61220d60046000600d84815481106121e157fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612395565b925061224f60066000600d848154811061222357fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612395565b915060010161212e565b50600954600a5461226991612299565b82101561228857600954600a5461227f91612299565b92505050610b46565b6122928282612299565b9250505090565b60006122db83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612a3f565b9392505050565b6000828201838110156122db576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008261234b57506000610b61565b8282028284828161235857fe5b04146122db5760405162461bcd60e51b8152600401808060200182810382526021815260200180612ce76021913960400191505060405180910390fd5b60006122db83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061208b565b601e805461ff001916610100179055601f548111156123f55750601f545b476123ff82612aa4565b600061240b4783612395565b90506000612430600e54600201600a0a610d8c6014548561233c90919063ffffffff16565b9050600061243e8383612395565b6017546040519192506001600160a01b03169083156108fc029084906000818181858888f19350505050158015612479573d6000803e3d6000fd5b50600061249d600e54600201600a0a610d8c6015548561233c90919063ffffffff16565b905060006124ab8383612395565b6019546040519192506001600160a01b03169083156108fc029084906000818181858888f193505050501580156124e6573d6000803e3d6000fd5b506018546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612521573d6000803e3d6000fd5b5050601e805461ff0019169055505050505050565b600f5460009083901561259f576000612566600e54600201600a0a610d8c600f548861233c90919063ffffffff16565b90506125728282612395565b915061258a612581828661233c565b600a5490612395565b600a55601b5461259a90826122e2565b601b55505b601054156126805760006125ca600e54600201600a0a610d8c6010548861233c90919063ffffffff16565b90506125d68282612395565b91506125fb6125e5828661233c565b30600090815260046020526040902054906122e2565b30600090815260046020908152604080832093909355600c9052205460ff161561264a573060009081526006602052604090205461263990826122e2565b306000908152600660205260409020555b6017546040805183815290516001600160a01b0392831692891691600080516020612da2833981519152919081900360200190a3505b6012541561274b5760006126ab600e54600201600a0a610d8c6012548861233c90919063ffffffff16565b90506126b78282612395565b91506126c66125e5828661233c565b30600090815260046020908152604080832093909355600c9052205460ff1615612715573060009081526006602052604090205461270490826122e2565b306000908152600660205260409020555b6018546040805183815290516001600160a01b0392831692891691600080516020612da2833981519152919081900360200190a3505b60115415612816576000612776600e54600201600a0a610d8c6011548861233c90919063ffffffff16565b90506127828282612395565b91506127916125e5828661233c565b30600090815260046020908152604080832093909355600c9052205460ff16156127e057306000908152600660205260409020546127cf90826122e2565b306000908152600660205260409020555b6019546040805183815290516001600160a01b0392831692891691600080516020612da2833981519152919081900360200190a3505b949350505050565b60135460009083901561287e57600061284e600e54600201600a0a610d8c6013548861233c90919063ffffffff16565b905061285a8282612395565b9150612869612581828661233c565b600a55601b5461287990826122e2565b601b55505b601454156129495760006128a9600e54600201600a0a610d8c6014548861233c90919063ffffffff16565b90506128b58282612395565b91506128c46125e5828661233c565b30600090815260046020908152604080832093909355600c9052205460ff1615612913573060009081526006602052604090205461290290826122e2565b306000908152600660205260409020555b6017546040805183815290516001600160a01b0392831692891691600080516020612da2833981519152919081900360200190a3505b60165415612a14576000612974600e54600201600a0a610d8c6016548861233c90919063ffffffff16565b90506129808282612395565b915061298f6125e5828661233c565b30600090815260046020908152604080832093909355600c9052205460ff16156129de57306000908152600660205260409020546129cd90826122e2565b306000908152600660205260409020555b6018546040805183815290516001600160a01b0392831692891691600080516020612da2833981519152919081900360200190a3505b60155415612816576000612776600e54600201600a0a610d8c6015548861233c90919063ffffffff16565b60008183612a8e5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156120df5781810151838201526020016120c7565b506000838581612a9a57fe5b0495945050505050565b60408051600280825260608083018452926020830190803683370190505090503081600081518110612ad257fe5b6001600160a01b03928316602091820292909201810191909152602154604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612b2657600080fd5b505afa158015612b3a573d6000803e3d6000fd5b505050506040513d6020811015612b5057600080fd5b5051815182906001908110612b6157fe5b6001600160a01b039283166020918202929092010152602154612b8791309116846119d2565b60215460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b83811015612c0d578181015183820152602001612bf5565b505050509050019650505050505050600060405180830381600087803b158015612c3657600080fd5b505af1158015612c4a573d6000803e3d6000fd5b50505050505056fe45524332303a204163636f756e7420697320616c7265616479206578636c75646564416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a2057652063616e206e6f74206578636c75646520556e697377617020726f757465722eddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a204163636f756e7420697320616c726561647920696e636c7564656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122041f00557e0b78fd00acb3926a782643fac15721bf78545fc497a44210c70072a64736f6c634300060c0033
Deployed Bytecode Sourcemap
20202:20306:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23814:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24834:193;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24834:193:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;22044:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;22410:42;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;22410:42:0;;;;;;;;;;;;;;24091:99;;;;;;;;;;;;;:::i;21077:30::-;;;;;;;;;;;;;:::i;21239:32::-;;;;;;;;;;;;;:::i;25035:368::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25035:368:0;;;;;;;;;;;;;;;;;:::i;26779:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26779:368:0;;:::i;24000:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21574:36;;;;;;;;;;;;;:::i;22010:27::-;;;;;;;;;;;;;:::i;25417:300::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25417:300:0;;;;;;;;:::i;21145:28::-;;;;;;;;;;;;;:::i;21314:32::-;;;;;;;;;;;;;:::i;26251:520::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26251:520:0;;;;;;;;;:::i;38848:113::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38848:113:0;;;;;;;;;;:::i;:::-;;40354:114;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40354:114:0;;:::i;22459:29::-;;;;;;;;;;;;;:::i;22212:40::-;;;;;;;;;;;;;:::i;21518:36::-;;;;;;;;;;;;;:::i;20627:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20627:43:0;-1:-1:-1;;;;;20627:43:0;;:::i;40021:106::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40021:106:0;;;;;;;;;;:::i;24198:215::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24198:215:0;-1:-1:-1;;;;;24198:215:0;;:::i;17763:148::-;;;;;;;;;;;;;:::i;38751:89::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38751:89:0;-1:-1:-1;;;;;38751:89:0;;:::i;22305:40::-;;;;;;;;;;;;;:::i;39253:237::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39253:237:0;;;;;;;;;;;;;;;;;:::i;17121:79::-;;;;;;;;;;;;;:::i;40139:90::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40139:90:0;;;;:::i;23905:87::-;;;;;;;;;;;;;:::i;39768:240::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39768:240:0;;;;;;;;;;;;;;;;;;;:::i;22079:33::-;;;;;;;;;;;;;:::i;25725:400::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25725:400:0;;;;;;;;:::i;24421:213::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24421:213:0;;;;;;;;:::i;21366:28::-;;;;;;;;;;;;;:::i;39150:91::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39150:91:0;;;;:::i;38973:165::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38973:165:0;;;;:::i;26133:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26133:110:0;-1:-1:-1;;;;;26133:110:0;;:::i;21420:32::-;;;;;;;;;;;;;:::i;24642:184::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24642:184:0;;;;;;;;;;:::i;22121:30::-;;;;;;;;;;;;;:::i;22356:47::-;;;;;;;;;;;;;:::i;39502:254::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39502:254:0;;;;;;;;;;;;;;;;;:::i;40244:98::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40244:98:0;;:::i;21629:32::-;;;;;;;;;;;;;:::i;27155:537::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27155:537:0;-1:-1:-1;;;;;27155:537:0;;:::i;18066:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18066:281:0;-1:-1:-1;;;;;18066:281:0;;:::i;27700:491::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27700:491:0;-1:-1:-1;;;;;27700:491:0;;:::i;23814:83::-;23884:5;23877:12;;;;;;;;-1:-1:-1;;23877:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23851:13;;23877:12;;23884:5;;23877:12;;23884:5;23877:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23814:83;;:::o;24834:193::-;24936:4;24958:39;24967:12;:10;:12::i;:::-;24981:7;24990:6;24958:8;:39::i;:::-;-1:-1:-1;25015:4:0;24834:193;;;;;:::o;22044:28::-;;;;:::o;22410:42::-;;;-1:-1:-1;;;;;22410:42:0;;:::o;24091:99::-;24171:11;;24091:99;:::o;21077:30::-;;;;:::o;21239:32::-;;;;:::o;25035:368::-;25175:4;25192:34;25202:6;25209:9;25219:6;25192:9;:34::i;:::-;25254:119;25263:6;25270:12;:10;:12::i;:::-;25283:89;25322:6;25283:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25283:19:0;;;;;;:11;:19;;;;;;25303:12;:10;:12::i;:::-;-1:-1:-1;;;;;25283:33:0;;;;;;;;;;;;-1:-1:-1;25283:33:0;;;:89;:37;:89::i;:::-;25254:8;:119::i;:::-;-1:-1:-1;25391:4:0;25035:368;;;;;:::o;26779:::-;26882:7;26949:16;;26929;:36;;26907:128;;;;-1:-1:-1;;;26907:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27046:19;27068:20;:18;:20::i;:::-;27046:42;-1:-1:-1;27106:33:0;:16;27046:42;27106:20;:33::i;:::-;27099:40;;;26779:368;;;;:::o;24000:83::-;24066:9;;;;24000:83;:::o;21574:36::-;;;;:::o;22010:27::-;;;;:::o;25417:300::-;25532:4;25554:133;25577:12;:10;:12::i;:::-;25604:7;25626:50;25665:10;25626:11;:25;25638:12;:10;:12::i;:::-;-1:-1:-1;;;;;25626:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;25626:25:0;;;:34;;;;;;;;;;;:38;:50::i;21145:28::-;;;;:::o;21314:32::-;;;;:::o;26251:520::-;26373:7;26421:11;;26406;:26;;26398:70;;;;;-1:-1:-1;;;26398:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26484:17;26479:285;;26525:37;26541:20;:18;:20::i;:::-;26525:11;;:15;:37::i;:::-;26518:44;;;;26479:285;26619:133;26713:20;:18;:20::i;:::-;26619:67;26635:50;26669:11;;26664:2;:16;26683:1;26664:20;26635:24;26651:7;;26635:11;:15;;:24;;;;:::i;:::-;:28;;:50::i;:::-;26619:11;;:15;:67::i;:::-;:71;;:133::i;38848:113::-;17343:12;:10;:12::i;:::-;17333:6;;-1:-1:-1;;;;;17333:6:0;;;:22;;;17325:67;;;;;-1:-1:-1;;;17325:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17325:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38927:18:0;;;::::1;;::::0;;;:9:::1;:18;::::0;;;;:26;;-1:-1:-1;;38927:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38848:113::o;40354:114::-;17343:12;:10;:12::i;:::-;17333:6;;-1:-1:-1;;;;;17333:6:0;;;:22;;;17325:67;;;;;-1:-1:-1;;;17325:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17325:67:0;;;;;;;;;;;;;;;40432:19:::1;:28:::0;40354:114::o;22459:29::-;;;-1:-1:-1;;;;;22459:29:0;;:::o;22212:40::-;;;;;;;;;:::o;21518:36::-;;;;:::o;20627:43::-;;;;;;;;;;;;;;;:::o;40021:106::-;17343:12;:10;:12::i;:::-;17333:6;;-1:-1:-1;;;;;17333:6:0;;;:22;;;17325:67;;;;;-1:-1:-1;;;17325:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17325:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40098:15:0;;;::::1;;::::0;;;:10:::1;:15;::::0;;;;:21;;-1:-1:-1;;40098:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40021:106::o;24198:215::-;-1:-1:-1;;;;;24288:20:0;;24264:7;24288:20;;;:11;:20;;;;;;;;24284:55;;;-1:-1:-1;;;;;;24317:22:0;;;;;;:13;:22;;;;;;24310:29;;24284:55;-1:-1:-1;;;;;24377:27:0;;;;;;:18;:27;;;;;;24357:48;;:19;:48::i;17763:148::-;17343:12;:10;:12::i;:::-;17333:6;;-1:-1:-1;;;;;17333:6:0;;;:22;;;17325:67;;;;;-1:-1:-1;;;17325:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17325:67:0;;;;;;;;;;;;;;;17870:1:::1;17854:6:::0;;17833:40:::1;::::0;-1:-1:-1;;;;;17854:6:0;;::::1;::::0;17833:40:::1;::::0;17870:1;;17833:40:::1;17901:1;17884:19:::0;;-1:-1:-1;;;;;;17884:19:0::1;::::0;;17763:148::o;38751:89::-;17343:12;:10;:12::i;:::-;17333:6;;-1:-1:-1;;;;;17333:6:0;;;:22;;;17325:67;;;;;-1:-1:-1;;;17325:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17325:67:0;;;;;;;;;;;;;;;38812:13:::1;:20:::0;;-1:-1:-1;;;;;;38812:20:0::1;-1:-1:-1::0;;;;;38812:20:0;;;::::1;::::0;;;::::1;::::0;;38751:89::o;22305:40::-;;;;:::o;39253:237::-;17343:12;:10;:12::i;:::-;17333:6;;-1:-1:-1;;;;;17333:6:0;;;:22;;;17325:67;;;;;-1:-1:-1;;;17325:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17325:67:0;;;;;;;;;;;;;;;39373:13:::1;:26:::0;;;;39410:11:::1;:22:::0;;;;39443:7:::1;:14:::0;39468:7:::1;:14:::0;39253:237::o;17121:79::-;17159:7;17186:6;-1:-1:-1;;;;;17186:6:0;17121:79;:::o;40139:90::-;17343:12;:10;:12::i;:::-;17333:6;;-1:-1:-1;;;;;17333:6:0;;;:22;;;17325:67;;;;;-1:-1:-1;;;17325:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17325:67:0;;;;;;;;;;;;;;;40201:13:::1;:20:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;40201:20:0;;::::1;::::0;;;::::1;::::0;;40139:90::o;23905:87::-;23977:7;23970:14;;;;;;;-1:-1:-1;;23970:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23944:13;;23970:14;;23977:7;;23970:14;;23977:7;23970:14;;;;;;;;;;;;;;;;;;;;;;;;39768:240;17343:12;:10;:12::i;:::-;17333:6;;-1:-1:-1;;;;;17333:6:0;;;:22;;;17325:67;;;;;-1:-1:-1;;;17325:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17325:67:0;;;;;;;;;;;;;;;39894:16:::1;:34:::0;;-1:-1:-1;;;;;39894:34:0;;::::1;-1:-1:-1::0;;;;;;39894:34:0;;::::1;;::::0;;;39939:9:::1;:21:::0;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;39971:13:::1;:29:::0;;;;;::::1;::::0;::::1;;::::0;;39768:240::o;22079:33::-;;;;:::o;25725:400::-;25845:4;25867:228;25890:12;:10;:12::i;:::-;25917:7;25939:145;25996:15;25939:145;;;;;;;;;;;;;;;;;:11;:25;25951:12;:10;:12::i;:::-;-1:-1:-1;;;;;25939:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;25939:25:0;;;:34;;;;;;;;;;;:145;:38;:145::i;24421:213::-;24543:4;24564:40;24574:12;:10;:12::i;:::-;24587:9;24597:6;24564:9;:40::i;21366:28::-;;;;:::o;39150:91::-;17343:12;:10;:12::i;:::-;17333:6;;-1:-1:-1;;;;;17333:6:0;;;:22;;;17325:67;;;;;-1:-1:-1;;;17325:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17325:67:0;;;;;;;;;;;;;;;39214:11:::1;:19:::0;;-1:-1:-1;;39214:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39150:91::o;38973:165::-;17343:12;:10;:12::i;:::-;17333:6;;-1:-1:-1;;;;;17333:6:0;;;:22;;;17325:67;;;;;-1:-1:-1;;;17325:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17325:67:0;;;;;;;;;;;;;;;39051:21:::1;:31:::0;;;::::1;;::::0;;::::1;-1:-1:-1::0;;39051:31:0;;::::1;::::0;;;::::1;::::0;;;39093:37:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;38973:165:::0;:::o;26133:110::-;-1:-1:-1;;;;;26215:20:0;26191:4;26215:20;;;:11;:20;;;;;;;;;26133:110::o;21420:32::-;;;;:::o;24642:184::-;-1:-1:-1;;;;;24791:18:0;;;24759:7;24791:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;24642:184::o;22121:30::-;;;;;;:::o;22356:47::-;;;;:::o;39502:254::-;17343:12;:10;:12::i;:::-;17333:6;;-1:-1:-1;;;;;17333:6:0;;;:22;;;17325:67;;;;;-1:-1:-1;;;17325:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17325:67:0;;;;;;;;;;;;;;;39623:17:::1;:30:::0;;;;39664:15:::1;:26:::0;;;;39701:11:::1;:18:::0;39730:11:::1;:18:::0;39502:254::o;40244:98::-;17343:12;:10;:12::i;:::-;17333:6;;-1:-1:-1;;;;;17333:6:0;;;:22;;;17325:67;;;;;-1:-1:-1;;;17325:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17325:67:0;;;;;;;;;;;;;;;40314:11:::1;:20:::0;40244:98::o;21629:32::-;;;;:::o;27155:537::-;17343:12;:10;:12::i;:::-;17333:6;;-1:-1:-1;;;;;17333:6:0;;;:22;;;17325:67;;;;;-1:-1:-1;;;17325:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17325:67:0;;;;;;;;;;;;;;;27269:15:::1;::::0;-1:-1:-1;;;;;27250:35:0;;::::1;27269:15:::0;::::1;27250:35;;27228:126;;;;-1:-1:-1::0;;;27228:126:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;27374:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;27373:21;27365:68;;;;-1:-1:-1::0;;;27365:68:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;27448:27:0;::::1;27478:1;27448:27:::0;;;:18:::1;:27;::::0;;;;;:31;27444:169:::1;;-1:-1:-1::0;;;;;27559:27:0;::::1;;::::0;;;:18:::1;:27;::::0;;;;;27521:80:::1;::::0;:19:::1;:80::i;:::-;-1:-1:-1::0;;;;;27496:22:0;::::1;;::::0;;;:13:::1;:22;::::0;;;;:105;27444:169:::1;-1:-1:-1::0;;;;;27623:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;27623:27:0::1;27646:4;27623:27:::0;;::::1;::::0;;;27661:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;27661:23:0::1;::::0;;::::1;::::0;;27155:537::o;18066:281::-;17343:12;:10;:12::i;:::-;17333:6;;-1:-1:-1;;;;;17333:6:0;;;:22;;;17325:67;;;;;-1:-1:-1;;;17325:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17325:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;18169:22:0;::::1;18147:110;;;;-1:-1:-1::0;;;18147:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18294:6;::::0;;18273:38:::1;::::0;-1:-1:-1;;;;;18273:38:0;;::::1;::::0;18294:6;::::1;::::0;18273:38:::1;::::0;::::1;18322:6;:17:::0;;-1:-1:-1;;;;;;18322:17:0::1;-1:-1:-1::0;;;;;18322:17:0;;;::::1;::::0;;;::::1;::::0;;18066:281::o;27700:491::-;17343:12;:10;:12::i;:::-;17333:6;;-1:-1:-1;;;;;17333:6:0;;;:22;;;17325:67;;;;;-1:-1:-1;;;17325:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;17325:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;27781:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;27773:67;;;;-1:-1:-1::0;;;27773:67:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27856:9;27851:333;27875:9;:16:::0;27871:20;::::1;27851:333;;;27933:7;-1:-1:-1::0;;;;;27917:23:0::1;:9;27927:1;27917:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;27917:12:0::1;:23;27913:260;;;27976:9;27986:16:::0;;-1:-1:-1;;27986:20:0;;;27976:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;27961:9:::1;:12:::0;;-1:-1:-1;;;;;27976:31:0;;::::1;::::0;27971:1;;27961:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;27961:46:0::1;-1:-1:-1::0;;;;;27961:46:0;;::::1;;::::0;;28026:22;;::::1;::::0;;:13:::1;:22:::0;;;;;;:26;;;28071:11:::1;:20:::0;;;;:28;;-1:-1:-1;;28071:28:0::1;::::0;;28118:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;28118:15:0;;;;;-1:-1:-1;;;;;;28118:15:0::1;::::0;;;;;28152:5:::1;;27913:260;27893:3;;27851:333;;;;27700:491:::0;:::o;747:106::-;835:10;747:106;:::o;28199:371::-;-1:-1:-1;;;;;28326:19:0;;28318:68;;;;-1:-1:-1;;;28318:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28405:21:0;;28397:68;;;;-1:-1:-1;;;28397:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28478:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;28530:32;;;;;;;;;;;;;;;;;28199:371;;;:::o;28578:3291::-;-1:-1:-1;;;;;28709:20:0;;28701:70;;;;-1:-1:-1;;;28701:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28799:1;28790:6;:10;28782:64;;;;-1:-1:-1;;;28782:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28875:11;;28865:6;:21;;28857:56;;;;;-1:-1:-1;;;28857:56:0;;;;;;;;;;;;-1:-1:-1;;;28857:56:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;28932:18:0;;;;;;:10;:18;;;;;;;;:26;;:18;:26;;28924:60;;;;;-1:-1:-1;;;28924:60:0;;;;;;;;;;;;-1:-1:-1;;;28924:60:0;;;;;;;;;;;;;;;29003:13;;;;;;;:21;;29020:4;29003:21;28995:51;;;;;-1:-1:-1;;;28995:51:0;;;;;;;;;;;;-1:-1:-1;;;28995:51:0;;;;;;;;;;;;;;;29102:6;29077:22;29134:20;:18;:20::i;:::-;29119:35;;29175:20;29196:24;29214:4;29196:9;:24::i;:::-;29284:19;;29328:16;;29175:45;;-1:-1:-1;29268:35:0;;;;29328:16;;;;;29327:17;:40;;;;;29348:19;29327:40;:67;;;;-1:-1:-1;29381:13:0;;-1:-1:-1;;;;;29371:23:0;;;29381:13;;29371:23;;29327:67;:92;;;;-1:-1:-1;29398:21:0;;;;;;;29327:92;29324:152;;;29436:28;29451:12;29436:14;:28::i;:::-;29520:13;;-1:-1:-1;;;;;29510:23:0;;;29520:13;;29510:23;29507:856;;;-1:-1:-1;;;;;29564:17:0;;;;;;:9;:17;;;;;;;;29563:18;:43;;;;-1:-1:-1;;;;;;29586:20:0;;;;;;:9;:20;;;;;;;;29585:21;29563:43;:64;;;;-1:-1:-1;29611:16:0;;;;;;;29610:17;29563:64;29560:145;;;29660:33;29674:6;29681;29688:4;29660:13;:33::i;:::-;29643:50;;29560:145;29785:48;29816:16;:6;29827:4;29816:10;:16::i;:::-;-1:-1:-1;;;;;29785:26:0;;;;;;:18;:26;;;;;;;:30;:48::i;:::-;-1:-1:-1;;;;;29756:26:0;;;;;;:18;:26;;;;;:77;29876:59;29910:24;:14;29929:4;29910:18;:24::i;:::-;-1:-1:-1;;;;;29876:29:0;;;;;;:18;:29;;;;;;;:33;:59::i;:::-;-1:-1:-1;;;;;29844:29:0;;;;;;;:18;:29;;;;;;;;:91;;;;30024:19;;;;;:11;:19;;;;;;;30020:109;;;-1:-1:-1;;;;;30084:21:0;;;;;;:13;:21;;;;;;:33;;30110:6;30084:25;:33::i;:::-;-1:-1:-1;;;;;30060:21:0;;;;;;:13;:21;;;;;:57;30020:109;-1:-1:-1;;;;;30143:22:0;;;;;;:11;:22;;;;;;;;30139:126;;;-1:-1:-1;;;;;30209:24:0;;;;;;:13;:24;;;;;;:44;;30238:14;30209:28;:44::i;:::-;-1:-1:-1;;;;;30182:24:0;;;;;;:13;:24;;;;;:71;30139:126;30299:9;-1:-1:-1;;;;;30282:43:0;30291:6;-1:-1:-1;;;;;30282:43:0;-1:-1:-1;;;;;;;;;;;30310:14:0;30282:43;;;;;;;;;;;;;;;;;;30346:7;;;;;;29507:856;30397:13;;-1:-1:-1;;;;;30384:26:0;;;30397:13;;30384:26;30381:847;;;-1:-1:-1;;;;;30427:17:0;;;;;;:9;:17;;;;;;;;30426:18;:43;;;;-1:-1:-1;;;;;;30449:20:0;;;;;;:9;:20;;;;;;;;30448:21;30426:43;:64;;;;-1:-1:-1;30474:16:0;;;;;;;30473:17;30426:64;30423:147;;;30523:34;30538:6;30545;30552:4;30523:14;:34::i;30381:847::-;31311:48;31342:16;:6;31353:4;31342:10;:16::i;31311:48::-;-1:-1:-1;;;;;31282:26:0;;;;;;:18;:26;;;;;:77;31402:59;31436:24;:14;31455:4;31436:18;:24::i;31402:59::-;-1:-1:-1;;;;;31370:29:0;;;;;;;:18;:29;;;;;;;;:91;;;;31550:19;;;;;:11;:19;;;;;;;31546:109;;;-1:-1:-1;;;;;31610:21:0;;;;;;:13;:21;;;;;;:33;;31636:6;31610:25;:33::i;:::-;-1:-1:-1;;;;;31586:21:0;;;;;;:13;:21;;;;;:57;31546:109;-1:-1:-1;;;;;31669:22:0;;;;;;:11;:22;;;;;;;;31665:126;;;-1:-1:-1;;;;;31735:24:0;;;;;;:13;:24;;;;;;:44;;31764:14;31735:28;:44::i;:::-;-1:-1:-1;;;;;31708:24:0;;;;;;:13;:24;;;;;:71;31665:126;31825:9;-1:-1:-1;;;;;31808:43:0;31817:6;-1:-1:-1;;;;;31808:43:0;-1:-1:-1;;;;;;;;;;;31836:14:0;31808:43;;;;;;;;;;;;;;;;;;28578:3291;;;;;;;;:::o;5670:226::-;5790:7;5826:12;5818:6;;;;5810:29;;;;-1:-1:-1;;;5810:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5862:5:0;;;5670:226::o;36302:808::-;36401:16;;36450:11;;36354:7;;36401:16;36354:7;36472:458;36496:9;:16;36492:20;;36472:458;;;36591:16;36556:18;:32;36575:9;36585:1;36575:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36575:12:0;36556:32;;;;;;;;;;;;;:51;;:113;;;36658:11;36628:13;:27;36642:9;36652:1;36642:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36642:12:0;36628:27;;;;;;;;;;;;;:41;36556:113;36534:191;;;36713:11;;36692:16;;:33;;:20;:33::i;:::-;36685:40;;;;;;;36534:191;36759:86;36798:18;:32;36817:9;36827:1;36817:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36817:12:0;36798:32;;;;;;;;;;;;;36759:16;;:20;:86::i;:::-;36740:105;;36874:44;36890:13;:27;36904:9;36914:1;36904:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36904:12:0;36890:27;;;;;;;;;;;;;36874:11;;:15;:44::i;:::-;36860:58;-1:-1:-1;36514:3:0;;36472:458;;;-1:-1:-1;36984:11:0;;36963:16;;:33;;:20;:33::i;:::-;36944:16;:52;36940:111;;;37039:11;;37018:16;;:33;;:20;:33::i;:::-;37011:40;;;;;;36940:111;37069:33;:16;37090:11;37069:20;:33::i;:::-;37062:40;;;;36302:808;:::o;7102:132::-;7160:7;7187:39;7191:1;7194;7187:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;7180:46;7102:132;-1:-1:-1;;;7102:132:0:o;4767:181::-;4825:7;4857:5;;;4881:6;;;;4873:46;;;;;-1:-1:-1;;;4873:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;6155:471;6213:7;6458:6;6454:47;;-1:-1:-1;6488:1:0;6481:8;;6454:47;6525:5;;;6529:1;6525;:5;:1;6549:5;;;;;:10;6541:56;;;;-1:-1:-1;;;6541:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5231:136;5289:7;5316:43;5320:1;5323;5316:43;;;;;;;;;;;;;;;;;:3;:43::i;37140:992::-;22684:16;:23;;-1:-1:-1;;22684:23:0;;;;;37259:11:::1;::::0;37236:34;::::1;37233:99;;;-1:-1:-1::0;37309:11:0::1;::::0;37233:99:::1;37377:21;37419:38;37436:20:::0;37419:16:::1;:38::i;:::-;37517:18;37538:41;:21;37564:14:::0;37538:25:::1;:41::i;:::-;37517:62;;37600:20;37623:60;37666:11;;37680:1;37666:15;37661:2;:21;37623:33;37638:17;;37623:10;:14;;:33;;;;:::i;:60::-;37600:83:::0;-1:-1:-1;37694:29:0::1;37724:28;:10:::0;37600:83;37724:14:::1;:28::i;:::-;37771:16;::::0;37763:48:::1;::::0;37694:58;;-1:-1:-1;;;;;;37771:16:0::1;::::0;37763:48;::::1;;;::::0;37798:12;;37771:16:::1;37763:48:::0;37771:16;37763:48;37798:12;37771:16;37763:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;37832:18;37853:69;37905:11;;37919:1;37905:15;37900:2;:21;37853:42;37879:15;;37853:21;:25;;:42;;;;:::i;:69::-;37832:90:::0;-1:-1:-1;37933:27:0::1;37962:37;:21:::0;37832:90;37962:25:::1;:37::i;:::-;38018:13;::::0;38010:43:::1;::::0;37933:66;;-1:-1:-1;;;;;;38018:13:0::1;::::0;38010:43;::::1;;;::::0;38042:10;;38018:13:::1;38010:43:::0;38018:13;38010:43;38042:10;38018:13;38010:43;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;38072:9:0::1;::::0;38064:48:::1;::::0;-1:-1:-1;;;;;38072:9:0;;::::1;::::0;38064:48;::::1;;;::::0;38092:19;;38072:9:::1;38064:48:::0;38072:9;38064:48;38092:19;38072:9;38064:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;22730:16:0;:24;;-1:-1:-1;;22730:24:0;;;-1:-1:-1;;;;;;37140:992:0:o;31881:2189::-;32067:7;;31968;;32013:6;;32067:12;32064:290;;32095:14;32112:46;32141:11;;32155:1;32141:15;32136:2;:21;32112:19;32123:7;;32112:6;:10;;:19;;;;:::i;:46::-;32095:63;-1:-1:-1;32190:26:0;:14;32095:63;32190:18;:26::i;:::-;32173:43;-1:-1:-1;32250:38:0;32271:16;:6;32282:4;32271:10;:16::i;:::-;32250;;;:20;:38::i;:::-;32231:16;:57;32318:12;;:24;;32335:6;32318:16;:24::i;:::-;32303:12;:39;-1:-1:-1;32064:290:0;32400:13;;:18;32397:535;;32434:20;32457:52;32492:11;;32506:1;32492:15;32487:2;:21;32457:25;32468:13;;32457:6;:10;;:25;;;;:::i;:52::-;32434:75;-1:-1:-1;32541:32:0;:14;32434:75;32541:18;:32::i;:::-;32524:49;-1:-1:-1;32624:61:0;32662:22;:12;32679:4;32662:16;:22::i;:::-;32651:4;32624:33;;;;:18;:33;;;;;;;:37;:61::i;:::-;32615:4;32588:33;;;;:18;:33;;;;;;;;:97;;;;32703:11;:26;;;;;;32700:142;;;32802:4;32780:28;;;;:13;:28;;;;;;:46;;32813:12;32780:32;:46::i;:::-;32771:4;32749:28;;;;:13;:28;;;;;:77;32700:142;32890:16;;32873:47;;;;;;;;-1:-1:-1;;;;;32890:16:0;;;;32873:47;;;-1:-1:-1;;;;;;;;;;;32873:47:0;;;;;;;;;32397:535;;32955:7;;:12;32952:516;;32983:20;33006:46;33035:11;;33049:1;33035:15;33030:2;:21;33006:19;33017:7;;33006:6;:10;;:19;;;;:::i;:46::-;32983:69;-1:-1:-1;33084:32:0;:14;32983:69;33084:18;:32::i;:::-;33067:49;-1:-1:-1;33167:61:0;33205:22;:12;33222:4;33205:16;:22::i;33167:61::-;33158:4;33131:33;;;;:18;:33;;;;;;;;:97;;;;33246:11;:26;;;;;;33243:142;;;33345:4;33323:28;;;;:13;:28;;;;;;:46;;33356:12;33323:32;:46::i;:::-;33314:4;33292:28;;;;:13;:28;;;;;:77;33243:142;33433:9;;33416:40;;;;;;;;-1:-1:-1;;;;;33433:9:0;;;;33416:40;;;-1:-1:-1;;;;;;;;;;;33416:40:0;;;;;;;;;32952:516;;33490:11;;:16;33487:528;;33522:20;33545:50;33578:11;;33592:1;33578:15;33573:2;:21;33545:23;33556:11;;33545:6;:10;;:23;;;;:::i;:50::-;33522:73;-1:-1:-1;33627:32:0;:14;33522:73;33627:18;:32::i;:::-;33610:49;-1:-1:-1;33710:61:0;33748:22;:12;33765:4;33748:16;:22::i;33710:61::-;33701:4;33674:33;;;;:18;:33;;;;;;;;:97;;;;33789:11;:26;;;;;;33786:142;;;33888:4;33866:28;;;;:13;:28;;;;;;:46;;33899:12;33866:32;:46::i;:::-;33857:4;33835:28;;;;:13;:28;;;;;:77;33786:142;33976:13;;33959:44;;;;;;;;-1:-1:-1;;;;;33976:13:0;;;;33959:44;;;-1:-1:-1;;;;;;;;;;;33959:44:0;;;;;;;;;33487:528;;34048:14;31881:2189;-1:-1:-1;;;;31881:2189:0:o;34088:2206::-;34275:11;;34176:7;;34221:6;;34275:16;34272:298;;34307:14;34324:50;34357:11;;34371:1;34357:15;34352:2;:21;34324:23;34335:11;;34324:6;:10;;:23;;;;:::i;:50::-;34307:67;-1:-1:-1;34406:26:0;:14;34307:67;34406:18;:26::i;:::-;34389:43;-1:-1:-1;34466:38:0;34487:16;:6;34498:4;34487:10;:16::i;34466:38::-;34447:16;:57;34534:12;;:24;;34551:6;34534:16;:24::i;:::-;34519:12;:39;-1:-1:-1;34272:298:0;34600:17;;:22;34597:543;;34638:20;34661:56;34700:11;;34714:1;34700:15;34695:2;:21;34661:29;34672:17;;34661:6;:10;;:29;;;;:::i;:56::-;34638:79;-1:-1:-1;34749:32:0;:14;34638:79;34749:18;:32::i;:::-;34732:49;-1:-1:-1;34832:61:0;34870:22;:12;34887:4;34870:16;:22::i;34832:61::-;34823:4;34796:33;;;;:18;:33;;;;;;;;:97;;;;34911:11;:26;;;;;;34908:142;;;35010:4;34988:28;;;;:13;:28;;;;;;:46;;35021:12;34988:32;:46::i;:::-;34979:4;34957:28;;;;:13;:28;;;;;:77;34908:142;35098:16;;35081:47;;;;;;;;-1:-1:-1;;;;;35098:16:0;;;;35081:47;;;-1:-1:-1;;;;;;;;;;;35081:47:0;;;;;;;;;34597:543;;35163:11;;:16;35160:524;;35195:20;35218:50;35251:11;;35265:1;35251:15;35246:2;:21;35218:23;35229:11;;35218:6;:10;;:23;;;;:::i;:50::-;35195:73;-1:-1:-1;35300:32:0;:14;35195:73;35300:18;:32::i;:::-;35283:49;-1:-1:-1;35383:61:0;35421:22;:12;35438:4;35421:16;:22::i;35383:61::-;35374:4;35347:33;;;;:18;:33;;;;;;;;:97;;;;35462:11;:26;;;;;;35459:142;;;35561:4;35539:28;;;;:13;:28;;;;;;:46;;35572:12;35539:32;:46::i;:::-;35530:4;35508:28;;;;:13;:28;;;;;:77;35459:142;35649:9;;35632:40;;;;;;;;-1:-1:-1;;;;;35649:9:0;;;;35632:40;;;-1:-1:-1;;;;;;;;;;;35632:40:0;;;;;;;;;35160:524;;35706:15;;:20;35703:536;;35742:20;35765:54;35802:11;;35816:1;35802:15;35797:2;:21;35765:27;35776:15;;35765:6;:10;;:27;;;;:::i;7730:312::-;7850:7;7885:12;7878:5;7870:28;;;;-1:-1:-1;;;7870:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7909:9;7925:1;7921;:5;;;;;;;7730:312;-1:-1:-1;;;;;7730:312:0:o;38150:589::-;38300:16;;;38314:1;38300:16;;;38276:21;38300:16;;;;;38276:21;38300:16;;;;;;;;;;-1:-1:-1;38300:16:0;38276:40;;38345:4;38327;38332:1;38327:7;;;;;;;;-1:-1:-1;;;;;38327:23:0;;;:7;;;;;;;;;;:23;;;;38371:15;;:22;;;-1:-1:-1;;;38371:22:0;;;;:15;;;;;:20;;:22;;;;;38327:7;;38371:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38371:22:0;38361:7;;:4;;38366:1;;38361:7;;;;;;-1:-1:-1;;;;;38361:32:0;;;:7;;;;;;;;;:32;38438:15;;38406:62;;38423:4;;38438:15;38456:11;38406:8;:62::i;:::-;38507:15;;:224;;-1:-1:-1;;;38507:224:0;;;;;;;;:15;:224;;;;;;38685:4;38507:224;;;;;;38705:15;38507:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38507:15:0;;;;:66;;38588:11;;38658:4;;38685;38705:15;38507:224;;;;;;;;;;;;;;;;:15;:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38150:589;;:::o
Swarm Source
ipfs://41f00557e0b78fd00acb3926a782643fac15721bf78545fc497a44210c70072a
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.