BEP-20
Overview
Max Total Supply
1,000,000,000,000,000,000LEOPARD
Holders
127,814
Market
Price
$0.00 @ 0.000000 BNB (-2.17%)
Onchain Market Cap
$631,557.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 9 Decimals)
Balance
355,034,281,373.669119049 LEOPARDValue
$0.22 ( ~0.000316508138338276 BNB) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
LEOPARD
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at BscScan.com on 2021-04-26 */ pragma solidity ^0.6.12; // SPDX-License-Identifier: Unlicensed interface IERC20 { function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; address private _previousOwner; uint256 private _lockTime; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } function geUnlockTime() public view returns (uint256) { return _lockTime; } //Locks the contract for owner for the amount of time provided function lock(uint256 time) public virtual onlyOwner { _previousOwner = _owner; _owner = address(0); _lockTime = now + time; emit OwnershipTransferred(_owner, address(0)); } //Unlocks the contract for owner when _lockTime is exceeds function unlock() public virtual { require(_previousOwner == msg.sender, "You don't have permission to unlock"); require(now < _lockTime , "Contract is locked until 7 days"); emit OwnershipTransferred(_owner, _previousOwner); _owner = _previousOwner; } } // pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract LEOPARD is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 1000000000000000000 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = "LEOPARD"; string private _symbol = "LEOPARD"; uint8 private _decimals = 9; uint256 public _taxFee = 1; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee = 2; uint256 private _previousLiquidityFee = _liquidityFee; uint256 public _burnFee = 1; uint256 private _previousBurnFee = _burnFee; uint256 public _charityFee = 6; address public charityWallet = 0x7A2Fe13dE953aF1cf836729E3e1Ca66cfBd0e6Ab; uint256 private _previousCharityFee = _charityFee; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = false; uint256 public _maxTxAmount = 1000000000000000000 * 10**9; uint256 private numTokensSellToAddToLiquidity = 1000000000000000000 * 10**9; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor () public { _rOwned[_msgSender()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x05fF2B0DB69458A0750badebc4f9e13aDd608C7F); // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; //exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeFromReward(address account) public onlyOwner() { require(account != 0x05fF2B0DB69458A0750badebc4f9e13aDd608C7F, 'We can not exclude Pancake router.'); require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate()); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity); } function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity); return (tTransferAmount, tFee, tLiquidity); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeLiquidity(uint256 tLiquidity) private { uint256 currentRate = _getRate(); uint256 rLiquidity = tLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity); } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div( 10**2 ); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div( 10**2 ); } function removeAllFee() private { _taxFee = 0; _liquidityFee = 0; _burnFee = 0; _charityFee = 0; } function restoreAllFee() private { _taxFee = 1; _liquidityFee = 2; _burnFee = 1; _charityFee = 6; } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap + liquidity lock? // also, don't get caught in a circular liquidity event. // also, don't swap & liquify if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled ) { contractTokenBalance = numTokensSellToAddToLiquidity; //add liquidity swapAndLiquify(contractTokenBalance); } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from,to,amount); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { // split the contract balance into halves uint256 half = contractTokenBalance.div(2); uint256 otherHalf = contractTokenBalance.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer(address sender, address recipient, uint256 amount) private { if(_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]){ removeAllFee(); } else{ require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); } //Calculate burn amount and charity amount uint256 burnAmt = amount.mul(_burnFee).div(100); uint256 charityAmt = amount.mul(_charityFee).div(100); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, (amount.sub(burnAmt).sub(charityAmt))); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, (amount.sub(burnAmt).sub(charityAmt))); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, (amount.sub(burnAmt).sub(charityAmt))); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, (amount.sub(burnAmt).sub(charityAmt))); } else { _transferStandard(sender, recipient, (amount.sub(burnAmt).sub(charityAmt))); } //Temporarily remove fees to transfer to burn address and charity wallet _taxFee = 0; _liquidityFee = 0; //Send transfers to burn and charity wallet _transferStandard(sender, address(0), burnAmt); _transferStandard(sender, charityWallet, charityAmt); //Restore tax and liquidity fees _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; if(_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]) restoreAllFee(); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } //Call this function after finalizing the presale on DxSale function enableAllFees() external onlyOwner() { _taxFee = 1; _previousTaxFee = _taxFee; _liquidityFee = 2; _previousLiquidityFee = _liquidityFee; _burnFee = 1; _previousBurnFee = _taxFee; _charityFee = 6; _previousCharityFee = _charityFee; inSwapAndLiquify = true; emit SwapAndLiquifyEnabledUpdated(true); } function setCharityWallet(address newWallet) external onlyOwner() { charityWallet = newWallet; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**2 ); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } }
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":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_burnFee","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":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAllFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setCharityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6b033b2e3c9fd0803ce80000006009556b01d290004395eb7bbfffffff19600a55610100604052600760c081905266131153d410549160ca1b60e09081526200004c91600c9190620003eb565b5060408051808201909152600780825266131153d410549160ca1b60209092019182526200007d91600d91620003eb565b50600e805460ff191660091790556001600f819055601081905560026011819055601255601381905560145560066015819055601680546001600160a01b031916737a2fe13de953af1cf836729e3e1ca66cfbd0e6ab1790556017556018805461ff00191690556b033b2e3c9fd0803ce80000006019819055601a553480156200010657600080fd5b50600062000113620003d8565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a54600360006200016e620003d8565b6001600160a01b03166001600160a01b031681526020019081526020016000208190555060007305ff2b0db69458a0750badebc4f9e13add608c7f9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001e557600080fd5b505afa158015620001fa573d6000803e3d6000fd5b505050506040513d60208110156200021157600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200026257600080fd5b505afa15801562000277573d6000803e3d6000fd5b505050506040513d60208110156200028e57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002e157600080fd5b505af1158015620002f6573d6000803e3d6000fd5b505050506040513d60208110156200030d57600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600660006200033a620003dc565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152600690925290208054909116600117905562000384620003d8565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a35062000487565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200042e57805160ff19168380011785556200045e565b828001600101855582156200045e579182015b828111156200045e57825182559160200191906001019062000441565b506200046c92915062000470565b5090565b5b808211156200046c576000815560010162000471565b60805160601c60a05160601c612c2e620004cf60003980610f315280611a68525080610998528061234a528061240252806124295280612517528061253e5250612c2e6000f3fe60806040526004361061023f5760003560e01c80636bc87c3a1161012e578063a9059cbb116100ab578063dd4670641161006f578063dd467064146107fc578063dd62ed3e14610826578063ea2f0b3714610861578063f2fde38b14610894578063ffc78635146108c757610246565b8063a9059cbb14610743578063b6c523241461077c578063c0b0fda214610791578063c49b9a80146107a6578063d543dbeb146107d257610246565b806388f82020116100f257806388f82020146106985780638da5cb5b146106cb57806395d89b41146106e0578063a457c2d7146106f5578063a69df4b51461072e57610246565b80636bc87c3a1461061157806370a0823114610626578063715018a6146106595780637b2087691461066e5780637d1db4a51461068357610246565b806339509351116101bc5780634549b039116101805780634549b0391461054f57806349bd5a5e146105815780634a74bb021461059657806352390c02146105ab5780635342acb4146105de57610246565b8063395093511461048f5780633b124fe7146104c85780633bd5d173146104dd57806340f8007a14610507578063437823ec1461051c57610246565b806323b872dd1161020357806323b872dd1461038f5780632d838119146103d257806330563bd7146103fc578063313ce567146104315780633685d4191461045c57610246565b806306fdde031461024b578063095ea7b3146102d557806313114a9d146103225780631694505e1461034957806318160ddd1461037a57610246565b3661024657005b600080fd5b34801561025757600080fd5b506102606108dc565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561029a578181015183820152602001610282565b50505050905090810190601f1680156102c75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102e157600080fd5b5061030e600480360360408110156102f857600080fd5b506001600160a01b038135169060200135610972565b604080519115158252519081900360200190f35b34801561032e57600080fd5b50610337610990565b60408051918252519081900360200190f35b34801561035557600080fd5b5061035e610996565b604080516001600160a01b039092168252519081900360200190f35b34801561038657600080fd5b506103376109ba565b34801561039b57600080fd5b5061030e600480360360608110156103b257600080fd5b506001600160a01b038135811691602081013590911690604001356109c0565b3480156103de57600080fd5b50610337600480360360208110156103f557600080fd5b5035610a47565b34801561040857600080fd5b5061042f6004803603602081101561041f57600080fd5b50356001600160a01b0316610aa9565b005b34801561043d57600080fd5b50610446610b23565b6040805160ff9092168252519081900360200190f35b34801561046857600080fd5b5061042f6004803603602081101561047f57600080fd5b50356001600160a01b0316610b2c565b34801561049b57600080fd5b5061030e600480360360408110156104b257600080fd5b506001600160a01b038135169060200135610ced565b3480156104d457600080fd5b50610337610d3b565b3480156104e957600080fd5b5061042f6004803603602081101561050057600080fd5b5035610d41565b34801561051357600080fd5b50610337610e1b565b34801561052857600080fd5b5061042f6004803603602081101561053f57600080fd5b50356001600160a01b0316610e21565b34801561055b57600080fd5b506103376004803603604081101561057257600080fd5b50803590602001351515610e9d565b34801561058d57600080fd5b5061035e610f2f565b3480156105a257600080fd5b5061030e610f53565b3480156105b757600080fd5b5061042f600480360360208110156105ce57600080fd5b50356001600160a01b0316610f61565b3480156105ea57600080fd5b5061030e6004803603602081101561060157600080fd5b50356001600160a01b0316611143565b34801561061d57600080fd5b50610337611161565b34801561063257600080fd5b506103376004803603602081101561064957600080fd5b50356001600160a01b0316611167565b34801561066557600080fd5b5061042f6111c9565b34801561067a57600080fd5b5061035e611259565b34801561068f57600080fd5b50610337611268565b3480156106a457600080fd5b5061030e600480360360208110156106bb57600080fd5b50356001600160a01b031661126e565b3480156106d757600080fd5b5061035e61128c565b3480156106ec57600080fd5b5061026061129b565b34801561070157600080fd5b5061030e6004803603604081101561071857600080fd5b506001600160a01b0381351690602001356112fc565b34801561073a57600080fd5b5061042f611364565b34801561074f57600080fd5b5061030e6004803603604081101561076657600080fd5b506001600160a01b038135169060200135611452565b34801561078857600080fd5b50610337611466565b34801561079d57600080fd5b5061033761146c565b3480156107b257600080fd5b5061042f600480360360208110156107c957600080fd5b50351515611472565b3480156107de57600080fd5b5061042f600480360360208110156107f557600080fd5b5035611519565b34801561080857600080fd5b5061042f6004803603602081101561081f57600080fd5b5035611597565b34801561083257600080fd5b506103376004803603604081101561084957600080fd5b506001600160a01b0381358116916020013516611635565b34801561086d57600080fd5b5061042f6004803603602081101561088457600080fd5b50356001600160a01b0316611660565b3480156108a057600080fd5b5061042f600480360360208110156108b757600080fd5b50356001600160a01b03166116d9565b3480156108d357600080fd5b5061042f6117bf565b600c8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109685780601f1061093d57610100808354040283529160200191610968565b820191906000526020600020905b81548152906001019060200180831161094b57829003601f168201915b5050505050905090565b600061098661097f611881565b8484611885565b5060015b92915050565b600b5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b60095490565b60006109cd848484611971565b610a3d846109d9611881565b610a3885604051806060016040528060288152602001612a89602891396001600160a01b038a16600090815260056020526040812090610a17611881565b6001600160a01b031681526020810191909152604001600020549190611ad5565b611885565b5060019392505050565b6000600a54821115610a8a5760405162461bcd60e51b815260040180806020018281038252602a8152602001806129ce602a913960400191505060405180910390fd5b6000610a94611b6c565b9050610aa08382611b8f565b9150505b919050565b610ab1611881565b6000546001600160a01b03908116911614610b01576040805162461bcd60e51b81526020600482018190526024820152600080516020612ab1833981519152604482015290519081900360640190fd5b601680546001600160a01b0319166001600160a01b0392909216919091179055565b600e5460ff1690565b610b34611881565b6000546001600160a01b03908116911614610b84576040805162461bcd60e51b81526020600482018190526024820152600080516020612ab1833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610bf1576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610ce957816001600160a01b031660088281548110610c1557fe5b6000918252602090912001546001600160a01b03161415610ce157600880546000198101908110610c4257fe5b600091825260209091200154600880546001600160a01b039092169183908110610c6857fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610cba57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610ce9565b600101610bf4565b5050565b6000610986610cfa611881565b84610a388560056000610d0b611881565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611bd8565b600f5481565b6000610d4b611881565b6001600160a01b03811660009081526007602052604090205490915060ff1615610da65760405162461bcd60e51b815260040180806020018281038252602c815260200180612b85602c913960400191505060405180910390fd5b6000610db183611c32565b505050506001600160a01b038416600090815260036020526040902054919250610ddd91905082611c81565b6001600160a01b038316600090815260036020526040902055600a54610e039082611c81565b600a55600b54610e139084611bd8565b600b55505050565b60155481565b610e29611881565b6000546001600160a01b03908116911614610e79576040805162461bcd60e51b81526020600482018190526024820152600080516020612ab1833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600954831115610ef6576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610f15576000610f0684611c32565b5093955061098a945050505050565b6000610f2084611c32565b5092955061098a945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601854610100900460ff1681565b610f69611881565b6000546001600160a01b03908116911614610fb9576040805162461bcd60e51b81526020600482018190526024820152600080516020612ab1833981519152604482015290519081900360640190fd5b7305ff2b0db69458a0750badebc4f9e13add608c7f6001600160a01b03821614156110155760405162461bcd60e51b8152600401808060200182810382526022815260200180612b636022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff1615611083576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156110dd576001600160a01b0381166000908152600360205260409020546110c390610a47565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60115481565b6001600160a01b03811660009081526007602052604081205460ff16156111a757506001600160a01b038116600090815260046020526040902054610aa4565b6001600160a01b03821660009081526003602052604090205461098a90610a47565b6111d1611881565b6000546001600160a01b03908116911614611221576040805162461bcd60e51b81526020600482018190526024820152600080516020612ab1833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612ad1833981519152908390a3600080546001600160a01b0319169055565b6016546001600160a01b031681565b60195481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b600d8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109685780601f1061093d57610100808354040283529160200191610968565b6000610986611309611881565b84610a3885604051806060016040528060258152602001612bd46025913960056000611333611881565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611ad5565b6001546001600160a01b031633146113ad5760405162461bcd60e51b8152600401808060200182810382526023815260200180612bb16023913960400191505060405180910390fd5b6002544210611403576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612ad183398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b600061098661145f611881565b8484611971565b60025490565b60135481565b61147a611881565b6000546001600160a01b039081169116146114ca576040805162461bcd60e51b81526020600482018190526024820152600080516020612ab1833981519152604482015290519081900360640190fd5b60188054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611521611881565b6000546001600160a01b03908116911614611571576040805162461bcd60e51b81526020600482018190526024820152600080516020612ab1833981519152604482015290519081900360640190fd5b611591606461158b83600954611cc390919063ffffffff16565b90611b8f565b60195550565b61159f611881565b6000546001600160a01b039081169116146115ef576040805162461bcd60e51b81526020600482018190526024820152600080516020612ab1833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612ad1833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611668611881565b6000546001600160a01b039081169116146116b8576040805162461bcd60e51b81526020600482018190526024820152600080516020612ab1833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b6116e1611881565b6000546001600160a01b03908116911614611731576040805162461bcd60e51b81526020600482018190526024820152600080516020612ab1833981519152604482015290519081900360640190fd5b6001600160a01b0381166117765760405162461bcd60e51b81526004018080602001828103825260268152602001806129f86026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612ad183398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6117c7611881565b6000546001600160a01b03908116911614611817576040805162461bcd60e51b81526020600482018190526024820152600080516020612ab1833981519152604482015290519081900360640190fd5b6001600f81905560108190556002601181905560125560138190556014819055600660158190556017556018805460ff19168217905560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a1565b3390565b6001600160a01b0383166118ca5760405162461bcd60e51b8152600401808060200182810382526024815260200180612b3f6024913960400191505060405180910390fd5b6001600160a01b03821661190f5760405162461bcd60e51b8152600401808060200182810382526022815260200180612a1e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166119b65760405162461bcd60e51b8152600401808060200182810382526025815260200180612b1a6025913960400191505060405180910390fd5b6001600160a01b0382166119fb5760405162461bcd60e51b81526004018080602001828103825260238152602001806129ab6023913960400191505060405180910390fd5b60008111611a3a5760405162461bcd60e51b8152600401808060200182810382526029815260200180612af16029913960400191505060405180910390fd5b6000611a4530611167565b601a5490915081108015908190611a5f575060185460ff16155b8015611a9d57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611ab05750601854610100900460ff165b15611ac357601a549150611ac382611d1c565b611ace858585611db9565b5050505050565b60008184841115611b645760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b29578181015183820152602001611b11565b50505050905090810190601f168015611b565780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611b796120a6565b9092509050611b888282611b8f565b9250505090565b6000611bd183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612209565b9392505050565b600082820183811015611bd1576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611c498a61226e565b9250925092506000806000611c678d8686611c62611b6c565b6122aa565b919f909e50909c50959a5093985091965092945050505050565b6000611bd183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ad5565b600082611cd25750600061098a565b82820282848281611cdf57fe5b0414611bd15760405162461bcd60e51b8152600401808060200182810382526021815260200180612a686021913960400191505060405180910390fd5b6018805460ff191660011790556000611d36826002611b8f565b90506000611d448383611c81565b905047611d50836122fa565b6000611d5c4783611c81565b9050611d688382612511565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506018805460ff19169055505050565b6001600160a01b03831660009081526006602052604090205460ff1680611df857506001600160a01b03821660009081526006602052604090205460ff165b15611e0a57611e05612615565b611e4b565b601954811115611e4b5760405162461bcd60e51b8152600401808060200182810382526028815260200180612a406028913960400191505060405180910390fd5b6000611e67606461158b60135485611cc390919063ffffffff16565b90506000611e85606461158b60155486611cc390919063ffffffff16565b6001600160a01b03861660009081526007602052604090205490915060ff168015611ec957506001600160a01b03841660009081526007602052604090205460ff16155b15611ef157611eec8585611ee784611ee18888611c81565b90611c81565b61262b565b61201e565b6001600160a01b03851660009081526007602052604090205460ff16158015611f3257506001600160a01b03841660009081526007602052604090205460ff165b15611f4f57611eec8585611f4a84611ee18888611c81565b61274f565b6001600160a01b03851660009081526007602052604090205460ff16158015611f9157506001600160a01b03841660009081526007602052604090205460ff16155b15611fae57611eec8585611fa984611ee18888611c81565b6127f8565b6001600160a01b03851660009081526007602052604090205460ff168015611fee57506001600160a01b03841660009081526007602052604090205460ff165b1561200b57611eec858561200684611ee18888611c81565b61283c565b61201e8585611fa984611ee18888611c81565b6000600f8190556011819055612036908690846127f8565b60165461204e9086906001600160a01b0316836127f8565b601054600f556012546011556001600160a01b03851660009081526006602052604090205460ff168061209957506001600160a01b03841660009081526006602052604090205460ff165b15611ace57611ace6128af565b600a546009546000918291825b6008548110156121d7578260036000600884815481106120cf57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612134575081600460006008848154811061210d57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561214b57600a5460095494509450505050612205565b61218b600360006008848154811061215f57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611c81565b92506121cd60046000600884815481106121a157fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611c81565b91506001016120b3565b50600954600a546121e791611b8f565b8210156121ff57600a54600954935093505050612205565b90925090505b9091565b600081836122585760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611b29578181015183820152602001611b11565b50600083858161226457fe5b0495945050505050565b60008060008061227d856128c5565b9050600061228a866128e1565b9050600061229c82611ee18986611c81565b979296509094509092505050565b60008080806122b98886611cc3565b905060006122c78887611cc3565b905060006122d58888611cc3565b905060006122e782611ee18686611c81565b939b939a50919850919650505050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061232857fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156123a157600080fd5b505afa1580156123b5573d6000803e3d6000fd5b505050506040513d60208110156123cb57600080fd5b50518151829060019081106123dc57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612427307f000000000000000000000000000000000000000000000000000000000000000084611885565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156124cc5781810151838201526020016124b4565b505050509050019650505050505050600060405180830381600087803b1580156124f557600080fd5b505af1158015612509573d6000803e3d6000fd5b505050505050565b61253c307f000000000000000000000000000000000000000000000000000000000000000084611885565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d71982308560008061257961128c565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b1580156125e457600080fd5b505af11580156125f8573d6000803e3d6000fd5b50505050506040513d606081101561260f57600080fd5b50505050565b6000600f81905560118190556013819055601555565b60008060008060008061263d87611c32565b6001600160a01b038f16600090815260046020526040902054959b5093995091975095509350915061266f9088611c81565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461269e9087611c81565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546126cd9086611bd8565b6001600160a01b0389166000908152600360205260409020556126ef816128fd565b6126f98483612986565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061276187611c32565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506127939087611c81565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546127c99084611bd8565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546126cd9086611bd8565b60008060008060008061280a87611c32565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061269e9087611c81565b60008060008060008061284e87611c32565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506128809088611c81565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546127939087611c81565b6001600f81905560026011556013556006601555565b600061098a606461158b600f5485611cc390919063ffffffff16565b600061098a606461158b60115485611cc390919063ffffffff16565b6000612907611b6c565b905060006129158383611cc3565b306000908152600360205260409020549091506129329082611bd8565b3060009081526003602090815260408083209390935560079052205460ff161561298157306000908152600460205260409020546129709084611bd8565b306000908152600460205260409020555b505050565b600a546129939083611c81565b600a55600b546129a39082611bd8565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c7564652050616e63616b6520726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220db9726a8713edda675c87859e05a3d06420f351801115c2ac31ca488d709e1bb64736f6c634300060c0033
Deployed Bytecode
0x60806040526004361061023f5760003560e01c80636bc87c3a1161012e578063a9059cbb116100ab578063dd4670641161006f578063dd467064146107fc578063dd62ed3e14610826578063ea2f0b3714610861578063f2fde38b14610894578063ffc78635146108c757610246565b8063a9059cbb14610743578063b6c523241461077c578063c0b0fda214610791578063c49b9a80146107a6578063d543dbeb146107d257610246565b806388f82020116100f257806388f82020146106985780638da5cb5b146106cb57806395d89b41146106e0578063a457c2d7146106f5578063a69df4b51461072e57610246565b80636bc87c3a1461061157806370a0823114610626578063715018a6146106595780637b2087691461066e5780637d1db4a51461068357610246565b806339509351116101bc5780634549b039116101805780634549b0391461054f57806349bd5a5e146105815780634a74bb021461059657806352390c02146105ab5780635342acb4146105de57610246565b8063395093511461048f5780633b124fe7146104c85780633bd5d173146104dd57806340f8007a14610507578063437823ec1461051c57610246565b806323b872dd1161020357806323b872dd1461038f5780632d838119146103d257806330563bd7146103fc578063313ce567146104315780633685d4191461045c57610246565b806306fdde031461024b578063095ea7b3146102d557806313114a9d146103225780631694505e1461034957806318160ddd1461037a57610246565b3661024657005b600080fd5b34801561025757600080fd5b506102606108dc565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561029a578181015183820152602001610282565b50505050905090810190601f1680156102c75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102e157600080fd5b5061030e600480360360408110156102f857600080fd5b506001600160a01b038135169060200135610972565b604080519115158252519081900360200190f35b34801561032e57600080fd5b50610337610990565b60408051918252519081900360200190f35b34801561035557600080fd5b5061035e610996565b604080516001600160a01b039092168252519081900360200190f35b34801561038657600080fd5b506103376109ba565b34801561039b57600080fd5b5061030e600480360360608110156103b257600080fd5b506001600160a01b038135811691602081013590911690604001356109c0565b3480156103de57600080fd5b50610337600480360360208110156103f557600080fd5b5035610a47565b34801561040857600080fd5b5061042f6004803603602081101561041f57600080fd5b50356001600160a01b0316610aa9565b005b34801561043d57600080fd5b50610446610b23565b6040805160ff9092168252519081900360200190f35b34801561046857600080fd5b5061042f6004803603602081101561047f57600080fd5b50356001600160a01b0316610b2c565b34801561049b57600080fd5b5061030e600480360360408110156104b257600080fd5b506001600160a01b038135169060200135610ced565b3480156104d457600080fd5b50610337610d3b565b3480156104e957600080fd5b5061042f6004803603602081101561050057600080fd5b5035610d41565b34801561051357600080fd5b50610337610e1b565b34801561052857600080fd5b5061042f6004803603602081101561053f57600080fd5b50356001600160a01b0316610e21565b34801561055b57600080fd5b506103376004803603604081101561057257600080fd5b50803590602001351515610e9d565b34801561058d57600080fd5b5061035e610f2f565b3480156105a257600080fd5b5061030e610f53565b3480156105b757600080fd5b5061042f600480360360208110156105ce57600080fd5b50356001600160a01b0316610f61565b3480156105ea57600080fd5b5061030e6004803603602081101561060157600080fd5b50356001600160a01b0316611143565b34801561061d57600080fd5b50610337611161565b34801561063257600080fd5b506103376004803603602081101561064957600080fd5b50356001600160a01b0316611167565b34801561066557600080fd5b5061042f6111c9565b34801561067a57600080fd5b5061035e611259565b34801561068f57600080fd5b50610337611268565b3480156106a457600080fd5b5061030e600480360360208110156106bb57600080fd5b50356001600160a01b031661126e565b3480156106d757600080fd5b5061035e61128c565b3480156106ec57600080fd5b5061026061129b565b34801561070157600080fd5b5061030e6004803603604081101561071857600080fd5b506001600160a01b0381351690602001356112fc565b34801561073a57600080fd5b5061042f611364565b34801561074f57600080fd5b5061030e6004803603604081101561076657600080fd5b506001600160a01b038135169060200135611452565b34801561078857600080fd5b50610337611466565b34801561079d57600080fd5b5061033761146c565b3480156107b257600080fd5b5061042f600480360360208110156107c957600080fd5b50351515611472565b3480156107de57600080fd5b5061042f600480360360208110156107f557600080fd5b5035611519565b34801561080857600080fd5b5061042f6004803603602081101561081f57600080fd5b5035611597565b34801561083257600080fd5b506103376004803603604081101561084957600080fd5b506001600160a01b0381358116916020013516611635565b34801561086d57600080fd5b5061042f6004803603602081101561088457600080fd5b50356001600160a01b0316611660565b3480156108a057600080fd5b5061042f600480360360208110156108b757600080fd5b50356001600160a01b03166116d9565b3480156108d357600080fd5b5061042f6117bf565b600c8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109685780601f1061093d57610100808354040283529160200191610968565b820191906000526020600020905b81548152906001019060200180831161094b57829003601f168201915b5050505050905090565b600061098661097f611881565b8484611885565b5060015b92915050565b600b5490565b7f00000000000000000000000005ff2b0db69458a0750badebc4f9e13add608c7f81565b60095490565b60006109cd848484611971565b610a3d846109d9611881565b610a3885604051806060016040528060288152602001612a89602891396001600160a01b038a16600090815260056020526040812090610a17611881565b6001600160a01b031681526020810191909152604001600020549190611ad5565b611885565b5060019392505050565b6000600a54821115610a8a5760405162461bcd60e51b815260040180806020018281038252602a8152602001806129ce602a913960400191505060405180910390fd5b6000610a94611b6c565b9050610aa08382611b8f565b9150505b919050565b610ab1611881565b6000546001600160a01b03908116911614610b01576040805162461bcd60e51b81526020600482018190526024820152600080516020612ab1833981519152604482015290519081900360640190fd5b601680546001600160a01b0319166001600160a01b0392909216919091179055565b600e5460ff1690565b610b34611881565b6000546001600160a01b03908116911614610b84576040805162461bcd60e51b81526020600482018190526024820152600080516020612ab1833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610bf1576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610ce957816001600160a01b031660088281548110610c1557fe5b6000918252602090912001546001600160a01b03161415610ce157600880546000198101908110610c4257fe5b600091825260209091200154600880546001600160a01b039092169183908110610c6857fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610cba57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610ce9565b600101610bf4565b5050565b6000610986610cfa611881565b84610a388560056000610d0b611881565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611bd8565b600f5481565b6000610d4b611881565b6001600160a01b03811660009081526007602052604090205490915060ff1615610da65760405162461bcd60e51b815260040180806020018281038252602c815260200180612b85602c913960400191505060405180910390fd5b6000610db183611c32565b505050506001600160a01b038416600090815260036020526040902054919250610ddd91905082611c81565b6001600160a01b038316600090815260036020526040902055600a54610e039082611c81565b600a55600b54610e139084611bd8565b600b55505050565b60155481565b610e29611881565b6000546001600160a01b03908116911614610e79576040805162461bcd60e51b81526020600482018190526024820152600080516020612ab1833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600954831115610ef6576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610f15576000610f0684611c32565b5093955061098a945050505050565b6000610f2084611c32565b5092955061098a945050505050565b7f00000000000000000000000032e0731c7b4c0c150f7df6802a3ca82a3335ab5981565b601854610100900460ff1681565b610f69611881565b6000546001600160a01b03908116911614610fb9576040805162461bcd60e51b81526020600482018190526024820152600080516020612ab1833981519152604482015290519081900360640190fd5b7305ff2b0db69458a0750badebc4f9e13add608c7f6001600160a01b03821614156110155760405162461bcd60e51b8152600401808060200182810382526022815260200180612b636022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff1615611083576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156110dd576001600160a01b0381166000908152600360205260409020546110c390610a47565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60115481565b6001600160a01b03811660009081526007602052604081205460ff16156111a757506001600160a01b038116600090815260046020526040902054610aa4565b6001600160a01b03821660009081526003602052604090205461098a90610a47565b6111d1611881565b6000546001600160a01b03908116911614611221576040805162461bcd60e51b81526020600482018190526024820152600080516020612ab1833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612ad1833981519152908390a3600080546001600160a01b0319169055565b6016546001600160a01b031681565b60195481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b600d8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109685780601f1061093d57610100808354040283529160200191610968565b6000610986611309611881565b84610a3885604051806060016040528060258152602001612bd46025913960056000611333611881565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611ad5565b6001546001600160a01b031633146113ad5760405162461bcd60e51b8152600401808060200182810382526023815260200180612bb16023913960400191505060405180910390fd5b6002544210611403576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612ad183398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b600061098661145f611881565b8484611971565b60025490565b60135481565b61147a611881565b6000546001600160a01b039081169116146114ca576040805162461bcd60e51b81526020600482018190526024820152600080516020612ab1833981519152604482015290519081900360640190fd5b60188054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611521611881565b6000546001600160a01b03908116911614611571576040805162461bcd60e51b81526020600482018190526024820152600080516020612ab1833981519152604482015290519081900360640190fd5b611591606461158b83600954611cc390919063ffffffff16565b90611b8f565b60195550565b61159f611881565b6000546001600160a01b039081169116146115ef576040805162461bcd60e51b81526020600482018190526024820152600080516020612ab1833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612ad1833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611668611881565b6000546001600160a01b039081169116146116b8576040805162461bcd60e51b81526020600482018190526024820152600080516020612ab1833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b6116e1611881565b6000546001600160a01b03908116911614611731576040805162461bcd60e51b81526020600482018190526024820152600080516020612ab1833981519152604482015290519081900360640190fd5b6001600160a01b0381166117765760405162461bcd60e51b81526004018080602001828103825260268152602001806129f86026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612ad183398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6117c7611881565b6000546001600160a01b03908116911614611817576040805162461bcd60e51b81526020600482018190526024820152600080516020612ab1833981519152604482015290519081900360640190fd5b6001600f81905560108190556002601181905560125560138190556014819055600660158190556017556018805460ff19168217905560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a1565b3390565b6001600160a01b0383166118ca5760405162461bcd60e51b8152600401808060200182810382526024815260200180612b3f6024913960400191505060405180910390fd5b6001600160a01b03821661190f5760405162461bcd60e51b8152600401808060200182810382526022815260200180612a1e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166119b65760405162461bcd60e51b8152600401808060200182810382526025815260200180612b1a6025913960400191505060405180910390fd5b6001600160a01b0382166119fb5760405162461bcd60e51b81526004018080602001828103825260238152602001806129ab6023913960400191505060405180910390fd5b60008111611a3a5760405162461bcd60e51b8152600401808060200182810382526029815260200180612af16029913960400191505060405180910390fd5b6000611a4530611167565b601a5490915081108015908190611a5f575060185460ff16155b8015611a9d57507f00000000000000000000000032e0731c7b4c0c150f7df6802a3ca82a3335ab596001600160a01b0316856001600160a01b031614155b8015611ab05750601854610100900460ff165b15611ac357601a549150611ac382611d1c565b611ace858585611db9565b5050505050565b60008184841115611b645760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b29578181015183820152602001611b11565b50505050905090810190601f168015611b565780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611b796120a6565b9092509050611b888282611b8f565b9250505090565b6000611bd183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612209565b9392505050565b600082820183811015611bd1576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611c498a61226e565b9250925092506000806000611c678d8686611c62611b6c565b6122aa565b919f909e50909c50959a5093985091965092945050505050565b6000611bd183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ad5565b600082611cd25750600061098a565b82820282848281611cdf57fe5b0414611bd15760405162461bcd60e51b8152600401808060200182810382526021815260200180612a686021913960400191505060405180910390fd5b6018805460ff191660011790556000611d36826002611b8f565b90506000611d448383611c81565b905047611d50836122fa565b6000611d5c4783611c81565b9050611d688382612511565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506018805460ff19169055505050565b6001600160a01b03831660009081526006602052604090205460ff1680611df857506001600160a01b03821660009081526006602052604090205460ff165b15611e0a57611e05612615565b611e4b565b601954811115611e4b5760405162461bcd60e51b8152600401808060200182810382526028815260200180612a406028913960400191505060405180910390fd5b6000611e67606461158b60135485611cc390919063ffffffff16565b90506000611e85606461158b60155486611cc390919063ffffffff16565b6001600160a01b03861660009081526007602052604090205490915060ff168015611ec957506001600160a01b03841660009081526007602052604090205460ff16155b15611ef157611eec8585611ee784611ee18888611c81565b90611c81565b61262b565b61201e565b6001600160a01b03851660009081526007602052604090205460ff16158015611f3257506001600160a01b03841660009081526007602052604090205460ff165b15611f4f57611eec8585611f4a84611ee18888611c81565b61274f565b6001600160a01b03851660009081526007602052604090205460ff16158015611f9157506001600160a01b03841660009081526007602052604090205460ff16155b15611fae57611eec8585611fa984611ee18888611c81565b6127f8565b6001600160a01b03851660009081526007602052604090205460ff168015611fee57506001600160a01b03841660009081526007602052604090205460ff165b1561200b57611eec858561200684611ee18888611c81565b61283c565b61201e8585611fa984611ee18888611c81565b6000600f8190556011819055612036908690846127f8565b60165461204e9086906001600160a01b0316836127f8565b601054600f556012546011556001600160a01b03851660009081526006602052604090205460ff168061209957506001600160a01b03841660009081526006602052604090205460ff165b15611ace57611ace6128af565b600a546009546000918291825b6008548110156121d7578260036000600884815481106120cf57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612134575081600460006008848154811061210d57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561214b57600a5460095494509450505050612205565b61218b600360006008848154811061215f57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611c81565b92506121cd60046000600884815481106121a157fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611c81565b91506001016120b3565b50600954600a546121e791611b8f565b8210156121ff57600a54600954935093505050612205565b90925090505b9091565b600081836122585760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611b29578181015183820152602001611b11565b50600083858161226457fe5b0495945050505050565b60008060008061227d856128c5565b9050600061228a866128e1565b9050600061229c82611ee18986611c81565b979296509094509092505050565b60008080806122b98886611cc3565b905060006122c78887611cc3565b905060006122d58888611cc3565b905060006122e782611ee18686611c81565b939b939a50919850919650505050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061232857fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000005ff2b0db69458a0750badebc4f9e13add608c7f6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156123a157600080fd5b505afa1580156123b5573d6000803e3d6000fd5b505050506040513d60208110156123cb57600080fd5b50518151829060019081106123dc57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612427307f00000000000000000000000005ff2b0db69458a0750badebc4f9e13add608c7f84611885565b7f00000000000000000000000005ff2b0db69458a0750badebc4f9e13add608c7f6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156124cc5781810151838201526020016124b4565b505050509050019650505050505050600060405180830381600087803b1580156124f557600080fd5b505af1158015612509573d6000803e3d6000fd5b505050505050565b61253c307f00000000000000000000000005ff2b0db69458a0750badebc4f9e13add608c7f84611885565b7f00000000000000000000000005ff2b0db69458a0750badebc4f9e13add608c7f6001600160a01b031663f305d71982308560008061257961128c565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b1580156125e457600080fd5b505af11580156125f8573d6000803e3d6000fd5b50505050506040513d606081101561260f57600080fd5b50505050565b6000600f81905560118190556013819055601555565b60008060008060008061263d87611c32565b6001600160a01b038f16600090815260046020526040902054959b5093995091975095509350915061266f9088611c81565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461269e9087611c81565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546126cd9086611bd8565b6001600160a01b0389166000908152600360205260409020556126ef816128fd565b6126f98483612986565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061276187611c32565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506127939087611c81565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546127c99084611bd8565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546126cd9086611bd8565b60008060008060008061280a87611c32565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061269e9087611c81565b60008060008060008061284e87611c32565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506128809088611c81565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546127939087611c81565b6001600f81905560026011556013556006601555565b600061098a606461158b600f5485611cc390919063ffffffff16565b600061098a606461158b60115485611cc390919063ffffffff16565b6000612907611b6c565b905060006129158383611cc3565b306000908152600360205260409020549091506129329082611bd8565b3060009081526003602090815260408083209390935560079052205460ff161561298157306000908152600460205260409020546129709084611bd8565b306000908152600460205260409020555b505050565b600a546129939083611c81565b600a55600b546129a39082611bd8565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c7564652050616e63616b6520726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220db9726a8713edda675c87859e05a3d06420f351801115c2ac31ca488d709e1bb64736f6c634300060c0033
Deployed Bytecode Sourcemap
25615:19282:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28279:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29191:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29191:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;30312:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;26835:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;26835:51:0;;;;;;;;;;;;;;28556:95;;;;;;;;;;;;;:::i;29360:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29360:313:0;;;;;;;;;;;;;;;;;:::i;31236:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31236:253:0;;:::i;44432:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44432:110:0;-1:-1:-1;;;;;44432:110:0;;:::i;:::-;;28465:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31949:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31949:479:0;-1:-1:-1;;;;;31949:479:0;;:::i;29681:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29681:218:0;;;;;;;;:::i;26386:26::-;;;;;;;;;;;;;:::i;30407:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30407:377:0;;:::i;26660:30::-;;;;;;;;;;;;;:::i;43712:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43712:111:0;-1:-1:-1;;;;;43712:111:0;;:::i;30792:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30792:436:0;;;;;;;;;:::i;26893:38::-;;;;;;;;;;;;;:::i;26972:41::-;;;;;;;;;;;;;:::i;31497:444::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31497:444:0;-1:-1:-1;;;;;31497:444:0;;:::i;36303:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36303:123:0;-1:-1:-1;;;;;36303:123:0;;:::i;26473:32::-;;;;;;;;;;;;;:::i;28659:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28659:198:0;-1:-1:-1;;;;;28659:198:0;;:::i;16210:148::-;;;;;;;;;;;;;:::i;26697:73::-;;;;;;;;;;;;;:::i;27026:57::-;;;;;;;;;;;;;:::i;30184:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30184:120:0;-1:-1:-1;;;;;30184:120:0;;:::i;15567:79::-;;;;;;;;;;;;;:::i;28370:87::-;;;;;;;;;;;;;:::i;29907:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29907:269:0;;;;;;;;:::i;17220:293::-;;;;;;;;;;;;;:::i;28865:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28865:167:0;;;;;;;;:::i;16765:89::-;;;;;;;;;;;;;:::i;26574:27::-;;;;;;;;;;;;;:::i;44723:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44723:171:0;;;;:::i;44553:162::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44553:162:0;;:::i;16930:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16930:214:0;;:::i;29040:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29040:143:0;;;;;;;;;;:::i;43835:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43835:110:0;-1:-1:-1;;;;;43835:110:0;;:::i;16513:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16513:244:0;-1:-1:-1;;;;;16513:244:0;;:::i;44022:402::-;;;;;;;;;;;;;:::i;28279:83::-;28349:5;28342:12;;;;;;;;-1:-1:-1;;28342:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28316:13;;28342:12;;28349:5;;28342:12;;28349:5;28342:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28279:83;:::o;29191:161::-;29266:4;29283:39;29292:12;:10;:12::i;:::-;29306:7;29315:6;29283:8;:39::i;:::-;-1:-1:-1;29340:4:0;29191:161;;;;;:::o;30312:87::-;30381:10;;30312:87;:::o;26835:51::-;;;:::o;28556:95::-;28636:7;;28556:95;:::o;29360:313::-;29458:4;29475:36;29485:6;29493:9;29504:6;29475:9;:36::i;:::-;29522:121;29531:6;29539:12;:10;:12::i;:::-;29553:89;29591:6;29553:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29553:19:0;;;;;;:11;:19;;;;;;29573:12;:10;:12::i;:::-;-1:-1:-1;;;;;29553:33:0;;;;;;;;;;;;-1:-1:-1;29553:33:0;;;:89;:37;:89::i;:::-;29522:8;:121::i;:::-;-1:-1:-1;29661:4:0;29360:313;;;;;:::o;31236:253::-;31302:7;31341;;31330;:18;;31322:73;;;;-1:-1:-1;;;31322:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31406:19;31429:10;:8;:10::i;:::-;31406:33;-1:-1:-1;31457:24:0;:7;31406:33;31457:11;:24::i;:::-;31450:31;;;31236:253;;;;:::o;44432:110::-;15789:12;:10;:12::i;:::-;15779:6;;-1:-1:-1;;;;;15779:6:0;;;:22;;;15771:67;;;;;-1:-1:-1;;;15771:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15771:67:0;;;;;;;;;;;;;;;44509:13:::1;:25:::0;;-1:-1:-1;;;;;;44509:25:0::1;-1:-1:-1::0;;;;;44509:25:0;;;::::1;::::0;;;::::1;::::0;;44432:110::o;28465:83::-;28531:9;;;;28465:83;:::o;31949:479::-;15789:12;:10;:12::i;:::-;15779:6;;-1:-1:-1;;;;;15779:6:0;;;:22;;;15771:67;;;;;-1:-1:-1;;;15771:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15771:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32031:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32023:60;;;::::0;;-1:-1:-1;;;32023:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32099:9;32094:327;32118:9;:16:::0;32114:20;::::1;32094:327;;;32176:7;-1:-1:-1::0;;;;;32160:23:0::1;:9;32170:1;32160:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;32160:12:0::1;:23;32156:254;;;32219:9;32229:16:::0;;-1:-1:-1;;32229:20:0;;;32219:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;32204:9:::1;:12:::0;;-1:-1:-1;;;;;32219:31:0;;::::1;::::0;32214:1;;32204:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;32204:46:0::1;-1:-1:-1::0;;;;;32204:46:0;;::::1;;::::0;;32269:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;32308:11:::1;:20:::0;;;;:28;;-1:-1:-1;;32308:28:0::1;::::0;;32355:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;32355:15:0;;;;;-1:-1:-1;;;;;;32355:15:0::1;::::0;;;;;32389:5:::1;;32156:254;32136:3;;32094:327;;;;31949:479:::0;:::o;29681:218::-;29769:4;29786:83;29795:12;:10;:12::i;:::-;29809:7;29818:50;29857:10;29818:11;:25;29830:12;:10;:12::i;:::-;-1:-1:-1;;;;;29818:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;29818:25:0;;;:34;;;;;;;;;;;:38;:50::i;26386:26::-;;;;:::o;30407:377::-;30459:14;30476:12;:10;:12::i;:::-;-1:-1:-1;;;;;30508:19:0;;;;;;:11;:19;;;;;;30459:29;;-1:-1:-1;30508:19:0;;30507:20;30499:77;;;;-1:-1:-1;;;30499:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30588:15;30612:19;30623:7;30612:10;:19::i;:::-;-1:-1:-1;;;;;;;;;30660:15:0;;;;;;:7;:15;;;;;;30587:44;;-1:-1:-1;30660:28:0;;:15;-1:-1:-1;30587:44:0;30660:19;:28::i;:::-;-1:-1:-1;;;;;30642:15:0;;;;;;:7;:15;;;;;:46;30709:7;;:20;;30721:7;30709:11;:20::i;:::-;30699:7;:30;30753:10;;:23;;30768:7;30753:14;:23::i;:::-;30740:10;:36;-1:-1:-1;;;30407:377:0:o;26660:30::-;;;;:::o;43712:111::-;15789:12;:10;:12::i;:::-;15779:6;;-1:-1:-1;;;;;15779:6:0;;;:22;;;15771:67;;;;;-1:-1:-1;;;15771:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15771:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;43781:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;43781:34:0::1;43811:4;43781:34;::::0;;43712:111::o;30792:436::-;30882:7;30921;;30910;:18;;30902:62;;;;;-1:-1:-1;;;30902:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30980:17;30975:246;;31015:15;31039:19;31050:7;31039:10;:19::i;:::-;-1:-1:-1;31014:44:0;;-1:-1:-1;31073:14:0;;-1:-1:-1;;;;;31073:14:0;30975:246;31122:23;31153:19;31164:7;31153:10;:19::i;:::-;-1:-1:-1;31120:52:0;;-1:-1:-1;31187:22:0;;-1:-1:-1;;;;;31187:22:0;26893:38;;;:::o;26972:41::-;;;;;;;;;:::o;31497:444::-;15789:12;:10;:12::i;:::-;15779:6;;-1:-1:-1;;;;;15779:6:0;;;:22;;;15771:67;;;;;-1:-1:-1;;;15771:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15771:67:0;;;;;;;;;;;;;;;31590:42:::1;-1:-1:-1::0;;;;;31579:53:0;::::1;;;31571:100;;;;-1:-1:-1::0;;;31571:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;31691:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31690:21;31682:61;;;::::0;;-1:-1:-1;;;31682:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;31757:16:0;::::1;31776:1;31757:16:::0;;;:7:::1;:16;::::0;;;;;:20;31754:108:::1;;-1:-1:-1::0;;;;;31833:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;31813:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;31794:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;31754:108:::1;-1:-1:-1::0;;;;;31872:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;31872:27:0::1;31895:4;31872:27:::0;;::::1;::::0;;;31910:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;31910:23:0::1;::::0;;::::1;::::0;;31497:444::o;36303:123::-;-1:-1:-1;;;;;36391:27:0;36367:4;36391:27;;;:18;:27;;;;;;;;;36303:123::o;26473:32::-;;;;:::o;28659:198::-;-1:-1:-1;;;;;28749:20:0;;28725:7;28749:20;;;:11;:20;;;;;;;;28745:49;;;-1:-1:-1;;;;;;28778:16:0;;;;;;:7;:16;;;;;;28771:23;;28745:49;-1:-1:-1;;;;;28832:16:0;;;;;;:7;:16;;;;;;28812:37;;:19;:37::i;16210:148::-;15789:12;:10;:12::i;:::-;15779:6;;-1:-1:-1;;;;;15779:6:0;;;:22;;;15771:67;;;;;-1:-1:-1;;;15771:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15771:67:0;;;;;;;;;;;;;;;16317:1:::1;16301:6:::0;;16280:40:::1;::::0;-1:-1:-1;;;;;16301:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16280:40:0;16317:1;;16280:40:::1;16348:1;16331:19:::0;;-1:-1:-1;;;;;;16331:19:0::1;::::0;;16210:148::o;26697:73::-;;;-1:-1:-1;;;;;26697:73:0;;:::o;27026:57::-;;;;:::o;30184:120::-;-1:-1:-1;;;;;30276:20:0;30252:4;30276:20;;;:11;:20;;;;;;;;;30184:120::o;15567:79::-;15605:7;15632:6;-1:-1:-1;;;;;15632:6:0;15567:79;:::o;28370:87::-;28442:7;28435:14;;;;;;;;-1:-1:-1;;28435:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28409:13;;28435:14;;28442:7;;28435:14;;28442:7;28435:14;;;;;;;;;;;;;;;;;;;;;;;;29907:269;30000:4;30017:129;30026:12;:10;:12::i;:::-;30040:7;30049:96;30088:15;30049:96;;;;;;;;;;;;;;;;;:11;:25;30061:12;:10;:12::i;:::-;-1:-1:-1;;;;;30049:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30049:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17220:293::-;17272:14;;-1:-1:-1;;;;;17272:14:0;17290:10;17272:28;17264:76;;;;-1:-1:-1;;;17264:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17365:9;;17359:3;:15;17351:60;;;;;-1:-1:-1;;;17351:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17456:14;;;17448:6;;17427:44;;-1:-1:-1;;;;;17456:14:0;;;;17448:6;;;;-1:-1:-1;;;;;;;;;;;17427:44:0;;17491:14;;;17482:23;;-1:-1:-1;;;;;;17482:23:0;-1:-1:-1;;;;;17491:14:0;;;17482:23;;;;;;17220:293::o;28865:167::-;28943:4;28960:42;28970:12;:10;:12::i;:::-;28984:9;28995:6;28960:9;:42::i;16765:89::-;16837:9;;16765:89;:::o;26574:27::-;;;;:::o;44723:171::-;15789:12;:10;:12::i;:::-;15779:6;;-1:-1:-1;;;;;15779:6:0;;;:22;;;15771:67;;;;;-1:-1:-1;;;15771:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15771:67:0;;;;;;;;;;;;;;;44800:21:::1;:32:::0;;;::::1;;;::::0;::::1;-1:-1:-1::0;;44800:32:0;;::::1;::::0;;;::::1;::::0;;;44848:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;44723:171:::0;:::o;44553:162::-;15789:12;:10;:12::i;:::-;15779:6;;-1:-1:-1;;;;;15779:6:0;;;:22;;;15771:67;;;;;-1:-1:-1;;;15771:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15771:67:0;;;;;;;;;;;;;;;44647:60:::1;44691:5;44647:25;44659:12;44647:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;44632:12;:75:::0;-1:-1:-1;44553:162:0:o;16930:214::-;15789:12;:10;:12::i;:::-;15779:6;;-1:-1:-1;;;;;15779:6:0;;;:22;;;15771:67;;;;;-1:-1:-1;;;15771:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15771:67:0;;;;;;;;;;;;;;;17011:6:::1;::::0;;;16994:23;;-1:-1:-1;;;;;;16994:23:0;;::::1;-1:-1:-1::0;;;;;17011:6:0;::::1;16994:23;::::0;;;17028:19:::1;::::0;;17070:3:::1;:10:::0;::::1;17058:9;:22:::0;17096:40:::1;::::0;17011:6;;-1:-1:-1;;;;;;;;;;;17096:40:0;17011:6;;17096:40:::1;16930:214:::0;:::o;29040:143::-;-1:-1:-1;;;;;29148:18:0;;;29121:7;29148:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29040:143::o;43835:110::-;15789:12;:10;:12::i;:::-;15779:6;;-1:-1:-1;;;;;15779:6:0;;;:22;;;15771:67;;;;;-1:-1:-1;;;15771:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15771:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;43902:27:0::1;43932:5;43902:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;43902:35:0::1;::::0;;43835:110::o;16513:244::-;15789:12;:10;:12::i;:::-;15779:6;;-1:-1:-1;;;;;15779:6:0;;;:22;;;15771:67;;;;;-1:-1:-1;;;15771:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15771:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16602:22:0;::::1;16594:73;;;;-1:-1:-1::0;;;16594:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16704:6;::::0;;16683:38:::1;::::0;-1:-1:-1;;;;;16683:38:0;;::::1;::::0;16704:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16683:38:0;::::1;16732:6;:17:::0;;-1:-1:-1;;;;;;16732:17:0::1;-1:-1:-1::0;;;;;16732:17:0;;;::::1;::::0;;;::::1;::::0;;16513:244::o;44022:402::-;15789:12;:10;:12::i;:::-;15779:6;;-1:-1:-1;;;;;15779:6:0;;;:22;;;15771:67;;;;;-1:-1:-1;;;15771:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15771:67:0;;;;;;;;;;;;;;;44089:1:::1;44079:7;:11:::0;;;44101:15:::1;:25:::0;;;44153:1:::1;44137:13;:17:::0;;;44165:21:::1;:37:::0;44213:8:::1;:12:::0;;;44236:16:::1;:26:::0;;;44287:1:::1;44273:11;:15:::0;;;44299:19:::1;:33:::0;44343:16:::1;:23:::0;;-1:-1:-1;;44343:23:0::1;::::0;::::1;::::0;;44382:34:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;44022:402::o:0;7975:106::-;8063:10;7975:106;:::o;36434:337::-;-1:-1:-1;;;;;36527:19:0;;36519:68;;;;-1:-1:-1;;;36519:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36606:21:0;;36598:68;;;;-1:-1:-1;;;36598:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36679:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;36731:32;;;;;;;;;;;;;;;;;36434:337;;;:::o;36779:1234::-;-1:-1:-1;;;;;36901:18:0;;36893:68;;;;-1:-1:-1;;;36893:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36980:16:0;;36972:64;;;;-1:-1:-1;;;36972:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37064:1;37055:6;:10;37047:64;;;;-1:-1:-1;;;37047:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37406:28;37437:24;37455:4;37437:9;:24::i;:::-;37531:29;;37406:55;;-1:-1:-1;37507:53:0;;;;;;;37589;;-1:-1:-1;37626:16:0;;;;37625:17;37589:53;:91;;;;;37667:13;-1:-1:-1;;;;;37659:21:0;:4;-1:-1:-1;;;;;37659:21:0;;;37589:91;:129;;;;-1:-1:-1;37697:21:0;;;;;;;37589:129;37571:318;;;37768:29;;37745:52;;37841:36;37856:20;37841:14;:36::i;:::-;37975:30;37990:4;37995:2;37998:6;37975:14;:30::i;:::-;36779:1234;;;;;:::o;4385:192::-;4471:7;4507:12;4499:6;;;;4491:29;;;;-1:-1:-1;;;4491:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4543:5:0;;;4385:192::o;34549:163::-;34590:7;34611:15;34628;34647:19;:17;:19::i;:::-;34610:56;;-1:-1:-1;34610:56:0;-1:-1:-1;34684:20:0;34610:56;;34684:11;:20::i;:::-;34677:27;;;;34549:163;:::o;5783:132::-;5841:7;5868:39;5872:1;5875;5868:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5861:46;5783:132;-1:-1:-1;;;5783:132:0:o;3482:181::-;3540:7;3572:5;;;3596:6;;;;3588:46;;;;;-1:-1:-1;;;3588:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;33347:419;33406:7;33415;33424;33433;33442;33451;33472:23;33497:12;33511:18;33533:20;33545:7;33533:11;:20::i;:::-;33471:82;;;;;;33565:15;33582:23;33607:12;33623:50;33635:7;33644:4;33650:10;33662;:8;:10::i;:::-;33623:11;:50::i;:::-;33564:109;;;;-1:-1:-1;33564:109:0;;-1:-1:-1;33724:15:0;;-1:-1:-1;33741:4:0;;-1:-1:-1;33747:10:0;;-1:-1:-1;33347:419:0;;-1:-1:-1;;;;;33347:419:0:o;3946:136::-;4004:7;4031:43;4035:1;4038;4031:43;;;;;;;;;;;;;;;;;:3;:43::i;4836:471::-;4894:7;5139:6;5135:47;;-1:-1:-1;5169:1:0;5162:8;;5135:47;5206:5;;;5210:1;5206;:5;:1;5230:5;;;;;:10;5222:56;;;;-1:-1:-1;;;5222:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38021:985;27472:16;:23;;-1:-1:-1;;27472:23:0;27491:4;27472:23;;;:16;38172:27:::1;:20:::0;38197:1:::1;38172:24;:27::i;:::-;38157:42:::0;-1:-1:-1;38210:17:0::1;38230:30;:20:::0;38157:42;38230:24:::1;:30::i;:::-;38210:50:::0;-1:-1:-1;38563:21:0::1;38629:22;38646:4:::0;38629:16:::1;:22::i;:::-;38782:18;38803:41;:21;38829:14:::0;38803:25:::1;:41::i;:::-;38782:62;;38894:35;38907:9;38918:10;38894:12;:35::i;:::-;38955:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;27518:16:0;:24;;-1:-1:-1;;27518:24:0;;;-1:-1:-1;;;38021:985:0:o;40205:1821::-;-1:-1:-1;;;;;40302:26:0;;;;;;:18;:26;;;;;;;;;:59;;-1:-1:-1;;;;;;40332:29:0;;;;;;:18;:29;;;;;;;;40302:59;40299:220;;;40377:14;:12;:14::i;:::-;40299:220;;;40450:12;;40440:6;:22;;40432:75;;;;-1:-1:-1;;;40432:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40591:15;40609:29;40634:3;40609:20;40620:8;;40609:6;:10;;:20;;;;:::i;:29::-;40591:47;;40649:18;40670:32;40698:3;40670:23;40681:11;;40670:6;:10;;:23;;;;:::i;:32::-;-1:-1:-1;;;;;40719:19:0;;;;;;:11;:19;;;;;;40649:53;;-1:-1:-1;40719:19:0;;:46;;;;-1:-1:-1;;;;;;40743:22:0;;;;;;:11;:22;;;;;;;;40742:23;40719:46;40715:752;;;40782:79;40804:6;40812:9;40824:35;40848:10;40824:19;:6;40835:7;40824:10;:19::i;:::-;:23;;:35::i;:::-;40782:21;:79::i;:::-;40715:752;;;-1:-1:-1;;;;;40884:19:0;;;;;;:11;:19;;;;;;;;40883:20;:46;;;;-1:-1:-1;;;;;;40907:22:0;;;;;;:11;:22;;;;;;;;40883:46;40879:588;;;40946:77;40966:6;40974:9;40986:35;41010:10;40986:19;:6;40997:7;40986:10;:19::i;:35::-;40946:19;:77::i;40879:588::-;-1:-1:-1;;;;;41046:19:0;;;;;;:11;:19;;;;;;;;41045:20;:47;;;;-1:-1:-1;;;;;;41070:22:0;;;;;;:11;:22;;;;;;;;41069:23;41045:47;41041:426;;;41109:75;41127:6;41135:9;41147:35;41171:10;41147:19;:6;41158:7;41147:10;:19::i;:35::-;41109:17;:75::i;41041:426::-;-1:-1:-1;;;;;41206:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;41229:22:0;;;;;;:11;:22;;;;;;;;41206:45;41202:265;;;41268:79;41290:6;41298:9;41310:35;41334:10;41310:19;:6;41321:7;41310:10;:19::i;:35::-;41268:21;:79::i;41202:265::-;41380:75;41398:6;41406:9;41418:35;41442:10;41418:19;:6;41429:7;41418:10;:19::i;41380:75::-;41579:1;41569:7;:11;;;41591:13;:17;;;41674:46;;41692:6;;41712:7;41674:17;:46::i;:::-;41757:13;;41731:52;;41749:6;;-1:-1:-1;;;;;41757:13:0;41772:10;41731:17;:52::i;:::-;41848:15;;41838:7;:25;41890:21;;41874:13;:37;-1:-1:-1;;;;;41929:26:0;;-1:-1:-1;41929:26:0;;;:18;:26;;;;;;;;;:59;;-1:-1:-1;;;;;;41959:29:0;;;;;;:18;:29;;;;;;;;41929:59;41926:92;;;42003:15;:13;:15::i;34720:561::-;34817:7;;34853;;34770;;;;;34877:289;34901:9;:16;34897:20;;34877:289;;;34967:7;34943;:21;34951:9;34961:1;34951:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34951:12:0;34943:21;;;;;;;;;;;;;:31;;:66;;;35002:7;34978;:21;34986:9;34996:1;34986:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34986:12:0;34978:21;;;;;;;;;;;;;:31;34943:66;34939:97;;;35019:7;;35028;;35011:25;;;;;;;;;34939:97;35061:34;35073:7;:21;35081:9;35091:1;35081:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35081:12:0;35073:21;;;;;;;;;;;;;35061:7;;:11;:34::i;:::-;35051:44;;35120:34;35132:7;:21;35140:9;35150:1;35140:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35140:12:0;35132:21;;;;;;;;;;;;;35120:7;;:11;:34::i;:::-;35110:44;-1:-1:-1;34919:3:0;;34877:289;;;-1:-1:-1;35202:7:0;;35190;;:20;;:11;:20::i;:::-;35180:7;:30;35176:61;;;35220:7;;35229;;35212:25;;;;;;;;35176:61;35256:7;;-1:-1:-1;35265:7:0;-1:-1:-1;34720:561:0;;;:::o;6411:278::-;6497:7;6532:12;6525:5;6517:28;;;;-1:-1:-1;;;6517:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6556:9;6572:1;6568;:5;;;;;;;6411:278;-1:-1:-1;;;;;6411:278:0:o;33774:330::-;33834:7;33843;33852;33872:12;33887:24;33903:7;33887:15;:24::i;:::-;33872:39;;33922:18;33943:30;33965:7;33943:21;:30::i;:::-;33922:51;-1:-1:-1;33984:23:0;34010:33;33922:51;34010:17;:7;34022:4;34010:11;:17::i;:33::-;33984:59;34079:4;;-1:-1:-1;34085:10:0;;-1:-1:-1;33774:330:0;;-1:-1:-1;;;33774:330:0:o;34112:429::-;34227:7;;;;34283:24;:7;34295:11;34283;:24::i;:::-;34265:42;-1:-1:-1;34318:12:0;34333:21;:4;34342:11;34333:8;:21::i;:::-;34318:36;-1:-1:-1;34365:18:0;34386:27;:10;34401:11;34386:14;:27::i;:::-;34365:48;-1:-1:-1;34424:23:0;34450:33;34365:48;34450:17;:7;34462:4;34450:11;:17::i;:33::-;34502:7;;;;-1:-1:-1;34528:4:0;;-1:-1:-1;34112:429:0;;-1:-1:-1;;;;;;;34112:429:0:o;39014:589::-;39164:16;;;39178:1;39164:16;;;39140:21;39164:16;;;;;39140:21;39164:16;;;;;;;;;;-1:-1:-1;39164:16:0;39140:40;;39209:4;39191;39196:1;39191:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;39191:23:0;;;-1:-1:-1;;;;;39191:23:0;;;;;39235:15;-1:-1:-1;;;;;39235:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39235:22:0;39225:7;;:4;;39230:1;;39225:7;;;;;;;;;;;:32;-1:-1:-1;;;;;39225:32:0;;;-1:-1:-1;;;;;39225:32:0;;;;;39270:62;39287:4;39302:15;39320:11;39270:8;:62::i;:::-;39371:15;-1:-1:-1;;;;;39371:66:0;;39452:11;39478:1;39522:4;39549;39569:15;39371:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39371:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39014:589;;:::o;39611:513::-;39759:62;39776:4;39791:15;39809:11;39759:8;:62::i;:::-;39864:15;-1:-1:-1;;;;;39864:31:0;;39903:9;39936:4;39956:11;39982:1;40025;40068:7;:5;:7::i;:::-;40090:15;39864:252;;;;;;;;;;;;;-1:-1:-1;;;;;39864:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39864:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;39611:513:0:o;36000:139::-;36053:1;36043:7;:11;;;36065:13;:17;;;36093:8;:12;;;36116:11;:15;36000:139::o;43138:566::-;43241:15;43258:23;43283:12;43297:23;43322:12;43336:18;43358:19;43369:7;43358:10;:19::i;:::-;-1:-1:-1;;;;;43406:15:0;;;;;;:7;:15;;;;;;43240:137;;-1:-1:-1;43240:137:0;;-1:-1:-1;43240:137:0;;-1:-1:-1;43240:137:0;-1:-1:-1;43240:137:0;-1:-1:-1;43240:137:0;-1:-1:-1;43406:28:0;;43426:7;43406:19;:28::i;:::-;-1:-1:-1;;;;;43388:15:0;;;;;;:7;:15;;;;;;;;:46;;;;43463:7;:15;;;;:28;;43483:7;43463:19;:28::i;:::-;-1:-1:-1;;;;;43445:15:0;;;;;;;:7;:15;;;;;;:46;;;;43523:18;;;;;;;:39;;43546:15;43523:22;:39::i;:::-;-1:-1:-1;;;;;43502:18:0;;;;;;:7;:18;;;;;:60;43576:26;43591:10;43576:14;:26::i;:::-;43613:23;43625:4;43631;43613:11;:23::i;:::-;43669:9;-1:-1:-1;;;;;43652:44:0;43661:6;-1:-1:-1;;;;;43652:44:0;;43680:15;43652:44;;;;;;;;;;;;;;;;;;43138:566;;;;;;;;;:::o;42544:586::-;42645:15;42662:23;42687:12;42701:23;42726:12;42740:18;42762:19;42773:7;42762:10;:19::i;:::-;-1:-1:-1;;;;;42810:15:0;;;;;;:7;:15;;;;;;42644:137;;-1:-1:-1;42644:137:0;;-1:-1:-1;42644:137:0;;-1:-1:-1;42644:137:0;-1:-1:-1;42644:137:0;-1:-1:-1;42644:137:0;-1:-1:-1;42810:28:0;;42644:137;42810:19;:28::i;:::-;-1:-1:-1;;;;;42792:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;42870:18;;;;;:7;:18;;;;;:39;;42893:15;42870:22;:39::i;:::-;-1:-1:-1;;;;;42849:18:0;;;;;;:7;:18;;;;;;;;:60;;;;42941:7;:18;;;;:39;;42964:15;42941:22;:39::i;42034:502::-;42133:15;42150:23;42175:12;42189:23;42214:12;42228:18;42250:19;42261:7;42250:10;:19::i;:::-;-1:-1:-1;;;;;42298:15:0;;;;;;:7;:15;;;;;;42132:137;;-1:-1:-1;42132:137:0;;-1:-1:-1;42132:137:0;;-1:-1:-1;42132:137:0;-1:-1:-1;42132:137:0;-1:-1:-1;42132:137:0;-1:-1:-1;42298:28:0;;42132:137;42298:19;:28::i;32436:642::-;32539:15;32556:23;32581:12;32595:23;32620:12;32634:18;32656:19;32667:7;32656:10;:19::i;:::-;-1:-1:-1;;;;;32704:15:0;;;;;;:7;:15;;;;;;32538:137;;-1:-1:-1;32538:137:0;;-1:-1:-1;32538:137:0;;-1:-1:-1;32538:137:0;-1:-1:-1;32538:137:0;-1:-1:-1;32538:137:0;-1:-1:-1;32704:28:0;;32724:7;32704:19;:28::i;:::-;-1:-1:-1;;;;;32686:15:0;;;;;;:7;:15;;;;;;;;:46;;;;32761:7;:15;;;;:28;;32781:7;32761:19;:28::i;36151:140::-;36205:1;36195:7;:11;;;36233:1;36217:13;:17;36245:8;:12;36282:1;36268:11;:15;36151:140::o;35660:154::-;35724:7;35751:55;35790:5;35751:20;35763:7;;35751;:11;;:20;;;;:::i;35822:166::-;35892:7;35919:61;35964:5;35919:26;35931:13;;35919:7;:11;;:26;;;;:::i;35293:355::-;35356:19;35379:10;:8;:10::i;:::-;35356:33;-1:-1:-1;35400:18:0;35421:27;:10;35356:33;35421:14;:27::i;:::-;35500:4;35484:22;;;;:7;:22;;;;;;35400:48;;-1:-1:-1;35484:38:0;;35400:48;35484:26;:38::i;:::-;35475:4;35459:22;;;;:7;:22;;;;;;;;:63;;;;35536:11;:26;;;;;;35533:107;;;35618:4;35602:22;;;;:7;:22;;;;;;:38;;35629:10;35602:26;:38::i;:::-;35593:4;35577:22;;;;:7;:22;;;;;:63;35533:107;35293:355;;;:::o;33192:147::-;33270:7;;:17;;33282:4;33270:11;:17::i;:::-;33260:7;:27;33311:10;;:20;;33326:4;33311:14;:20::i;:::-;33298:10;:33;-1:-1:-1;;33192:147:0:o
Swarm Source
ipfs://db9726a8713edda675c87859e05a3d06420f351801115c2ac31ca488d709e1bb
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.