ERC-20
Overview
Max Total Supply
333,333 OBSOLETE
Holders
67
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
THEOBSOLETE
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-21 */ /** ---------- www.THEOBSOLETEERC.com ------------------ ------- www.twitter.com/TheObsoleteErc.com --------- ---------- t.me/TheObsoleteErc --------------------- */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.17; 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. * * 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) { 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. * * 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 payable(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. */ 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; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 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 (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 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 (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); 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 (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract THEOBSOLETE is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping(address => uint256) private _rOwned; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFee; mapping(address => bool) private _isExcludedFromLimit; mapping(address => bool) public _isBlackListed; uint256 private _tTotal = 333333 * 10**18; address payable private _marketingAddress = payable(address(0x24Ab1233de79DfB5E6e2f676F9C0ADF5A5a6C78B)); string private _name = "THEOBSOLETE"; string private _symbol = "OBSOLETE"; uint8 private _decimals = 18; struct BuyFee { uint8 liquidity; uint8 marketing; } struct SellFee { uint8 liquidity; uint8 marketing; } BuyFee public buyFee; SellFee public sellFee; uint8 private _liquidityFee; uint8 private _marketingFee; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool private isTradingEnabled; uint256 tradingStartBlock; uint8 constant BLOCKCOUNT = 10; bool swapAndLiquifyEnabled = true; uint256 public _maxTxAmount = _tTotal.div(1000).mul(10); //1% uint256 private numTokensSellToAddToLiquidity = _tTotal.div(1000).mul(2); //0.2% uint256 public _maxWalletSize = _tTotal.div(1000).mul(20); // 2% event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } mapping (address => uint256) _lastTrade; constructor() { _rOwned[_msgSender()] = _tTotal; buyFee.liquidity = 1; buyFee.marketing = 5; sellFee.liquidity = 1; sellFee.marketing = 5; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // 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; _isExcludedFromFee[_marketingAddress] = true; _isExcludedFromLimit[_marketingAddress] = true; _isExcludedFromLimit[owner()] = true; _isExcludedFromLimit[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) { return _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 excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function excludeFromLimit(address account) public onlyOwner { _isExcludedFromLimit[account] = true; } function includeInLimit(address account) public onlyOwner { _isExcludedFromLimit[account] = false; } function manualBlacklist(address addr, bool value) external onlyOwner { _isBlackListed[addr] = value; } function enableTrading() external onlyOwner { isTradingEnabled = true; tradingStartBlock = block.number; } function setBothFees( uint8 buy_liquidity, uint8 buy_marketing, uint8 sell_liquidity, uint8 sell_marketing ) external onlyOwner { buyFee.marketing = buy_marketing; buyFee.liquidity = buy_liquidity; sellFee.marketing = sell_marketing; sellFee.liquidity = sell_liquidity; } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } //to recieve ETH from uniswapV2Router when swapping receive() external payable {} function _getTValues(uint256 tAmount) private view returns ( uint256, uint256, uint256 ) { uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tWallet = calculateMarketingFee(tAmount); uint256 tTransferAmount = tAmount.sub(tLiquidity).sub(tWallet); return (tTransferAmount, tLiquidity, tWallet); } function _takeLiquidity(uint256 tLiquidity) private { _rOwned[address(this)] = _rOwned[address(this)].add(tLiquidity); } function _takeWalletFee(uint256 tWallet) private { _rOwned[address(this)] = _rOwned[address(this)].add(tWallet); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div(10**2); } function calculateMarketingFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_marketingFee).div(10**2); } function removeAllFee() private { _liquidityFee = 0; _marketingFee = 0; } function setBuy() private { _liquidityFee = buyFee.liquidity; _marketingFee = buyFee.marketing; } function setSell() private { _liquidityFee = sellFee.liquidity; _marketingFee = sellFee.marketing; } function isExcludedFromFee(address account) public view returns (bool) { return _isExcludedFromFee[account]; } function isExcludedFromLimit(address account) public view returns (bool) { return _isExcludedFromLimit[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"); require( !_isBlackListed[from] && !_isBlackListed[to], "Account is blacklisted" ); require( isTradingEnabled || _isExcludedFromFee[from], "Trading not enabled yet" ); // 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)); if (contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled ) { contractTokenBalance = numTokensSellToAddToLiquidity; //add liquidity swapAndLiquify(contractTokenBalance); } //indicates if fee should be deducted from transfer bool takeFee = true; //if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { takeFee = false; } if (takeFee) { if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) { require( amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount." ); if (block.number < tradingStartBlock + BLOCKCOUNT) { _isBlackListed[to] = true; } if (to != uniswapV2Pair) { require( amount + balanceOf(to) <= _maxWalletSize, "Recipient exceeds max wallet size." ); } } } //transfer amount, it will take liquidity fee _tokenTransfer(from, to, amount, takeFee); } function swapAndLiquify(uint256 tokens) private lockTheSwap { // Split the contract balance into halves uint256 denominator = (buyFee.liquidity + sellFee.liquidity + buyFee.marketing + sellFee.marketing) * 2; uint256 tokensToAddLiquidityWith = (tokens * (buyFee.liquidity + sellFee.liquidity)) / denominator; uint256 toSwap = tokens - tokensToAddLiquidityWith; uint256 initialBalance = address(this).balance; swapTokensForEth(toSwap); uint256 deltaBalance = address(this).balance - initialBalance; uint256 unitBalance = deltaBalance / (denominator - (buyFee.liquidity + sellFee.liquidity)); uint256 ethToAddLiquidityWith = unitBalance * (buyFee.liquidity + sellFee.liquidity); if (ethToAddLiquidityWith > 0) { // Add liquidity to uniswap addLiquidity(tokensToAddLiquidityWith, ethToAddLiquidityWith); } // Send ETH to marketing uint256 marketingAmt = unitBalance * 2 * (buyFee.marketing + sellFee.marketing); if (marketingAmt > 0) { payable(_marketingAddress).transfer(marketingAmt); } } 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 address(this), block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer( address sender, address recipient, uint256 amount, bool takeFee ) private { if (takeFee) { removeAllFee(); if (sender == uniswapV2Pair) { setBuy(); } if (recipient == uniswapV2Pair) { setSell(); } } _transferStandard(sender, recipient, amount); removeAllFee(); } function _transferStandard( address sender, address recipient, uint256 tAmount ) private { ( uint256 tTransferAmount, uint256 tLiquidity, uint256 tWallet ) = _getTValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(tAmount); _rOwned[recipient] = _rOwned[recipient].add(tTransferAmount); _takeLiquidity(tLiquidity); _takeWalletFee(tWallet); emit Transfer(sender, recipient, tTransferAmount); } }
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":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","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":"buyFee","outputs":[{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","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":"excludeFromLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInLimit","outputs":[],"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":"isExcludedFromLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"manualBlacklist","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"buy_liquidity","type":"uint8"},{"internalType":"uint8","name":"buy_marketing","type":"uint8"},{"internalType":"uint8","name":"sell_liquidity","type":"uint8"},{"internalType":"uint8","name":"sell_marketing","type":"uint8"}],"name":"setBothFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
69469604a4b21353340000600755600880546001600160a01b0319167324ab1233de79dfb5e6e2f676f9c0adf5a5a6c78b179055610100604052600b60c09081526a5448454f42534f4c45544560a81b60e0526009906200006190826200062a565b506040805180820190915260088152674f42534f4c45544560c01b6020820152600a906200009090826200062a565b50600b8054601260ff1991821617909155601080549091166001179055600754620000e690600a90620000d2906103e862000468602090811b62000a5b17901c565b620004bb60201b62000aa41790919060201c565b6011556200010d6002620000d26103e86007546200046860201b62000a5b1790919060201c565b601255620001346014620000d26103e86007546200046860201b62000a5b1790919060201c565b6013553480156200014457600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506007543360009081526002602090815260409182902092909255600c805461050161ffff199182168117909255600d80549091169091179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa1580156200020c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002329190620006f6565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000280573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a69190620006f6565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200031a9190620006f6565b6001600160a01b0390811660a0528116608052600160046000620003466000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600484528281208054861660019081179091556008805484168352848320805488168317905554909216815260059384905291822080549094168117909355620003c96000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526005909252902080549091166001179055620004113390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6007546040516200045991815260200190565b60405180910390a350620007ba565b6000620004b283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200054960201b60201c565b90505b92915050565b600082600003620004cf57506000620004b5565b6000620004dd838562000721565b905082620004ec858362000747565b14620004b25760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b600081836200056d5760405162461bcd60e51b81526004016200054091906200076a565b5060006200057c848662000747565b95945050505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005b057607f821691505b602082108103620005d157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200062557600081815260208120601f850160051c81016020861015620006005750805b601f850160051c820191505b8181101562000621578281556001016200060c565b5050505b505050565b81516001600160401b0381111562000646576200064662000585565b6200065e816200065784546200059b565b84620005d7565b602080601f8311600181146200069657600084156200067d5750858301515b600019600386901b1c1916600185901b17855562000621565b600085815260208120601f198616915b82811015620006c757888601518255948401946001909101908401620006a6565b5085821015620006e65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200070957600080fd5b81516001600160a01b0381168114620004b257600080fd5b8082028115828204841417620004b557634e487b7160e01b600052601160045260246000fd5b6000826200076557634e487b7160e01b600052601260045260246000fd5b500490565b600060208083528351808285015260005b8181101562000799578581018301518582016040015282016200077b565b506000604082860101526040601f19601f8301168501019250505092915050565b60805160a051611d486200081f600039600081816103a301528181610eb9015281816110460152818161134901526113af0152600081816102560152818161148b0152818161154401528181611580015281816115f2015261164e0152611d486000f3fe6080604052600436106101bb5760003560e01c80636c9bb93b116100ec57806391d919a91161008a578063c49b9a8011610064578063c49b9a801461054d578063d94160e01461056d578063dd62ed3e146105a6578063ea2f0b37146105ec57600080fd5b806391d919a9146104f857806395d89b4114610518578063a9059cbb1461052d57600080fd5b80637d1db4a5116100c65780637d1db4a5146104995780638a8c523c146104af5780638da5cb5b146104c45780638f9a55c0146104e257600080fd5b80636c9bb93b1461041e57806370a082311461044e578063715018a61461048457600080fd5b8063313ce567116101595780634706240211610133578063470624021461036e57806349bd5a5e146103915780635342acb4146103c55780635bf84d4a146103fe57600080fd5b8063313ce5671461030c5780633a17304a1461032e578063437823ec1461034e57600080fd5b80631694505e116101955780631694505e1461024457806318160ddd1461029057806323b872dd146102af5780632b14ca56146102cf57600080fd5b806306fdde03146101c7578063095ea7b3146101f25780630bd3a7f91461022257600080fd5b366101c257005b600080fd5b3480156101d357600080fd5b506101dc61060c565b6040516101e99190611905565b60405180910390f35b3480156101fe57600080fd5b5061021261020d36600461196b565b61069e565b60405190151581526020016101e9565b34801561022e57600080fd5b5061024261023d366004611997565b6106b5565b005b34801561025057600080fd5b506102787f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101e9565b34801561029c57600080fd5b506007545b6040519081526020016101e9565b3480156102bb57600080fd5b506102126102ca3660046119b4565b61070c565b3480156102db57600080fd5b50600d546102f29060ff8082169161010090041682565b6040805160ff9384168152929091166020830152016101e9565b34801561031857600080fd5b50600b5460405160ff90911681526020016101e9565b34801561033a57600080fd5b50610242610349366004611a0b565b610775565b34801561035a57600080fd5b50610242610369366004611997565b6107de565b34801561037a57600080fd5b50600c546102f29060ff8082169161010090041682565b34801561039d57600080fd5b506102787f000000000000000000000000000000000000000000000000000000000000000081565b3480156103d157600080fd5b506102126103e0366004611997565b6001600160a01b031660009081526004602052604090205460ff1690565b34801561040a57600080fd5b50610242610419366004611a6f565b61082c565b34801561042a57600080fd5b50610212610439366004611997565b60066020526000908152604090205460ff1681565b34801561045a57600080fd5b506102a1610469366004611997565b6001600160a01b031660009081526002602052604090205490565b34801561049057600080fd5b50610242610881565b3480156104a557600080fd5b506102a160115481565b3480156104bb57600080fd5b506102426108f5565b3480156104d057600080fd5b506000546001600160a01b0316610278565b3480156104ee57600080fd5b506102a160135481565b34801561050457600080fd5b50610242610513366004611997565b610938565b34801561052457600080fd5b506101dc610983565b34801561053957600080fd5b5061021261054836600461196b565b610992565b34801561055957600080fd5b50610242610568366004611aa4565b61099f565b34801561057957600080fd5b50610212610588366004611997565b6001600160a01b031660009081526005602052604090205460ff1690565b3480156105b257600080fd5b506102a16105c1366004611abf565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b3480156105f857600080fd5b50610242610607366004611997565b610a10565b60606009805461061b90611af8565b80601f016020809104026020016040519081016040528092919081815260200182805461064790611af8565b80156106945780601f1061066957610100808354040283529160200191610694565b820191906000526020600020905b81548152906001019060200180831161067757829003601f168201915b5050505050905090565b60006106ab338484610b26565b5060015b92915050565b6000546001600160a01b031633146106e85760405162461bcd60e51b81526004016106df90611b32565b60405180910390fd5b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6000610719848484610c4a565b61076b843361076685604051806060016040528060288152602001611ceb602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190611110565b610b26565b5060019392505050565b6000546001600160a01b0316331461079f5760405162461bcd60e51b81526004016106df90611b32565b600c805461ffff1990811661010060ff968716810260ff199081169290921797871697909717909255600d805490911692851690950216179116179055565b6000546001600160a01b031633146108085760405162461bcd60e51b81526004016106df90611b32565b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b6000546001600160a01b031633146108565760405162461bcd60e51b81526004016106df90611b32565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6000546001600160a01b031633146108ab5760405162461bcd60e51b81526004016106df90611b32565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461091f5760405162461bcd60e51b81526004016106df90611b32565b600e805463ff0000001916630100000017905543600f55565b6000546001600160a01b031633146109625760405162461bcd60e51b81526004016106df90611b32565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6060600a805461061b90611af8565b60006106ab338484610c4a565b6000546001600160a01b031633146109c95760405162461bcd60e51b81526004016106df90611b32565b6010805460ff19168215159081179091556040519081527f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599060200160405180910390a150565b6000546001600160a01b03163314610a3a5760405162461bcd60e51b81526004016106df90611b32565b6001600160a01b03166000908152600460205260409020805460ff19169055565b6000610a9d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061114a565b9392505050565b600082600003610ab6575060006106af565b6000610ac28385611b7d565b905082610acf8583611b94565b14610a9d5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016106df565b6001600160a01b038316610b885760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106df565b6001600160a01b038216610be95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106df565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610cae5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106df565b6001600160a01b038216610d105760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106df565b60008111610d725760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016106df565b6001600160a01b03831660009081526006602052604090205460ff16158015610db457506001600160a01b03821660009081526006602052604090205460ff16155b610df95760405162461bcd60e51b81526020600482015260166024820152751058d8dbdd5b9d081a5cc8189b1858dadb1a5cdd195960521b60448201526064016106df565b600e546301000000900460ff1680610e2957506001600160a01b03831660009081526004602052604090205460ff165b610e755760405162461bcd60e51b815260206004820152601760248201527f54726164696e67206e6f7420656e61626c65642079657400000000000000000060448201526064016106df565b306000908152600260205260409020546011548110610e9357506011545b60125481108015908190610eb05750600e5462010000900460ff16155b8015610eee57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015610efc575060105460ff165b15610f0f576012549150610f0f82611178565b6001600160a01b03851660009081526004602052604090205460019060ff1680610f5157506001600160a01b03851660009081526004602052604090205460ff165b15610f5a575060005b80156110fc576001600160a01b03861660009081526005602052604090205460ff16158015610fa257506001600160a01b03851660009081526005602052604090205460ff16155b156110fc5760115484111561100a5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016106df565b600f5461101990600a90611bb6565b431015611044576001600160a01b0385166000908152600660205260409020805460ff191660011790555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316146110fc576013546001600160a01b0386166000908152600260205260409020546110a39086611bb6565b11156110fc5760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b60648201526084016106df565b61110886868684611331565b505050505050565b600081848411156111345760405162461bcd60e51b81526004016106df9190611905565b5060006111418486611bc9565b95945050505050565b6000818361116b5760405162461bcd60e51b81526004016106df9190611905565b5060006111418486611b94565b600e805462ff0000191662010000179055600d54600c5460009161010080820460ff908116939182048116926111b2929082169116611bdc565b6111bc9190611bdc565b6111c69190611bdc565b6111d1906002611bf5565b600d54600c5460ff928316935060009284926111f1929082169116611bdc565b6111fe9060ff1685611b7d565b6112089190611b94565b905060006112168285611bc9565b90504761122282611434565b600061122e8247611bc9565b600d54600c5491925060009161124a9160ff9081169116611bdc565b6112579060ff1687611bc9565b6112619083611b94565b600d54600c5491925060009161127d9160ff9081169116611bdc565b61128a9060ff1683611b7d565b9050801561129c5761129c86826115ec565b600d54600c546000916112be9160ff6101009283900481169290910416611bdc565b60ff166112cc846002611b7d565b6112d69190611b7d565b9050801561131a576008546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611318573d6000803e3d6000fd5b505b5050600e805462ff00001916905550505050505050565b801561141357611347600e805461ffff19169055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316036113ad576113ad600c54600e805461010080840460ff90811690910261ffff19909216931692909217919091179055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03160361141357611413600d54600e805461010080840460ff90811690910261ffff19909216931692909217919091179055565b61141e8484846116cc565b61142e600e805461ffff19169055565b50505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061146957611469611c18565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061150b9190611c2e565b8160018151811061151e5761151e611c18565b60200260200101906001600160a01b031690816001600160a01b031681525050611569307f000000000000000000000000000000000000000000000000000000000000000084610b26565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906115be908590600090869030904290600401611c4b565b600060405180830381600087803b1580156115d857600080fd5b505af1158015611108573d6000803e3d6000fd5b611617307f000000000000000000000000000000000000000000000000000000000000000084610b26565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af11580156116a0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906116c59190611cbc565b5050505050565b60008060006116da846117b4565b6001600160a01b038916600090815260026020526040902054929550909350915061170590856117f6565b6001600160a01b0380881660009081526002602052604080822093909355908716815220546117349084611838565b6001600160a01b03861660009081526002602052604090205561175682611897565b61175f81611897565b846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516117a491815260200190565b60405180910390a3505050505050565b6000806000806117c3856118c4565b905060006117d0866118e5565b905060006117e8826117e289866117f6565b906117f6565b979296509094509092505050565b6000610a9d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611110565b6000806118458385611bb6565b905083811015610a9d5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016106df565b306000908152600260205260409020546118b19082611838565b3060009081526002602052604090205550565b600e546000906106af906064906118df90859060ff16610aa4565b90610a5b565b600e546000906106af906064906118df908590610100900460ff16610aa4565b600060208083528351808285015260005b8181101561193257858101830151858201604001528201611916565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461196857600080fd5b50565b6000806040838503121561197e57600080fd5b823561198981611953565b946020939093013593505050565b6000602082840312156119a957600080fd5b8135610a9d81611953565b6000806000606084860312156119c957600080fd5b83356119d481611953565b925060208401356119e481611953565b929592945050506040919091013590565b803560ff81168114611a0657600080fd5b919050565b60008060008060808587031215611a2157600080fd5b611a2a856119f5565b9350611a38602086016119f5565b9250611a46604086016119f5565b9150611a54606086016119f5565b905092959194509250565b80358015158114611a0657600080fd5b60008060408385031215611a8257600080fd5b8235611a8d81611953565b9150611a9b60208401611a5f565b90509250929050565b600060208284031215611ab657600080fd5b610a9d82611a5f565b60008060408385031215611ad257600080fd5b8235611add81611953565b91506020830135611aed81611953565b809150509250929050565b600181811c90821680611b0c57607f821691505b602082108103611b2c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106af576106af611b67565b600082611bb157634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156106af576106af611b67565b818103818111156106af576106af611b67565b60ff81811683821601908111156106af576106af611b67565b60ff8181168382160290811690818114611c1157611c11611b67565b5092915050565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611c4057600080fd5b8151610a9d81611953565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611c9b5784516001600160a01b031683529383019391830191600101611c76565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611cd157600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212209d679aa96148291bf0619e236bdba324c4b0aafd7088b083f7dae6420d5df00064736f6c63430008110033
Deployed Bytecode
0x6080604052600436106101bb5760003560e01c80636c9bb93b116100ec57806391d919a91161008a578063c49b9a8011610064578063c49b9a801461054d578063d94160e01461056d578063dd62ed3e146105a6578063ea2f0b37146105ec57600080fd5b806391d919a9146104f857806395d89b4114610518578063a9059cbb1461052d57600080fd5b80637d1db4a5116100c65780637d1db4a5146104995780638a8c523c146104af5780638da5cb5b146104c45780638f9a55c0146104e257600080fd5b80636c9bb93b1461041e57806370a082311461044e578063715018a61461048457600080fd5b8063313ce567116101595780634706240211610133578063470624021461036e57806349bd5a5e146103915780635342acb4146103c55780635bf84d4a146103fe57600080fd5b8063313ce5671461030c5780633a17304a1461032e578063437823ec1461034e57600080fd5b80631694505e116101955780631694505e1461024457806318160ddd1461029057806323b872dd146102af5780632b14ca56146102cf57600080fd5b806306fdde03146101c7578063095ea7b3146101f25780630bd3a7f91461022257600080fd5b366101c257005b600080fd5b3480156101d357600080fd5b506101dc61060c565b6040516101e99190611905565b60405180910390f35b3480156101fe57600080fd5b5061021261020d36600461196b565b61069e565b60405190151581526020016101e9565b34801561022e57600080fd5b5061024261023d366004611997565b6106b5565b005b34801561025057600080fd5b506102787f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016101e9565b34801561029c57600080fd5b506007545b6040519081526020016101e9565b3480156102bb57600080fd5b506102126102ca3660046119b4565b61070c565b3480156102db57600080fd5b50600d546102f29060ff8082169161010090041682565b6040805160ff9384168152929091166020830152016101e9565b34801561031857600080fd5b50600b5460405160ff90911681526020016101e9565b34801561033a57600080fd5b50610242610349366004611a0b565b610775565b34801561035a57600080fd5b50610242610369366004611997565b6107de565b34801561037a57600080fd5b50600c546102f29060ff8082169161010090041682565b34801561039d57600080fd5b506102787f00000000000000000000000097b943f9f5ee38ebb8936ab2199e3f58aaabd2ff81565b3480156103d157600080fd5b506102126103e0366004611997565b6001600160a01b031660009081526004602052604090205460ff1690565b34801561040a57600080fd5b50610242610419366004611a6f565b61082c565b34801561042a57600080fd5b50610212610439366004611997565b60066020526000908152604090205460ff1681565b34801561045a57600080fd5b506102a1610469366004611997565b6001600160a01b031660009081526002602052604090205490565b34801561049057600080fd5b50610242610881565b3480156104a557600080fd5b506102a160115481565b3480156104bb57600080fd5b506102426108f5565b3480156104d057600080fd5b506000546001600160a01b0316610278565b3480156104ee57600080fd5b506102a160135481565b34801561050457600080fd5b50610242610513366004611997565b610938565b34801561052457600080fd5b506101dc610983565b34801561053957600080fd5b5061021261054836600461196b565b610992565b34801561055957600080fd5b50610242610568366004611aa4565b61099f565b34801561057957600080fd5b50610212610588366004611997565b6001600160a01b031660009081526005602052604090205460ff1690565b3480156105b257600080fd5b506102a16105c1366004611abf565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b3480156105f857600080fd5b50610242610607366004611997565b610a10565b60606009805461061b90611af8565b80601f016020809104026020016040519081016040528092919081815260200182805461064790611af8565b80156106945780601f1061066957610100808354040283529160200191610694565b820191906000526020600020905b81548152906001019060200180831161067757829003601f168201915b5050505050905090565b60006106ab338484610b26565b5060015b92915050565b6000546001600160a01b031633146106e85760405162461bcd60e51b81526004016106df90611b32565b60405180910390fd5b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6000610719848484610c4a565b61076b843361076685604051806060016040528060288152602001611ceb602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190611110565b610b26565b5060019392505050565b6000546001600160a01b0316331461079f5760405162461bcd60e51b81526004016106df90611b32565b600c805461ffff1990811661010060ff968716810260ff199081169290921797871697909717909255600d805490911692851690950216179116179055565b6000546001600160a01b031633146108085760405162461bcd60e51b81526004016106df90611b32565b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b6000546001600160a01b031633146108565760405162461bcd60e51b81526004016106df90611b32565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6000546001600160a01b031633146108ab5760405162461bcd60e51b81526004016106df90611b32565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b0316331461091f5760405162461bcd60e51b81526004016106df90611b32565b600e805463ff0000001916630100000017905543600f55565b6000546001600160a01b031633146109625760405162461bcd60e51b81526004016106df90611b32565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6060600a805461061b90611af8565b60006106ab338484610c4a565b6000546001600160a01b031633146109c95760405162461bcd60e51b81526004016106df90611b32565b6010805460ff19168215159081179091556040519081527f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599060200160405180910390a150565b6000546001600160a01b03163314610a3a5760405162461bcd60e51b81526004016106df90611b32565b6001600160a01b03166000908152600460205260409020805460ff19169055565b6000610a9d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061114a565b9392505050565b600082600003610ab6575060006106af565b6000610ac28385611b7d565b905082610acf8583611b94565b14610a9d5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016106df565b6001600160a01b038316610b885760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106df565b6001600160a01b038216610be95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106df565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610cae5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106df565b6001600160a01b038216610d105760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106df565b60008111610d725760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016106df565b6001600160a01b03831660009081526006602052604090205460ff16158015610db457506001600160a01b03821660009081526006602052604090205460ff16155b610df95760405162461bcd60e51b81526020600482015260166024820152751058d8dbdd5b9d081a5cc8189b1858dadb1a5cdd195960521b60448201526064016106df565b600e546301000000900460ff1680610e2957506001600160a01b03831660009081526004602052604090205460ff165b610e755760405162461bcd60e51b815260206004820152601760248201527f54726164696e67206e6f7420656e61626c65642079657400000000000000000060448201526064016106df565b306000908152600260205260409020546011548110610e9357506011545b60125481108015908190610eb05750600e5462010000900460ff16155b8015610eee57507f00000000000000000000000097b943f9f5ee38ebb8936ab2199e3f58aaabd2ff6001600160a01b0316856001600160a01b031614155b8015610efc575060105460ff165b15610f0f576012549150610f0f82611178565b6001600160a01b03851660009081526004602052604090205460019060ff1680610f5157506001600160a01b03851660009081526004602052604090205460ff165b15610f5a575060005b80156110fc576001600160a01b03861660009081526005602052604090205460ff16158015610fa257506001600160a01b03851660009081526005602052604090205460ff16155b156110fc5760115484111561100a5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016106df565b600f5461101990600a90611bb6565b431015611044576001600160a01b0385166000908152600660205260409020805460ff191660011790555b7f00000000000000000000000097b943f9f5ee38ebb8936ab2199e3f58aaabd2ff6001600160a01b0316856001600160a01b0316146110fc576013546001600160a01b0386166000908152600260205260409020546110a39086611bb6565b11156110fc5760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b60648201526084016106df565b61110886868684611331565b505050505050565b600081848411156111345760405162461bcd60e51b81526004016106df9190611905565b5060006111418486611bc9565b95945050505050565b6000818361116b5760405162461bcd60e51b81526004016106df9190611905565b5060006111418486611b94565b600e805462ff0000191662010000179055600d54600c5460009161010080820460ff908116939182048116926111b2929082169116611bdc565b6111bc9190611bdc565b6111c69190611bdc565b6111d1906002611bf5565b600d54600c5460ff928316935060009284926111f1929082169116611bdc565b6111fe9060ff1685611b7d565b6112089190611b94565b905060006112168285611bc9565b90504761122282611434565b600061122e8247611bc9565b600d54600c5491925060009161124a9160ff9081169116611bdc565b6112579060ff1687611bc9565b6112619083611b94565b600d54600c5491925060009161127d9160ff9081169116611bdc565b61128a9060ff1683611b7d565b9050801561129c5761129c86826115ec565b600d54600c546000916112be9160ff6101009283900481169290910416611bdc565b60ff166112cc846002611b7d565b6112d69190611b7d565b9050801561131a576008546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611318573d6000803e3d6000fd5b505b5050600e805462ff00001916905550505050505050565b801561141357611347600e805461ffff19169055565b7f00000000000000000000000097b943f9f5ee38ebb8936ab2199e3f58aaabd2ff6001600160a01b0316846001600160a01b0316036113ad576113ad600c54600e805461010080840460ff90811690910261ffff19909216931692909217919091179055565b7f00000000000000000000000097b943f9f5ee38ebb8936ab2199e3f58aaabd2ff6001600160a01b0316836001600160a01b03160361141357611413600d54600e805461010080840460ff90811690910261ffff19909216931692909217919091179055565b61141e8484846116cc565b61142e600e805461ffff19169055565b50505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061146957611469611c18565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061150b9190611c2e565b8160018151811061151e5761151e611c18565b60200260200101906001600160a01b031690816001600160a01b031681525050611569307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610b26565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906115be908590600090869030904290600401611c4b565b600060405180830381600087803b1580156115d857600080fd5b505af1158015611108573d6000803e3d6000fd5b611617307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610b26565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af11580156116a0573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906116c59190611cbc565b5050505050565b60008060006116da846117b4565b6001600160a01b038916600090815260026020526040902054929550909350915061170590856117f6565b6001600160a01b0380881660009081526002602052604080822093909355908716815220546117349084611838565b6001600160a01b03861660009081526002602052604090205561175682611897565b61175f81611897565b846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516117a491815260200190565b60405180910390a3505050505050565b6000806000806117c3856118c4565b905060006117d0866118e5565b905060006117e8826117e289866117f6565b906117f6565b979296509094509092505050565b6000610a9d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611110565b6000806118458385611bb6565b905083811015610a9d5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016106df565b306000908152600260205260409020546118b19082611838565b3060009081526002602052604090205550565b600e546000906106af906064906118df90859060ff16610aa4565b90610a5b565b600e546000906106af906064906118df908590610100900460ff16610aa4565b600060208083528351808285015260005b8181101561193257858101830151858201604001528201611916565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461196857600080fd5b50565b6000806040838503121561197e57600080fd5b823561198981611953565b946020939093013593505050565b6000602082840312156119a957600080fd5b8135610a9d81611953565b6000806000606084860312156119c957600080fd5b83356119d481611953565b925060208401356119e481611953565b929592945050506040919091013590565b803560ff81168114611a0657600080fd5b919050565b60008060008060808587031215611a2157600080fd5b611a2a856119f5565b9350611a38602086016119f5565b9250611a46604086016119f5565b9150611a54606086016119f5565b905092959194509250565b80358015158114611a0657600080fd5b60008060408385031215611a8257600080fd5b8235611a8d81611953565b9150611a9b60208401611a5f565b90509250929050565b600060208284031215611ab657600080fd5b610a9d82611a5f565b60008060408385031215611ad257600080fd5b8235611add81611953565b91506020830135611aed81611953565b809150509250929050565b600181811c90821680611b0c57607f821691505b602082108103611b2c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106af576106af611b67565b600082611bb157634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156106af576106af611b67565b818103818111156106af576106af611b67565b60ff81811683821601908111156106af576106af611b67565b60ff8181168382160290811690818114611c1157611c11611b67565b5092915050565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611c4057600080fd5b8151610a9d81611953565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611c9b5784516001600160a01b031683529383019391830191600101611c76565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611cd157600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212209d679aa96148291bf0619e236bdba324c4b0aafd7088b083f7dae6420d5df00064736f6c63430008110033
Deployed Bytecode Sourcemap
24862:14077:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27811:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28715:193;;;;;;;;;;-1:-1:-1;28715:193:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;28715:193:0;1023:187:1;29611:115:0;;;;;;;;;;-1:-1:-1;29611:115:0;;;;;:::i;:::-;;:::i;:::-;;25864:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;25864:51:0;1467:230:1;28088:95:0;;;;;;;;;;-1:-1:-1;28168:7:0;;28088:95;;;1848:25:1;;;1836:2;1821:18;28088:95:0;1702:177:1;28916:446:0;;;;;;;;;;-1:-1:-1;28916:446:0;;;;;:::i;:::-;;:::i;25763:22::-;;;;;;;;;;-1:-1:-1;25763:22:0;;;;;;;;;;;;;;;;;;;2541:4:1;2529:17;;;2511:36;;2583:17;;;;2578:2;2563:18;;2556:45;2484:18;25763:22:0;2345:262:1;27997:83:0;;;;;;;;;;-1:-1:-1;28063:9:0;;27997:83;;28063:9;;;;2754:36:1;;2742:2;2727:18;27997:83:0;2612:184:1;30117:357:0;;;;;;;;;;-1:-1:-1;30117:357:0;;;;;:::i;:::-;;:::i;29374:111::-;;;;;;;;;;-1:-1:-1;29374:111:0;;;;;:::i;:::-;;:::i;25736:20::-;;;;;;;;;;-1:-1:-1;25736:20:0;;;;;;;;;;;;;;;25922:38;;;;;;;;;;;;;;;32227:124;;;;;;;;;;-1:-1:-1;32227:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;32316:27:0;32292:4;32316:27;;;:18;:27;;;;;;;;;32227:124;29855:117;;;;;;;;;;-1:-1:-1;29855:117:0;;;;;:::i;:::-;;:::i;25231:46::-;;;;;;;;;;-1:-1:-1;25231:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;28191:117;;;;;;;;;;-1:-1:-1;28191:117:0;;;;;:::i;:::-;-1:-1:-1;;;;;28284:16:0;28257:7;28284:16;;;:7;:16;;;;;;;28191:117;15362:148;;;;;;;;;;;;;:::i;26144:55::-;;;;;;;;;;;;;;;;29978:129;;;;;;;;;;;;;:::i;14720:79::-;;;;;;;;;;-1:-1:-1;14758:7:0;14785:6;-1:-1:-1;;;;;14785:6:0;14720:79;;26297:57;;;;;;;;;;;;;;;;29734:114;;;;;;;;;;-1:-1:-1;29734:114:0;;;;;:::i;:::-;;:::i;27902:87::-;;;;;;;;;;;;;:::i;28316:199::-;;;;;;;;;;-1:-1:-1;28316:199:0;;;;;:::i;:::-;;:::i;30484:171::-;;;;;;;;;;-1:-1:-1;30484:171:0;;;;;:::i;:::-;;:::i;32359:128::-;;;;;;;;;;-1:-1:-1;32359:128:0;;;;;:::i;:::-;-1:-1:-1;;;;;32450:29:0;32426:4;32450:29;;;:20;:29;;;;;;;;;32359:128;28523:184;;;;;;;;;;-1:-1:-1;28523:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;28672:18:0;;;28640:7;28672:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28523:184;29493:110;;;;;;;;;;-1:-1:-1;29493:110:0;;;;;:::i;:::-;;:::i;27811:83::-;27848:13;27881:5;27874:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27811:83;:::o;28715:193::-;28817:4;28839:39;7564:10;28862:7;28871:6;28839:8;:39::i;:::-;-1:-1:-1;28896:4:0;28715:193;;;;;:::o;29611:115::-;14932:6;;-1:-1:-1;;;;;14932:6:0;7564:10;14932:22;14924:67;;;;-1:-1:-1;;;14924:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;29682:29:0::1;;::::0;;;:20:::1;:29;::::0;;;;:36;;-1:-1:-1;;29682:36:0::1;29714:4;29682:36;::::0;;29611:115::o;28916:446::-;29048:4;29065:36;29075:6;29083:9;29094:6;29065:9;:36::i;:::-;29112:220;29135:6;7564:10;29183:138;29239:6;29183:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29183:19:0;;;;;;:11;:19;;;;;;;;7564:10;29183:33;;;;;;;;;;:37;:138::i;:::-;29112:8;:220::i;:::-;-1:-1:-1;29350:4:0;28916:446;;;;;:::o;30117:357::-;14932:6;;-1:-1:-1;;;;;14932:6:0;7564:10;14932:22;14924:67;;;;-1:-1:-1;;;14924:67:0;;;;;;;:::i;:::-;30299:6:::1;:32:::0;;-1:-1:-1;;30342:32:0;;;30299::::1;;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;30342:32:0;;;;;;;;;::::1;::::0;;;::::1;::::0;;;30387:7:::1;:34:::0;;30432;;;30387;;::::1;::::0;;::::1;30432::::0;;;::::1;;::::0;;30117:357::o;29374:111::-;14932:6;;-1:-1:-1;;;;;14932:6:0;7564:10;14932:22;14924:67;;;;-1:-1:-1;;;14924:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29443:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;29443:34:0::1;29473:4;29443:34;::::0;;29374:111::o;29855:117::-;14932:6;;-1:-1:-1;;;;;14932:6:0;7564:10;14932:22;14924:67;;;;-1:-1:-1;;;14924:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29936:20:0;;;::::1;;::::0;;;:14:::1;:20;::::0;;;;:28;;-1:-1:-1;;29936:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29855:117::o;15362:148::-;14932:6;;-1:-1:-1;;;;;14932:6:0;7564:10;14932:22;14924:67;;;;-1:-1:-1;;;14924:67:0;;;;;;;:::i;:::-;15469:1:::1;15453:6:::0;;15432:40:::1;::::0;-1:-1:-1;;;;;15453:6:0;;::::1;::::0;15432:40:::1;::::0;15469:1;;15432:40:::1;15500:1;15483:19:::0;;-1:-1:-1;;;;;;15483:19:0::1;::::0;;15362:148::o;29978:129::-;14932:6;;-1:-1:-1;;;;;14932:6:0;7564:10;14932:22;14924:67;;;;-1:-1:-1;;;14924:67:0;;;;;;;:::i;:::-;30033:16:::1;:23:::0;;-1:-1:-1;;30033:23:0::1;::::0;::::1;::::0;;30087:12:::1;30067:17;:32:::0;29978:129::o;29734:114::-;14932:6;;-1:-1:-1;;;;;14932:6:0;7564:10;14932:22;14924:67;;;;-1:-1:-1;;;14924:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29803:29:0::1;29835:5;29803:29:::0;;;:20:::1;:29;::::0;;;;:37;;-1:-1:-1;;29803:37:0::1;::::0;;29734:114::o;27902:87::-;27941:13;27974:7;27967:14;;;;;:::i;28316:199::-;28421:4;28443:42;7564:10;28467:9;28478:6;28443:9;:42::i;30484:171::-;14932:6;;-1:-1:-1;;;;;14932:6:0;7564:10;14932:22;14924:67;;;;-1:-1:-1;;;14924:67:0;;;;;;;:::i;:::-;30561:21:::1;:32:::0;;-1:-1:-1;;30561:32:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30609:38:::1;::::0;1163:41:1;;;30609:38:0::1;::::0;1151:2:1;1136:18;30609:38:0::1;;;;;;;30484:171:::0;:::o;29493:110::-;14932:6;;-1:-1:-1;;;;;14932:6:0;7564:10;14932:22;14924:67;;;;-1:-1:-1;;;14924:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29560:27:0::1;29590:5;29560:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;29560:35:0::1;::::0;;29493:110::o;5208:132::-;5266:7;5293:39;5297:1;5300;5293:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5286:46;5208:132;-1:-1:-1;;;5208:132:0:o;4713:252::-;4771:7;4797:1;4802;4797:6;4793:47;;-1:-1:-1;4827:1:0;4820:8;;4793:47;4852:9;4864:5;4868:1;4864;:5;:::i;:::-;4852:17;-1:-1:-1;4897:1:0;4888:5;4892:1;4852:17;4888:5;:::i;:::-;:10;4880:56;;;;-1:-1:-1;;;4880:56:0;;6106:2:1;4880:56:0;;;6088:21:1;6145:2;6125:18;;;6118:30;6184:34;6164:18;;;6157:62;-1:-1:-1;;;6235:18:1;;;6228:31;6276:19;;4880:56:0;5904:397:1;32495:371:0;-1:-1:-1;;;;;32622:19:0;;32614:68;;;;-1:-1:-1;;;32614:68:0;;6508:2:1;32614:68:0;;;6490:21:1;6547:2;6527:18;;;6520:30;6586:34;6566:18;;;6559:62;-1:-1:-1;;;6637:18:1;;;6630:34;6681:19;;32614:68:0;6306:400:1;32614:68:0;-1:-1:-1;;;;;32701:21:0;;32693:68;;;;-1:-1:-1;;;32693:68:0;;6913:2:1;32693:68:0;;;6895:21:1;6952:2;6932:18;;;6925:30;6991:34;6971:18;;;6964:62;-1:-1:-1;;;7042:18:1;;;7035:32;7084:19;;32693:68:0;6711:398:1;32693:68:0;-1:-1:-1;;;;;32774:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;32826:32;;1848:25:1;;;32826:32:0;;1821:18:1;32826:32:0;;;;;;;32495:371;;;:::o;32874:2634::-;-1:-1:-1;;;;;32996:18:0;;32988:68;;;;-1:-1:-1;;;32988:68:0;;7316:2:1;32988:68:0;;;7298:21:1;7355:2;7335:18;;;7328:30;7394:34;7374:18;;;7367:62;-1:-1:-1;;;7445:18:1;;;7438:35;7490:19;;32988:68:0;7114:401:1;32988:68:0;-1:-1:-1;;;;;33075:16:0;;33067:64;;;;-1:-1:-1;;;33067:64:0;;7722:2:1;33067:64:0;;;7704:21:1;7761:2;7741:18;;;7734:30;7800:34;7780:18;;;7773:62;-1:-1:-1;;;7851:18:1;;;7844:33;7894:19;;33067:64:0;7520:399:1;33067:64:0;33159:1;33150:6;:10;33142:64;;;;-1:-1:-1;;;33142:64:0;;8126:2:1;33142:64:0;;;8108:21:1;8165:2;8145:18;;;8138:30;8204:34;8184:18;;;8177:62;-1:-1:-1;;;8255:18:1;;;8248:39;8304:19;;33142:64:0;7924:405:1;33142:64:0;-1:-1:-1;;;;;33240:20:0;;;;;;:14;:20;;;;;;;;33239:21;:44;;;;-1:-1:-1;;;;;;33265:18:0;;;;;;:14;:18;;;;;;;;33264:19;33239:44;33217:116;;;;-1:-1:-1;;;33217:116:0;;8536:2:1;33217:116:0;;;8518:21:1;8575:2;8555:18;;;8548:30;-1:-1:-1;;;8594:18:1;;;8587:52;8656:18;;33217:116:0;8334:346:1;33217:116:0;33353:16;;;;;;;;:44;;-1:-1:-1;;;;;;33373:24:0;;;;;;:18;:24;;;;;;;;33353:44;33344:104;;;;-1:-1:-1;;;33344:104:0;;8887:2:1;33344:104:0;;;8869:21:1;8926:2;8906:18;;;8899:30;8965:25;8945:18;;;8938:53;9008:18;;33344:104:0;8685:347:1;33344:104:0;33812:4;33763:28;28284:16;;;:7;:16;;;;;;33859:12;;33835:36;;33831:104;;-1:-1:-1;33911:12:0;;33831:104;34011:29;;33974:66;;;;;;;34069:53;;-1:-1:-1;34106:16:0;;;;;;;34105:17;34069:53;:91;;;;;34147:13;-1:-1:-1;;;;;34139:21:0;:4;-1:-1:-1;;;;;34139:21:0;;;34069:91;:129;;;;-1:-1:-1;34177:21:0;;;;34069:129;34051:318;;;34248:29;;34225:52;;34321:36;34336:20;34321:14;:36::i;:::-;-1:-1:-1;;;;;34562:24:0;;34442:12;34562:24;;;:18;:24;;;;;;34457:4;;34562:24;;;:50;;-1:-1:-1;;;;;;34590:22:0;;;;;;:18;:22;;;;;;;;34562:50;34558:98;;;-1:-1:-1;34639:5:0;34558:98;34680:7;34676:716;;;-1:-1:-1;;;;;34709:26:0;;;;;;:20;:26;;;;;;;;34708:27;:56;;;;-1:-1:-1;;;;;;34740:24:0;;;;;;:20;:24;;;;;;;;34739:25;34708:56;34704:677;;;34825:12;;34815:6;:22;;34785:158;;;;-1:-1:-1;;;34785:158:0;;9239:2:1;34785:158:0;;;9221:21:1;9278:2;9258:18;;;9251:30;9317:34;9297:18;;;9290:62;-1:-1:-1;;;9368:18:1;;;9361:38;9416:19;;34785:158:0;9037:404:1;34785:158:0;34981:17;;:30;;26093:2;;34981:30;:::i;:::-;34966:12;:45;34962:122;;;-1:-1:-1;;;;;35036:18:0;;;;;;:14;:18;;;;;:25;;-1:-1:-1;;35036:25:0;35057:4;35036:25;;;34962:122;35130:13;-1:-1:-1;;;;;35124:19:0;:2;-1:-1:-1;;;;;35124:19:0;;35120:228;;35228:14;;-1:-1:-1;;;;;28284:16:0;;28257:7;28284:16;;;:7;:16;;;;;;35202:22;;:6;:22;:::i;:::-;:40;;35168:160;;;;-1:-1:-1;;;35168:160:0;;9778:2:1;35168:160:0;;;9760:21:1;9817:2;9797:18;;;9790:30;9856:34;9836:18;;;9829:62;-1:-1:-1;;;9907:18:1;;;9900:32;9949:19;;35168:160:0;9576:398:1;35168:160:0;35459:41;35474:4;35480:2;35484:6;35492:7;35459:14;:41::i;:::-;32977:2531;;;32874:2634;;;:::o;4228:226::-;4348:7;4384:12;4376:6;;;;4368:29;;;;-1:-1:-1;;;4368:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4408:9:0;4420:5;4424:1;4420;:5;:::i;:::-;4408:17;4228:226;-1:-1:-1;;;;;4228:226:0:o;5836:312::-;5956:7;5991:12;5984:5;5976:28;;;;-1:-1:-1;;;5976:28:0;;;;;;;;:::i;:::-;-1:-1:-1;6015:9:0;6027:5;6031:1;6027;:5;:::i;35516:1195::-;26661:16;:23;;-1:-1:-1;;26661:23:0;;;;;35719:7:::1;:17:::0;35700:6:::1;:16:::0;26661:23;;;35719:17;;::::1;26661:23:::0;35719:17;;::::1;::::0;35700:16;;::::1;::::0;::::1;::::0;35661:36:::1;::::0;35680:17;;::::1;::::0;35661:16:::1;:36;:::i;:::-;:55;;;;:::i;:::-;:75;;;;:::i;:::-;35660:81;::::0;35740:1:::1;35660:81;:::i;:::-;35817:7;:17:::0;35798:6:::1;:16:::0;35638:103:::1;::::0;;::::1;::::0;-1:-1:-1;35752:32:0::1;::::0;35638:103;;35798:36:::1;::::0;35817:17;;::::1;::::0;35798:16:::1;:36;:::i;:::-;35788:47;::::0;::::1;;:6:::0;:47:::1;:::i;:::-;35787:63;;;;:::i;:::-;35752:98:::0;-1:-1:-1;35861:14:0::1;35878:33;35752:98:::0;35878:6;:33:::1;:::i;:::-;35861:50:::0;-1:-1:-1;35949:21:0::1;35983:24;35861:50:::0;35983:16:::1;:24::i;:::-;36020:20;36043:38;36067:14:::0;36043:21:::1;:38;:::i;:::-;36164:7;:17:::0;36145:6:::1;:16:::0;36020:61;;-1:-1:-1;36092:19:0::1;::::0;36145:36:::1;::::0;36164:17:::1;::::0;;::::1;::::0;36145:16:::1;:36;:::i;:::-;36130:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;36114:69;::::0;:12;:69:::1;:::i;:::-;36260:7;:17:::0;36241:6:::1;:16:::0;36092:91;;-1:-1:-1;36194:29:0::1;::::0;36241:36:::1;::::0;36260:17:::1;::::0;;::::1;::::0;36241:16:::1;:36;:::i;:::-;36226:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;36194:84:::0;-1:-1:-1;36295:25:0;;36291:160:::1;;36378:61;36391:24;36417:21;36378:12;:61::i;:::-;36558:7;:17:::0;36539:6:::1;:16:::0;36497:20:::1;::::0;36539:36:::1;::::0;36558:17:::1;;::::0;;;::::1;::::0;::::1;::::0;36539:16;;::::1;;:36;:::i;:::-;36520:56;;:15;:11:::0;36534:1:::1;36520:15;:::i;:::-;:56;;;;:::i;:::-;36497:79:::0;-1:-1:-1;36602:16:0;;36598:98:::1;;36643:17;::::0;36635:49:::1;::::0;-1:-1:-1;;;;;36643:17:0;;::::1;::::0;36635:49;::::1;;;::::0;36671:12;;36643:17:::1;36635:49:::0;36643:17;36635:49;36671:12;36643:17;36635:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;36598:98;-1:-1:-1::0;;26707:16:0;:24;;-1:-1:-1;;26707:24:0;;;-1:-1:-1;;;;;;;35516:1195:0:o;37916:472::-;38071:7;38067:230;;;38095:14;31884:13;:17;;-1:-1:-1;;31912:17:0;;;31841:103;38095:14;38138:13;-1:-1:-1;;;;;38128:23:0;:6;-1:-1:-1;;;;;38128:23:0;;38124:72;;38172:8;32005:6;:16;31989:13;:32;;32005:16;32048;;;32005;32048;;;32032:32;;;-1:-1:-1;;32032:32:0;;;32005:16;;32032:32;;;;;;;;;;31952:128;38172:8;38227:13;-1:-1:-1;;;;;38214:26:0;:9;-1:-1:-1;;;;;38214:26:0;;38210:76;;38261:9;32142:7;:17;32126:13;:33;;32142:17;32186;;;32142;32186;;;32170:33;;;-1:-1:-1;;32170:33:0;;;32142:17;;32170:33;;;;;;;;;;32088:131;38261:9;38309:44;38327:6;38335:9;38346:6;38309:17;:44::i;:::-;38366:14;31884:13;:17;;-1:-1:-1;;31912:17:0;;;31841:103;38366:14;37916:472;;;;:::o;36719:589::-;36869:16;;;36883:1;36869:16;;;;;;;;36845:21;;36869:16;;;;;;;;;;-1:-1:-1;36869:16:0;36845:40;;36914:4;36896;36901:1;36896:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;36896:23:0;;;-1:-1:-1;;;;;36896:23:0;;;;;36940:15;-1:-1:-1;;;;;36940:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36930:4;36935:1;36930:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;36930:32:0;;;-1:-1:-1;;;;;36930:32:0;;;;;36975:62;36992:4;37007:15;37025:11;36975:8;:62::i;:::-;37076:224;;-1:-1:-1;;;37076:224:0;;-1:-1:-1;;;;;37076:15:0;:66;;;;:224;;37157:11;;37183:1;;37227:4;;37254;;37274:15;;37076:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37316:519;37464:62;37481:4;37496:15;37514:11;37464:8;:62::i;:::-;37569:258;;-1:-1:-1;;;37569:258:0;;37641:4;37569:258;;;12341:34:1;;;12391:18;;;12384:34;;;37687:1:0;12434:18:1;;;12427:34;;;12477:18;;;12470:34;12520:19;;;12513:44;37801:15:0;12573:19:1;;;12566:35;37569:15:0;-1:-1:-1;;;;;37569:31:0;;;;37608:9;;12275:19:1;;37569:258:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;37316:519;;:::o;38396:536::-;38543:23;38581:18;38614:15;38643:20;38655:7;38643:11;:20::i;:::-;-1:-1:-1;;;;;38694:15:0;;;;;;:7;:15;;;;;;38528:135;;-1:-1:-1;38528:135:0;;-1:-1:-1;38528:135:0;-1:-1:-1;38694:28:0;;38714:7;38694:19;:28::i;:::-;-1:-1:-1;;;;;38676:15:0;;;;;;;:7;:15;;;;;;:46;;;;38754:18;;;;;;;:39;;38777:15;38754:22;:39::i;:::-;-1:-1:-1;;;;;38733:18:0;;;;;;:7;:18;;;;;:60;38804:26;38819:10;38804:14;:26::i;:::-;38841:23;38856:7;38841:14;:23::i;:::-;38897:9;-1:-1:-1;;;;;38880:44:0;38889:6;-1:-1:-1;;;;;38880:44:0;;38908:15;38880:44;;;;1848:25:1;;1836:2;1821:18;;1702:177;38880:44:0;;;;;;;;38517:415;;;38396:536;;;:::o;30757:429::-;30858:7;30880;30902;30937:18;30958:30;30980:7;30958:21;:30::i;:::-;30937:51;;30999:15;31017:30;31039:7;31017:21;:30::i;:::-;30999:48;-1:-1:-1;31058:23:0;31084:36;30999:48;31084:23;:7;31096:10;31084:11;:23::i;:::-;:27;;:36::i;:::-;31058:62;31158:10;;-1:-1:-1;31170:7:0;;-1:-1:-1;30757:429:0;;-1:-1:-1;;;30757:429:0:o;3789:136::-;3847:7;3874:43;3878:1;3881;3874:43;;;;;;;;;;;;;;;;;:3;:43::i;3325:181::-;3383:7;;3415:5;3419:1;3415;:5;:::i;:::-;3403:17;;3444:1;3439;:6;;3431:46;;;;-1:-1:-1;;;3431:46:0;;13125:2:1;3431:46:0;;;13107:21:1;13164:2;13144:18;;;13137:30;13203:29;13183:18;;;13176:57;13250:18;;3431:46:0;12923:351:1;31194:134:0;31298:4;31282:22;;;;:7;:22;;;;;;:38;;31309:10;31282:26;:38::i;:::-;31273:4;31257:22;;;;:7;:22;;;;;:63;-1:-1:-1;31194:134:0:o;31472:174::-;31613:13;;31569:7;;31601:37;;31632:5;;31601:26;;:7;;31613:13;;31601:11;:26::i;:::-;:30;;:37::i;31654:174::-;31795:13;;31751:7;;31783:37;;31814:5;;31783:26;;:7;;31795:13;;;;;31783:11;:26::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:1;2315:18;;;;2302:32;;1884:456::o;2801:156::-;2867:20;;2927:4;2916:16;;2906:27;;2896:55;;2947:1;2944;2937:12;2896:55;2801:156;;;:::o;2962:393::-;3040:6;3048;3056;3064;3117:3;3105:9;3096:7;3092:23;3088:33;3085:53;;;3134:1;3131;3124:12;3085:53;3157:27;3174:9;3157:27;:::i;:::-;3147:37;;3203:36;3235:2;3224:9;3220:18;3203:36;:::i;:::-;3193:46;;3258:36;3290:2;3279:9;3275:18;3258:36;:::i;:::-;3248:46;;3313:36;3345:2;3334:9;3330:18;3313:36;:::i;:::-;3303:46;;2962:393;;;;;;;:::o;3568:160::-;3633:20;;3689:13;;3682:21;3672:32;;3662:60;;3718:1;3715;3708:12;3733:315;3798:6;3806;3859:2;3847:9;3838:7;3834:23;3830:32;3827:52;;;3875:1;3872;3865:12;3827:52;3914:9;3901:23;3933:31;3958:5;3933:31;:::i;:::-;3983:5;-1:-1:-1;4007:35:1;4038:2;4023:18;;4007:35;:::i;:::-;3997:45;;3733:315;;;;;:::o;4053:180::-;4109:6;4162:2;4150:9;4141:7;4137:23;4133:32;4130:52;;;4178:1;4175;4168:12;4130:52;4201:26;4217:9;4201:26;:::i;4238:388::-;4306:6;4314;4367:2;4355:9;4346:7;4342:23;4338:32;4335:52;;;4383:1;4380;4373:12;4335:52;4422:9;4409:23;4441:31;4466:5;4441:31;:::i;:::-;4491:5;-1:-1:-1;4548:2:1;4533:18;;4520:32;4561:33;4520:32;4561:33;:::i;:::-;4613:7;4603:17;;;4238:388;;;;;:::o;4631:380::-;4710:1;4706:12;;;;4753;;;4774:61;;4828:4;4820:6;4816:17;4806:27;;4774:61;4881:2;4873:6;4870:14;4850:18;4847:38;4844:161;;4927:10;4922:3;4918:20;4915:1;4908:31;4962:4;4959:1;4952:15;4990:4;4987:1;4980:15;4844:161;;4631:380;;;:::o;5016:356::-;5218:2;5200:21;;;5237:18;;;5230:30;5296:34;5291:2;5276:18;;5269:62;5363:2;5348:18;;5016:356::o;5377:127::-;5438:10;5433:3;5429:20;5426:1;5419:31;5469:4;5466:1;5459:15;5493:4;5490:1;5483:15;5509:168;5582:9;;;5613;;5630:15;;;5624:22;;5610:37;5600:71;;5651:18;;:::i;5682:217::-;5722:1;5748;5738:132;;5792:10;5787:3;5783:20;5780:1;5773:31;5827:4;5824:1;5817:15;5855:4;5852:1;5845:15;5738:132;-1:-1:-1;5884:9:1;;5682:217::o;9446:125::-;9511:9;;;9532:10;;;9529:36;;;9545:18;;:::i;9979:128::-;10046:9;;;10067:11;;;10064:37;;;10081:18;;:::i;10112:148::-;10200:4;10179:12;;;10193;;;10175:31;;10218:13;;10215:39;;;10234:18;;:::i;10265:225::-;10369:4;10348:12;;;10362;;;10344:31;10395:22;;;;10436:24;;;10426:58;;10464:18;;:::i;:::-;10426:58;10265:225;;;;:::o;10627:127::-;10688:10;10683:3;10679:20;10676:1;10669:31;10719:4;10716:1;10709:15;10743:4;10740:1;10733:15;10759:251;10829:6;10882:2;10870:9;10861:7;10857:23;10853:32;10850:52;;;10898:1;10895;10888:12;10850:52;10930:9;10924:16;10949:31;10974:5;10949:31;:::i;11015:980::-;11277:4;11325:3;11314:9;11310:19;11356:6;11345:9;11338:25;11382:2;11420:6;11415:2;11404:9;11400:18;11393:34;11463:3;11458:2;11447:9;11443:18;11436:31;11487:6;11522;11516:13;11553:6;11545;11538:22;11591:3;11580:9;11576:19;11569:26;;11630:2;11622:6;11618:15;11604:29;;11651:1;11661:195;11675:6;11672:1;11669:13;11661:195;;;11740:13;;-1:-1:-1;;;;;11736:39:1;11724:52;;11831:15;;;;11796:12;;;;11772:1;11690:9;11661:195;;;-1:-1:-1;;;;;;;11912:32:1;;;;11907:2;11892:18;;11885:60;-1:-1:-1;;;11976:3:1;11961:19;11954:35;11873:3;11015:980;-1:-1:-1;;;11015:980:1:o;12612:306::-;12700:6;12708;12716;12769:2;12757:9;12748:7;12744:23;12740:32;12737:52;;;12785:1;12782;12775:12;12737:52;12814:9;12808:16;12798:26;;12864:2;12853:9;12849:18;12843:25;12833:35;;12908:2;12897:9;12893:18;12887:25;12877:35;;12612:306;;;;;:::o
Swarm Source
ipfs://9d679aa96148291bf0619e236bdba324c4b0aafd7088b083f7dae6420d5df000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.