ERC-20
Overview
Max Total Supply
130,000,000 PEPENOBI
Holders
42
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
156,842.670396586 PEPENOBIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PEPENOBI
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-28 */ /* Web: www.pepenobi.com TG: t.me/PepeNobi Twitter: twitter.com/pepenobierc */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.16; interface IERC20 { function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return payable(msg.sender); } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue( address target, bytes memory data, uint256 weiValue, string memory errorMessage ) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value: weiValue}( data ); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; address private _previousOwner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract PEPENOBI 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 _isExcludedFromLimit; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 130000000 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; address payable _marketingAddress = payable(address(0x00Ec0C304ee150f6E0E2A974D77FEDF14c577cdB)); string private _name = "PEPENOBI"; string private _symbol = "PEPENOBI"; uint8 private _decimals = 9; struct BuyFee { uint8 reflection; uint8 liquidity; uint8 marketing; } struct SellFee { uint8 reflection; uint8 liquidity; uint8 marketing; } BuyFee public buyFee; SellFee public sellFee; uint8 private _reflectionFee; uint8 private _liquidityFee; uint8 private _marketingFee; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool swapAndLiquifyEnabled = true; uint256 public _maxTxAmount = _tTotal.div(1000).mul(30); //3% uint256 private numTokensSellToAddToLiquidity = _tTotal.div(1000).mul(3); //0.3% uint256 public _maxWalletSize = _tTotal.div(1000).mul(30); // 3% event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } uint256 public deadBlocks = 1; uint256 launchedAt = 0; bool tradingOpen = false; mapping (address => uint256) public _lastTrade; constructor() { _rOwned[_msgSender()] = _rTotal; buyFee.reflection = 1; buyFee.liquidity = 1; buyFee.marketing = 1; sellFee.reflection = 1; sellFee.liquidity = 1; sellFee.marketing = 1; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; // exclude owner, and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_marketingAddress] = true; _isExcludedFromLimit[_marketingAddress] = true; _isExcludedFromLimit[owner()] = true; _isExcludedFromLimit[address(this)] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { 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 isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } 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 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 setBothFees( uint8 buy_reflection, uint8 buy_liquidity, uint8 buy_marketing, uint8 sell_reflection, uint8 sell_liquidity, uint8 sell_marketing ) external onlyOwner { buyFee.reflection = buy_reflection; buyFee.liquidity = buy_liquidity; buyFee.marketing = buy_marketing; sellFee.reflection = sell_reflection; sellFee.liquidity = sell_liquidity; sellFee.marketing = sell_marketing; } function setNumTokensSellToAddToLiquidity(uint256 numTokens) external onlyOwner { numTokensSellToAddToLiquidity = numTokens; } 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 tFee = calculateReflectionFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tWallet = calculateMarketingFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity); tTransferAmount = tTransferAmount.sub(tWallet); return (tTransferAmount, tFee, tLiquidity, tWallet); } function _getRValues( uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 tWallet, 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 rTransferAmount = rAmount .sub(rFee) .sub(rLiquidity) .sub(rWallet); 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 calculateReflectionFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_reflectionFee).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 removeAllFee() private { _reflectionFee = 0; _liquidityFee = 0; _marketingFee = 0; } function setBuy() private { _reflectionFee = buyFee.reflection; _liquidityFee = buyFee.liquidity; _marketingFee = buyFee.marketing; } function setSell() private { _reflectionFee = sellFee.reflection; _liquidityFee = sellFee.liquidity; _marketingFee = sellFee.marketing; } function isExcludedFromFee(address account) public view returns (bool) { return _isExcludedFromFee[account]; } function isExcludedFromLimit(address account) public view returns (bool) { return _isExcludedFromLimit[account]; } function _approve( address owner, address spender, uint256 amount ) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if ( from != owner() && to != owner() ) require(tradingOpen, "Trading not yet enabled."); //transfers disabled before openTrading // 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 reflection, liquidity fee _tokenTransfer(from, to, amount, takeFee); } function swapAndLiquify(uint256 tokens) private lockTheSwap { // Split the contract balance into halves uint256 denominator = (buyFee.liquidity + sellFee.liquidity + buyFee.marketing + sellFee.marketing) * 2; uint256 tokensToAddLiquidityWith = (tokens * (buyFee.liquidity + sellFee.liquidity)) / denominator; uint256 toSwap = tokens - tokensToAddLiquidityWith; uint256 initialBalance = address(this).balance; swapTokensForEth(toSwap); uint256 deltaBalance = address(this).balance - initialBalance; uint256 unitBalance = deltaBalance / (denominator - (buyFee.liquidity + sellFee.liquidity)); uint256 ethToAddLiquidityWith = unitBalance * (buyFee.liquidity + sellFee.liquidity); if (ethToAddLiquidityWith > 0) { // Add liquidity to uniswap addLiquidity(tokensToAddLiquidityWith, ethToAddLiquidityWith); } // Send ETH to marketing uint256 marketingAmt = unitBalance * 2 * (buyFee.marketing + sellFee.marketing); if (marketingAmt > 0) { payable(_marketingAddress).transfer(marketingAmt); } } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(this), block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer( address sender, address recipient, uint256 amount, bool takeFee ) private { if (takeFee) { removeAllFee(); if (sender == uniswapV2Pair) { setBuy(); } if (recipient == uniswapV2Pair) { setSell(); } } 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 ) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues( tAmount, tFee, tLiquidity, tWallet, _getRate() ); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeWalletFee(tWallet); _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 ) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues( tAmount, tFee, tLiquidity, tWallet, _getRate() ); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeWalletFee(tWallet); _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 ) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues( tAmount, tFee, tLiquidity, tWallet, _getRate() ); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _takeWalletFee(tWallet); _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 ) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues( tAmount, tFee, tLiquidity, tWallet, _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); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function openTrading(bool _status,uint256 _deadBlocks) external onlyOwner() { tradingOpen = _status; if(tradingOpen && launchedAt == 0){ launchedAt = block.number; deadBlocks = _deadBlocks; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_lastTrade","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint8","name":"reflection","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"},{"internalType":"uint256","name":"_deadBlocks","type":"uint256"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint8","name":"reflection","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"buy_reflection","type":"uint8"},{"internalType":"uint8","name":"buy_liquidity","type":"uint8"},{"internalType":"uint8","name":"buy_marketing","type":"uint8"},{"internalType":"uint8","name":"sell_reflection","type":"uint8"},{"internalType":"uint8","name":"sell_liquidity","type":"uint8"},{"internalType":"uint8","name":"sell_marketing","type":"uint8"}],"name":"setBothFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526701cdda4faccd000060098190556200002090600019620005dd565b6200002e906000196200060a565b600a55600c80546001600160a01b03191672ec0c304ee150f6e0e2a974d77fedf14c577cdb179055604080518082019091526008815267504550454e4f424960c01b6020820152600d90620000849082620006c5565b50604080518082019091526008815267504550454e4f424960c01b6020820152600e90620000b39082620006c5565b50600f805460ff191660099081179091556012805460ff60201b1916640100000000179055546200011290601e90620000fe906103e862000d10620004aa602090811b91909117901c565b620004fd60201b62000d521790919060201c565b601355620001396003620000fe6103e8600954620004aa60201b62000d101790919060201c565b60145562000160601e620000fe6103e8600954620004aa60201b62000d101790919060201c565b601555600160165560006017556018805460ff191690553480156200018457600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a543360009081526002602090815260409182902092909255601080546201010162ffffff199182168117909255601180549091169091179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa1580156200024e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000274919062000791565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e8919062000791565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000336573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200035c919062000791565b6001600160a01b0390811660a0528116608052600160056000620003886000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260058452828120805486166001908117909155600c8054841683528483208054881683179055549092168152600893849052918220805490941681179093556200040b6000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526008909252902080549091166001179055620004533390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040516200049b91815260200190565b60405180910390a35062000845565b6000620004f483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200058b60201b60201c565b90505b92915050565b6000826000036200051157506000620004f7565b60006200051f8385620007bc565b9050826200052e8583620007de565b14620004f45760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b60008183620005af5760405162461bcd60e51b8152600401620005829190620007f5565b506000620005be8486620007de565b95945050505050565b634e487b7160e01b600052601260045260246000fd5b600082620005ef57620005ef620005c7565b500690565b634e487b7160e01b600052601160045260246000fd5b81810381811115620004f757620004f7620005f4565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200064b57607f821691505b6020821081036200066c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006c057600081815260208120601f850160051c810160208610156200069b5750805b601f850160051c820191505b81811015620006bc57828155600101620006a7565b5050505b505050565b81516001600160401b03811115620006e157620006e162000620565b620006f981620006f2845462000636565b8462000672565b602080601f831160018114620007315760008415620007185750858301515b600019600386901b1c1916600185901b178555620006bc565b600085815260208120601f198616915b82811015620007625788860151825594840194600190910190840162000741565b5085821015620007815787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620007a457600080fd5b81516001600160a01b0381168114620004f457600080fd5b6000816000190483118215151615620007d957620007d9620005f4565b500290565b600082620007f057620007f0620005c7565b500490565b600060208083528351808285015260005b81811015620008245785810183015185820160400152820162000806565b506000604082860101526040601f19601f8301168501019250505092915050565b60805160a0516125c5620008aa6000396000818161040d015281816110e5015281816112400152818161158201526115f8015260008181610282015281816119b001528181611a6901528181611aa501528181611b170152611b7301526125c56000f3fe6080604052600436106101e75760003560e01c80637d1db4a511610102578063b27bcfba11610095578063ea2f0b3711610064578063ea2f0b3714610661578063f0f165af14610681578063f2fde38b146106a1578063fabb0b4f146106c157600080fd5b8063b27bcfba146105a2578063c49b9a80146105c2578063d94160e0146105e2578063dd62ed3e1461061b57600080fd5b806391d919a9116100d157806391d919a91461052057806395d89b4114610540578063a87859f614610555578063a9059cbb1461058257600080fd5b80637d1db4a51461049d57806388f82020146104b35780638da5cb5b146104ec5780638f9a55c01461050a57600080fd5b80632d8381191161017a57806349bd5a5e1161014957806349bd5a5e146103fb5780635342acb41461042f57806370a0823114610468578063715018a61461048857600080fd5b80632d8381191461036c578063313ce5671461038c578063437823ec146103ae57806347062402146103ce57600080fd5b806318160ddd116101b657806318160ddd146102bc57806323b872dd146102db5780632b14ca56146102fb5780632d4103d61461034c57600080fd5b806306fdde03146101f3578063095ea7b31461021e5780630bd3a7f91461024e5780631694505e1461027057600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b506102086106d7565b604051610215919061213b565b60405180910390f35b34801561022a57600080fd5b5061023e6102393660046121a1565b610769565b6040519015158152602001610215565b34801561025a57600080fd5b5061026e6102693660046121cd565b610780565b005b34801561027c57600080fd5b506102a47f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610215565b3480156102c857600080fd5b506009545b604051908152602001610215565b3480156102e757600080fd5b5061023e6102f63660046121ea565b6107d7565b34801561030757600080fd5b506011546103289060ff808216916101008104821691620100009091041683565b6040805160ff94851681529284166020840152921691810191909152606001610215565b34801561035857600080fd5b5061026e610367366004612240565b610840565b34801561037857600080fd5b506102cd61038736600461225c565b61089d565b34801561039857600080fd5b50600f5460405160ff9091168152602001610215565b3480156103ba57600080fd5b5061026e6103c93660046121cd565b610921565b3480156103da57600080fd5b506010546103289060ff808216916101008104821691620100009091041683565b34801561040757600080fd5b506102a47f000000000000000000000000000000000000000000000000000000000000000081565b34801561043b57600080fd5b5061023e61044a3660046121cd565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561047457600080fd5b506102cd6104833660046121cd565b61096f565b34801561049457600080fd5b5061026e6109ce565b3480156104a957600080fd5b506102cd60135481565b3480156104bf57600080fd5b5061023e6104ce3660046121cd565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156104f857600080fd5b506000546001600160a01b03166102a4565b34801561051657600080fd5b506102cd60155481565b34801561052c57600080fd5b5061026e61053b3660046121cd565b610a42565b34801561054c57600080fd5b50610208610a8d565b34801561056157600080fd5b506102cd6105703660046121cd565b60196020526000908152604090205481565b34801561058e57600080fd5b5061023e61059d3660046121a1565b610a9c565b3480156105ae57600080fd5b5061026e6105bd366004612286565b610aa9565b3480156105ce57600080fd5b5061026e6105dd3660046122fa565b610b28565b3480156105ee57600080fd5b5061023e6105fd3660046121cd565b6001600160a01b031660009081526008602052604090205460ff1690565b34801561062757600080fd5b506102cd610636366004612315565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561066d57600080fd5b5061026e61067c3660046121cd565b610bac565b34801561068d57600080fd5b5061026e61069c36600461225c565b610bf7565b3480156106ad57600080fd5b5061026e6106bc3660046121cd565b610c26565b3480156106cd57600080fd5b506102cd60165481565b6060600d80546106e69061234e565b80601f01602080910402602001604051908101604052809291908181526020018280546107129061234e565b801561075f5780601f106107345761010080835404028352916020019161075f565b820191906000526020600020905b81548152906001019060200180831161074257829003601f168201915b5050505050905090565b6000610776338484610dd4565b5060015b92915050565b6000546001600160a01b031633146107b35760405162461bcd60e51b81526004016107aa90612388565b60405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b60006107e4848484610ef8565b610836843361083185604051806060016040528060288152602001612568602891396001600160a01b038a16600090815260046020908152604080832033845290915290205491906112fa565b610dd4565b5060019392505050565b6000546001600160a01b0316331461086a5760405162461bcd60e51b81526004016107aa90612388565b6018805460ff191683151590811790915560ff16801561088a5750601754155b15610899574360175560168190555b5050565b6000600a548211156109045760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016107aa565b600061090e611334565b905061091a8382610d10565b9392505050565b6000546001600160a01b0316331461094b5760405162461bcd60e51b81526004016107aa90612388565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6001600160a01b03811660009081526006602052604081205460ff16156109ac57506001600160a01b031660009081526003602052604090205490565b6001600160a01b03821660009081526002602052604090205461077a9061089d565b6000546001600160a01b031633146109f85760405162461bcd60e51b81526004016107aa90612388565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b03163314610a6c5760405162461bcd60e51b81526004016107aa90612388565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6060600e80546106e69061234e565b6000610776338484610ef8565b6000546001600160a01b03163314610ad35760405162461bcd60e51b81526004016107aa90612388565b6010805460ff97881661ffff199182161761010097891688021762ff00001990811662010000978a16880217909255601180549589169590911694909417928716909502919091179093169290931602179055565b6000546001600160a01b03163314610b525760405162461bcd60e51b81526004016107aa90612388565b601280548215156401000000000264ff00000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610ba190831515815260200190565b60405180910390a150565b6000546001600160a01b03163314610bd65760405162461bcd60e51b81526004016107aa90612388565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b03163314610c215760405162461bcd60e51b81526004016107aa90612388565b601455565b6000546001600160a01b03163314610c505760405162461bcd60e51b81526004016107aa90612388565b6001600160a01b038116610cb55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107aa565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600061091a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611357565b600082600003610d645750600061077a565b6000610d7083856123d3565b905082610d7d85836123f2565b1461091a5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016107aa565b6001600160a01b038316610e365760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107aa565b6001600160a01b038216610e975760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107aa565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f5c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107aa565b6001600160a01b038216610fbe5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107aa565b600081116110205760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107aa565b6000546001600160a01b0384811691161480159061104c57506000546001600160a01b03838116911614155b156110a35760185460ff166110a35760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e000000000000000060448201526064016107aa565b60006110ae3061096f565b905060135481106110be57506013545b601454811080159081906110dc57506012546301000000900460ff16155b801561111a57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b80156111305750601254640100000000900460ff165b1561114357601454915061114382611385565b6001600160a01b03851660009081526005602052604090205460019060ff168061118557506001600160a01b03851660009081526005602052604090205460ff165b1561118e575060005b80156112e6576001600160a01b03861660009081526008602052604090205460ff161580156111d657506001600160a01b03851660009081526008602052604090205460ff16155b156112e65760135484111561123e5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016107aa565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316146112e6576015546112838661096f565b61128d9086612414565b11156112e65760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b60648201526084016107aa565b6112f286868684611569565b505050505050565b6000818484111561131e5760405162461bcd60e51b81526004016107aa919061213b565b50600061132b8486612427565b95945050505050565b60008060006113416117d7565b90925090506113508282610d10565b9250505090565b600081836113785760405162461bcd60e51b81526004016107aa919061213b565b50600061132b84866123f2565b6012805463ff000000191663010000001790556011546010546000916201000080820460ff908116939182048116926113cb92610100918290048316929190041661243a565b6113d5919061243a565b6113df919061243a565b6113ea906002612453565b60115460105460ff9283169350600092849261141392610100918290048316929190041661243a565b6114209060ff16856123d3565b61142a91906123f2565b905060006114388285612427565b90504761144482611959565b60006114508247612427565b6011546010549192506000916114769160ff61010091829004811692919091041661243a565b6114839060ff1687612427565b61148d90836123f2565b6011546010549192506000916114b39160ff61010091829004811692919091041661243a565b6114c09060ff16836123d3565b905080156114d2576114d28682611b11565b6011546010546000916114f59160ff62010000928390048116929091041661243a565b60ff166115038460026123d3565b61150d91906123d3565b9050801561155157600c546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561154f573d6000803e3d6000fd5b505b50506012805463ff0000001916905550505050505050565b801561166c576115806012805462ffffff19169055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316036115f6576010546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03160361166c576011546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b6001600160a01b03841660009081526006602052604090205460ff1680156116ad57506001600160a01b03831660009081526006602052604090205460ff16155b156116c2576116bd848484611bf1565b6117c0565b6001600160a01b03841660009081526006602052604090205460ff1615801561170357506001600160a01b03831660009081526006602052604090205460ff165b15611713576116bd848484611d38565b6001600160a01b03841660009081526006602052604090205460ff1615801561175557506001600160a01b03831660009081526006602052604090205460ff16155b15611765576116bd848484611df3565b6001600160a01b03841660009081526006602052604090205460ff1680156117a557506001600160a01b03831660009081526006602052604090205460ff165b156117b5576116bd848484611e49565b6117c0848484611df3565b6117d16012805462ffffff19169055565b50505050565b600a546009546000918291825b600754811015611929578260026000600784815481106118065761180661247c565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611871575081600360006007848154811061184a5761184a61247c565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561188757600a54600954945094505050509091565b6118cd60026000600784815481106118a1576118a161247c565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611eca565b925061191560036000600784815481106118e9576118e961247c565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611eca565b91508061192181612492565b9150506117e4565b50600954600a5461193991610d10565b82101561195057600a546009549350935050509091565b90939092509050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061198e5761198e61247c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a3091906124ab565b81600181518110611a4357611a4361247c565b60200260200101906001600160a01b031690816001600160a01b031681525050611a8e307f000000000000000000000000000000000000000000000000000000000000000084610dd4565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611ae39085906000908690309042906004016124c8565b600060405180830381600087803b158015611afd57600080fd5b505af11580156112f2573d6000803e3d6000fd5b611b3c307f000000000000000000000000000000000000000000000000000000000000000084610dd4565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611bc5573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611bea9190612539565b5050505050565b600080600080611c0085611f0c565b93509350935093506000806000611c2188878787611c1c611334565b611f6b565b6001600160a01b038d166000908152600360205260409020549295509093509150611c4c9089611eca565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054611c7b9084611eca565b6001600160a01b03808c1660009081526002602052604080822093909355908b1681522054611caa9083611fcd565b6001600160a01b038a16600090815260026020526040902055611ccc8561202c565b611cd58461202c565b611cdf81876120b5565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef89604051611d2491815260200190565b60405180910390a350505050505050505050565b600080600080611d4785611f0c565b93509350935093506000806000611d6388878787611c1c611334565b6001600160a01b038d166000908152600260205260409020549295509093509150611d8e9084611eca565b6001600160a01b03808c16600090815260026020908152604080832094909455918c16815260039091522054611dc49088611fcd565b6001600160a01b038a16600090815260036020908152604080832093909355600290522054611caa9083611fcd565b600080600080611e0285611f0c565b93509350935093506000806000611e1e88878787611c1c611334565b6001600160a01b038d166000908152600260205260409020549295509093509150611c7b9084611eca565b600080600080611e5885611f0c565b93509350935093506000806000611e7488878787611c1c611334565b6001600160a01b038d166000908152600360205260409020549295509093509150611e9f9089611eca565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054611d8e90845b600061091a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506112fa565b6000806000806000611f1d866120d9565b90506000611f2a876120fa565b90506000611f378861211a565b90506000611f4f83611f498b87611eca565b90611eca565b9050611f5b8183611eca565b9993985091965094509092505050565b6000808080611f7a8986610d52565b90506000611f888987610d52565b90506000611f968988610d52565b90506000611fa48989610d52565b90506000611fb882611f4985818989611eca565b949d949c50929a509298505050505050505050565b600080611fda8385612414565b90508381101561091a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016107aa565b6000612036611334565b905060006120448383610d52565b306000908152600260205260409020549091506120619082611fcd565b3060009081526002602090815260408083209390935560069052205460ff16156120b0573060009081526003602052604090205461209f9084611fcd565b306000908152600360205260409020555b505050565b600a546120c29083611eca565b600a55600b546120d29082611fcd565b600b555050565b60125460009061077a906064906120f490859060ff16610d52565b90610d10565b60125460009061077a906064906120f4908590610100900460ff16610d52565b60125460009061077a906064906120f490859062010000900460ff16610d52565b600060208083528351808285015260005b818110156121685785810183015185820160400152820161214c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461219e57600080fd5b50565b600080604083850312156121b457600080fd5b82356121bf81612189565b946020939093013593505050565b6000602082840312156121df57600080fd5b813561091a81612189565b6000806000606084860312156121ff57600080fd5b833561220a81612189565b9250602084013561221a81612189565b929592945050506040919091013590565b8035801515811461223b57600080fd5b919050565b6000806040838503121561225357600080fd5b6121bf8361222b565b60006020828403121561226e57600080fd5b5035919050565b803560ff8116811461223b57600080fd5b60008060008060008060c0878903121561229f57600080fd5b6122a887612275565b95506122b660208801612275565b94506122c460408801612275565b93506122d260608801612275565b92506122e060808801612275565b91506122ee60a08801612275565b90509295509295509295565b60006020828403121561230c57600080fd5b61091a8261222b565b6000806040838503121561232857600080fd5b823561233381612189565b9150602083013561234381612189565b809150509250929050565b600181811c9082168061236257607f821691505b60208210810361238257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156123ed576123ed6123bd565b500290565b60008261240f57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561077a5761077a6123bd565b8181038181111561077a5761077a6123bd565b60ff818116838216019081111561077a5761077a6123bd565b600060ff821660ff84168160ff0481118215151615612474576124746123bd565b029392505050565b634e487b7160e01b600052603260045260246000fd5b6000600182016124a4576124a46123bd565b5060010190565b6000602082840312156124bd57600080fd5b815161091a81612189565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125185784516001600160a01b0316835293830193918301916001016124f3565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561254e57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220a0c9075d79a63c279d8dae2add3d14efcb3fe0aa21388daa1c6d4097f30564c064736f6c63430008100033
Deployed Bytecode
0x6080604052600436106101e75760003560e01c80637d1db4a511610102578063b27bcfba11610095578063ea2f0b3711610064578063ea2f0b3714610661578063f0f165af14610681578063f2fde38b146106a1578063fabb0b4f146106c157600080fd5b8063b27bcfba146105a2578063c49b9a80146105c2578063d94160e0146105e2578063dd62ed3e1461061b57600080fd5b806391d919a9116100d157806391d919a91461052057806395d89b4114610540578063a87859f614610555578063a9059cbb1461058257600080fd5b80637d1db4a51461049d57806388f82020146104b35780638da5cb5b146104ec5780638f9a55c01461050a57600080fd5b80632d8381191161017a57806349bd5a5e1161014957806349bd5a5e146103fb5780635342acb41461042f57806370a0823114610468578063715018a61461048857600080fd5b80632d8381191461036c578063313ce5671461038c578063437823ec146103ae57806347062402146103ce57600080fd5b806318160ddd116101b657806318160ddd146102bc57806323b872dd146102db5780632b14ca56146102fb5780632d4103d61461034c57600080fd5b806306fdde03146101f3578063095ea7b31461021e5780630bd3a7f91461024e5780631694505e1461027057600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b506102086106d7565b604051610215919061213b565b60405180910390f35b34801561022a57600080fd5b5061023e6102393660046121a1565b610769565b6040519015158152602001610215565b34801561025a57600080fd5b5061026e6102693660046121cd565b610780565b005b34801561027c57600080fd5b506102a47f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610215565b3480156102c857600080fd5b506009545b604051908152602001610215565b3480156102e757600080fd5b5061023e6102f63660046121ea565b6107d7565b34801561030757600080fd5b506011546103289060ff808216916101008104821691620100009091041683565b6040805160ff94851681529284166020840152921691810191909152606001610215565b34801561035857600080fd5b5061026e610367366004612240565b610840565b34801561037857600080fd5b506102cd61038736600461225c565b61089d565b34801561039857600080fd5b50600f5460405160ff9091168152602001610215565b3480156103ba57600080fd5b5061026e6103c93660046121cd565b610921565b3480156103da57600080fd5b506010546103289060ff808216916101008104821691620100009091041683565b34801561040757600080fd5b506102a47f000000000000000000000000b52f48a7a069ca102b90e4242f2975fa8e836a6f81565b34801561043b57600080fd5b5061023e61044a3660046121cd565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561047457600080fd5b506102cd6104833660046121cd565b61096f565b34801561049457600080fd5b5061026e6109ce565b3480156104a957600080fd5b506102cd60135481565b3480156104bf57600080fd5b5061023e6104ce3660046121cd565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156104f857600080fd5b506000546001600160a01b03166102a4565b34801561051657600080fd5b506102cd60155481565b34801561052c57600080fd5b5061026e61053b3660046121cd565b610a42565b34801561054c57600080fd5b50610208610a8d565b34801561056157600080fd5b506102cd6105703660046121cd565b60196020526000908152604090205481565b34801561058e57600080fd5b5061023e61059d3660046121a1565b610a9c565b3480156105ae57600080fd5b5061026e6105bd366004612286565b610aa9565b3480156105ce57600080fd5b5061026e6105dd3660046122fa565b610b28565b3480156105ee57600080fd5b5061023e6105fd3660046121cd565b6001600160a01b031660009081526008602052604090205460ff1690565b34801561062757600080fd5b506102cd610636366004612315565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561066d57600080fd5b5061026e61067c3660046121cd565b610bac565b34801561068d57600080fd5b5061026e61069c36600461225c565b610bf7565b3480156106ad57600080fd5b5061026e6106bc3660046121cd565b610c26565b3480156106cd57600080fd5b506102cd60165481565b6060600d80546106e69061234e565b80601f01602080910402602001604051908101604052809291908181526020018280546107129061234e565b801561075f5780601f106107345761010080835404028352916020019161075f565b820191906000526020600020905b81548152906001019060200180831161074257829003601f168201915b5050505050905090565b6000610776338484610dd4565b5060015b92915050565b6000546001600160a01b031633146107b35760405162461bcd60e51b81526004016107aa90612388565b60405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b60006107e4848484610ef8565b610836843361083185604051806060016040528060288152602001612568602891396001600160a01b038a16600090815260046020908152604080832033845290915290205491906112fa565b610dd4565b5060019392505050565b6000546001600160a01b0316331461086a5760405162461bcd60e51b81526004016107aa90612388565b6018805460ff191683151590811790915560ff16801561088a5750601754155b15610899574360175560168190555b5050565b6000600a548211156109045760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b60648201526084016107aa565b600061090e611334565b905061091a8382610d10565b9392505050565b6000546001600160a01b0316331461094b5760405162461bcd60e51b81526004016107aa90612388565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6001600160a01b03811660009081526006602052604081205460ff16156109ac57506001600160a01b031660009081526003602052604090205490565b6001600160a01b03821660009081526002602052604090205461077a9061089d565b6000546001600160a01b031633146109f85760405162461bcd60e51b81526004016107aa90612388565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b03163314610a6c5760405162461bcd60e51b81526004016107aa90612388565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6060600e80546106e69061234e565b6000610776338484610ef8565b6000546001600160a01b03163314610ad35760405162461bcd60e51b81526004016107aa90612388565b6010805460ff97881661ffff199182161761010097891688021762ff00001990811662010000978a16880217909255601180549589169590911694909417928716909502919091179093169290931602179055565b6000546001600160a01b03163314610b525760405162461bcd60e51b81526004016107aa90612388565b601280548215156401000000000264ff00000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610ba190831515815260200190565b60405180910390a150565b6000546001600160a01b03163314610bd65760405162461bcd60e51b81526004016107aa90612388565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b03163314610c215760405162461bcd60e51b81526004016107aa90612388565b601455565b6000546001600160a01b03163314610c505760405162461bcd60e51b81526004016107aa90612388565b6001600160a01b038116610cb55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107aa565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600061091a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611357565b600082600003610d645750600061077a565b6000610d7083856123d3565b905082610d7d85836123f2565b1461091a5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016107aa565b6001600160a01b038316610e365760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107aa565b6001600160a01b038216610e975760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107aa565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610f5c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107aa565b6001600160a01b038216610fbe5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107aa565b600081116110205760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107aa565b6000546001600160a01b0384811691161480159061104c57506000546001600160a01b03838116911614155b156110a35760185460ff166110a35760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e000000000000000060448201526064016107aa565b60006110ae3061096f565b905060135481106110be57506013545b601454811080159081906110dc57506012546301000000900460ff16155b801561111a57507f000000000000000000000000b52f48a7a069ca102b90e4242f2975fa8e836a6f6001600160a01b0316856001600160a01b031614155b80156111305750601254640100000000900460ff165b1561114357601454915061114382611385565b6001600160a01b03851660009081526005602052604090205460019060ff168061118557506001600160a01b03851660009081526005602052604090205460ff165b1561118e575060005b80156112e6576001600160a01b03861660009081526008602052604090205460ff161580156111d657506001600160a01b03851660009081526008602052604090205460ff16155b156112e65760135484111561123e5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b60648201526084016107aa565b7f000000000000000000000000b52f48a7a069ca102b90e4242f2975fa8e836a6f6001600160a01b0316856001600160a01b0316146112e6576015546112838661096f565b61128d9086612414565b11156112e65760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b60648201526084016107aa565b6112f286868684611569565b505050505050565b6000818484111561131e5760405162461bcd60e51b81526004016107aa919061213b565b50600061132b8486612427565b95945050505050565b60008060006113416117d7565b90925090506113508282610d10565b9250505090565b600081836113785760405162461bcd60e51b81526004016107aa919061213b565b50600061132b84866123f2565b6012805463ff000000191663010000001790556011546010546000916201000080820460ff908116939182048116926113cb92610100918290048316929190041661243a565b6113d5919061243a565b6113df919061243a565b6113ea906002612453565b60115460105460ff9283169350600092849261141392610100918290048316929190041661243a565b6114209060ff16856123d3565b61142a91906123f2565b905060006114388285612427565b90504761144482611959565b60006114508247612427565b6011546010549192506000916114769160ff61010091829004811692919091041661243a565b6114839060ff1687612427565b61148d90836123f2565b6011546010549192506000916114b39160ff61010091829004811692919091041661243a565b6114c09060ff16836123d3565b905080156114d2576114d28682611b11565b6011546010546000916114f59160ff62010000928390048116929091041661243a565b60ff166115038460026123d3565b61150d91906123d3565b9050801561155157600c546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561154f573d6000803e3d6000fd5b505b50506012805463ff0000001916905550505050505050565b801561166c576115806012805462ffffff19169055565b7f000000000000000000000000b52f48a7a069ca102b90e4242f2975fa8e836a6f6001600160a01b0316846001600160a01b0316036115f6576010546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b7f000000000000000000000000b52f48a7a069ca102b90e4242f2975fa8e836a6f6001600160a01b0316836001600160a01b03160361166c576011546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b6001600160a01b03841660009081526006602052604090205460ff1680156116ad57506001600160a01b03831660009081526006602052604090205460ff16155b156116c2576116bd848484611bf1565b6117c0565b6001600160a01b03841660009081526006602052604090205460ff1615801561170357506001600160a01b03831660009081526006602052604090205460ff165b15611713576116bd848484611d38565b6001600160a01b03841660009081526006602052604090205460ff1615801561175557506001600160a01b03831660009081526006602052604090205460ff16155b15611765576116bd848484611df3565b6001600160a01b03841660009081526006602052604090205460ff1680156117a557506001600160a01b03831660009081526006602052604090205460ff165b156117b5576116bd848484611e49565b6117c0848484611df3565b6117d16012805462ffffff19169055565b50505050565b600a546009546000918291825b600754811015611929578260026000600784815481106118065761180661247c565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611871575081600360006007848154811061184a5761184a61247c565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561188757600a54600954945094505050509091565b6118cd60026000600784815481106118a1576118a161247c565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611eca565b925061191560036000600784815481106118e9576118e961247c565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611eca565b91508061192181612492565b9150506117e4565b50600954600a5461193991610d10565b82101561195057600a546009549350935050509091565b90939092509050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061198e5761198e61247c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a3091906124ab565b81600181518110611a4357611a4361247c565b60200260200101906001600160a01b031690816001600160a01b031681525050611a8e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610dd4565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611ae39085906000908690309042906004016124c8565b600060405180830381600087803b158015611afd57600080fd5b505af11580156112f2573d6000803e3d6000fd5b611b3c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610dd4565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015611bc5573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611bea9190612539565b5050505050565b600080600080611c0085611f0c565b93509350935093506000806000611c2188878787611c1c611334565b611f6b565b6001600160a01b038d166000908152600360205260409020549295509093509150611c4c9089611eca565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054611c7b9084611eca565b6001600160a01b03808c1660009081526002602052604080822093909355908b1681522054611caa9083611fcd565b6001600160a01b038a16600090815260026020526040902055611ccc8561202c565b611cd58461202c565b611cdf81876120b5565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef89604051611d2491815260200190565b60405180910390a350505050505050505050565b600080600080611d4785611f0c565b93509350935093506000806000611d6388878787611c1c611334565b6001600160a01b038d166000908152600260205260409020549295509093509150611d8e9084611eca565b6001600160a01b03808c16600090815260026020908152604080832094909455918c16815260039091522054611dc49088611fcd565b6001600160a01b038a16600090815260036020908152604080832093909355600290522054611caa9083611fcd565b600080600080611e0285611f0c565b93509350935093506000806000611e1e88878787611c1c611334565b6001600160a01b038d166000908152600260205260409020549295509093509150611c7b9084611eca565b600080600080611e5885611f0c565b93509350935093506000806000611e7488878787611c1c611334565b6001600160a01b038d166000908152600360205260409020549295509093509150611e9f9089611eca565b6001600160a01b038b16600090815260036020908152604080832093909355600290522054611d8e90845b600061091a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506112fa565b6000806000806000611f1d866120d9565b90506000611f2a876120fa565b90506000611f378861211a565b90506000611f4f83611f498b87611eca565b90611eca565b9050611f5b8183611eca565b9993985091965094509092505050565b6000808080611f7a8986610d52565b90506000611f888987610d52565b90506000611f968988610d52565b90506000611fa48989610d52565b90506000611fb882611f4985818989611eca565b949d949c50929a509298505050505050505050565b600080611fda8385612414565b90508381101561091a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016107aa565b6000612036611334565b905060006120448383610d52565b306000908152600260205260409020549091506120619082611fcd565b3060009081526002602090815260408083209390935560069052205460ff16156120b0573060009081526003602052604090205461209f9084611fcd565b306000908152600360205260409020555b505050565b600a546120c29083611eca565b600a55600b546120d29082611fcd565b600b555050565b60125460009061077a906064906120f490859060ff16610d52565b90610d10565b60125460009061077a906064906120f4908590610100900460ff16610d52565b60125460009061077a906064906120f490859062010000900460ff16610d52565b600060208083528351808285015260005b818110156121685785810183015185820160400152820161214c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461219e57600080fd5b50565b600080604083850312156121b457600080fd5b82356121bf81612189565b946020939093013593505050565b6000602082840312156121df57600080fd5b813561091a81612189565b6000806000606084860312156121ff57600080fd5b833561220a81612189565b9250602084013561221a81612189565b929592945050506040919091013590565b8035801515811461223b57600080fd5b919050565b6000806040838503121561225357600080fd5b6121bf8361222b565b60006020828403121561226e57600080fd5b5035919050565b803560ff8116811461223b57600080fd5b60008060008060008060c0878903121561229f57600080fd5b6122a887612275565b95506122b660208801612275565b94506122c460408801612275565b93506122d260608801612275565b92506122e060808801612275565b91506122ee60a08801612275565b90509295509295509295565b60006020828403121561230c57600080fd5b61091a8261222b565b6000806040838503121561232857600080fd5b823561233381612189565b9150602083013561234381612189565b809150509250929050565b600181811c9082168061236257607f821691505b60208210810361238257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156123ed576123ed6123bd565b500290565b60008261240f57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561077a5761077a6123bd565b8181038181111561077a5761077a6123bd565b60ff818116838216019081111561077a5761077a6123bd565b600060ff821660ff84168160ff0481118215151615612474576124746123bd565b029392505050565b634e487b7160e01b600052603260045260246000fd5b6000600182016124a4576124a46123bd565b5060010190565b6000602082840312156124bd57600080fd5b815161091a81612189565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125185784516001600160a01b0316835293830193918301916001016124f3565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561254e57600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220a0c9075d79a63c279d8dae2add3d14efcb3fe0aa21388daa1c6d4097f30564c064736f6c63430008100033
Deployed Bytecode Sourcemap
25217:20984:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28532:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29517:193;;;;;;;;;;-1:-1:-1;29517:193:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;29517:193:0;1023:187:1;30873:115:0;;;;;;;;;;-1:-1:-1;30873:115:0;;;;;:::i;:::-;;:::i;:::-;;26517:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;26517:51:0;1467:230:1;28809:95:0;;;;;;;;;;-1:-1:-1;28889:7:0;;28809:95;;;1848:25:1;;;1836:2;1821:18;28809:95:0;1702:177:1;29718:446:0;;;;;;;;;;-1:-1:-1;29718:446:0;;;;;:::i;:::-;;:::i;26381:22::-;;;;;;;;;;-1:-1:-1;26381:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;2565:4:1;2553:17;;;2535:36;;2607:17;;;2602:2;2587:18;;2580:45;2661:17;;2641:18;;;2634:45;;;;2523:2;2508:18;26381:22:0;2345:340:1;45947:251:0;;;;;;;;;;-1:-1:-1;45947:251:0;;;;;:::i;:::-;;:::i;30304:322::-;;;;;;;;;;-1:-1:-1;30304:322:0;;;;;:::i;:::-;;:::i;28718:83::-;;;;;;;;;;-1:-1:-1;28784:9:0;;28718:83;;28784:9;;;;3435:36:1;;3423:2;3408:18;28718:83:0;3293:184:1;30636:111:0;;;;;;;;;;-1:-1:-1;30636:111:0;;;;;:::i;:::-;;:::i;26354:20::-;;;;;;;;;;-1:-1:-1;26354:20:0;;;;;;;;;;;;;;;;;;;;;;26575:38;;;;;;;;;;;;;;;36011:124;;;;;;;;;;-1:-1:-1;36011:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;36100:27:0;36076:4;36100:27;;;:18;:27;;;;;;;;;36011:124;28912:198;;;;;;;;;;-1:-1:-1;28912:198:0;;;;;:::i;:::-;;:::i;15281:148::-;;;;;;;;;;;;;:::i;26692:55::-;;;;;;;;;;;;;;;;30174:120;;;;;;;;;;-1:-1:-1;30174:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;30266:20:0;30242:4;30266:20;;;:11;:20;;;;;;;;;30174:120;14639:79;;;;;;;;;;-1:-1:-1;14677:7:0;14704:6;-1:-1:-1;;;;;14704:6:0;14639:79;;26845:57;;;;;;;;;;;;;;;;30996:114;;;;;;;;;;-1:-1:-1;30996:114:0;;;;;:::i;:::-;;:::i;28623:87::-;;;;;;;;;;;;;:::i;27393:46::-;;;;;;;;;;-1:-1:-1;27393:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;29118:199;;;;;;;;;;-1:-1:-1;29118:199:0;;;;;:::i;:::-;;:::i;31118:514::-;;;;;;;;;;-1:-1:-1;31118:514:0;;;;;:::i;:::-;;:::i;31788:171::-;;;;;;;;;;-1:-1:-1;31788:171:0;;;;;:::i;:::-;;:::i;36143:128::-;;;;;;;;;;-1:-1:-1;36143:128:0;;;;;:::i;:::-;-1:-1:-1;;;;;36234:29:0;36210:4;36234:29;;;:20;:29;;;;;;;;;36143:128;29325:184;;;;;;;;;;-1:-1:-1;29325:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;29474:18:0;;;29442:7;29474:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29325:184;30755:110;;;;;;;;;;-1:-1:-1;30755:110:0;;;;;:::i;:::-;;:::i;31640:140::-;;;;;;;;;;-1:-1:-1;31640:140:0;;;;;:::i;:::-;;:::i;15584:281::-;;;;;;;;;;-1:-1:-1;15584:281:0;;;;;:::i;:::-;;:::i;27295:29::-;;;;;;;;;;;;;;;;28532:83;28569:13;28602:5;28595:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28532:83;:::o;29517:193::-;29619:4;29641:39;7483:10;29664:7;29673:6;29641:8;:39::i;:::-;-1:-1:-1;29698:4:0;29517:193;;;;;:::o;30873:115::-;14851:6;;-1:-1:-1;;;;;14851:6:0;7483:10;14851:22;14843:67;;;;-1:-1:-1;;;14843:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;30944:29:0::1;;::::0;;;:20:::1;:29;::::0;;;;:36;;-1:-1:-1;;30944:36:0::1;30976:4;30944:36;::::0;;30873:115::o;29718:446::-;29850:4;29867:36;29877:6;29885:9;29896:6;29867:9;:36::i;:::-;29914:220;29937:6;7483:10;29985:138;30041:6;29985:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29985:19:0;;;;;;:11;:19;;;;;;;;7483:10;29985:33;;;;;;;;;;:37;:138::i;:::-;29914:8;:220::i;:::-;-1:-1:-1;30152:4:0;29718:446;;;;;:::o;45947:251::-;14851:6;;-1:-1:-1;;;;;14851:6:0;7483:10;14851:22;14843:67;;;;-1:-1:-1;;;14843:67:0;;;;;;;:::i;:::-;46034:11:::1;:21:::0;;-1:-1:-1;;46034:21:0::1;::::0;::::1;;::::0;;::::1;::::0;;;::::1;46069:11:::0;:30;::::1;;;-1:-1:-1::0;46084:10:0::1;::::0;:15;46069:30:::1;46066:125;;;46128:12;46115:10;:25:::0;46155:10:::1;:24:::0;;;46066:125:::1;45947:251:::0;;:::o;30304:322::-;30398:7;30456;;30445;:18;;30423:110;;;;-1:-1:-1;;;30423:110:0;;5917:2:1;30423:110:0;;;5899:21:1;5956:2;5936:18;;;5929:30;5995:34;5975:18;;;5968:62;-1:-1:-1;;;6046:18:1;;;6039:40;6096:19;;30423:110:0;5715:406:1;30423:110:0;30544:19;30566:10;:8;:10::i;:::-;30544:32;-1:-1:-1;30594:24:0;:7;30544:32;30594:11;:24::i;:::-;30587:31;30304:322;-1:-1:-1;;;30304:322:0:o;30636:111::-;14851:6;;-1:-1:-1;;;;;14851:6:0;7483:10;14851:22;14843:67;;;;-1:-1:-1;;;14843:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30705:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;30705:34:0::1;30735:4;30705:34;::::0;;30636:111::o;28912:198::-;-1:-1:-1;;;;;29002:20:0;;28978:7;29002:20;;;:11;:20;;;;;;;;28998:49;;;-1:-1:-1;;;;;;29031:16:0;;;;;:7;:16;;;;;;;28912:198::o;28998:49::-;-1:-1:-1;;;;;29085:16:0;;;;;;:7;:16;;;;;;29065:37;;:19;:37::i;15281:148::-;14851:6;;-1:-1:-1;;;;;14851:6:0;7483:10;14851:22;14843:67;;;;-1:-1:-1;;;14843:67:0;;;;;;;:::i;:::-;15388:1:::1;15372:6:::0;;15351:40:::1;::::0;-1:-1:-1;;;;;15372:6:0;;::::1;::::0;15351:40:::1;::::0;15388:1;;15351:40:::1;15419:1;15402:19:::0;;-1:-1:-1;;;;;;15402:19:0::1;::::0;;15281:148::o;30996:114::-;14851:6;;-1:-1:-1;;;;;14851:6:0;7483:10;14851:22;14843:67;;;;-1:-1:-1;;;14843:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31065:29:0::1;31097:5;31065:29:::0;;;:20:::1;:29;::::0;;;;:37;;-1:-1:-1;;31065:37:0::1;::::0;;30996:114::o;28623:87::-;28662:13;28695:7;28688:14;;;;;:::i;29118:199::-;29223:4;29245:42;7483:10;29269:9;29280:6;29245:9;:42::i;31118:514::-;14851:6;;-1:-1:-1;;;;;14851:6:0;7483:10;14851:22;14843:67;;;;-1:-1:-1;;;14843:67:0;;;;;;;:::i;:::-;31365:6:::1;:34:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;31410:32:0;;;;31365:34:::1;31410:32:::0;;::::1;::::0;::::1;;-1:-1:-1::0;;31453:32:0;;::::1;::::0;;;::::1;::::0;::::1;;::::0;;;31498:7:::1;:36:::0;;;;::::1;31545:34:::0;;;;;;;;;;::::1;::::0;;::::1;::::0;;;::::1;31590::::0;;::::1;::::0;;;::::1;;;::::0;;31118:514::o;31788:171::-;14851:6;;-1:-1:-1;;;;;14851:6:0;7483:10;14851:22;14843:67;;;;-1:-1:-1;;;14843:67:0;;;;;;;:::i;:::-;31865:21:::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;31865:32:0;;::::1;;::::0;;31913:38:::1;::::0;::::1;::::0;::::1;::::0;31889:8;1188:14:1;1181:22;1163:41;;1151:2;1136:18;;1023:187;31913:38:0::1;;;;;;;;31788:171:::0;:::o;30755:110::-;14851:6;;-1:-1:-1;;;;;14851:6:0;7483:10;14851:22;14843:67;;;;-1:-1:-1;;;14843:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30822:27:0::1;30852:5;30822:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;30822:35:0::1;::::0;;30755:110::o;31640:140::-;14851:6;;-1:-1:-1;;;;;14851:6:0;7483:10;14851:22;14843:67;;;;-1:-1:-1;;;14843:67:0;;;;;;;:::i;:::-;31731:29:::1;:41:::0;31640:140::o;15584:281::-;14851:6;;-1:-1:-1;;;;;14851:6:0;7483:10;14851:22;14843:67;;;;-1:-1:-1;;;14843:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15687:22:0;::::1;15665:110;;;::::0;-1:-1:-1;;;15665:110:0;;6328:2:1;15665:110:0::1;::::0;::::1;6310:21:1::0;6367:2;6347:18;;;6340:30;6406:34;6386:18;;;6379:62;-1:-1:-1;;;6457:18:1;;;6450:36;6503:19;;15665:110:0::1;6126:402:1::0;15665:110:0::1;15812:6;::::0;;15791:38:::1;::::0;-1:-1:-1;;;;;15791:38:0;;::::1;::::0;15812:6;::::1;::::0;15791:38:::1;::::0;::::1;15840:6;:17:::0;;-1:-1:-1;;;;;;15840:17:0::1;-1:-1:-1::0;;;;;15840:17:0;;;::::1;::::0;;;::::1;::::0;;15584:281::o;5127:132::-;5185:7;5212:39;5216:1;5219;5212:39;;;;;;;;;;;;;;;;;:3;:39::i;4632:252::-;4690:7;4716:1;4721;4716:6;4712:47;;-1:-1:-1;4746:1:0;4739:8;;4712:47;4771:9;4783:5;4787:1;4783;:5;:::i;:::-;4771:17;-1:-1:-1;4816:1:0;4807:5;4811:1;4771:17;4807:5;:::i;:::-;:10;4799:56;;;;-1:-1:-1;;;4799:56:0;;7262:2:1;4799:56:0;;;7244:21:1;7301:2;7281:18;;;7274:30;7340:34;7320:18;;;7313:62;-1:-1:-1;;;7391:18:1;;;7384:31;7432:19;;4799:56:0;7060:397:1;36279:371:0;-1:-1:-1;;;;;36406:19:0;;36398:68;;;;-1:-1:-1;;;36398:68:0;;7664:2:1;36398:68:0;;;7646:21:1;7703:2;7683:18;;;7676:30;7742:34;7722:18;;;7715:62;-1:-1:-1;;;7793:18:1;;;7786:34;7837:19;;36398:68:0;7462:400:1;36398:68:0;-1:-1:-1;;;;;36485:21:0;;36477:68;;;;-1:-1:-1;;;36477:68:0;;8069:2:1;36477:68:0;;;8051:21:1;8108:2;8088:18;;;8081:30;8147:34;8127:18;;;8120:62;-1:-1:-1;;;8198:18:1;;;8191:32;8240:19;;36477:68:0;7867:398:1;36477:68:0;-1:-1:-1;;;;;36558:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;36610:32;;1848:25:1;;;36610:32:0;;1821:18:1;36610:32:0;;;;;;;36279:371;;;:::o;36658:2343::-;-1:-1:-1;;;;;36780:18:0;;36772:68;;;;-1:-1:-1;;;36772:68:0;;8472:2:1;36772:68:0;;;8454:21:1;8511:2;8491:18;;;8484:30;8550:34;8530:18;;;8523:62;-1:-1:-1;;;8601:18:1;;;8594:35;8646:19;;36772:68:0;8270:401:1;36772:68:0;-1:-1:-1;;;;;36859:16:0;;36851:64;;;;-1:-1:-1;;;36851:64:0;;8878:2:1;36851:64:0;;;8860:21:1;8917:2;8897:18;;;8890:30;8956:34;8936:18;;;8929:62;-1:-1:-1;;;9007:18:1;;;9000:33;9050:19;;36851:64:0;8676:399:1;36851:64:0;36943:1;36934:6;:10;36926:64;;;;-1:-1:-1;;;36926:64:0;;9282:2:1;36926:64:0;;;9264:21:1;9321:2;9301:18;;;9294:30;9360:34;9340:18;;;9333:62;-1:-1:-1;;;9411:18:1;;;9404:39;9460:19;;36926:64:0;9080:405:1;36926:64:0;14677:7;14704:6;-1:-1:-1;;;;;37016:15:0;;;14704:6;;37016:15;;;;:32;;-1:-1:-1;14677:7:0;14704:6;-1:-1:-1;;;;;37035:13:0;;;14704:6;;37035:13;;37016:32;37011:88;;;37059:11;;;;37051:48;;;;-1:-1:-1;;;37051:48:0;;9692:2:1;37051:48:0;;;9674:21:1;9731:2;9711:18;;;9704:30;9770:26;9750:18;;;9743:54;9814:18;;37051:48:0;9490:348:1;37051:48:0;37434:28;37465:24;37483:4;37465:9;:24::i;:::-;37434:55;;37530:12;;37506:20;:36;37502:104;;-1:-1:-1;37582:12:0;;37502:104;37682:29;;37645:66;;;;;;;37740:53;;-1:-1:-1;37777:16:0;;;;;;;37776:17;37740:53;:91;;;;;37818:13;-1:-1:-1;;;;;37810:21:0;:4;-1:-1:-1;;;;;37810:21:0;;;37740:91;:129;;;;-1:-1:-1;37848:21:0;;;;;;;37740:129;37722:318;;;37919:29;;37896:52;;37992:36;38007:20;37992:14;:36::i;:::-;-1:-1:-1;;;;;38233:24:0;;38113:12;38233:24;;;:18;:24;;;;;;38128:4;;38233:24;;;:50;;-1:-1:-1;;;;;;38261:22:0;;;;;;:18;:22;;;;;;;;38233:50;38229:98;;;-1:-1:-1;38310:5:0;38229:98;38341:7;38337:536;;;-1:-1:-1;;;;;38370:26:0;;;;;;:20;:26;;;;;;;;38369:27;:56;;;;-1:-1:-1;;;;;;38401:24:0;;;;;;:20;:24;;;;;;;;38400:25;38369:56;38365:497;;;38486:12;;38476:6;:22;;38446:136;;;;-1:-1:-1;;;38446:136:0;;10045:2:1;38446:136:0;;;10027:21:1;10084:2;10064:18;;;10057:30;10123:34;10103:18;;;10096:62;-1:-1:-1;;;10174:18:1;;;10167:38;10222:19;;38446:136:0;9843:404:1;38446:136:0;38611:13;-1:-1:-1;;;;;38605:19:0;:2;-1:-1:-1;;;;;38605:19:0;;38601:228;;38709:14;;38692:13;38702:2;38692:9;:13::i;:::-;38683:22;;:6;:22;:::i;:::-;:40;;38649:160;;;;-1:-1:-1;;;38649:160:0;;10584:2:1;38649:160:0;;;10566:21:1;10623:2;10603:18;;;10596:30;10662:34;10642:18;;;10635:62;-1:-1:-1;;;10713:18:1;;;10706:32;10755:19;;38649:160:0;10382:398:1;38649:160:0;38952:41;38967:4;38973:2;38977:6;38985:7;38952:14;:41::i;:::-;36761:2240;;;36658:2343;;;:::o;4147:226::-;4267:7;4303:12;4295:6;;;;4287:29;;;;-1:-1:-1;;;4287:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4327:9:0;4339:5;4343:1;4339;:5;:::i;:::-;4327:17;4147:226;-1:-1:-1;;;;;4147:226:0:o;33488:164::-;33530:7;33551:15;33568;33587:19;:17;:19::i;:::-;33550:56;;-1:-1:-1;33550:56:0;-1:-1:-1;33624:20:0;33550:56;;33624:11;:20::i;:::-;33617:27;;;;33488:164;:::o;5755:312::-;5875:7;5910:12;5903:5;5895:28;;;;-1:-1:-1;;;5895:28:0;;;;;;;;:::i;:::-;-1:-1:-1;5934:9:0;5946:5;5950:1;5946;:5;:::i;39009:1195::-;27209:16;:23;;-1:-1:-1;;27209:23:0;;;;;39212:7:::1;:17:::0;39193:6:::1;:16:::0;27209:23;;39212:17;;;::::1;27209:23:::0;39212:17;;::::1;::::0;39193:16;;::::1;::::0;::::1;::::0;39154:36:::1;::::0;27209:23;39173:17;;;::::1;::::0;::::1;::::0;39154:16;;::::1;;:36;:::i;:::-;:55;;;;:::i;:::-;:75;;;;:::i;:::-;39153:81;::::0;39233:1:::1;39153:81;:::i;:::-;39310:7;:17:::0;39291:6:::1;:16:::0;39131:103:::1;::::0;;::::1;::::0;-1:-1:-1;39245:32:0::1;::::0;39131:103;;39291:36:::1;::::0;39310:17:::1;::::0;;;::::1;::::0;::::1;::::0;39291:16;;::::1;;:36;:::i;:::-;39281:47;::::0;::::1;;:6:::0;:47:::1;:::i;:::-;39280:63;;;;:::i;:::-;39245:98:::0;-1:-1:-1;39354:14:0::1;39371:33;39245:98:::0;39371:6;:33:::1;:::i;:::-;39354:50:::0;-1:-1:-1;39442:21:0::1;39476:24;39354:50:::0;39476:16:::1;:24::i;:::-;39513:20;39536:38;39560:14:::0;39536:21:::1;:38;:::i;:::-;39657:7;:17:::0;39638:6:::1;:16:::0;39513:61;;-1:-1:-1;39585:19:0::1;::::0;39638:36:::1;::::0;39657:17:::1;;::::0;;;::::1;::::0;::::1;::::0;39638:16;;;::::1;;:36;:::i;:::-;39623:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;39607:69;::::0;:12;:69:::1;:::i;:::-;39753:7;:17:::0;39734:6:::1;:16:::0;39585:91;;-1:-1:-1;39687:29:0::1;::::0;39734:36:::1;::::0;39753:17:::1;;::::0;;;::::1;::::0;::::1;::::0;39734:16;;;::::1;;:36;:::i;:::-;39719:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;39687:84:::0;-1:-1:-1;39788:25:0;;39784:160:::1;;39871:61;39884:24;39910:21;39871:12;:61::i;:::-;40051:7;:17:::0;40032:6:::1;:16:::0;39990:20:::1;::::0;40032:36:::1;::::0;40051:17:::1;::::0;;;;::::1;::::0;::::1;::::0;40032:16;;::::1;;:36;:::i;:::-;40013:56;;:15;:11:::0;40027:1:::1;40013:15;:::i;:::-;:56;;;;:::i;:::-;39990:79:::0;-1:-1:-1;40095:16:0;;40091:98:::1;;40136:17;::::0;40128:49:::1;::::0;-1:-1:-1;;;;;40136:17:0;;::::1;::::0;40128:49;::::1;;;::::0;40164:12;;40136:17:::1;40128:49:::0;40136:17;40128:49;40164:12;40136:17;40128:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;40091:98;-1:-1:-1::0;;27255:16:0;:24;;-1:-1:-1;;27255:24:0;;;-1:-1:-1;;;;;;;39009:1195:0:o;41409:1022::-;41564:7;41560:230;;;41588:14;35548;:18;;-1:-1:-1;;35605:17:0;;;35505:132;41588:14;41631:13;-1:-1:-1;;;;;41621:23:0;:6;-1:-1:-1;;;;;41621:23:0;;41617:72;;35699:6;:17;35682:14;:34;;35699:17;;;;-1:-1:-1;;35727:32:0;;;;;;;35699:17;35743:16;;;;;35727:32;;-1:-1:-1;;35770:32:0;35786:16;;;;;;;;;35770:32;;;;;;;;;41665:8;41720:13;-1:-1:-1;;;;;41707:26:0;:9;-1:-1:-1;;;;;41707:26:0;;41703:76;;35881:7;:18;35864:14;:35;;35881:18;;;;-1:-1:-1;;35910:33:0;;;;;;;35881:18;35926:17;;;;;35910:33;;-1:-1:-1;;35954:33:0;35970:17;;;;;;;;;35954:33;;;;;;;;;41754:9;-1:-1:-1;;;;;41806:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;41830:22:0;;;;;;:11;:22;;;;;;;;41829:23;41806:46;41802:597;;;41869:48;41891:6;41899:9;41910:6;41869:21;:48::i;:::-;41802:597;;;-1:-1:-1;;;;;41940:19:0;;;;;;:11;:19;;;;;;;;41939:20;:46;;;;-1:-1:-1;;;;;;41963:22:0;;;;;;:11;:22;;;;;;;;41939:46;41935:464;;;42002:46;42022:6;42030:9;42041:6;42002:19;:46::i;41935:464::-;-1:-1:-1;;;;;42071:19:0;;;;;;:11;:19;;;;;;;;42070:20;:47;;;;-1:-1:-1;;;;;;42095:22:0;;;;;;:11;:22;;;;;;;;42094:23;42070:47;42066:333;;;42134:44;42152:6;42160:9;42171:6;42134:17;:44::i;42066:333::-;-1:-1:-1;;;;;42200:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;42223:22:0;;;;;;:11;:22;;;;;;;;42200:45;42196:203;;;42262:48;42284:6;42292:9;42303:6;42262:21;:48::i;42196:203::-;42343:44;42361:6;42369:9;42380:6;42343:17;:44::i;:::-;42409:14;35548;:18;;-1:-1:-1;;35605:17:0;;;35505:132;42409:14;41409:1022;;;;:::o;33660:605::-;33758:7;;33794;;33711;;;;;33812:338;33836:9;:16;33832:20;;33812:338;;;33920:7;33896;:21;33904:9;33914:1;33904:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;33904:12:0;33896:21;;;;;;;;;;;;;:31;;:83;;;33972:7;33948;:21;33956:9;33966:1;33956:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;33956:12:0;33948:21;;;;;;;;;;;;;:31;33896:83;33874:146;;;34003:7;;34012;;33995:25;;;;;;;33660:605;;:::o;33874:146::-;34045:34;34057:7;:21;34065:9;34075:1;34065:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;34065:12:0;34057:21;;;;;;;;;;;;;34045:7;;:11;:34::i;:::-;34035:44;;34104:34;34116:7;:21;34124:9;34134:1;34124:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;34124:12:0;34116:21;;;;;;;;;;;;;34104:7;;:11;:34::i;:::-;34094:44;-1:-1:-1;33854:3:0;;;;:::i;:::-;;;;33812:338;;;-1:-1:-1;34186:7:0;;34174;;:20;;:11;:20::i;:::-;34164:7;:30;34160:61;;;34204:7;;34213;;34196:25;;;;;;33660:605;;:::o;34160:61::-;34240:7;;34249;;-1:-1:-1;33660:605:0;-1:-1:-1;33660:605:0:o;40212:589::-;40362:16;;;40376:1;40362:16;;;;;;;;40338:21;;40362:16;;;;;;;;;;-1:-1:-1;40362:16:0;40338:40;;40407:4;40389;40394:1;40389:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;40389:23:0;;;-1:-1:-1;;;;;40389:23:0;;;;;40433:15;-1:-1:-1;;;;;40433:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40423:4;40428:1;40423:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;40423:32:0;;;-1:-1:-1;;;;;40423:32:0;;;;;40468:62;40485:4;40500:15;40518:11;40468:8;:62::i;:::-;40569:224;;-1:-1:-1;;;40569:224:0;;-1:-1:-1;;;;;40569:15:0;:66;;;;:224;;40650:11;;40676:1;;40720:4;;40747;;40767:15;;40569:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40809:519;40957:62;40974:4;40989:15;41007:11;40957:8;:62::i;:::-;41062:258;;-1:-1:-1;;;41062:258:0;;41134:4;41062:258;;;13300:34:1;;;13350:18;;;13343:34;;;41180:1:0;13393:18:1;;;13386:34;;;13436:18;;;13429:34;13479:19;;;13472:44;41294:15:0;13532:19:1;;;13525:35;41062:15:0;-1:-1:-1;;;;;41062:31:0;;;;41101:9;;13234:19:1;;41062:258:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;40809:519;;:::o;44134:863::-;44285:23;44323:12;44350:18;44383:15;44412:20;44424:7;44412:11;:20::i;:::-;44270:162;;;;;;;;44444:15;44461:23;44486:12;44502:135;44528:7;44550:4;44569:10;44594:7;44616:10;:8;:10::i;:::-;44502:11;:135::i;:::-;-1:-1:-1;;;;;44668:15:0;;;;;;:7;:15;;;;;;44443:194;;-1:-1:-1;44443:194:0;;-1:-1:-1;44443:194:0;-1:-1:-1;44668:28:0;;44688:7;44668:19;:28::i;:::-;-1:-1:-1;;;;;44650:15:0;;;;;;:7;:15;;;;;;;;:46;;;;44725:7;:15;;;;:28;;44745:7;44725:19;:28::i;:::-;-1:-1:-1;;;;;44707:15:0;;;;;;;:7;:15;;;;;;:46;;;;44785:18;;;;;;;:39;;44808:15;44785:22;:39::i;:::-;-1:-1:-1;;;;;44764:18:0;;;;;;:7;:18;;;;;:60;44835:26;44850:10;44835:14;:26::i;:::-;44872:23;44887:7;44872:14;:23::i;:::-;44906;44918:4;44924;44906:11;:23::i;:::-;44962:9;-1:-1:-1;;;;;44945:44:0;44954:6;-1:-1:-1;;;;;44945:44:0;;44973:15;44945:44;;;;1848:25:1;;1836:2;1821:18;;1702:177;44945:44:0;;;;;;;;44259:738;;;;;;;44134:863;;;:::o;43251:875::-;43400:23;43438:12;43465:18;43498:15;43527:20;43539:7;43527:11;:20::i;:::-;43385:162;;;;;;;;43559:15;43576:23;43601:12;43617:135;43643:7;43665:4;43684:10;43709:7;43731:10;:8;:10::i;43617:135::-;-1:-1:-1;;;;;43783:15:0;;;;;;:7;:15;;;;;;43558:194;;-1:-1:-1;43558:194:0;;-1:-1:-1;43558:194:0;-1:-1:-1;43783:28:0;;43558:194;43783:19;:28::i;:::-;-1:-1:-1;;;;;43765:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;43843:18;;;;;:7;:18;;;;;:39;;43866:15;43843:22;:39::i;:::-;-1:-1:-1;;;;;43822:18:0;;;;;;:7;:18;;;;;;;;:60;;;;43914:7;:18;;;;:39;;43937:15;43914:22;:39::i;42439:802::-;42586:23;42624:12;42651:18;42684:15;42713:20;42725:7;42713:11;:20::i;:::-;42571:162;;;;;;;;42745:15;42762:23;42787:12;42803:135;42829:7;42851:4;42870:10;42895:7;42917:10;:8;:10::i;42803:135::-;-1:-1:-1;;;;;42969:15:0;;;;;;:7;:15;;;;;;42744:194;;-1:-1:-1;42744:194:0;;-1:-1:-1;42744:194:0;-1:-1:-1;42969:28:0;;42744:194;42969:19;:28::i;45005:934::-;45156:23;45194:12;45221:18;45254:15;45283:20;45295:7;45283:11;:20::i;:::-;45141:162;;;;;;;;45315:15;45332:23;45357:12;45373:135;45399:7;45421:4;45440:10;45465:7;45487:10;:8;:10::i;45373:135::-;-1:-1:-1;;;;;45539:15:0;;;;;;:7;:15;;;;;;45314:194;;-1:-1:-1;45314:194:0;;-1:-1:-1;45314:194:0;-1:-1:-1;45539:28:0;;45559:7;45539:19;:28::i;:::-;-1:-1:-1;;;;;45521:15:0;;;;;;:7;:15;;;;;;;;:46;;;;45596:7;:15;;;;:28;;45616:7;3708:136;3766:7;3793:43;3797:1;3800;3793:43;;;;;;;;;;;;;;;;;:3;:43::i;32216:568::-;32317:7;32339;32361;32383;32418:12;32433:31;32456:7;32433:22;:31::i;:::-;32418:46;;32475:18;32496:30;32518:7;32496:21;:30::i;:::-;32475:51;;32537:15;32555:30;32577:7;32555:21;:30::i;:::-;32537:48;-1:-1:-1;32596:23:0;32622:33;32644:10;32622:17;:7;32634:4;32622:11;:17::i;:::-;:21;;:33::i;:::-;32596:59;-1:-1:-1;32684:28:0;32596:59;32704:7;32684:19;:28::i;:::-;32666:46;32750:4;;-1:-1:-1;32756:10:0;;-1:-1:-1;32756:10:0;-1:-1:-1;32216:568:0;;-1:-1:-1;;;32216:568:0:o;32792:688::-;33017:7;;;;33114:24;:7;33126:11;33114;:24::i;:::-;33096:42;-1:-1:-1;33149:12:0;33164:21;:4;33173:11;33164:8;:21::i;:::-;33149:36;-1:-1:-1;33196:18:0;33217:27;:10;33232:11;33217:14;:27::i;:::-;33196:48;-1:-1:-1;33255:15:0;33273:24;:7;33285:11;33273;:24::i;:::-;33255:42;-1:-1:-1;33308:23:0;33334:88;33255:42;33334:61;33384:10;33334:61;:7;33360:4;33334:25;:31::i;:88::-;33441:7;;;;-1:-1:-1;33467:4:0;;-1:-1:-1;32792:688:0;;-1:-1:-1;;;;;;;;;32792:688:0:o;3244:181::-;3302:7;;3334:5;3338:1;3334;:5;:::i;:::-;3322:17;;3363:1;3358;:6;;3350:46;;;;-1:-1:-1;;;3350:46:0;;14084:2:1;3350:46:0;;;14066:21:1;14123:2;14103:18;;;14096:30;14162:29;14142:18;;;14135:57;14209:18;;3350:46:0;13882:351:1;34273:355:0;34336:19;34358:10;:8;:10::i;:::-;34336:32;-1:-1:-1;34379:18:0;34400:27;:10;34336:32;34400:14;:27::i;:::-;34479:4;34463:22;;;;:7;:22;;;;;;34379:48;;-1:-1:-1;34463:38:0;;34379:48;34463:26;:38::i;:::-;34454:4;34438:22;;;;:7;:22;;;;;;;;:63;;;;34516:11;:26;;;;;;34512:108;;;34598:4;34582:22;;;;:7;:22;;;;;;:38;;34609:10;34582:26;:38::i;:::-;34573:4;34557:22;;;;:7;:22;;;;;:63;34512:108;34325:303;;34273:355;:::o;32061:147::-;32139:7;;:17;;32151:4;32139:11;:17::i;:::-;32129:7;:27;32180:10;;:20;;32195:4;32180:14;:20::i;:::-;32167:10;:33;-1:-1:-1;;32061:147:0:o;34984:144::-;35094:14;;35055:7;;35082:38;;35114:5;;35082:27;;:7;;35094:14;;35082:11;:27::i;:::-;:31;;:38::i;35136:174::-;35277:13;;35233:7;;35265:37;;35296:5;;35265:26;;:7;;35277:13;;;;;35265:11;:26::i;35318:174::-;35459:13;;35415:7;;35447:37;;35478:5;;35447:26;;:7;;35459:13;;;;;35447:11;:26::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:1;2315:18;;;;2302:32;;1884:456::o;2690:160::-;2755:20;;2811:13;;2804:21;2794:32;;2784:60;;2840:1;2837;2830:12;2784:60;2690:160;;;:::o;2855:248::-;2920:6;2928;2981:2;2969:9;2960:7;2956:23;2952:32;2949:52;;;2997:1;2994;2987:12;2949:52;3020:26;3036:9;3020:26;:::i;3108:180::-;3167:6;3220:2;3208:9;3199:7;3195:23;3191:32;3188:52;;;3236:1;3233;3226:12;3188:52;-1:-1:-1;3259:23:1;;3108:180;-1:-1:-1;3108:180:1:o;3690:156::-;3756:20;;3816:4;3805:16;;3795:27;;3785:55;;3836:1;3833;3826:12;3851:535;3943:6;3951;3959;3967;3975;3983;4036:3;4024:9;4015:7;4011:23;4007:33;4004:53;;;4053:1;4050;4043:12;4004:53;4076:27;4093:9;4076:27;:::i;:::-;4066:37;;4122:36;4154:2;4143:9;4139:18;4122:36;:::i;:::-;4112:46;;4177:36;4209:2;4198:9;4194:18;4177:36;:::i;:::-;4167:46;;4232:36;4264:2;4253:9;4249:18;4232:36;:::i;:::-;4222:46;;4287:37;4319:3;4308:9;4304:19;4287:37;:::i;:::-;4277:47;;4343:37;4375:3;4364:9;4360:19;4343:37;:::i;:::-;4333:47;;3851:535;;;;;;;;:::o;4391:180::-;4447:6;4500:2;4488:9;4479:7;4475:23;4471:32;4468:52;;;4516:1;4513;4506:12;4468:52;4539:26;4555:9;4539:26;:::i;4576:388::-;4644:6;4652;4705:2;4693:9;4684:7;4680:23;4676:32;4673:52;;;4721:1;4718;4711:12;4673:52;4760:9;4747:23;4779:31;4804:5;4779:31;:::i;:::-;4829:5;-1:-1:-1;4886:2:1;4871:18;;4858:32;4899:33;4858:32;4899:33;:::i;:::-;4951:7;4941:17;;;4576:388;;;;;:::o;4969:380::-;5048:1;5044:12;;;;5091;;;5112:61;;5166:4;5158:6;5154:17;5144:27;;5112:61;5219:2;5211:6;5208:14;5188:18;5185:38;5182:161;;5265:10;5260:3;5256:20;5253:1;5246:31;5300:4;5297:1;5290:15;5328:4;5325:1;5318:15;5182:161;;4969:380;;;:::o;5354:356::-;5556:2;5538:21;;;5575:18;;;5568:30;5634:34;5629:2;5614:18;;5607:62;5701:2;5686:18;;5354:356::o;6533:127::-;6594:10;6589:3;6585:20;6582:1;6575:31;6625:4;6622:1;6615:15;6649:4;6646:1;6639:15;6665:168;6705:7;6771:1;6767;6763:6;6759:14;6756:1;6753:21;6748:1;6741:9;6734:17;6730:45;6727:71;;;6778:18;;:::i;:::-;-1:-1:-1;6818:9:1;;6665:168::o;6838:217::-;6878:1;6904;6894:132;;6948:10;6943:3;6939:20;6936:1;6929:31;6983:4;6980:1;6973:15;7011:4;7008:1;7001:15;6894:132;-1:-1:-1;7040:9:1;;6838:217::o;10252:125::-;10317:9;;;10338:10;;;10335:36;;;10351:18;;:::i;10785:128::-;10852:9;;;10873:11;;;10870:37;;;10887:18;;:::i;10918:148::-;11006:4;10985:12;;;10999;;;10981:31;;11024:13;;11021:39;;;11040:18;;:::i;11071:238::-;11109:7;11149:4;11146:1;11142:12;11181:4;11178:1;11174:12;11241:3;11235:4;11231:14;11226:3;11223:23;11216:3;11209:11;11202:19;11198:49;11195:75;;;11250:18;;:::i;:::-;11290:13;;11071:238;-1:-1:-1;;;11071:238:1:o;11314:127::-;11375:10;11370:3;11366:20;11363:1;11356:31;11406:4;11403:1;11396:15;11430:4;11427:1;11420:15;11446:135;11485:3;11506:17;;;11503:43;;11526:18;;:::i;:::-;-1:-1:-1;11573:1:1;11562:13;;11446:135::o;11718:251::-;11788:6;11841:2;11829:9;11820:7;11816:23;11812:32;11809:52;;;11857:1;11854;11847:12;11809:52;11889:9;11883:16;11908:31;11933:5;11908:31;:::i;11974:980::-;12236:4;12284:3;12273:9;12269:19;12315:6;12304:9;12297:25;12341:2;12379:6;12374:2;12363:9;12359:18;12352:34;12422:3;12417:2;12406:9;12402:18;12395:31;12446:6;12481;12475:13;12512:6;12504;12497:22;12550:3;12539:9;12535:19;12528:26;;12589:2;12581:6;12577:15;12563:29;;12610:1;12620:195;12634:6;12631:1;12628:13;12620:195;;;12699:13;;-1:-1:-1;;;;;12695:39:1;12683:52;;12790:15;;;;12755:12;;;;12731:1;12649:9;12620:195;;;-1:-1:-1;;;;;;;12871:32:1;;;;12866:2;12851:18;;12844:60;-1:-1:-1;;;12935:3:1;12920:19;12913:35;12832:3;11974:980;-1:-1:-1;;;11974:980:1:o;13571:306::-;13659:6;13667;13675;13728:2;13716:9;13707:7;13703:23;13699:32;13696:52;;;13744:1;13741;13734:12;13696:52;13773:9;13767:16;13757:26;;13823:2;13812:9;13808:18;13802:25;13792:35;;13867:2;13856:9;13852:18;13846:25;13836:35;;13571:306;;;;;:::o
Swarm Source
ipfs://a0c9075d79a63c279d8dae2add3d14efcb3fe0aa21388daa1c6d4097f30564c0
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.