Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000,000,000,000,000,000 BAPE
Holders
58
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
448,259.002632433 BAPEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BabyApeCoin
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-17 */ // https://t.me/BabyApeCoin_Eth pragma solidity ^0.8.10; // 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 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. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue( address target, bytes memory data, uint256 weiValue, string memory errorMessage ) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value: weiValue}( data ); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; address private _previousOwner; uint256 private _lockTime; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } function geUnlockTime() public view returns (uint256) { return _lockTime; } //Locks the contract for owner for the amount of time provided function lock(uint256 time) public virtual onlyOwner { _previousOwner = _owner; _owner = address(0); _lockTime = block.timestamp + time; emit OwnershipTransferred(_owner, address(0)); } //Unlocks the contract for owner when _lockTime is exceeds function unlock() public virtual { require( _previousOwner == msg.sender, "You don't have permission to unlock" ); require(block.timestamp > _lockTime, "Contract is locked until a later date"); emit OwnershipTransferred(_owner, _previousOwner); _owner = _previousOwner; _previousOwner = address(0); } } // pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // pragma solidity >=0.5.0; 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; } // pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } // pragma solidity >=0.6.2; 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 BabyApeCoin 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; mapping(address => bool) private _isBlackListedBot; mapping(address => bool) private _isExcludedFromLimit; address[] private _blackListedBots; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 100 * 10**21 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; address payable public _marketingAddress = payable(address(0xaa6d384a13b0C2776A904b01cf747a37B4Fac980)); address payable public _devwallet = payable(address(0x2795aB83A2Dbba745126A0336be1E829a8a1f0Ff)); address public _exchangewallet = payable(address(0x2795aB83A2Dbba745126A0336be1E829a8a1f0Ff)); address _partnershipswallet = payable(address(0x2795aB83A2Dbba745126A0336be1E829a8a1f0Ff)); address private _donationAddress = 0x000000000000000000000000000000000000dEaD; string private _name = "BabyApeCoin"; string private _symbol = "BAPE"; uint8 private _decimals = 9; struct BuyFee { uint16 tax; uint16 liquidity; uint16 marketing; uint16 dev; uint16 donation; } struct SellFee { uint16 tax; uint16 liquidity; uint16 marketing; uint16 dev; uint16 donation; } BuyFee public buyFee; SellFee public sellFee; uint16 private _taxFee; uint16 private _liquidityFee; uint16 private _marketingFee; uint16 private _devFee; uint16 private _donationFee; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public _maxTxAmount = 50 * 10**19 * 10**9; uint256 private numTokensSellToAddToLiquidity = 100 * 10**19 * 10**9; uint256 public _maxWalletSize = 100 * 10**19 * 10**9; event botAddedToBlacklist(address account); event botRemovedFromBlacklist(address account); event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor() { _rOwned[_msgSender()] = _rTotal; buyFee.tax = 0; buyFee.liquidity = 1; buyFee.marketing = 6; buyFee.dev = 3; buyFee.donation = 0; sellFee.tax = 0; sellFee.liquidity = 1; sellFee.marketing = 6; sellFee.dev = 3; sellFee.donation = 0; 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, dev wallet, and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_marketingAddress] = true; _isExcludedFromFee[_devwallet] = true; _isExcludedFromFee[_exchangewallet] = true; _isExcludedFromFee[_partnershipswallet] = true; _isExcludedFromLimit[_marketingAddress] = true; _isExcludedFromLimit[_devwallet] = true; _isExcludedFromLimit[_exchangewallet] = true; _isExcludedFromLimit[_partnershipswallet] = 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) { 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 donationAddress() public view returns (address) { return _donationAddress; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require( !_isExcluded[sender], "Excluded addresses cannot call this function" ); ( , uint256 tFee, uint256 tLiquidity, uint256 tWallet, uint256 tDonation ) = _getTValues(tAmount); (uint256 rAmount, , ) = _getRValues( tAmount, tFee, tLiquidity, tWallet, tDonation, _getRate() ); _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"); ( , uint256 tFee, uint256 tLiquidity, uint256 tWallet, uint256 tDonation ) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, ) = _getRValues( tAmount, tFee, tLiquidity, tWallet, tDonation, _getRate() ); if (!deductTransferFee) { return rAmount; } else { 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 updateMarketingWallet(address payable newAddress) external onlyOwner { _marketingAddress = newAddress; } function updateDevWallet(address payable newAddress) external onlyOwner { _devwallet = newAddress; } function updateExchangeWallet(address newAddress) external onlyOwner { _exchangewallet = newAddress; } function updatePartnershipsWallet(address newAddress) external onlyOwner { _partnershipswallet = newAddress; } function addBotToBlacklist(address account) external onlyOwner { require( account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, "We cannot blacklist UniSwap router" ); require(!_isBlackListedBot[account], "Account is already blacklisted"); _isBlackListedBot[account] = true; _blackListedBots.push(account); } function removeBotFromBlacklist(address account) external onlyOwner { require(_isBlackListedBot[account], "Account is not blacklisted"); for (uint256 i = 0; i < _blackListedBots.length; i++) { if (_blackListedBots[i] == account) { _blackListedBots[i] = _blackListedBots[ _blackListedBots.length - 1 ]; _isBlackListedBot[account] = false; _blackListedBots.pop(); break; } } } function excludeFromReward(address account) public onlyOwner { 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 not excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function excludeFromLimit(address account) public onlyOwner { _isExcludedFromLimit[account] = true; } function includeInLimit(address account) public onlyOwner { _isExcludedFromLimit[account] = false; } function setFees( uint16 buy_tax, uint16 buy_liquidity, uint16 buy_marketing, uint16 buy_dev, uint16 buy_donation, uint16 sell_tax, uint16 sell_liquidity, uint16 sell_marketing, uint16 sell_dev, uint16 sell_donation ) external onlyOwner { buyFee.tax = buy_tax; buyFee.marketing = buy_marketing; buyFee.liquidity = buy_liquidity; buyFee.dev = buy_dev; buyFee.donation = buy_donation; sellFee.tax = sell_tax; sellFee.marketing = sell_marketing; sellFee.liquidity = sell_liquidity; sellFee.dev = sell_dev; sellFee.donation = sell_donation; } function setNumTokensSellToAddToLiquidity(uint256 numTokens) external onlyOwner { numTokensSellToAddToLiquidity = numTokens; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner { _maxTxAmount = _tTotal.mul(maxTxPercent).div(10**3); } function _setMaxWalletSizePercent(uint256 maxWalletSize) external onlyOwner { _maxWalletSize = _tTotal.mul(maxWalletSize).div(10**3); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } //to recieve ETH from uniswapV2Router when swapping receive() external payable {} function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getTValues(uint256 tAmount) private view returns ( uint256, uint256, uint256, uint256, uint256 ) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tWallet = calculateMarketingFee(tAmount) + calculateDevFee(tAmount); uint256 tDonation = calculateDonationFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity); tTransferAmount = tTransferAmount.sub(tWallet); tTransferAmount = tTransferAmount.sub(tDonation); return (tTransferAmount, tFee, tLiquidity, tWallet, tDonation); } function _getRValues( uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 tWallet, uint256 tDonation, uint256 currentRate ) private pure returns ( uint256, uint256, uint256 ) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rWallet = tWallet.mul(currentRate); uint256 rDonation = tDonation.mul(currentRate); uint256 rTransferAmount = rAmount .sub(rFee) .sub(rLiquidity) .sub(rWallet) .sub(rDonation); 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 _takeWalletFee(uint256 tWallet) private { uint256 currentRate = _getRate(); uint256 rWallet = tWallet.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rWallet); if (_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tWallet); } function _takeDonationFee(uint256 tDonation) private { uint256 currentRate = _getRate(); uint256 rDonation = tDonation.mul(currentRate); _rOwned[_donationAddress] = _rOwned[_donationAddress].add(rDonation); if (_isExcluded[_donationAddress]) _tOwned[_donationAddress] = _tOwned[_donationAddress].add( tDonation ); } 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 calculateMarketingFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_marketingFee).div(10**2); } function calculateDonationFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_donationFee).div(10**2); } function calculateDevFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_devFee).div(10**2); } function removeAllFee() private { _taxFee = 0; _liquidityFee = 0; _marketingFee = 0; _donationFee = 0; _devFee = 0; } function setBuy() private { _taxFee = buyFee.tax; _liquidityFee = buyFee.liquidity; _marketingFee = buyFee.marketing; _donationFee = buyFee.donation; _devFee = buyFee.dev; } function setSell() private { _taxFee = sellFee.tax; _liquidityFee = sellFee.liquidity; _marketingFee = sellFee.marketing; _donationFee = sellFee.donation; _devFee = sellFee.dev; } 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(!_isBlackListedBot[from], "You are blacklisted"); require(!_isBlackListedBot[msg.sender], "blacklisted"); require(!_isBlackListedBot[tx.origin], "blacklisted"); // 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 (to != uniswapV2Pair) { require( amount + balanceOf(to) <= _maxWalletSize, "Recipient exceeds max wallet size." ); } } } //transfer amount, it will take tax, burn, 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 + buyFee.dev + sellFee.dev) * 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 bnbToAddLiquidityWith = unitBalance * (buyFee.liquidity + sellFee.liquidity); if (bnbToAddLiquidityWith > 0) { // Add liquidity to pancake addLiquidity(tokensToAddLiquidityWith, bnbToAddLiquidityWith); } // Send ETH to marketing uint256 marketingAmt = unitBalance * 2 * (buyFee.marketing + sellFee.marketing); uint256 devAmt = unitBalance * 2 * (buyFee.dev + sellFee.dev) > address(this).balance ? address(this).balance : unitBalance * 2 * (buyFee.dev + sellFee.dev); if (marketingAmt > 0) { payable(_marketingAddress).transfer(marketingAmt); } if (devAmt > 0) { _devwallet.transfer(devAmt); } } 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(); } } if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } removeAllFee(); } function _transferStandard( address sender, address recipient, uint256 tAmount ) private { ( uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tWallet, uint256 tDonation ) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues( tAmount, tFee, tLiquidity, tWallet, tDonation, _getRate() ); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeWalletFee(tWallet); _takeDonationFee(tDonation); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tWallet, uint256 tDonation ) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues( tAmount, tFee, tLiquidity, tWallet, tDonation, _getRate() ); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeWalletFee(tWallet); _takeDonationFee(tDonation); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tWallet, uint256 tDonation ) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues( tAmount, tFee, tLiquidity, tWallet, tDonation, _getRate() ); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeWalletFee(tWallet); _takeDonationFee(tDonation); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferBothExcluded( address sender, address recipient, uint256 tAmount ) private { ( uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity, uint256 tWallet, uint256 tDonation ) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues( tAmount, tFee, tLiquidity, tWallet, tDonation, _getRate() ); _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); _takeWalletFee(tWallet); _takeDonationFee(tDonation); _reflectFee(rFee, tFee); 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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botAddedToBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"botRemovedFromBlacklist","type":"event"},{"inputs":[],"name":"_devwallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_exchangewallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"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":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"_setMaxWalletSizePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlacklist","outputs":[],"stateMutability":"nonpayable","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":"uint16","name":"tax","type":"uint16"},{"internalType":"uint16","name":"liquidity","type":"uint16"},{"internalType":"uint16","name":"marketing","type":"uint16"},{"internalType":"uint16","name":"dev","type":"uint16"},{"internalType":"uint16","name":"donation","type":"uint16"}],"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":"donationAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"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":"includeInLimit","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":"isExcludedFromLimit","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":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint16","name":"tax","type":"uint16"},{"internalType":"uint16","name":"liquidity","type":"uint16"},{"internalType":"uint16","name":"marketing","type":"uint16"},{"internalType":"uint16","name":"dev","type":"uint16"},{"internalType":"uint16","name":"donation","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"buy_tax","type":"uint16"},{"internalType":"uint16","name":"buy_liquidity","type":"uint16"},{"internalType":"uint16","name":"buy_marketing","type":"uint16"},{"internalType":"uint16","name":"buy_dev","type":"uint16"},{"internalType":"uint16","name":"buy_donation","type":"uint16"},{"internalType":"uint16","name":"sell_tax","type":"uint16"},{"internalType":"uint16","name":"sell_liquidity","type":"uint16"},{"internalType":"uint16","name":"sell_marketing","type":"uint16"},{"internalType":"uint16","name":"sell_dev","type":"uint16"},{"internalType":"uint16","name":"sell_donation","type":"uint16"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newAddress","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateExchangeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newAddress","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updatePartnershipsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526d04ee2d6d415b85acef8100000000600c8190556200002690600019620005a1565b6200003490600019620005c4565b600d55600f80546001600160a01b031990811673aa6d384a13b0c2776a904b01cf747a37b4fac98017909155601080548216732795ab83a2dbba745126a0336be1e829a8a1f0ff9081179091556011805483168217905560128054831690911790556013805490911661dead17905560408051808201909152600b8082526a2130b13ca0b832a1b7b4b760a91b6020909201918252620000d791601491620004fb565b50604080518082019091526004808252634241504560e01b60209092019182526200010591601591620004fb565b506016805460ff191660091790556019805460ff60581b19166b0100000000000000000000001790556c064f964e68233a76f520000000601a556c0c9f2c9cd04674edea40000000601b819055601c553480156200016257600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600d5433600090815260036020908152604091829020929092556017805466030006000100006001600160501b03199182168117909255601880549091169091179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa15801562000234573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025a9190620005ea565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ce9190620005ea565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200031c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003429190620005ea565b6001600160a01b0390811660a05281166080526001600660006200036e6000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260068452828120805486166001908117909155600f805484168352848320805488168317905560108054851684528584208054891684179055601180548616855286852080548a1685179055601280548716865287862080548b1686179055925486168552600a9788905286852080548a1685179055905485168452858420805489168417905554841683528483208054881683179055549092168152918220805490941681179093556200045c6000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152600a909252902080549091166001179055620004a43390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600c54604051620004ec91815260200190565b60405180910390a35062000659565b82805462000509906200061c565b90600052602060002090601f0160209004810192826200052d576000855562000578565b82601f106200054857805160ff191683800117855562000578565b8280016001018555821562000578579182015b82811115620005785782518255916020019190600101906200055b565b50620005869291506200058a565b5090565b5b808211156200058657600081556001016200058b565b600082620005bf57634e487b7160e01b600052601260045260246000fd5b500690565b600082821015620005e557634e487b7160e01b600052601160045260246000fd5b500390565b600060208284031215620005fd57600080fd5b81516001600160a01b03811681146200061557600080fd5b9392505050565b600181811c908216806200063157607f821691505b602082108114156200065357634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516139b4620006be6000396000818161065d01528181612060015281816121ba0152818161283a01526128e80152600081816103bd01528181612db401528181612e6d01528181612ea901528181612f1b0152612f7701526139b46000f3fe6080604052600436106103035760003560e01c8063715018a611610190578063b6c52324116100dc578063dd46706411610095578063ea2f0b371161006f578063ea2f0b3714610a0f578063ec034bed14610a2f578063f0f165af14610a4d578063f2fde38b14610a6d57600080fd5b8063dd46706414610989578063dd62ed3e146109a9578063e015633a146109ef57600080fd5b8063b6c52324146108bb578063be83c38f146108d0578063c49b9a80146108f0578063caac793414610910578063d543dbeb14610930578063d94160e01461095057600080fd5b806395d89b4111610149578063a9059cbb11610123578063a9059cbb1461083b578063aacebbe31461085b578063af2ce6141461087b578063b030b34a1461089b57600080fd5b806395d89b41146107f1578063a457c2d714610806578063a69df4b51461082657600080fd5b8063715018a6146107395780637d1db4a51461074e57806388f82020146107645780638da5cb5b1461079d5780638f9a55c0146107bb57806391d919a9146107d157600080fd5b80633685d4191161024f578063470624021161020857806350aa2977116101e257806350aa2977146106a057806352390c02146106c05780635342acb4146106e057806370a082311461071957600080fd5b8063470624021461060757806349bd5a5e1461064b5780634a74bb021461067f57600080fd5b80633685d4191461054757806339509351146105675780633bd5d173146105875780633e3d26f9146105a7578063437823ec146105c75780634549b039146105e757600080fd5b80631816467f116102bc57806323b872dd1161029657806323b872dd1461046c5780632b14ca561461048c5780632d83811914610505578063313ce5671461052557600080fd5b80631816467f1461040c5780631c4a78ef1461042c5780631d7ef8791461044c57600080fd5b806306fdde031461030f578063095ea7b31461033a5780630bd3a7f91461036a57806313114a9d1461038c5780631694505e146103ab57806318160ddd146103f757600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610a8d565b6040516103319190613457565b60405180910390f35b34801561034657600080fd5b5061035a6103553660046134c4565b610b1f565b6040519015158152602001610331565b34801561037657600080fd5b5061038a6103853660046134f0565b610b36565b005b34801561039857600080fd5b50600e545b604051908152602001610331565b3480156103b757600080fd5b506103df7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610331565b34801561040357600080fd5b50600c5461039d565b34801561041857600080fd5b5061038a6104273660046134f0565b610b8d565b34801561043857600080fd5b506010546103df906001600160a01b031681565b34801561045857600080fd5b5061038a6104673660046134f0565b610bd9565b34801561047857600080fd5b5061035a61048736600461350d565b610d4a565b34801561049857600080fd5b506018546104d09061ffff80821691620100008104821691600160201b8204811691600160301b8104821691600160401b9091041685565b6040805161ffff968716815294861660208601529285169284019290925283166060830152909116608082015260a001610331565b34801561051157600080fd5b5061039d61052036600461354e565b610db3565b34801561053157600080fd5b5060165460405160ff9091168152602001610331565b34801561055357600080fd5b5061038a6105623660046134f0565b610e37565b34801561057357600080fd5b5061035a6105823660046134c4565b610fee565b34801561059357600080fd5b5061038a6105a236600461354e565b611024565b3480156105b357600080fd5b5061038a6105c23660046134f0565b611132565b3480156105d357600080fd5b5061038a6105e23660046134f0565b61117e565b3480156105f357600080fd5b5061039d61060236600461357c565b6111cc565b34801561061357600080fd5b506017546104d09061ffff80821691620100008104821691600160201b8204811691600160301b8104821691600160401b9091041685565b34801561065757600080fd5b506103df7f000000000000000000000000000000000000000000000000000000000000000081565b34801561068b57600080fd5b5060195461035a90600160581b900460ff1681565b3480156106ac57600080fd5b5061038a6106bb3660046134f0565b61126f565b3480156106cc57600080fd5b5061038a6106db3660046134f0565b6112bb565b3480156106ec57600080fd5b5061035a6106fb3660046134f0565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561072557600080fd5b5061039d6107343660046134f0565b61140e565b34801561074557600080fd5b5061038a61146d565b34801561075a57600080fd5b5061039d601a5481565b34801561077057600080fd5b5061035a61077f3660046134f0565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156107a957600080fd5b506000546001600160a01b03166103df565b3480156107c757600080fd5b5061039d601c5481565b3480156107dd57600080fd5b5061038a6107ec3660046134f0565b6114cf565b3480156107fd57600080fd5b5061032461151a565b34801561081257600080fd5b5061035a6108213660046134c4565b611529565b34801561083257600080fd5b5061038a611578565b34801561084757600080fd5b5061035a6108563660046134c4565b61168f565b34801561086757600080fd5b5061038a6108763660046134f0565b61169c565b34801561088757600080fd5b5061038a61089636600461354e565b6116e8565b3480156108a757600080fd5b5061038a6108b63660046134f0565b611739565b3480156108c757600080fd5b5060025461039d565b3480156108dc57600080fd5b506011546103df906001600160a01b031681565b3480156108fc57600080fd5b5061038a61090b3660046135a8565b6118bd565b34801561091c57600080fd5b50600f546103df906001600160a01b031681565b34801561093c57600080fd5b5061038a61094b36600461354e565b61193f565b34801561095c57600080fd5b5061035a61096b3660046134f0565b6001600160a01b03166000908152600a602052604090205460ff1690565b34801561099557600080fd5b5061038a6109a436600461354e565b61198a565b3480156109b557600080fd5b5061039d6109c43660046135c3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b3480156109fb57600080fd5b5061038a610a0a36600461360e565b611a0f565b348015610a1b57600080fd5b5061038a610a2a3660046134f0565b611b85565b348015610a3b57600080fd5b506013546001600160a01b03166103df565b348015610a5957600080fd5b5061038a610a6836600461354e565b611bd0565b348015610a7957600080fd5b5061038a610a883660046134f0565b611bff565b606060148054610a9c906136c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac8906136c8565b8015610b155780601f10610aea57610100808354040283529160200191610b15565b820191906000526020600020905b815481529060010190602001808311610af857829003601f168201915b5050505050905090565b6000610b2c338484611cd7565b5060015b92915050565b6000546001600160a01b03163314610b695760405162461bcd60e51b8152600401610b6090613703565b60405180910390fd5b6001600160a01b03166000908152600a60205260409020805460ff19166001179055565b6000546001600160a01b03163314610bb75760405162461bcd60e51b8152600401610b6090613703565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610c035760405162461bcd60e51b8152600401610b6090613703565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610c7b5760405162461bcd60e51b815260206004820152602260248201527f57652063616e6e6f7420626c61636b6c69737420556e695377617020726f757460448201526132b960f11b6064820152608401610b60565b6001600160a01b03811660009081526009602052604090205460ff1615610ce45760405162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c697374656400006044820152606401610b60565b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b6000610d57848484611dfb565b610da98433610da485604051806060016040528060288152602001613912602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190612274565b611cd7565b5060019392505050565b6000600d54821115610e1a5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610b60565b6000610e246122ae565b9050610e3083826122d1565b9392505050565b6000546001600160a01b03163314610e615760405162461bcd60e51b8152600401610b6090613703565b6001600160a01b03811660009081526007602052604090205460ff16610ec95760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c756465640000000000000000006044820152606401610b60565b60005b600854811015610fea57816001600160a01b031660088281548110610ef357610ef3613738565b6000918252602090912001546001600160a01b03161415610fd85760088054610f1e90600190613764565b81548110610f2e57610f2e613738565b600091825260209091200154600880546001600160a01b039092169183908110610f5a57610f5a613738565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610fb257610fb261377b565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610fe281613791565b915050610ecc565b5050565b3360008181526005602090815260408083206001600160a01b03871684529091528120549091610b2c918590610da49086612313565b3360008181526007602052604090205460ff16156110995760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610b60565b6000806000806110a886612372565b94509450945094505060006110c887868686866110c36122ae565b612401565b50506001600160a01b0387166000908152600360205260409020549091506110f09082612475565b6001600160a01b038716600090815260036020526040902055600d546111169082612475565b600d55600e546111269088612313565b600e5550505050505050565b6000546001600160a01b0316331461115c5760405162461bcd60e51b8152600401610b6090613703565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146111a85760405162461bcd60e51b8152600401610b6090613703565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600c548311156112205760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610b60565b60008060008061122f87612372565b94509450945094505060008061124b89878787876110c36122ae565b50915091508761126257509450610b309350505050565b9550610b30945050505050565b6000546001600160a01b031633146112995760405162461bcd60e51b8152600401610b6090613703565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146112e55760405162461bcd60e51b8152600401610b6090613703565b6001600160a01b03811660009081526007602052604090205460ff161561134e5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610b60565b6001600160a01b038116600090815260036020526040902054156113a8576001600160a01b03811660009081526003602052604090205461138e90610db3565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b03811660009081526007602052604081205460ff161561144b57506001600160a01b031660009081526004602052604090205490565b6001600160a01b038216600090815260036020526040902054610b3090610db3565b6000546001600160a01b031633146114975760405162461bcd60e51b8152600401610b6090613703565b600080546040516001600160a01b039091169060008051602061393a833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146114f95760405162461bcd60e51b8152600401610b6090613703565b6001600160a01b03166000908152600a60205260409020805460ff19169055565b606060158054610a9c906136c8565b6000610b2c3384610da48560405180606001604052806025815260200161395a602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190612274565b6001546001600160a01b031633146115de5760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b6064820152608401610b60565b600254421161163d5760405162461bcd60e51b815260206004820152602560248201527f436f6e7472616374206973206c6f636b656420756e74696c2061206c61746572604482015264206461746560d81b6064820152608401610b60565b600154600080546040516001600160a01b03938416939091169160008051602061393a83398151915291a360018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b6000610b2c338484611dfb565b6000546001600160a01b031633146116c65760405162461bcd60e51b8152600401610b6090613703565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146117125760405162461bcd60e51b8152600401610b6090613703565b6117336103e861172d83600c546124b790919063ffffffff16565b906122d1565b601c5550565b6000546001600160a01b031633146117635760405162461bcd60e51b8152600401610b6090613703565b6001600160a01b03811660009081526009602052604090205460ff166117cb5760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c69737465640000000000006044820152606401610b60565b60005b600b54811015610fea57816001600160a01b0316600b82815481106117f5576117f5613738565b6000918252602090912001546001600160a01b031614156118ab57600b805461182090600190613764565b8154811061183057611830613738565b600091825260209091200154600b80546001600160a01b03909216918390811061185c5761185c613738565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600b805480610fb257610fb261377b565b806118b581613791565b9150506117ce565b6000546001600160a01b031633146118e75760405162461bcd60e51b8152600401610b6090613703565b60198054821515600160581b0260ff60581b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061193490831515815260200190565b60405180910390a150565b6000546001600160a01b031633146119695760405162461bcd60e51b8152600401610b6090613703565b6119846103e861172d83600c546124b790919063ffffffff16565b601a5550565b6000546001600160a01b031633146119b45760405162461bcd60e51b8152600401610b6090613703565b60008054600180546001600160a01b03199081166001600160a01b038416179091551690556119e381426137ac565b600255600080546040516001600160a01b039091169060008051602061393a833981519152908390a350565b6000546001600160a01b03163314611a395760405162461bcd60e51b8152600401610b6090613703565b89601760000160006101000a81548161ffff021916908361ffff16021790555087601760000160046101000a81548161ffff021916908361ffff16021790555088601760000160026101000a81548161ffff021916908361ffff16021790555086601760000160066101000a81548161ffff021916908361ffff16021790555085601760000160086101000a81548161ffff021916908361ffff16021790555084601860000160006101000a81548161ffff021916908361ffff16021790555082601860000160046101000a81548161ffff021916908361ffff16021790555083601860000160026101000a81548161ffff021916908361ffff16021790555081601860000160066101000a81548161ffff021916908361ffff16021790555080601860000160086101000a81548161ffff021916908361ffff16021790555050505050505050505050565b6000546001600160a01b03163314611baf5760405162461bcd60e51b8152600401610b6090613703565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000546001600160a01b03163314611bfa5760405162461bcd60e51b8152600401610b6090613703565b601b55565b6000546001600160a01b03163314611c295760405162461bcd60e51b8152600401610b6090613703565b6001600160a01b038116611c8e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b60565b600080546040516001600160a01b038085169392169160008051602061393a83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316611d395760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b60565b6001600160a01b038216611d9a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b60565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611e5f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610b60565b6001600160a01b038216611ec15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610b60565b60008111611f235760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610b60565b6001600160a01b03831660009081526009602052604090205460ff1615611f825760405162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b6044820152606401610b60565b3360009081526009602052604090205460ff1615611fd05760405162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b6044820152606401610b60565b3260009081526009602052604090205460ff161561201e5760405162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b6044820152606401610b60565b60006120293061140e565b9050601a5481106120395750601a545b601b54811080159081906120575750601954600160501b900460ff16155b801561209557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b80156120aa5750601954600160581b900460ff165b156120bd57601b5491506120bd82612536565b6001600160a01b03851660009081526006602052604090205460019060ff16806120ff57506001600160a01b03851660009081526006602052604090205460ff165b15612108575060005b8015612260576001600160a01b0386166000908152600a602052604090205460ff1615801561215057506001600160a01b0385166000908152600a602052604090205460ff16155b1561226057601a548411156121b85760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610b60565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b03161461226057601c546121fd8661140e565b61220790866137ac565b11156122605760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b6064820152608401610b60565b61226c8686868461281a565b505050505050565b600081848411156122985760405162461bcd60e51b8152600401610b609190613457565b5060006122a58486613764565b95945050505050565b60008060006122bb612b06565b90925090506122ca82826122d1565b9250505090565b6000610e3083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612c88565b60008061232083856137ac565b905083811015610e305760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610b60565b60008060008060008061238487612cb6565b9050600061239188612cd2565b9050600061239e89612cf4565b6123a78a612d17565b6123b191906137ac565b905060006123be8a612d3a565b905060006123d6846123d08d88612475565b90612475565b90506123e28184612475565b90506123ee8183612475565b9b949a5092985090965094509092505050565b60008080806124108a866124b7565b9050600061241e8a876124b7565b9050600061242c8a886124b7565b9050600061243a8a896124b7565b905060006124488a8a6124b7565b9050600061245e826123d0858188818c8c612475565b959f959e50939c50939a5050505050505050505050565b6000610e3083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612274565b6000826124c657506000610b30565b60006124d283856137c4565b9050826124df85836137e3565b14610e305760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610b60565b6019805460ff60501b1916600160501b17905560185460175460009161ffff600160301b808304821693908104821692600160201b80820484169390830481169261258e926201000090819004831692910416613805565b6125989190613805565b6125a29190613805565b6125ac9190613805565b6125b69190613805565b6125c190600261382b565b60185460175461ffff928316935060009284926125ec92620100009182900483169291900416613805565b6125fa9061ffff16856137c4565b61260491906137e3565b905060006126128285613764565b90504761261e82612d5d565b600061262a8247613764565b6018546017549192506000916126529161ffff62010000918290048116929190910416613805565b6126609061ffff1687613764565b61266a90836137e3565b6018546017549192506000916126929161ffff62010000918290048116929190910416613805565b6126a09061ffff16836137c4565b905080156126b2576126b28682612f15565b6018546017546000916126d79161ffff600160201b9283900481169290910416613805565b61ffff166126e68460026137c4565b6126f091906137c4565b601854601754919250600091479161271a9161ffff600160301b9283900481169290910416613805565b61ffff166127298660026137c4565b61273391906137c4565b116127795760185460175461275b9161ffff600160301b918290048116929190910416613805565b61ffff1661276a8560026137c4565b61277491906137c4565b61277b565b475b905081156127bf57600f546040516001600160a01b039091169083156108fc029084906000818181858888f193505050501580156127bd573d6000803e3d6000fd5b505b8015612801576010546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156127ff573d6000803e3d6000fd5b505b50506019805460ff60501b191690555050505050505050565b8015612994576128386019805469ffffffffffffffffffff19169055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614156128e6576017546019805461ffff80841663ffffffff1990921691909117620100008085048316021769ffff0000ffff000000001916600160201b80850483160261ffff60401b191617600160401b8085048316021767ffff0000000000001916600160301b93849004919091169092029190911790555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161415612994576018546019805461ffff80841663ffffffff1990921691909117620100008085048316021769ffff0000ffff000000001916600160201b80850483160261ffff60401b191617600160401b8085048316021767ffff0000000000001916600160301b93849004919091169092029190911790555b6001600160a01b03841660009081526007602052604090205460ff1680156129d557506001600160a01b03831660009081526007602052604090205460ff16155b156129ea576129e5848484612ff5565b612ae8565b6001600160a01b03841660009081526007602052604090205460ff16158015612a2b57506001600160a01b03831660009081526007602052604090205460ff165b15612a3b576129e5848484613146565b6001600160a01b03841660009081526007602052604090205460ff16158015612a7d57506001600160a01b03831660009081526007602052604090205460ff16155b15612a8d576129e5848484613206565b6001600160a01b03841660009081526007602052604090205460ff168015612acd57506001600160a01b03831660009081526007602052604090205460ff165b15612add576129e5848484613261565b612ae8848484613206565b612b006019805469ffffffffffffffffffff19169055565b50505050565b600d54600c546000918291825b600854811015612c5857826003600060088481548110612b3557612b35613738565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612ba05750816004600060088481548110612b7957612b79613738565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612bb657600d54600c54945094505050509091565b612bfc6003600060088481548110612bd057612bd0613738565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612475565b9250612c446004600060088481548110612c1857612c18613738565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612475565b915080612c5081613791565b915050612b13565b50600c54600d54612c68916122d1565b821015612c7f57600d54600c549350935050509091565b90939092509050565b60008183612ca95760405162461bcd60e51b8152600401610b609190613457565b5060006122a584866137e3565b601954600090610b309060649061172d90859061ffff166124b7565b601954600090610b309060649061172d90859062010000900461ffff166124b7565b601954600090610b309060649061172d908590600160301b900461ffff166124b7565b601954600090610b309060649061172d908590600160201b900461ffff166124b7565b601954600090610b309060649061172d908590600160401b900461ffff166124b7565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612d9257612d92613738565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e349190613855565b81600181518110612e4757612e47613738565b60200260200101906001600160a01b031690816001600160a01b031681525050612e92307f000000000000000000000000000000000000000000000000000000000000000084611cd7565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612ee7908590600090869030904290600401613872565b600060405180830381600087803b158015612f0157600080fd5b505af115801561226c573d6000803e3d6000fd5b612f40307f000000000000000000000000000000000000000000000000000000000000000084611cd7565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612fc9573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612fee91906138e3565b5050505050565b600080600080600061300686612372565b94509450945094509450600080600061302589888888886110c36122ae565b6001600160a01b038e166000908152600460205260409020549295509093509150613050908a612475565b6001600160a01b038c1660009081526004602090815260408083209390935560039052205461307f9084612475565b6001600160a01b03808d1660009081526003602052604080822093909355908c16815220546130ae9083612313565b6001600160a01b038b166000908152600360205260409020556130d0866132eb565b6130d9856132eb565b6130e284613374565b6130ec8188613433565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8a60405161313191815260200190565b60405180910390a35050505050505050505050565b600080600080600061315786612372565b94509450945094509450600080600061317689888888886110c36122ae565b6001600160a01b038e1660009081526003602052604090205492955090935091506131a19084612475565b6001600160a01b03808d16600090815260036020908152604080832094909455918d168152600490915220546131d79089612313565b6001600160a01b038b166000908152600460209081526040808320939093556003905220546130ae9083612313565b600080600080600061321786612372565b94509450945094509450600080600061323689888888886110c36122ae565b6001600160a01b038e16600090815260036020526040902054929550909350915061307f9084612475565b600080600080600061327286612372565b94509450945094509450600080600061329189888888886110c36122ae565b6001600160a01b038e1660009081526004602052604090205492955090935091506132bc908a612475565b6001600160a01b038c166000908152600460209081526040808320939093556003905220546131a19084612475565b60006132f56122ae565b9050600061330383836124b7565b306000908152600360205260409020549091506133209082612313565b3060009081526003602090815260408083209390935560079052205460ff161561336f573060009081526004602052604090205461335e9084612313565b306000908152600460205260409020555b505050565b600061337e6122ae565b9050600061338c83836124b7565b6013546001600160a01b03166000908152600360205260409020549091506133b49082612313565b601380546001600160a01b03908116600090815260036020908152604080832095909555925490911681526007909152205460ff161561336f576013546001600160a01b03166000908152600460205260409020546134139084612313565b6013546001600160a01b0316600090815260046020526040902055505050565b600d546134409083612475565b600d55600e546134509082612313565b600e555050565b600060208083528351808285015260005b8181101561348457858101830151858201604001528201613468565b81811115613496576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146134c157600080fd5b50565b600080604083850312156134d757600080fd5b82356134e2816134ac565b946020939093013593505050565b60006020828403121561350257600080fd5b8135610e30816134ac565b60008060006060848603121561352257600080fd5b833561352d816134ac565b9250602084013561353d816134ac565b929592945050506040919091013590565b60006020828403121561356057600080fd5b5035919050565b8035801515811461357757600080fd5b919050565b6000806040838503121561358f57600080fd5b8235915061359f60208401613567565b90509250929050565b6000602082840312156135ba57600080fd5b610e3082613567565b600080604083850312156135d657600080fd5b82356135e1816134ac565b915060208301356135f1816134ac565b809150509250929050565b803561ffff8116811461357757600080fd5b6000806000806000806000806000806101408b8d03121561362e57600080fd5b6136378b6135fc565b995061364560208c016135fc565b985061365360408c016135fc565b975061366160608c016135fc565b965061366f60808c016135fc565b955061367d60a08c016135fc565b945061368b60c08c016135fc565b935061369960e08c016135fc565b92506136a86101008c016135fc565b91506136b76101208c016135fc565b90509295989b9194979a5092959850565b600181811c908216806136dc57607f821691505b602082108114156136fd57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000828210156137765761377661374e565b500390565b634e487b7160e01b600052603160045260246000fd5b60006000198214156137a5576137a561374e565b5060010190565b600082198211156137bf576137bf61374e565b500190565b60008160001904831182151516156137de576137de61374e565b500290565b60008261380057634e487b7160e01b600052601260045260246000fd5b500490565b600061ffff8083168185168083038211156138225761382261374e565b01949350505050565b600061ffff8083168185168183048111821515161561384c5761384c61374e565b02949350505050565b60006020828403121561386757600080fd5b8151610e30816134ac565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156138c25784516001600160a01b03168352938301939183019160010161389d565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156138f857600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f40b98b009795233da76bbfae4e9dbb4a9364f2f3cee4ff1f0c2093fc915cdad64736f6c634300080a0033
Deployed Bytecode
0x6080604052600436106103035760003560e01c8063715018a611610190578063b6c52324116100dc578063dd46706411610095578063ea2f0b371161006f578063ea2f0b3714610a0f578063ec034bed14610a2f578063f0f165af14610a4d578063f2fde38b14610a6d57600080fd5b8063dd46706414610989578063dd62ed3e146109a9578063e015633a146109ef57600080fd5b8063b6c52324146108bb578063be83c38f146108d0578063c49b9a80146108f0578063caac793414610910578063d543dbeb14610930578063d94160e01461095057600080fd5b806395d89b4111610149578063a9059cbb11610123578063a9059cbb1461083b578063aacebbe31461085b578063af2ce6141461087b578063b030b34a1461089b57600080fd5b806395d89b41146107f1578063a457c2d714610806578063a69df4b51461082657600080fd5b8063715018a6146107395780637d1db4a51461074e57806388f82020146107645780638da5cb5b1461079d5780638f9a55c0146107bb57806391d919a9146107d157600080fd5b80633685d4191161024f578063470624021161020857806350aa2977116101e257806350aa2977146106a057806352390c02146106c05780635342acb4146106e057806370a082311461071957600080fd5b8063470624021461060757806349bd5a5e1461064b5780634a74bb021461067f57600080fd5b80633685d4191461054757806339509351146105675780633bd5d173146105875780633e3d26f9146105a7578063437823ec146105c75780634549b039146105e757600080fd5b80631816467f116102bc57806323b872dd1161029657806323b872dd1461046c5780632b14ca561461048c5780632d83811914610505578063313ce5671461052557600080fd5b80631816467f1461040c5780631c4a78ef1461042c5780631d7ef8791461044c57600080fd5b806306fdde031461030f578063095ea7b31461033a5780630bd3a7f91461036a57806313114a9d1461038c5780631694505e146103ab57806318160ddd146103f757600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610a8d565b6040516103319190613457565b60405180910390f35b34801561034657600080fd5b5061035a6103553660046134c4565b610b1f565b6040519015158152602001610331565b34801561037657600080fd5b5061038a6103853660046134f0565b610b36565b005b34801561039857600080fd5b50600e545b604051908152602001610331565b3480156103b757600080fd5b506103df7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610331565b34801561040357600080fd5b50600c5461039d565b34801561041857600080fd5b5061038a6104273660046134f0565b610b8d565b34801561043857600080fd5b506010546103df906001600160a01b031681565b34801561045857600080fd5b5061038a6104673660046134f0565b610bd9565b34801561047857600080fd5b5061035a61048736600461350d565b610d4a565b34801561049857600080fd5b506018546104d09061ffff80821691620100008104821691600160201b8204811691600160301b8104821691600160401b9091041685565b6040805161ffff968716815294861660208601529285169284019290925283166060830152909116608082015260a001610331565b34801561051157600080fd5b5061039d61052036600461354e565b610db3565b34801561053157600080fd5b5060165460405160ff9091168152602001610331565b34801561055357600080fd5b5061038a6105623660046134f0565b610e37565b34801561057357600080fd5b5061035a6105823660046134c4565b610fee565b34801561059357600080fd5b5061038a6105a236600461354e565b611024565b3480156105b357600080fd5b5061038a6105c23660046134f0565b611132565b3480156105d357600080fd5b5061038a6105e23660046134f0565b61117e565b3480156105f357600080fd5b5061039d61060236600461357c565b6111cc565b34801561061357600080fd5b506017546104d09061ffff80821691620100008104821691600160201b8204811691600160301b8104821691600160401b9091041685565b34801561065757600080fd5b506103df7f000000000000000000000000aa640d727e09c4ac936e1e581c7dad1ac3f3a09a81565b34801561068b57600080fd5b5060195461035a90600160581b900460ff1681565b3480156106ac57600080fd5b5061038a6106bb3660046134f0565b61126f565b3480156106cc57600080fd5b5061038a6106db3660046134f0565b6112bb565b3480156106ec57600080fd5b5061035a6106fb3660046134f0565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561072557600080fd5b5061039d6107343660046134f0565b61140e565b34801561074557600080fd5b5061038a61146d565b34801561075a57600080fd5b5061039d601a5481565b34801561077057600080fd5b5061035a61077f3660046134f0565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156107a957600080fd5b506000546001600160a01b03166103df565b3480156107c757600080fd5b5061039d601c5481565b3480156107dd57600080fd5b5061038a6107ec3660046134f0565b6114cf565b3480156107fd57600080fd5b5061032461151a565b34801561081257600080fd5b5061035a6108213660046134c4565b611529565b34801561083257600080fd5b5061038a611578565b34801561084757600080fd5b5061035a6108563660046134c4565b61168f565b34801561086757600080fd5b5061038a6108763660046134f0565b61169c565b34801561088757600080fd5b5061038a61089636600461354e565b6116e8565b3480156108a757600080fd5b5061038a6108b63660046134f0565b611739565b3480156108c757600080fd5b5060025461039d565b3480156108dc57600080fd5b506011546103df906001600160a01b031681565b3480156108fc57600080fd5b5061038a61090b3660046135a8565b6118bd565b34801561091c57600080fd5b50600f546103df906001600160a01b031681565b34801561093c57600080fd5b5061038a61094b36600461354e565b61193f565b34801561095c57600080fd5b5061035a61096b3660046134f0565b6001600160a01b03166000908152600a602052604090205460ff1690565b34801561099557600080fd5b5061038a6109a436600461354e565b61198a565b3480156109b557600080fd5b5061039d6109c43660046135c3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b3480156109fb57600080fd5b5061038a610a0a36600461360e565b611a0f565b348015610a1b57600080fd5b5061038a610a2a3660046134f0565b611b85565b348015610a3b57600080fd5b506013546001600160a01b03166103df565b348015610a5957600080fd5b5061038a610a6836600461354e565b611bd0565b348015610a7957600080fd5b5061038a610a883660046134f0565b611bff565b606060148054610a9c906136c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac8906136c8565b8015610b155780601f10610aea57610100808354040283529160200191610b15565b820191906000526020600020905b815481529060010190602001808311610af857829003601f168201915b5050505050905090565b6000610b2c338484611cd7565b5060015b92915050565b6000546001600160a01b03163314610b695760405162461bcd60e51b8152600401610b6090613703565b60405180910390fd5b6001600160a01b03166000908152600a60205260409020805460ff19166001179055565b6000546001600160a01b03163314610bb75760405162461bcd60e51b8152600401610b6090613703565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610c035760405162461bcd60e51b8152600401610b6090613703565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610c7b5760405162461bcd60e51b815260206004820152602260248201527f57652063616e6e6f7420626c61636b6c69737420556e695377617020726f757460448201526132b960f11b6064820152608401610b60565b6001600160a01b03811660009081526009602052604090205460ff1615610ce45760405162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c697374656400006044820152606401610b60565b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b6000610d57848484611dfb565b610da98433610da485604051806060016040528060288152602001613912602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190612274565b611cd7565b5060019392505050565b6000600d54821115610e1a5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610b60565b6000610e246122ae565b9050610e3083826122d1565b9392505050565b6000546001600160a01b03163314610e615760405162461bcd60e51b8152600401610b6090613703565b6001600160a01b03811660009081526007602052604090205460ff16610ec95760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c756465640000000000000000006044820152606401610b60565b60005b600854811015610fea57816001600160a01b031660088281548110610ef357610ef3613738565b6000918252602090912001546001600160a01b03161415610fd85760088054610f1e90600190613764565b81548110610f2e57610f2e613738565b600091825260209091200154600880546001600160a01b039092169183908110610f5a57610f5a613738565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610fb257610fb261377b565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610fe281613791565b915050610ecc565b5050565b3360008181526005602090815260408083206001600160a01b03871684529091528120549091610b2c918590610da49086612313565b3360008181526007602052604090205460ff16156110995760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610b60565b6000806000806110a886612372565b94509450945094505060006110c887868686866110c36122ae565b612401565b50506001600160a01b0387166000908152600360205260409020549091506110f09082612475565b6001600160a01b038716600090815260036020526040902055600d546111169082612475565b600d55600e546111269088612313565b600e5550505050505050565b6000546001600160a01b0316331461115c5760405162461bcd60e51b8152600401610b6090613703565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146111a85760405162461bcd60e51b8152600401610b6090613703565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600c548311156112205760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610b60565b60008060008061122f87612372565b94509450945094505060008061124b89878787876110c36122ae565b50915091508761126257509450610b309350505050565b9550610b30945050505050565b6000546001600160a01b031633146112995760405162461bcd60e51b8152600401610b6090613703565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146112e55760405162461bcd60e51b8152600401610b6090613703565b6001600160a01b03811660009081526007602052604090205460ff161561134e5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610b60565b6001600160a01b038116600090815260036020526040902054156113a8576001600160a01b03811660009081526003602052604090205461138e90610db3565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b03811660009081526007602052604081205460ff161561144b57506001600160a01b031660009081526004602052604090205490565b6001600160a01b038216600090815260036020526040902054610b3090610db3565b6000546001600160a01b031633146114975760405162461bcd60e51b8152600401610b6090613703565b600080546040516001600160a01b039091169060008051602061393a833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146114f95760405162461bcd60e51b8152600401610b6090613703565b6001600160a01b03166000908152600a60205260409020805460ff19169055565b606060158054610a9c906136c8565b6000610b2c3384610da48560405180606001604052806025815260200161395a602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190612274565b6001546001600160a01b031633146115de5760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b6064820152608401610b60565b600254421161163d5760405162461bcd60e51b815260206004820152602560248201527f436f6e7472616374206973206c6f636b656420756e74696c2061206c61746572604482015264206461746560d81b6064820152608401610b60565b600154600080546040516001600160a01b03938416939091169160008051602061393a83398151915291a360018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b6000610b2c338484611dfb565b6000546001600160a01b031633146116c65760405162461bcd60e51b8152600401610b6090613703565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146117125760405162461bcd60e51b8152600401610b6090613703565b6117336103e861172d83600c546124b790919063ffffffff16565b906122d1565b601c5550565b6000546001600160a01b031633146117635760405162461bcd60e51b8152600401610b6090613703565b6001600160a01b03811660009081526009602052604090205460ff166117cb5760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c69737465640000000000006044820152606401610b60565b60005b600b54811015610fea57816001600160a01b0316600b82815481106117f5576117f5613738565b6000918252602090912001546001600160a01b031614156118ab57600b805461182090600190613764565b8154811061183057611830613738565b600091825260209091200154600b80546001600160a01b03909216918390811061185c5761185c613738565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600b805480610fb257610fb261377b565b806118b581613791565b9150506117ce565b6000546001600160a01b031633146118e75760405162461bcd60e51b8152600401610b6090613703565b60198054821515600160581b0260ff60581b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061193490831515815260200190565b60405180910390a150565b6000546001600160a01b031633146119695760405162461bcd60e51b8152600401610b6090613703565b6119846103e861172d83600c546124b790919063ffffffff16565b601a5550565b6000546001600160a01b031633146119b45760405162461bcd60e51b8152600401610b6090613703565b60008054600180546001600160a01b03199081166001600160a01b038416179091551690556119e381426137ac565b600255600080546040516001600160a01b039091169060008051602061393a833981519152908390a350565b6000546001600160a01b03163314611a395760405162461bcd60e51b8152600401610b6090613703565b89601760000160006101000a81548161ffff021916908361ffff16021790555087601760000160046101000a81548161ffff021916908361ffff16021790555088601760000160026101000a81548161ffff021916908361ffff16021790555086601760000160066101000a81548161ffff021916908361ffff16021790555085601760000160086101000a81548161ffff021916908361ffff16021790555084601860000160006101000a81548161ffff021916908361ffff16021790555082601860000160046101000a81548161ffff021916908361ffff16021790555083601860000160026101000a81548161ffff021916908361ffff16021790555081601860000160066101000a81548161ffff021916908361ffff16021790555080601860000160086101000a81548161ffff021916908361ffff16021790555050505050505050505050565b6000546001600160a01b03163314611baf5760405162461bcd60e51b8152600401610b6090613703565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000546001600160a01b03163314611bfa5760405162461bcd60e51b8152600401610b6090613703565b601b55565b6000546001600160a01b03163314611c295760405162461bcd60e51b8152600401610b6090613703565b6001600160a01b038116611c8e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b60565b600080546040516001600160a01b038085169392169160008051602061393a83398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316611d395760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b60565b6001600160a01b038216611d9a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b60565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611e5f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610b60565b6001600160a01b038216611ec15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610b60565b60008111611f235760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610b60565b6001600160a01b03831660009081526009602052604090205460ff1615611f825760405162461bcd60e51b8152602060048201526013602482015272165bdd48185c9948189b1858dadb1a5cdd1959606a1b6044820152606401610b60565b3360009081526009602052604090205460ff1615611fd05760405162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b6044820152606401610b60565b3260009081526009602052604090205460ff161561201e5760405162461bcd60e51b815260206004820152600b60248201526a189b1858dadb1a5cdd195960aa1b6044820152606401610b60565b60006120293061140e565b9050601a5481106120395750601a545b601b54811080159081906120575750601954600160501b900460ff16155b801561209557507f000000000000000000000000aa640d727e09c4ac936e1e581c7dad1ac3f3a09a6001600160a01b0316856001600160a01b031614155b80156120aa5750601954600160581b900460ff165b156120bd57601b5491506120bd82612536565b6001600160a01b03851660009081526006602052604090205460019060ff16806120ff57506001600160a01b03851660009081526006602052604090205460ff165b15612108575060005b8015612260576001600160a01b0386166000908152600a602052604090205460ff1615801561215057506001600160a01b0385166000908152600a602052604090205460ff16155b1561226057601a548411156121b85760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610b60565b7f000000000000000000000000aa640d727e09c4ac936e1e581c7dad1ac3f3a09a6001600160a01b0316856001600160a01b03161461226057601c546121fd8661140e565b61220790866137ac565b11156122605760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b6064820152608401610b60565b61226c8686868461281a565b505050505050565b600081848411156122985760405162461bcd60e51b8152600401610b609190613457565b5060006122a58486613764565b95945050505050565b60008060006122bb612b06565b90925090506122ca82826122d1565b9250505090565b6000610e3083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612c88565b60008061232083856137ac565b905083811015610e305760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610b60565b60008060008060008061238487612cb6565b9050600061239188612cd2565b9050600061239e89612cf4565b6123a78a612d17565b6123b191906137ac565b905060006123be8a612d3a565b905060006123d6846123d08d88612475565b90612475565b90506123e28184612475565b90506123ee8183612475565b9b949a5092985090965094509092505050565b60008080806124108a866124b7565b9050600061241e8a876124b7565b9050600061242c8a886124b7565b9050600061243a8a896124b7565b905060006124488a8a6124b7565b9050600061245e826123d0858188818c8c612475565b959f959e50939c50939a5050505050505050505050565b6000610e3083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612274565b6000826124c657506000610b30565b60006124d283856137c4565b9050826124df85836137e3565b14610e305760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610b60565b6019805460ff60501b1916600160501b17905560185460175460009161ffff600160301b808304821693908104821692600160201b80820484169390830481169261258e926201000090819004831692910416613805565b6125989190613805565b6125a29190613805565b6125ac9190613805565b6125b69190613805565b6125c190600261382b565b60185460175461ffff928316935060009284926125ec92620100009182900483169291900416613805565b6125fa9061ffff16856137c4565b61260491906137e3565b905060006126128285613764565b90504761261e82612d5d565b600061262a8247613764565b6018546017549192506000916126529161ffff62010000918290048116929190910416613805565b6126609061ffff1687613764565b61266a90836137e3565b6018546017549192506000916126929161ffff62010000918290048116929190910416613805565b6126a09061ffff16836137c4565b905080156126b2576126b28682612f15565b6018546017546000916126d79161ffff600160201b9283900481169290910416613805565b61ffff166126e68460026137c4565b6126f091906137c4565b601854601754919250600091479161271a9161ffff600160301b9283900481169290910416613805565b61ffff166127298660026137c4565b61273391906137c4565b116127795760185460175461275b9161ffff600160301b918290048116929190910416613805565b61ffff1661276a8560026137c4565b61277491906137c4565b61277b565b475b905081156127bf57600f546040516001600160a01b039091169083156108fc029084906000818181858888f193505050501580156127bd573d6000803e3d6000fd5b505b8015612801576010546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156127ff573d6000803e3d6000fd5b505b50506019805460ff60501b191690555050505050505050565b8015612994576128386019805469ffffffffffffffffffff19169055565b7f000000000000000000000000aa640d727e09c4ac936e1e581c7dad1ac3f3a09a6001600160a01b0316846001600160a01b031614156128e6576017546019805461ffff80841663ffffffff1990921691909117620100008085048316021769ffff0000ffff000000001916600160201b80850483160261ffff60401b191617600160401b8085048316021767ffff0000000000001916600160301b93849004919091169092029190911790555b7f000000000000000000000000aa640d727e09c4ac936e1e581c7dad1ac3f3a09a6001600160a01b0316836001600160a01b03161415612994576018546019805461ffff80841663ffffffff1990921691909117620100008085048316021769ffff0000ffff000000001916600160201b80850483160261ffff60401b191617600160401b8085048316021767ffff0000000000001916600160301b93849004919091169092029190911790555b6001600160a01b03841660009081526007602052604090205460ff1680156129d557506001600160a01b03831660009081526007602052604090205460ff16155b156129ea576129e5848484612ff5565b612ae8565b6001600160a01b03841660009081526007602052604090205460ff16158015612a2b57506001600160a01b03831660009081526007602052604090205460ff165b15612a3b576129e5848484613146565b6001600160a01b03841660009081526007602052604090205460ff16158015612a7d57506001600160a01b03831660009081526007602052604090205460ff16155b15612a8d576129e5848484613206565b6001600160a01b03841660009081526007602052604090205460ff168015612acd57506001600160a01b03831660009081526007602052604090205460ff165b15612add576129e5848484613261565b612ae8848484613206565b612b006019805469ffffffffffffffffffff19169055565b50505050565b600d54600c546000918291825b600854811015612c5857826003600060088481548110612b3557612b35613738565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612ba05750816004600060088481548110612b7957612b79613738565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612bb657600d54600c54945094505050509091565b612bfc6003600060088481548110612bd057612bd0613738565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612475565b9250612c446004600060088481548110612c1857612c18613738565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612475565b915080612c5081613791565b915050612b13565b50600c54600d54612c68916122d1565b821015612c7f57600d54600c549350935050509091565b90939092509050565b60008183612ca95760405162461bcd60e51b8152600401610b609190613457565b5060006122a584866137e3565b601954600090610b309060649061172d90859061ffff166124b7565b601954600090610b309060649061172d90859062010000900461ffff166124b7565b601954600090610b309060649061172d908590600160301b900461ffff166124b7565b601954600090610b309060649061172d908590600160201b900461ffff166124b7565b601954600090610b309060649061172d908590600160401b900461ffff166124b7565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612d9257612d92613738565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e10573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e349190613855565b81600181518110612e4757612e47613738565b60200260200101906001600160a01b031690816001600160a01b031681525050612e92307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611cd7565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612ee7908590600090869030904290600401613872565b600060405180830381600087803b158015612f0157600080fd5b505af115801561226c573d6000803e3d6000fd5b612f40307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611cd7565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612fc9573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612fee91906138e3565b5050505050565b600080600080600061300686612372565b94509450945094509450600080600061302589888888886110c36122ae565b6001600160a01b038e166000908152600460205260409020549295509093509150613050908a612475565b6001600160a01b038c1660009081526004602090815260408083209390935560039052205461307f9084612475565b6001600160a01b03808d1660009081526003602052604080822093909355908c16815220546130ae9083612313565b6001600160a01b038b166000908152600360205260409020556130d0866132eb565b6130d9856132eb565b6130e284613374565b6130ec8188613433565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8a60405161313191815260200190565b60405180910390a35050505050505050505050565b600080600080600061315786612372565b94509450945094509450600080600061317689888888886110c36122ae565b6001600160a01b038e1660009081526003602052604090205492955090935091506131a19084612475565b6001600160a01b03808d16600090815260036020908152604080832094909455918d168152600490915220546131d79089612313565b6001600160a01b038b166000908152600460209081526040808320939093556003905220546130ae9083612313565b600080600080600061321786612372565b94509450945094509450600080600061323689888888886110c36122ae565b6001600160a01b038e16600090815260036020526040902054929550909350915061307f9084612475565b600080600080600061327286612372565b94509450945094509450600080600061329189888888886110c36122ae565b6001600160a01b038e1660009081526004602052604090205492955090935091506132bc908a612475565b6001600160a01b038c166000908152600460209081526040808320939093556003905220546131a19084612475565b60006132f56122ae565b9050600061330383836124b7565b306000908152600360205260409020549091506133209082612313565b3060009081526003602090815260408083209390935560079052205460ff161561336f573060009081526004602052604090205461335e9084612313565b306000908152600460205260409020555b505050565b600061337e6122ae565b9050600061338c83836124b7565b6013546001600160a01b03166000908152600360205260409020549091506133b49082612313565b601380546001600160a01b03908116600090815260036020908152604080832095909555925490911681526007909152205460ff161561336f576013546001600160a01b03166000908152600460205260409020546134139084612313565b6013546001600160a01b0316600090815260046020526040902055505050565b600d546134409083612475565b600d55600e546134509082612313565b600e555050565b600060208083528351808285015260005b8181101561348457858101830151858201604001528201613468565b81811115613496576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146134c157600080fd5b50565b600080604083850312156134d757600080fd5b82356134e2816134ac565b946020939093013593505050565b60006020828403121561350257600080fd5b8135610e30816134ac565b60008060006060848603121561352257600080fd5b833561352d816134ac565b9250602084013561353d816134ac565b929592945050506040919091013590565b60006020828403121561356057600080fd5b5035919050565b8035801515811461357757600080fd5b919050565b6000806040838503121561358f57600080fd5b8235915061359f60208401613567565b90509250929050565b6000602082840312156135ba57600080fd5b610e3082613567565b600080604083850312156135d657600080fd5b82356135e1816134ac565b915060208301356135f1816134ac565b809150509250929050565b803561ffff8116811461357757600080fd5b6000806000806000806000806000806101408b8d03121561362e57600080fd5b6136378b6135fc565b995061364560208c016135fc565b985061365360408c016135fc565b975061366160608c016135fc565b965061366f60808c016135fc565b955061367d60a08c016135fc565b945061368b60c08c016135fc565b935061369960e08c016135fc565b92506136a86101008c016135fc565b91506136b76101208c016135fc565b90509295989b9194979a5092959850565b600181811c908216806136dc57607f821691505b602082108114156136fd57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000828210156137765761377661374e565b500390565b634e487b7160e01b600052603160045260246000fd5b60006000198214156137a5576137a561374e565b5060010190565b600082198211156137bf576137bf61374e565b500190565b60008160001904831182151516156137de576137de61374e565b500290565b60008261380057634e487b7160e01b600052601260045260246000fd5b500490565b600061ffff8083168185168083038211156138225761382261374e565b01949350505050565b600061ffff8083168185168183048111821515161561384c5761384c61374e565b02949350505050565b60006020828403121561386757600080fd5b8151610e30816134ac565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156138c25784516001600160a01b03168352938301939183019160010161389d565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156138f857600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f40b98b009795233da76bbfae4e9dbb4a9364f2f3cee4ff1f0c2093fc915cdad64736f6c634300080a0033
Deployed Bytecode Sourcemap
27816:29007:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32207:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33192:193;;;;;;;;;;-1:-1:-1;33192:193:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;33192:193:0;1072:187:1;39236:115:0;;;;;;;;;;-1:-1:-1;39236:115:0;;;;;:::i;:::-;;:::i;:::-;;34691:87;;;;;;;;;;-1:-1:-1;34760:10:0;;34691:87;;;1662:25:1;;;1650:2;1635:18;34691:87:0;1516:177:1;29800:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1889:32:1;;;1871:51;;1859:2;1844:18;29800:51:0;1698:230:1;32484:95:0;;;;;;;;;;-1:-1:-1;32564:7:0;;32484:95;;36861:114;;;;;;;;;;-1:-1:-1;36861:114:0;;;;;:::i;:::-;;:::i;28734:105::-;;;;;;;;;;-1:-1:-1;28734:105:0;;;;-1:-1:-1;;;;;28734:105:0;;;37239:385;;;;;;;;;;-1:-1:-1;37239:385:0;;;;;:::i;:::-;;:::i;33393:446::-;;;;;;;;;;-1:-1:-1;33393:446:0;;;;;:::i;:::-;;:::i;29605:22::-;;;;;;;;;;-1:-1:-1;29605:22:0;;;;;;;;;;;;;;;-1:-1:-1;;;29605:22:0;;;;;-1:-1:-1;;;29605:22:0;;;;;-1:-1:-1;;;29605:22:0;;;;;;;;;;3137:6:1;3170:15;;;3152:34;;3222:15;;;3217:2;3202:18;;3195:43;3274:15;;;3254:18;;;3247:43;;;;3326:15;;3321:2;3306:18;;3299:43;3379:15;;;3373:3;3358:19;;3351:44;3114:3;3099:19;29605:22:0;2878:523:1;36394:322:0;;;;;;;;;;-1:-1:-1;36394:322:0;;;;;:::i;:::-;;:::i;32393:83::-;;;;;;;;;;-1:-1:-1;32459:9:0;;32393:83;;32459:9;;;;3733:36:1;;3721:2;3706:18;32393:83:0;3591:184:1;38518:473:0;;;;;;;;;;-1:-1:-1;38518:473:0;;;;;:::i;:::-;;:::i;33847:300::-;;;;;;;;;;-1:-1:-1;33847:300:0;;;;;:::i;:::-;;:::i;34893:739::-;;;;;;;;;;-1:-1:-1;34893:739:0;;;;;:::i;:::-;;:::i;36983:116::-;;;;;;;;;;-1:-1:-1;36983:116:0;;;;;:::i;:::-;;:::i;38999:111::-;;;;;;;;;;-1:-1:-1;38999:111:0;;;;;:::i;:::-;;:::i;35640:746::-;;;;;;;;;;-1:-1:-1;35640:746:0;;;;;:::i;:::-;;:::i;29578:20::-;;;;;;;;;;-1:-1:-1;29578:20:0;;;;;;;;;;;;;;;-1:-1:-1;;;29578:20:0;;;;;-1:-1:-1;;;29578:20:0;;;;;-1:-1:-1;;;29578:20:0;;;;;;29858:38;;;;;;;;;;;;;;;29933:40;;;;;;;;;;-1:-1:-1;29933:40:0;;;;-1:-1:-1;;;29933:40:0;;;;;;37107:124;;;;;;;;;;-1:-1:-1;37107:124:0;;;;;:::i;:::-;;:::i;38178:332::-;;;;;;;;;;-1:-1:-1;38178:332:0;;;;;:::i;:::-;;:::i;46060:124::-;;;;;;;;;;-1:-1:-1;46060:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;46149:27:0;46125:4;46149:27;;;:18;:27;;;;;;;;;46060:124;32587:198;;;;;;;;;;-1:-1:-1;32587:198:0;;;;;:::i;:::-;;:::i;16902:148::-;;;;;;;;;;;;;:::i;29982:49::-;;;;;;;;;;;;;;;;34563:120;;;;;;;;;;-1:-1:-1;34563:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;34655:20:0;34631:4;34655:20;;;:11;:20;;;;;;;;;34563:120;16260:79;;;;;;;;;;-1:-1:-1;16298:7:0;16325:6;-1:-1:-1;;;;;16325:6:0;16260:79;;30113:52;;;;;;;;;;;;;;;;39359:114;;;;;;;;;;-1:-1:-1;39359:114:0;;;;;:::i;:::-;;:::i;32298:87::-;;;;;;;;;;;;;:::i;34155:400::-;;;;;;;;;;-1:-1:-1;34155:400:0;;;;;:::i;:::-;;:::i;17957:385::-;;;;;;;;;;;;;:::i;32793:199::-;;;;;;;;;;-1:-1:-1;32793:199:0;;;;;:::i;:::-;;:::i;36726:127::-;;;;;;;;;;-1:-1:-1;36726:127:0;;;;;:::i;:::-;;:::i;40515:172::-;;;;;;;;;;-1:-1:-1;40515:172:0;;;;;:::i;:::-;;:::i;37632:538::-;;;;;;;;;;-1:-1:-1;37632:538:0;;;;;:::i;:::-;;:::i;17494:89::-;;;;;;;;;;-1:-1:-1;17566:9:0;;17494:89;;28846:102;;;;;;;;;;-1:-1:-1;28846:102:0;;;;-1:-1:-1;;;;;28846:102:0;;;40695:171;;;;;;;;;;-1:-1:-1;40695:171:0;;;;;:::i;:::-;;:::i;28615:112::-;;;;;;;;;;-1:-1:-1;28615:112:0;;;;-1:-1:-1;;;;;28615:112:0;;;40371:136;;;;;;;;;;-1:-1:-1;40371:136:0;;;;;:::i;:::-;;:::i;46192:128::-;;;;;;;;;;-1:-1:-1;46192:128:0;;;;;:::i;:::-;-1:-1:-1;;;;;46283:29:0;46259:4;46283:29;;;:20;:29;;;;;;;;;46192:128;17659:226;;;;;;;;;;-1:-1:-1;17659:226:0;;;;;:::i;:::-;;:::i;33000:184::-;;;;;;;;;;-1:-1:-1;33000:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;33149:18:0;;;33117:7;33149:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;33000:184;39483:732;;;;;;;;;;-1:-1:-1;39483:732:0;;;;;:::i;:::-;;:::i;39118:110::-;;;;;;;;;;-1:-1:-1;39118:110:0;;;;;:::i;:::-;;:::i;34786:99::-;;;;;;;;;;-1:-1:-1;34861:16:0;;-1:-1:-1;;;;;34861:16:0;34786:99;;40223:140;;;;;;;;;;-1:-1:-1;40223:140:0;;;;;:::i;:::-;;:::i;17205:281::-;;;;;;;;;;-1:-1:-1;17205:281:0;;;;;:::i;:::-;;:::i;32207:83::-;32244:13;32277:5;32270:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32207:83;:::o;33192:193::-;33294:4;33316:39;8314:10;33339:7;33348:6;33316:8;:39::i;:::-;-1:-1:-1;33373:4:0;33192:193;;;;;:::o;39236:115::-;16472:6;;-1:-1:-1;;;;;16472:6:0;8314:10;16472:22;16464:67;;;;-1:-1:-1;;;16464:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;39307:29:0::1;;::::0;;;:20:::1;:29;::::0;;;;:36;;-1:-1:-1;;39307:36:0::1;39339:4;39307:36;::::0;;39236:115::o;36861:114::-;16472:6;;-1:-1:-1;;;;;16472:6:0;8314:10;16472:22;16464:67;;;;-1:-1:-1;;;16464:67:0;;;;;;;:::i;:::-;36944:10:::1;:23:::0;;-1:-1:-1;;;;;;36944:23:0::1;-1:-1:-1::0;;;;;36944:23:0;;;::::1;::::0;;;::::1;::::0;;36861:114::o;37239:385::-;16472:6;;-1:-1:-1;;;;;16472:6:0;8314:10;16472:22;16464:67;;;;-1:-1:-1;;;16464:67:0;;;;;;;:::i;:::-;37346:42:::1;-1:-1:-1::0;;;;;37335:53:0;::::1;;;37313:137;;;::::0;-1:-1:-1;;;37313:137:0;;6940:2:1;37313:137:0::1;::::0;::::1;6922:21:1::0;6979:2;6959:18;;;6952:30;7018:34;6998:18;;;6991:62;-1:-1:-1;;;7069:18:1;;;7062:32;7111:19;;37313:137:0::1;6738:398:1::0;37313:137:0::1;-1:-1:-1::0;;;;;37470:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;37469:27;37461:70;;;::::0;-1:-1:-1;;;37461:70:0;;7343:2:1;37461:70:0::1;::::0;::::1;7325:21:1::0;7382:2;7362:18;;;7355:30;7421:32;7401:18;;;7394:60;7471:18;;37461:70:0::1;7141:354:1::0;37461:70:0::1;-1:-1:-1::0;;;;;37542:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;37542:33:0::1;37571:4;37542:33:::0;;::::1;::::0;;;37586:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;37586:30:0::1;::::0;;::::1;::::0;;37239:385::o;33393:446::-;33525:4;33542:36;33552:6;33560:9;33571:6;33542:9;:36::i;:::-;33589:220;33612:6;8314:10;33660:138;33716:6;33660:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33660:19:0;;;;;;:11;:19;;;;;;;;8314:10;33660:33;;;;;;;;;;:37;:138::i;:::-;33589:8;:220::i;:::-;-1:-1:-1;33827:4:0;33393:446;;;;;:::o;36394:322::-;36488:7;36546;;36535;:18;;36513:110;;;;-1:-1:-1;;;36513:110:0;;7702:2:1;36513:110:0;;;7684:21:1;7741:2;7721:18;;;7714:30;7780:34;7760:18;;;7753:62;-1:-1:-1;;;7831:18:1;;;7824:40;7881:19;;36513:110:0;7500:406:1;36513:110:0;36634:19;36656:10;:8;:10::i;:::-;36634:32;-1:-1:-1;36684:24:0;:7;36634:32;36684:11;:24::i;:::-;36677:31;36394:322;-1:-1:-1;;;36394:322:0:o;38518:473::-;16472:6;;-1:-1:-1;;;;;16472:6:0;8314:10;16472:22;16464:67;;;;-1:-1:-1;;;16464:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38598:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;38590:56;;;::::0;-1:-1:-1;;;38590:56:0;;8113:2:1;38590:56:0::1;::::0;::::1;8095:21:1::0;8152:2;8132:18;;;8125:30;8191:25;8171:18;;;8164:53;8234:18;;38590:56:0::1;7911:347:1::0;38590:56:0::1;38662:9;38657:327;38681:9;:16:::0;38677:20;::::1;38657:327;;;38739:7;-1:-1:-1::0;;;;;38723:23:0::1;:9;38733:1;38723:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;38723:12:0::1;:23;38719:254;;;38782:9;38792:16:::0;;:20:::1;::::0;38811:1:::1;::::0;38792:20:::1;:::i;:::-;38782:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;38767:9:::1;:12:::0;;-1:-1:-1;;;;;38782:31:0;;::::1;::::0;38777:1;;38767:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;38767:46:0::1;-1:-1:-1::0;;;;;38767:46:0;;::::1;;::::0;;38832:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;38871:11:::1;:20:::0;;;;:28;;-1:-1:-1;;38871:28:0::1;::::0;;38918:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;38918:15:0;;;;;-1:-1:-1;;;;;;38918:15:0::1;::::0;;;;;38657:327:::1;38518:473:::0;:::o;38719:254::-:1;38699:3:::0;::::1;::::0;::::1;:::i;:::-;;;;38657:327;;;;38518:473:::0;:::o;33847:300::-;8314:10;33962:4;34056:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;34056:34:0;;;;;;;;;;33962:4;;33984:133;;34034:7;;34056:50;;34095:10;34056:38;:50::i;34893:739::-;8314:10;34945:14;35008:19;;;:11;:19;;;;;;;;35007:20;34985:114;;;;-1:-1:-1;;;34985:114:0;;9131:2:1;34985:114:0;;;9113:21:1;9170:2;9150:18;;;9143:30;9209:34;9189:18;;;9182:62;-1:-1:-1;;;9260:18:1;;;9253:42;9312:19;;34985:114:0;8929:408:1;34985:114:0;35142:12;35169:18;35202:15;35232:17;35263:20;35275:7;35263:11;:20::i;:::-;35112:171;;;;;;;;;35295:15;35318:159;35344:7;35366:4;35385:10;35410:7;35432:9;35456:10;:8;:10::i;:::-;35318:11;:159::i;:::-;-1:-1:-1;;;;;;;35508:15:0;;;;;;:7;:15;;;;;;35294:183;;-1:-1:-1;35508:28:0;;35294:183;35508:19;:28::i;:::-;-1:-1:-1;;;;;35490:15:0;;;;;;:7;:15;;;;;:46;35557:7;;:20;;35569:7;35557:11;:20::i;:::-;35547:7;:30;35601:10;;:23;;35616:7;35601:14;:23::i;:::-;35588:10;:36;-1:-1:-1;;;;;;;34893:739:0:o;36983:116::-;16472:6;;-1:-1:-1;;;;;16472:6:0;8314:10;16472:22;16464:67;;;;-1:-1:-1;;;16464:67:0;;;;;;;:::i;:::-;37063:15:::1;:28:::0;;-1:-1:-1;;;;;;37063:28:0::1;-1:-1:-1::0;;;;;37063:28:0;;;::::1;::::0;;;::::1;::::0;;36983:116::o;38999:111::-;16472:6;;-1:-1:-1;;;;;16472:6:0;8314:10;16472:22;16464:67;;;;-1:-1:-1;;;16464:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39068:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;39068:34:0::1;39098:4;39068:34;::::0;;38999:111::o;35640:746::-;35758:7;35802;;35791;:18;;35783:62;;;;-1:-1:-1;;;35783:62:0;;9544:2:1;35783:62:0;;;9526:21:1;9583:2;9563:18;;;9556:30;9622:33;9602:18;;;9595:61;9673:18;;35783:62:0;9342:355:1;35783:62:0;35888:12;35915:18;35948:15;35978:17;36009:20;36021:7;36009:11;:20::i;:::-;35858:171;;;;;;;;;36041:15;36058:23;36087:159;36113:7;36135:4;36154:10;36179:7;36201:9;36225:10;:8;:10::i;36087:159::-;36040:206;;;;;36264:17;36259:120;;-1:-1:-1;36305:7:0;-1:-1:-1;36298:14:0;;-1:-1:-1;;;;36298:14:0;36259:120;36352:15;-1:-1:-1;36345:22:0;;-1:-1:-1;;;;;36345:22:0;37107:124;16472:6;;-1:-1:-1;;;;;16472:6:0;8314:10;16472:22;16464:67;;;;-1:-1:-1;;;16464:67:0;;;;;;;:::i;:::-;37191:19:::1;:32:::0;;-1:-1:-1;;;;;;37191:32:0::1;-1:-1:-1::0;;;;;37191:32:0;;;::::1;::::0;;;::::1;::::0;;37107:124::o;38178:332::-;16472:6;;-1:-1:-1;;;;;16472:6:0;8314:10;16472:22;16464:67;;;;-1:-1:-1;;;16464:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38259:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;38258:21;38250:61;;;::::0;-1:-1:-1;;;38250:61:0;;9904:2:1;38250:61:0::1;::::0;::::1;9886:21:1::0;9943:2;9923:18;;;9916:30;9982:29;9962:18;;;9955:57;10029:18;;38250:61:0::1;9702:351:1::0;38250:61:0::1;-1:-1:-1::0;;;;;38326:16:0;::::1;38345:1;38326:16:::0;;;:7:::1;:16;::::0;;;;;:20;38322:109:::1;;-1:-1:-1::0;;;;;38402:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;38382:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;38363:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;38322:109:::1;-1:-1:-1::0;;;;;38441:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;38441:27:0::1;38464:4;38441:27:::0;;::::1;::::0;;;38479:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;38479:23:0::1;::::0;;::::1;::::0;;38178:332::o;32587:198::-;-1:-1:-1;;;;;32677:20:0;;32653:7;32677:20;;;:11;:20;;;;;;;;32673:49;;;-1:-1:-1;;;;;;32706:16:0;;;;;:7;:16;;;;;;;32587:198::o;32673:49::-;-1:-1:-1;;;;;32760:16:0;;;;;;:7;:16;;;;;;32740:37;;:19;:37::i;16902:148::-;16472:6;;-1:-1:-1;;;;;16472:6:0;8314:10;16472:22;16464:67;;;;-1:-1:-1;;;16464:67:0;;;;;;;:::i;:::-;17009:1:::1;16993:6:::0;;16972:40:::1;::::0;-1:-1:-1;;;;;16993:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16972:40:0;17009:1;;16972:40:::1;17040:1;17023:19:::0;;-1:-1:-1;;;;;;17023:19:0::1;::::0;;16902:148::o;39359:114::-;16472:6;;-1:-1:-1;;;;;16472:6:0;8314:10;16472:22;16464:67;;;;-1:-1:-1;;;16464:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39428:29:0::1;39460:5;39428:29:::0;;;:20:::1;:29;::::0;;;;:37;;-1:-1:-1;;39428:37:0::1;::::0;;39359:114::o;32298:87::-;32337:13;32370:7;32363:14;;;;;:::i;34155:400::-;34275:4;34297:228;8314:10;34347:7;34369:145;34426:15;34369:145;;;;;;;;;;;;;;;;;8314:10;34369:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;34369:34:0;;;;;;;;;;;;:38;:145::i;17957:385::-;18023:14;;-1:-1:-1;;;;;18023:14:0;18041:10;18023:28;18001:113;;;;-1:-1:-1;;;18001:113:0;;10260:2:1;18001:113:0;;;10242:21:1;10299:2;10279:18;;;10272:30;10338:34;10318:18;;;10311:62;-1:-1:-1;;;10389:18:1;;;10382:33;10432:19;;18001:113:0;10058:399:1;18001:113:0;18151:9;;18133:15;:27;18125:77;;;;-1:-1:-1;;;18125:77:0;;10664:2:1;18125:77:0;;;10646:21:1;10703:2;10683:18;;;10676:30;10742:34;10722:18;;;10715:62;-1:-1:-1;;;10793:18:1;;;10786:35;10838:19;;18125:77:0;10462:401:1;18125:77:0;18247:14;;;18239:6;;18218:44;;-1:-1:-1;;;;;18247:14:0;;;;18239:6;;;;-1:-1:-1;;;;;;;;;;;18218:44:0;;18282:14;;;;18273:23;;-1:-1:-1;;;;;;18273:23:0;;;-1:-1:-1;;;;;18282:14:0;;18273:23;;;;18307:27;;;17957:385::o;32793:199::-;32898:4;32920:42;8314:10;32944:9;32955:6;32920:9;:42::i;36726:127::-;16472:6;;-1:-1:-1;;;;;16472:6:0;8314:10;16472:22;16464:67;;;;-1:-1:-1;;;16464:67:0;;;;;;;:::i;:::-;36815:17:::1;:30:::0;;-1:-1:-1;;;;;;36815:30:0::1;-1:-1:-1::0;;;;;36815:30:0;;;::::1;::::0;;;::::1;::::0;;36726:127::o;40515:172::-;16472:6;;-1:-1:-1;;;;;16472:6:0;8314:10;16472:22;16464:67;;;;-1:-1:-1;;;16464:67:0;;;;;;;:::i;:::-;40642:37:::1;40673:5;40642:26;40654:13;40642:7;;:11;;:26;;;;:::i;:::-;:30:::0;::::1;:37::i;:::-;40625:14;:54:::0;-1:-1:-1;40515:172:0:o;37632:538::-;16472:6;;-1:-1:-1;;;;;16472:6:0;8314:10;16472:22;16464:67;;;;-1:-1:-1;;;16464:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37719:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;37711:65;;;::::0;-1:-1:-1;;;37711:65:0;;11070:2:1;37711:65:0::1;::::0;::::1;11052:21:1::0;11109:2;11089:18;;;11082:30;11148:28;11128:18;;;11121:56;11194:18;;37711:65:0::1;10868:350:1::0;37711:65:0::1;37792:9;37787:376;37811:16;:23:::0;37807:27;::::1;37787:376;;;37883:7;-1:-1:-1::0;;;;;37860:30:0::1;:16;37877:1;37860:19;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;37860:19:0::1;:30;37856:296;;;37933:16;37972:23:::0;;:27:::1;::::0;37998:1:::1;::::0;37972:27:::1;:::i;:::-;37933:85;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;37911:16:::1;:19:::0;;-1:-1:-1;;;;;37933:85:0;;::::1;::::0;37928:1;;37911:19;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:107:::0;;-1:-1:-1;;;;;;37911:107:0::1;-1:-1:-1::0;;;;;37911:107:0;;::::1;;::::0;;38037:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;38037:34:0::1;::::0;;38090:16:::1;:22:::0;;;::::1;;;;:::i;37856:296::-;37836:3:::0;::::1;::::0;::::1;:::i;:::-;;;;37787:376;;40695:171:::0;16472:6;;-1:-1:-1;;;;;16472:6:0;8314:10;16472:22;16464:67;;;;-1:-1:-1;;;16464:67:0;;;;;;;:::i;:::-;40772:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;40772:32:0::1;-1:-1:-1::0;;;;40772:32:0;;::::1;;::::0;;40820:38:::1;::::0;::::1;::::0;::::1;::::0;40796:8;1237:14:1;1230:22;1212:41;;1200:2;1185:18;;1072:187;40820:38:0::1;;;;;;;;40695:171:::0;:::o;40371:136::-;16472:6;;-1:-1:-1;;;;;16472:6:0;8314:10;16472:22;16464:67;;;;-1:-1:-1;;;16464:67:0;;;;;;;:::i;:::-;40463:36:::1;40493:5;40463:25;40475:12;40463:7;;:11;;:25;;;;:::i;:36::-;40448:12;:51:::0;-1:-1:-1;40371:136:0:o;17659:226::-;16472:6;;-1:-1:-1;;;;;16472:6:0;8314:10;16472:22;16464:67;;;;-1:-1:-1;;;16464:67:0;;;;;;;:::i;:::-;17740:6:::1;::::0;;;17723:23;;-1:-1:-1;;;;;;17723:23:0;;::::1;-1:-1:-1::0;;;;;17740:6:0;::::1;17723:23;::::0;;;17757:19:::1;::::0;;17799:22:::1;17817:4:::0;17799:15:::1;:22;:::i;:::-;17787:9;:34:::0;17874:1:::1;17858:6:::0;;17837:40:::1;::::0;-1:-1:-1;;;;;17858:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;17837:40:0;17874:1;;17837:40:::1;17659:226:::0;:::o;39483:732::-;16472:6;;-1:-1:-1;;;;;16472:6:0;8314:10;16472:22;16464:67;;;;-1:-1:-1;;;16464:67:0;;;;;;;:::i;:::-;39841:7:::1;39828:6;:10;;;:20;;;;;;;;;;;;;;;;;;39878:13;39859:6;:16;;;:32;;;;;;;;;;;;;;;;;;39921:13;39902:6;:16;;;:32;;;;;;;;;;;;;;;;;;39958:7;39945:6;:10;;;:20;;;;;;;;;;;;;;;;;;39994:12;39976:6;:15;;;:30;;;;;;;;;;;;;;;;;;40033:8;40019:7;:11;;;:22;;;;;;;;;;;;;;;;;;40072:14;40052:7;:17;;;:34;;;;;;;;;;;;;;;;;;40117:14;40097:7;:17;;;:34;;;;;;;;;;;;;;;;;;40156:8;40142:7;:11;;;:22;;;;;;;;;;;;;;;;;;40194:13;40175:7;:16;;;:32;;;;;;;;;;;;;;;;;;39483:732:::0;;;;;;;;;;:::o;39118:110::-;16472:6;;-1:-1:-1;;;;;16472:6:0;8314:10;16472:22;16464:67;;;;-1:-1:-1;;;16464:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39185:27:0::1;39215:5;39185:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;39185:35:0::1;::::0;;39118:110::o;40223:140::-;16472:6;;-1:-1:-1;;;;;16472:6:0;8314:10;16472:22;16464:67;;;;-1:-1:-1;;;16464:67:0;;;;;;;:::i;:::-;40314:29:::1;:41:::0;40223:140::o;17205:281::-;16472:6;;-1:-1:-1;;;;;16472:6:0;8314:10;16472:22;16464:67;;;;-1:-1:-1;;;16464:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17308:22:0;::::1;17286:110;;;::::0;-1:-1:-1;;;17286:110:0;;11558:2:1;17286:110:0::1;::::0;::::1;11540:21:1::0;11597:2;11577:18;;;11570:30;11636:34;11616:18;;;11609:62;-1:-1:-1;;;11687:18:1;;;11680:36;11733:19;;17286:110:0::1;11356:402:1::0;17286:110:0::1;17433:6;::::0;;17412:38:::1;::::0;-1:-1:-1;;;;;17412:38:0;;::::1;::::0;17433:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;17412:38:0;::::1;17461:6;:17:::0;;-1:-1:-1;;;;;;17461:17:0::1;-1:-1:-1::0;;;;;17461:17:0;;;::::1;::::0;;;::::1;::::0;;17205:281::o;46328:371::-;-1:-1:-1;;;;;46455:19:0;;46447:68;;;;-1:-1:-1;;;46447:68:0;;11965:2:1;46447:68:0;;;11947:21:1;12004:2;11984:18;;;11977:30;12043:34;12023:18;;;12016:62;-1:-1:-1;;;12094:18:1;;;12087:34;12138:19;;46447:68:0;11763:400:1;46447:68:0;-1:-1:-1;;;;;46534:21:0;;46526:68;;;;-1:-1:-1;;;46526:68:0;;12370:2:1;46526:68:0;;;12352:21:1;12409:2;12389:18;;;12382:30;12448:34;12428:18;;;12421:62;-1:-1:-1;;;12499:18:1;;;12492:32;12541:19;;46526:68:0;12168:398:1;46526:68:0;-1:-1:-1;;;;;46607:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;46659:32;;1662:25:1;;;46659:32:0;;1635:18:1;46659:32:0;;;;;;;46328:371;;;:::o;46707:2371::-;-1:-1:-1;;;;;46829:18:0;;46821:68;;;;-1:-1:-1;;;46821:68:0;;12773:2:1;46821:68:0;;;12755:21:1;12812:2;12792:18;;;12785:30;12851:34;12831:18;;;12824:62;-1:-1:-1;;;12902:18:1;;;12895:35;12947:19;;46821:68:0;12571:401:1;46821:68:0;-1:-1:-1;;;;;46908:16:0;;46900:64;;;;-1:-1:-1;;;46900:64:0;;13179:2:1;46900:64:0;;;13161:21:1;13218:2;13198:18;;;13191:30;13257:34;13237:18;;;13230:62;-1:-1:-1;;;13308:18:1;;;13301:33;13351:19;;46900:64:0;12977:399:1;46900:64:0;46992:1;46983:6;:10;46975:64;;;;-1:-1:-1;;;46975:64:0;;13583:2:1;46975:64:0;;;13565:21:1;13622:2;13602:18;;;13595:30;13661:34;13641:18;;;13634:62;-1:-1:-1;;;13712:18:1;;;13705:39;13761:19;;46975:64:0;13381:405:1;46975:64:0;-1:-1:-1;;;;;47059:23:0;;;;;;:17;:23;;;;;;;;47058:24;47050:56;;;;-1:-1:-1;;;47050:56:0;;13993:2:1;47050:56:0;;;13975:21:1;14032:2;14012:18;;;14005:30;-1:-1:-1;;;14051:18:1;;;14044:49;14110:18;;47050:56:0;13791:343:1;47050:56:0;47144:10;47126:29;;;;:17;:29;;;;;;;;47125:30;47117:54;;;;-1:-1:-1;;;47117:54:0;;14341:2:1;47117:54:0;;;14323:21:1;14380:2;14360:18;;;14353:30;-1:-1:-1;;;14399:18:1;;;14392:41;14450:18;;47117:54:0;14139:335:1;47117:54:0;47209:9;47191:28;;;;:17;:28;;;;;;;;47190:29;47182:53;;;;-1:-1:-1;;;47182:53:0;;14341:2:1;47182:53:0;;;14323:21:1;14380:2;14360:18;;;14353:30;-1:-1:-1;;;14399:18:1;;;14392:41;14450:18;;47182:53:0;14139:335:1;47182:53:0;47530:28;47561:24;47579:4;47561:9;:24::i;:::-;47530:55;;47626:12;;47602:20;:36;47598:104;;-1:-1:-1;47678:12:0;;47598:104;47778:29;;47741:66;;;;;;;47836:53;;-1:-1:-1;47873:16:0;;-1:-1:-1;;;47873:16:0;;;;47872:17;47836:53;:91;;;;;47914:13;-1:-1:-1;;;;;47906:21:0;:4;-1:-1:-1;;;;;47906:21:0;;;47836:91;:129;;;;-1:-1:-1;47944:21:0;;-1:-1:-1;;;47944:21:0;;;;47836:129;47818:318;;;48015:29;;47992:52;;48088:36;48103:20;48088:14;:36::i;:::-;-1:-1:-1;;;;;48329:24:0;;48209:12;48329:24;;;:18;:24;;;;;;48224:4;;48329:24;;;:50;;-1:-1:-1;;;;;;48357:22:0;;;;;;:18;:22;;;;;;;;48329:50;48325:98;;;-1:-1:-1;48406:5:0;48325:98;48437:7;48433:518;;;-1:-1:-1;;;;;48466:26:0;;;;;;:20;:26;;;;;;;;48465:27;:56;;;;-1:-1:-1;;;;;;48497:24:0;;;;;;:20;:24;;;;;;;;48496:25;48465:56;48461:479;;;48582:12;;48572:6;:22;;48542:136;;;;-1:-1:-1;;;48542:136:0;;14681:2:1;48542:136:0;;;14663:21:1;14720:2;14700:18;;;14693:30;14759:34;14739:18;;;14732:62;-1:-1:-1;;;14810:18:1;;;14803:38;14858:19;;48542:136:0;14479:404:1;48542:136:0;48707:13;-1:-1:-1;;;;;48701:19:0;:2;-1:-1:-1;;;;;48701:19:0;;48697:228;;48805:14;;48788:13;48798:2;48788:9;:13::i;:::-;48779:22;;:6;:22;:::i;:::-;:40;;48745:160;;;;-1:-1:-1;;;48745:160:0;;15090:2:1;48745:160:0;;;15072:21:1;15129:2;15109:18;;;15102:30;15168:34;15148:18;;;15141:62;-1:-1:-1;;;15219:18:1;;;15212:32;15261:19;;48745:160:0;14888:398:1;48745:160:0;49029:41;49044:4;49050:2;49054:6;49062:7;49029:14;:41::i;:::-;46810:2268;;;46707:2371;;;:::o;4526:226::-;4646:7;4682:12;4674:6;;;;4666:29;;;;-1:-1:-1;;;4666:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4706:9:0;4718:5;4722:1;4718;:5;:::i;:::-;4706:17;4526:226;-1:-1:-1;;;;;4526:226:0:o;42694:164::-;42736:7;42757:15;42774;42793:19;:17;:19::i;:::-;42756:56;;-1:-1:-1;42756:56:0;-1:-1:-1;42830:20:0;42756:56;;42830:11;:20::i;:::-;42823:27;;;;42694:164;:::o;5958:132::-;6016:7;6043:39;6047:1;6050;6043:39;;;;;;;;;;;;;;;;;:3;:39::i;3623:181::-;3681:7;;3713:5;3717:1;3713;:5;:::i;:::-;3701:17;;3742:1;3737;:6;;3729:46;;;;-1:-1:-1;;;3729:46:0;;15493:2:1;3729:46:0;;;15475:21:1;15532:2;15512:18;;;15505:30;15571:29;15551:18;;;15544:57;15618:18;;3729:46:0;15291:351:1;41123:753:0;41224:7;41246;41268;41290;41312;41347:12;41362:24;41378:7;41362:15;:24::i;:::-;41347:39;;41397:18;41418:30;41440:7;41418:21;:30::i;:::-;41397:51;;41459:15;41523:24;41539:7;41523:15;:24::i;:::-;41477:30;41499:7;41477:21;:30::i;:::-;:70;;;;:::i;:::-;41459:88;;41558:17;41578:29;41599:7;41578:20;:29::i;:::-;41558:49;-1:-1:-1;41618:23:0;41644:33;41666:10;41644:17;:7;41656:4;41644:11;:17::i;:::-;:21;;:33::i;:::-;41618:59;-1:-1:-1;41706:28:0;41618:59;41726:7;41706:19;:28::i;:::-;41688:46;-1:-1:-1;41763:30:0;41688:46;41783:9;41763:19;:30::i;:::-;41745:48;41831:4;;-1:-1:-1;41837:10:0;;-1:-1:-1;41849:7:0;;-1:-1:-1;41837:10:0;-1:-1:-1;41123:753:0;;-1:-1:-1;;;41123:753:0:o;41884:802::-;42137:7;;;;42234:24;:7;42246:11;42234;:24::i;:::-;42216:42;-1:-1:-1;42269:12:0;42284:21;:4;42293:11;42284:8;:21::i;:::-;42269:36;-1:-1:-1;42316:18:0;42337:27;:10;42352:11;42337:14;:27::i;:::-;42316:48;-1:-1:-1;42375:15:0;42393:24;:7;42405:11;42393;:24::i;:::-;42375:42;-1:-1:-1;42428:17:0;42448:26;:9;42462:11;42448:13;:26::i;:::-;42428:46;-1:-1:-1;42485:23:0;42511:117;42428:46;42511:88;42591:7;42511:88;42561:10;42511:88;:7;42537:4;42511:25;:31::i;:117::-;42647:7;;;;-1:-1:-1;42673:4:0;;-1:-1:-1;41884:802:0;;-1:-1:-1;;;;;;;;;;;41884:802:0:o;4087:136::-;4145:7;4172:43;4176:1;4179;4172:43;;;;;;;;;;;;;;;;;:3;:43::i;5011:471::-;5069:7;5314:6;5310:47;;-1:-1:-1;5344:1:0;5337:8;;5310:47;5369:9;5381:5;5385:1;5381;:5;:::i;:::-;5369:17;-1:-1:-1;5414:1:0;5405:5;5409:1;5369:17;5405:5;:::i;:::-;:10;5397:56;;;;-1:-1:-1;;;5397:56:0;;16244:2:1;5397:56:0;;;16226:21:1;16283:2;16263:18;;;16256:30;16322:34;16302:18;;;16295:62;-1:-1:-1;;;16373:18:1;;;16366:31;16414:19;;5397:56:0;16042:397:1;49086:1623:0;30570:16;:23;;-1:-1:-1;;;;30570:23:0;-1:-1:-1;;;30570:23:0;;;49387:7:::1;:11:::0;49361:6:::1;:10:::0;30570:23;;49387:11:::1;-1:-1:-1::0;;;49387:11:0;;::::1;::::0;::::1;::::0;49361:10;;::::1;::::0;::::1;::::0;-1:-1:-1;;;49328:17:0;;::::1;::::0;::::1;::::0;49296:16;;::::1;::::0;::::1;::::0;49231:49:::1;::::0;49263:17;;;;::::1;::::0;::::1;::::0;49231:16;::::1;;:49;:::i;:::-;:81;;;;:::i;:::-;:114;;;;:::i;:::-;:140;;;;:::i;:::-;:167;;;;:::i;:::-;49230:173;::::0;49402:1:::1;49230:173;:::i;:::-;49492:7;:17:::0;49473:6:::1;:16:::0;49208:195:::1;::::0;;::::1;::::0;-1:-1:-1;49414:32:0::1;::::0;49208:195;;49473:36:::1;::::0;49492:17;;;;::::1;::::0;::::1;::::0;49473:16;;::::1;;:36;:::i;:::-;49450:60;::::0;::::1;;:6:::0;:60:::1;:::i;:::-;49449:76;;;;:::i;:::-;49414:111:::0;-1:-1:-1;49536:14:0::1;49553:33;49414:111:::0;49553:6;:33:::1;:::i;:::-;49536:50:::0;-1:-1:-1;49624:21:0::1;49658:24;49536:50:::0;49658:16:::1;:24::i;:::-;49695:20;49718:38;49742:14:::0;49718:21:::1;:38;:::i;:::-;49852:7;:17:::0;49833:6:::1;:16:::0;49695:61;;-1:-1:-1;49767:19:0::1;::::0;49833:36:::1;::::0;49852:17:::1;::::0;;;;::::1;::::0;::::1;::::0;49833:16;;;::::1;;:36;:::i;:::-;49818:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;49789:82;::::0;:12;:82:::1;:::i;:::-;49961:7;:17:::0;49942:6:::1;:16:::0;49767:104;;-1:-1:-1;49882:29:0::1;::::0;49942:36:::1;::::0;49961:17:::1;::::0;;;;::::1;::::0;::::1;::::0;49942:16;;;::::1;;:36;:::i;:::-;49914:65;::::0;::::1;;:11:::0;:65:::1;:::i;:::-;49882:97:::0;-1:-1:-1;49996:25:0;;49992:160:::1;;50079:61;50092:24;50118:21;50079:12;:61::i;:::-;50285:7;:17:::0;50266:6:::1;:16:::0;50198:20:::1;::::0;50266:36:::1;::::0;50285:17:::1;-1:-1:-1::0;;;50285:17:0;;;::::1;::::0;::::1;::::0;50266:16;;::::1;;:36;:::i;:::-;50221:82;;:28;:11:::0;50248:1:::1;50221:28;:::i;:::-;:82;;;;:::i;:::-;50363:7;:11:::0;50350:6:::1;:10:::0;50198:105;;-1:-1:-1;50314:14:0::1;::::0;50391:21:::1;::::0;50350:24:::1;::::0;50363:11:::1;-1:-1:-1::0;;;50363:11:0;;;::::1;::::0;::::1;::::0;50350:10;;::::1;;:24;:::i;:::-;50331:44;;:15;:11:::0;50345:1:::1;50331:15;:::i;:::-;:44;;;;:::i;:::-;:81;:178;;50497:7;:11:::0;50484:6:::1;:10:::0;:24:::1;::::0;50497:11:::1;-1:-1:-1::0;;;50497:11:0;;;::::1;::::0;::::1;::::0;50484:10;;;::::1;;:24;:::i;:::-;50465:44;;:15;:11:::0;50479:1:::1;50465:15;:::i;:::-;:44;;;;:::i;:::-;50331:178;;;50428:21;50331:178;50314:195:::0;-1:-1:-1;50526:16:0;;50522:98:::1;;50567:17;::::0;50559:49:::1;::::0;-1:-1:-1;;;;;50567:17:0;;::::1;::::0;50559:49;::::1;;;::::0;50595:12;;50567:17:::1;50559:49:::0;50567:17;50559:49;50595:12;50567:17;50559:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;50522:98;50636:10:::0;;50632:70:::1;;50663:10;::::0;:27:::1;::::0;-1:-1:-1;;;;;50663:10:0;;::::1;::::0;:27;::::1;;;::::0;50683:6;;50663:10:::1;:27:::0;:10;:27;50683:6;50663:10;:27;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;50632:70;-1:-1:-1::0;;30616:16:0;:24;;-1:-1:-1;;;;30616:24:0;;;-1:-1:-1;;;;;;;;49086:1623:0:o;51914:1022::-;52069:7;52065:230;;;52093:14;45460:7;:11;;-1:-1:-1;;45565:11:0;;;45417:167;52093:14;52136:13;-1:-1:-1;;;;;52126:23:0;:6;-1:-1:-1;;;;;52126:23:0;;52122:72;;;45639:6;:10;45629:7;:20;;45639:10;;;;-1:-1:-1;;45660:32:0;;;;;;;45676:16;;;;;;45660:32;;-1:-1:-1;;45746:30:0;-1:-1:-1;;;45719:16:0;;;;;45703:32;-1:-1:-1;;;;45746:30:0;;-1:-1:-1;;;45761:15:0;;;;;45746:30;;-1:-1:-1;;45787:20:0;-1:-1:-1;;;45797:10:0;;;;;;;;45787:20;;;;;;;;;52170:8;52225:13;-1:-1:-1;;;;;52212:26:0;:9;-1:-1:-1;;;;;52212:26:0;;52208:76;;;45871:7;:11;45861:7;:21;;45871:11;;;;-1:-1:-1;;45893:33:0;;;;;;;45909:17;;;;;;45893:33;;-1:-1:-1;;45981:31:0;-1:-1:-1;;;45953:17:0;;;;;45937:33;-1:-1:-1;;;;45981:31:0;;-1:-1:-1;;;45996:16:0;;;;;45981:31;;-1:-1:-1;;46023:21:0;-1:-1:-1;;;46033:11:0;;;;;;;;46023:21;;;;;;;;;52259:9;-1:-1:-1;;;;;52311:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;52335:22:0;;;;;;:11;:22;;;;;;;;52334:23;52311:46;52307:597;;;52374:48;52396:6;52404:9;52415:6;52374:21;:48::i;:::-;52307:597;;;-1:-1:-1;;;;;52445:19:0;;;;;;:11;:19;;;;;;;;52444:20;:46;;;;-1:-1:-1;;;;;;52468:22:0;;;;;;:11;:22;;;;;;;;52444:46;52440:464;;;52507:46;52527:6;52535:9;52546:6;52507:19;:46::i;52440:464::-;-1:-1:-1;;;;;52576:19:0;;;;;;:11;:19;;;;;;;;52575:20;:47;;;;-1:-1:-1;;;;;;52600:22:0;;;;;;:11;:22;;;;;;;;52599:23;52575:47;52571:333;;;52639:44;52657:6;52665:9;52676:6;52639:17;:44::i;52571:333::-;-1:-1:-1;;;;;52705:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;52728:22:0;;;;;;:11;:22;;;;;;;;52705:45;52701:203;;;52767:48;52789:6;52797:9;52808:6;52767:21;:48::i;52701:203::-;52848:44;52866:6;52874:9;52885:6;52848:17;:44::i;:::-;52914:14;45460:7;:11;;-1:-1:-1;;45565:11:0;;;45417:167;52914:14;51914:1022;;;;:::o;42866:605::-;42964:7;;43000;;42917;;;;;43018:338;43042:9;:16;43038:20;;43018:338;;;43126:7;43102;:21;43110:9;43120:1;43110:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;43110:12:0;43102:21;;;;;;;;;;;;;:31;;:83;;;43178:7;43154;:21;43162:9;43172:1;43162:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;43162:12:0;43154:21;;;;;;;;;;;;;:31;43102:83;43080:146;;;43209:7;;43218;;43201:25;;;;;;;42866:605;;:::o;43080:146::-;43251:34;43263:7;:21;43271:9;43281:1;43271:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;43271:12:0;43263:21;;;;;;;;;;;;;43251:7;;:11;:34::i;:::-;43241:44;;43310:34;43322:7;:21;43330:9;43340:1;43330:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;43330:12:0;43322:21;;;;;;;;;;;;;43310:7;;:11;:34::i;:::-;43300:44;-1:-1:-1;43060:3:0;;;;:::i;:::-;;;;43018:338;;;-1:-1:-1;43392:7:0;;43380;;:20;;:11;:20::i;:::-;43370:7;:30;43366:61;;;43410:7;;43419;;43402:25;;;;;;42866:605;;:::o;43366:61::-;43446:7;;43455;;-1:-1:-1;42866:605:0;-1:-1:-1;42866:605:0:o;6586:312::-;6706:7;6741:12;6734:5;6726:28;;;;-1:-1:-1;;;6726:28:0;;;;;;;;:::i;:::-;-1:-1:-1;6765:9:0;6777:5;6781:1;6777;:5;:::i;44597:130::-;44700:7;;44661;;44688:31;;44713:5;;44688:20;;:7;;44700;;44688:11;:20::i;44735:174::-;44876:13;;44832:7;;44864:37;;44895:5;;44864:26;;:7;;44876:13;;;;;44864:11;:26::i;45279:130::-;45382:7;;45343;;45370:31;;45395:5;;45370:20;;:7;;-1:-1:-1;;;45382:7:0;;;;45370:11;:20::i;44917:174::-;45058:13;;45014:7;;45046:37;;45077:5;;45046:26;;:7;;-1:-1:-1;;;45058:13:0;;;;45046:11;:26::i;45099:172::-;45239:12;;45195:7;;45227:36;;45257:5;;45227:25;;:7;;-1:-1:-1;;;45239:12:0;;;;45227:11;:25::i;50717:589::-;50867:16;;;50881:1;50867:16;;;;;;;;50843:21;;50867:16;;;;;;;;;;-1:-1:-1;50867:16:0;50843:40;;50912:4;50894;50899:1;50894:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;50894:23:0;;;-1:-1:-1;;;;;50894:23:0;;;;;50938:15;-1:-1:-1;;;;;50938:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50928:4;50933:1;50928:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;50928:32:0;;;-1:-1:-1;;;;;50928:32:0;;;;;50973:62;50990:4;51005:15;51023:11;50973:8;:62::i;:::-;51074:224;;-1:-1:-1;;;51074:224:0;;-1:-1:-1;;;;;51074:15:0;:66;;;;:224;;51155:11;;51181:1;;51225:4;;51252;;51272:15;;51074:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51314:519;51462:62;51479:4;51494:15;51512:11;51462:8;:62::i;:::-;51567:258;;-1:-1:-1;;;51567:258:0;;51639:4;51567:258;;;18650:34:1;;;18700:18;;;18693:34;;;51685:1:0;18743:18:1;;;18736:34;;;18786:18;;;18779:34;18829:19;;;18822:44;51799:15:0;18882:19:1;;;18875:35;51567:15:0;-1:-1:-1;;;;;51567:31:0;;;;51606:9;;18584:19:1;;51567:258:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;51314:519;;:::o;54827:957::-;54978:23;55016:12;55043:18;55076:15;55106:17;55137:20;55149:7;55137:11;:20::i;:::-;54963:194;;;;;;;;;;55169:15;55186:23;55211:12;55227:159;55253:7;55275:4;55294:10;55319:7;55341:9;55365:10;:8;:10::i;55227:159::-;-1:-1:-1;;;;;55417:15:0;;;;;;:7;:15;;;;;;55168:218;;-1:-1:-1;55168:218:0;;-1:-1:-1;55168:218:0;-1:-1:-1;55417:28:0;;55437:7;55417:19;:28::i;:::-;-1:-1:-1;;;;;55399:15:0;;;;;;:7;:15;;;;;;;;:46;;;;55474:7;:15;;;;:28;;55494:7;55474:19;:28::i;:::-;-1:-1:-1;;;;;55456:15:0;;;;;;;:7;:15;;;;;;:46;;;;55534:18;;;;;;;:39;;55557:15;55534:22;:39::i;:::-;-1:-1:-1;;;;;55513:18:0;;;;;;:7;:18;;;;;:60;55584:26;55599:10;55584:14;:26::i;:::-;55621:23;55636:7;55621:14;:23::i;:::-;55655:27;55672:9;55655:16;:27::i;:::-;55693:23;55705:4;55711;55693:11;:23::i;:::-;55749:9;-1:-1:-1;;;;;55732:44:0;55741:6;-1:-1:-1;;;;;55732:44:0;;55760:15;55732:44;;;;1662:25:1;;1650:2;1635:18;;1516:177;55732:44:0;;;;;;;;54952:832;;;;;;;;54827:957;;;:::o;53850:969::-;53999:23;54037:12;54064:18;54097:15;54127:17;54158:20;54170:7;54158:11;:20::i;:::-;53984:194;;;;;;;;;;54190:15;54207:23;54232:12;54248:159;54274:7;54296:4;54315:10;54340:7;54362:9;54386:10;:8;:10::i;54248:159::-;-1:-1:-1;;;;;54438:15:0;;;;;;:7;:15;;;;;;54189:218;;-1:-1:-1;54189:218:0;;-1:-1:-1;54189:218:0;-1:-1:-1;54438:28:0;;54189:218;54438:19;:28::i;:::-;-1:-1:-1;;;;;54420:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;54498:18;;;;;:7;:18;;;;;:39;;54521:15;54498:22;:39::i;:::-;-1:-1:-1;;;;;54477:18:0;;;;;;:7;:18;;;;;;;;:60;;;;54569:7;:18;;;;:39;;54592:15;54569:22;:39::i;52944:896::-;53091:23;53129:12;53156:18;53189:15;53219:17;53250:20;53262:7;53250:11;:20::i;:::-;53076:194;;;;;;;;;;53282:15;53299:23;53324:12;53340:159;53366:7;53388:4;53407:10;53432:7;53454:9;53478:10;:8;:10::i;53340:159::-;-1:-1:-1;;;;;53530:15:0;;;;;;:7;:15;;;;;;53281:218;;-1:-1:-1;53281:218:0;;-1:-1:-1;53281:218:0;-1:-1:-1;53530:28:0;;53281:218;53530:19;:28::i;55792:1028::-;55943:23;55981:12;56008:18;56041:15;56071:17;56102:20;56114:7;56102:11;:20::i;:::-;55928:194;;;;;;;;;;56134:15;56151:23;56176:12;56192:159;56218:7;56240:4;56259:10;56284:7;56306:9;56330:10;:8;:10::i;56192:159::-;-1:-1:-1;;;;;56382:15:0;;;;;;:7;:15;;;;;;56133:218;;-1:-1:-1;56133:218:0;;-1:-1:-1;56133:218:0;-1:-1:-1;56382:28:0;;56402:7;56382:19;:28::i;:::-;-1:-1:-1;;;;;56364:15:0;;;;;;:7;:15;;;;;;;;:46;;;;56439:7;:15;;;;:28;;56459:7;56439:19;:28::i;43479:355::-;43542:19;43564:10;:8;:10::i;:::-;43542:32;-1:-1:-1;43585:18:0;43606:27;:10;43542:32;43606:14;:27::i;:::-;43685:4;43669:22;;;;:7;:22;;;;;;43585:48;;-1:-1:-1;43669:38:0;;43585:48;43669:26;:38::i;:::-;43660:4;43644:22;;;;:7;:22;;;;;;;;:63;;;;43722:11;:26;;;;;;43718:108;;;43804:4;43788:22;;;;:7;:22;;;;;;:38;;43815:10;43788:26;:38::i;:::-;43779:4;43763:22;;;;:7;:22;;;;;:63;43718:108;43531:303;;43479:355;:::o;44190:399::-;44254:19;44276:10;:8;:10::i;:::-;44254:32;-1:-1:-1;44297:17:0;44317:26;:9;44254:32;44317:13;:26::i;:::-;44390:16;;-1:-1:-1;;;;;44390:16:0;44382:25;;;;:7;:25;;;;;;44297:46;;-1:-1:-1;44382:40:0;;44297:46;44382:29;:40::i;:::-;44362:16;;;-1:-1:-1;;;;;44362:16:0;;;44354:25;;;;:7;:25;;;;;;;;:68;;;;44449:16;;;;;44437:29;;:11;:29;;;;;;;44433:148;;;44517:16;;-1:-1:-1;;;;;44517:16:0;44509:25;;;;:7;:25;;;;;;:72;;44557:9;44509:29;:72::i;:::-;44489:16;;-1:-1:-1;;;;;44489:16:0;44481:25;;;;:7;:25;;;;;:100;44243:346;;44190:399;:::o;40968:147::-;41046:7;;:17;;41058:4;41046:11;:17::i;:::-;41036:7;:27;41087:10;;:20;;41102:4;41087:14;:20::i;:::-;41074:10;:33;-1:-1:-1;;40968:147:0:o;14:597: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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;671:70;616:131;:::o;752:315::-;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;2417:456::-;2494:6;2502;2510;2563:2;2551:9;2542:7;2538:23;2534:32;2531:52;;;2579:1;2576;2569:12;2531:52;2618:9;2605:23;2637:31;2662:5;2637:31;:::i;:::-;2687:5;-1:-1:-1;2744:2:1;2729:18;;2716:32;2757:33;2716:32;2757:33;:::i;:::-;2417:456;;2809:7;;-1:-1:-1;;;2863:2:1;2848:18;;;;2835:32;;2417:456::o;3406:180::-;3465:6;3518:2;3506:9;3497:7;3493:23;3489:32;3486:52;;;3534:1;3531;3524:12;3486:52;-1:-1:-1;3557:23:1;;3406:180;-1:-1:-1;3406:180:1:o;3780:160::-;3845:20;;3901:13;;3894:21;3884:32;;3874:60;;3930:1;3927;3920:12;3874:60;3780:160;;;:::o;3945:248::-;4010:6;4018;4071:2;4059:9;4050:7;4046:23;4042:32;4039:52;;;4087:1;4084;4077:12;4039:52;4123:9;4110:23;4100:33;;4152:35;4183:2;4172:9;4168:18;4152:35;:::i;:::-;4142:45;;3945:248;;;;;:::o;4406:180::-;4462:6;4515:2;4503:9;4494:7;4490:23;4486:32;4483:52;;;4531:1;4528;4521:12;4483:52;4554:26;4570:9;4554:26;:::i;4591:388::-;4659:6;4667;4720:2;4708:9;4699:7;4695:23;4691:32;4688:52;;;4736:1;4733;4726:12;4688:52;4775:9;4762:23;4794:31;4819:5;4794:31;:::i;:::-;4844:5;-1:-1:-1;4901:2:1;4886:18;;4873:32;4914:33;4873:32;4914:33;:::i;:::-;4966:7;4956:17;;;4591:388;;;;;:::o;4984:159::-;5051:20;;5111:6;5100:18;;5090:29;;5080:57;;5133:1;5130;5123:12;5148:839;5278:6;5286;5294;5302;5310;5318;5326;5334;5342;5350;5403:3;5391:9;5382:7;5378:23;5374:33;5371:53;;;5420:1;5417;5410:12;5371:53;5443:28;5461:9;5443:28;:::i;:::-;5433:38;;5490:37;5523:2;5512:9;5508:18;5490:37;:::i;:::-;5480:47;;5546:37;5579:2;5568:9;5564:18;5546:37;:::i;:::-;5536:47;;5602:37;5635:2;5624:9;5620:18;5602:37;:::i;:::-;5592:47;;5658:38;5691:3;5680:9;5676:19;5658:38;:::i;:::-;5648:48;;5715:38;5748:3;5737:9;5733:19;5715:38;:::i;:::-;5705:48;;5772:38;5805:3;5794:9;5790:19;5772:38;:::i;:::-;5762:48;;5829:38;5862:3;5851:9;5847:19;5829:38;:::i;:::-;5819:48;;5886:38;5919:3;5908:9;5904:19;5886:38;:::i;:::-;5876:48;;5943:38;5976:3;5965:9;5961:19;5943:38;:::i;:::-;5933:48;;5148:839;;;;;;;;;;;;;:::o;5992:380::-;6071:1;6067:12;;;;6114;;;6135:61;;6189:4;6181:6;6177:17;6167:27;;6135:61;6242:2;6234:6;6231:14;6211:18;6208:38;6205:161;;;6288:10;6283:3;6279:20;6276:1;6269:31;6323:4;6320:1;6313:15;6351:4;6348:1;6341:15;6205:161;;5992:380;;;:::o;6377:356::-;6579:2;6561:21;;;6598:18;;;6591:30;6657:34;6652:2;6637:18;;6630:62;6724:2;6709:18;;6377:356::o;8263:127::-;8324:10;8319:3;8315:20;8312:1;8305:31;8355:4;8352:1;8345:15;8379:4;8376:1;8369:15;8395:127;8456:10;8451:3;8447:20;8444:1;8437:31;8487:4;8484:1;8477:15;8511:4;8508:1;8501:15;8527:125;8567:4;8595:1;8592;8589:8;8586:34;;;8600:18;;:::i;:::-;-1:-1:-1;8637:9:1;;8527:125::o;8657:127::-;8718:10;8713:3;8709:20;8706:1;8699:31;8749:4;8746:1;8739:15;8773:4;8770:1;8763:15;8789:135;8828:3;-1:-1:-1;;8849:17:1;;8846:43;;;8869:18;;:::i;:::-;-1:-1:-1;8916:1:1;8905:13;;8789:135::o;11223:128::-;11263:3;11294:1;11290:6;11287:1;11284:13;11281:39;;;11300:18;;:::i;:::-;-1:-1:-1;11336:9:1;;11223:128::o;15647:168::-;15687:7;15753:1;15749;15745:6;15741:14;15738:1;15735:21;15730:1;15723:9;15716:17;15712:45;15709:71;;;15760:18;;:::i;:::-;-1:-1:-1;15800:9:1;;15647:168::o;15820:217::-;15860:1;15886;15876:132;;15930:10;15925:3;15921:20;15918:1;15911:31;15965:4;15962:1;15955:15;15993:4;15990:1;15983:15;15876:132;-1:-1:-1;16022:9:1;;15820:217::o;16444:224::-;16483:3;16511:6;16544:2;16541:1;16537:10;16574:2;16571:1;16567:10;16605:3;16601:2;16597:12;16592:3;16589:21;16586:47;;;16613:18;;:::i;:::-;16649:13;;16444:224;-1:-1:-1;;;;16444:224:1:o;16673:258::-;16712:7;16744:6;16777:2;16774:1;16770:10;16807:2;16804:1;16800:10;16863:3;16859:2;16855:12;16850:3;16847:21;16840:3;16833:11;16826:19;16822:47;16819:73;;;16872:18;;:::i;:::-;16912:13;;16673:258;-1:-1:-1;;;;16673:258:1:o;17068:251::-;17138:6;17191:2;17179:9;17170:7;17166:23;17162:32;17159:52;;;17207:1;17204;17197:12;17159:52;17239:9;17233:16;17258:31;17283:5;17258:31;:::i;17324:980::-;17586:4;17634:3;17623:9;17619:19;17665:6;17654:9;17647:25;17691:2;17729:6;17724:2;17713:9;17709:18;17702:34;17772:3;17767:2;17756:9;17752:18;17745:31;17796:6;17831;17825:13;17862:6;17854;17847:22;17900:3;17889:9;17885:19;17878:26;;17939:2;17931:6;17927:15;17913:29;;17960:1;17970:195;17984:6;17981:1;17978:13;17970:195;;;18049:13;;-1:-1:-1;;;;;18045:39:1;18033:52;;18140:15;;;;18105:12;;;;18081:1;17999:9;17970:195;;;-1:-1:-1;;;;;;;18221:32:1;;;;18216:2;18201:18;;18194:60;-1:-1:-1;;;18285:3:1;18270:19;18263:35;18182:3;17324:980;-1:-1:-1;;;17324:980:1:o;18921:306::-;19009:6;19017;19025;19078:2;19066:9;19057:7;19053:23;19049:32;19046:52;;;19094:1;19091;19084:12;19046:52;19123:9;19117:16;19107:26;;19173:2;19162:9;19158:18;19152:25;19142:35;;19217:2;19206:9;19202:18;19196:25;19186:35;;18921:306;;;;;:::o
Swarm Source
ipfs://f40b98b009795233da76bbfae4e9dbb4a9364f2f3cee4ff1f0c2093fc915cdad
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.