Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 58 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 13904985 | 1150 days ago | IN | 0 ETH | 0.00294267 | ||||
Approve | 13752302 | 1174 days ago | IN | 0 ETH | 0.0032576 | ||||
Approve | 13654597 | 1189 days ago | IN | 0 ETH | 0.00379549 | ||||
Set Max Tx Perce... | 13602862 | 1197 days ago | IN | 0 ETH | 0.00405404 | ||||
Transfer | 13602853 | 1197 days ago | IN | 0 ETH | 0.00300715 | ||||
Transfer | 13602831 | 1197 days ago | IN | 0 ETH | 0.00350023 | ||||
Transfer | 13602823 | 1197 days ago | IN | 0 ETH | 0.00366474 | ||||
Transfer | 13602800 | 1197 days ago | IN | 0 ETH | 0.04439239 | ||||
Approve | 13602773 | 1197 days ago | IN | 0 ETH | 0.0081912 | ||||
Set Max Tx Perce... | 13602762 | 1197 days ago | IN | 0 ETH | 0.00514034 | ||||
Approve | 13602712 | 1197 days ago | IN | 0 ETH | 0.00818063 | ||||
Approve | 13602586 | 1197 days ago | IN | 0 ETH | 0.00844521 | ||||
Approve | 13602584 | 1197 days ago | IN | 0 ETH | 0.00726001 | ||||
Approve | 13602576 | 1197 days ago | IN | 0 ETH | 0.00880908 | ||||
Approve | 13602575 | 1197 days ago | IN | 0 ETH | 0.00799964 | ||||
Approve | 13602567 | 1197 days ago | IN | 0 ETH | 0.01210352 | ||||
Approve | 13602566 | 1197 days ago | IN | 0 ETH | 0.00869361 | ||||
Approve | 13602561 | 1197 days ago | IN | 0 ETH | 0.00923907 | ||||
Approve | 13602557 | 1197 days ago | IN | 0 ETH | 0.00858387 | ||||
Approve | 13602555 | 1197 days ago | IN | 0 ETH | 0.00806805 | ||||
Approve | 13602554 | 1197 days ago | IN | 0 ETH | 0.01187076 | ||||
Approve | 13602553 | 1197 days ago | IN | 0 ETH | 0.00647261 | ||||
Approve | 13602546 | 1197 days ago | IN | 0 ETH | 0.00851039 | ||||
Approve | 13602544 | 1197 days ago | IN | 0 ETH | 0.00838531 | ||||
Approve | 13602541 | 1197 days ago | IN | 0 ETH | 0.00907764 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
13752319 | 1174 days ago | 0.00642239 ETH | ||||
13752319 | 1174 days ago | 0.00642239 ETH | ||||
13655361 | 1189 days ago | 0.00658096 ETH | ||||
13655361 | 1189 days ago | 0.00658096 ETH | ||||
13654742 | 1189 days ago | 0.00669965 ETH | ||||
13654742 | 1189 days ago | 0.00669965 ETH | ||||
13603132 | 1197 days ago | 0.00688419 ETH | ||||
13603132 | 1197 days ago | 0.00688419 ETH | ||||
13603131 | 1197 days ago | 0.00770088 ETH | ||||
13603131 | 1197 days ago | 0.00770088 ETH | ||||
13602897 | 1197 days ago | 0.00817472 ETH | ||||
13602897 | 1197 days ago | 0.00817472 ETH | ||||
13602871 | 1197 days ago | 0.01196257 ETH | ||||
13602871 | 1197 days ago | 0.01196257 ETH | ||||
13602800 | 1197 days ago | 0.01178154 ETH | ||||
13602800 | 1197 days ago | 0.01178154 ETH | ||||
13602796 | 1197 days ago | 0.0122639 ETH | ||||
13602796 | 1197 days ago | 0.0122639 ETH | ||||
13602787 | 1197 days ago | 0.01313005 ETH | ||||
13602787 | 1197 days ago | 0.01313005 ETH | ||||
13602781 | 1197 days ago | 0.01660917 ETH | ||||
13602781 | 1197 days ago | 0.01660917 ETH | ||||
13602655 | 1197 days ago | 0.01785731 ETH | ||||
13602655 | 1197 days ago | 0.01785731 ETH | ||||
13602655 | 1197 days ago | 0.01939096 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
VerySimpleCoin
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-11-12 */ /** ____ ____ _________.__ .__ \ \ / /___________ ___.__. / _____/|__| _____ ______ | | ____ \ Y // __ \_ __ < | | \_____ \ | |/ \\____ \| | _/ __ \ \ /\ ___/| | \/\___ | / \| | Y Y \ |_> > |_\ ___/ \___/ \___ >__| / ____| /_______ /|__|__|_| / __/|____/\___ > \/ \/ \/ \/|__| \/ tg: https://t.me/verysimplecoin twitter: https://twitter.com/verysimplecoin website: https://verysimple.eth.link initial max transaction amount: 10000000000000 **/ pragma solidity ^0.6.12; // SPDX-License-Identifier: Unlicensed interface IERC20 { function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; address private _previousOwner; uint256 private _lockTime; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } function geUnlockTime() public view returns (uint256) { return _lockTime; } //Locks the contract for owner for the amount of time provided function lock(uint256 time) public virtual onlyOwner { _previousOwner = _owner; _owner = address(0); _lockTime = now + time; emit OwnershipTransferred(_owner, address(0)); } //Unlocks the contract for owner when _lockTime is exceeds function unlock() public virtual { require(_previousOwner == msg.sender, "You don't have permission to unlock"); require(now > _lockTime , "Contract is locked until 7 days"); emit OwnershipTransferred(_owner, _previousOwner); _owner = _previousOwner; } } // pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract VerySimpleCoin 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; address public marketingWallet = 0xe9A91f2c0667724C2d9103E4175B2B91a245A62f; address public memeCreatorWallet = 0x71C32a44464d50C66f0D873C0c81F7527750B606; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 1000000000 * 10**6 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = "Very Simple Coin"; string private _symbol = "VERYSIMPLE"; uint8 private _decimals = 9; uint256 public _taxFee = 5; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee = 5; uint256 private _previousLiquidityFee = _liquidityFee; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public _maxTxAmount = 10000000 * 10**6 * 10**9; uint256 private numTokensSellToAddToLiquidity = 500000 * 10**6 * 10**9; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor () public { _rOwned[_msgSender()] = _rTotal.div(200).mul(195); _rOwned[marketingWallet] = _rTotal.div(200).mul(3); _rOwned[memeCreatorWallet] = _rTotal.div(200).mul(2); 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; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeFromReward(address account) public onlyOwner() { // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.'); require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function setTaxFeePercent(uint256 taxFee) external onlyOwner() { _taxFee = taxFee; } function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() { _liquidityFee = liquidityFee; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**2 ); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate()); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity); } function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity); return (tTransferAmount, tFee, tLiquidity); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeLiquidity(uint256 tLiquidity) private { uint256 currentRate = _getRate(); uint256 rLiquidity = tLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity); } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div( 10**2 ); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div( 10**2 ); } function removeAllFee() private { if(_taxFee == 0 && _liquidityFee == 0) return; _previousTaxFee = _taxFee; _previousLiquidityFee = _liquidityFee; _taxFee = 0; _liquidityFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(from != owner() && to != owner()) require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); // 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; } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from,to,amount,takeFee); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { // split the contract balance into halves uint256 half = contractTokenBalance.div(2); uint256 otherHalf = contractTokenBalance.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private { if(!takeFee) removeAllFee(); 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); } if(!takeFee) restoreAllFee(); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"memeCreatorWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
600980546001600160a01b031990811673e9a91f2c0667724c2d9103e4175b2b91a245a62f17909155600a80549091167371c32a44464d50c66f0d873c0c81f7527750b60617905569d3c21bcecceda1000000600b5569085afffa6ff50bffffff19600c55610100604052601060c08190526f2b32b93c9029b4b6b836329021b7b4b760811b60e09081526200009991600e919062000614565b5060408051808201909152600a808252695645525953494d504c4560b01b6020909201918252620000cd91600f9162000614565b506010805460ff1916600917905560056011819055601281905560138190556014556015805461ff00191661010017905569021e19e0c9bab2400000601655681b1ae4d6e2ef5000006017553480156200012657600080fd5b50600062000133620004a9565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001b460c3620001a060c8600c54620004ad60201b620017921790919060201c565b6200050060201b620017db1790919060201c565b60036000620001c2620004a9565b6001600160a01b03166001600160a01b0316815260200190815260200160002081905550620002096003620001a060c8600c54620004ad60201b620017921790919060201c565b6009546001600160a01b0316600090815260036020908152604090912091909155600c546200024c91600291620001a09160c89062001792620004ad821b17901c565b600a546001600160a01b031660009081526003602090815260409182902092909255805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a01559260048083019392829003018186803b158015620002b657600080fd5b505afa158015620002cb573d6000803e3d6000fd5b505050506040513d6020811015620002e257600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200033357600080fd5b505afa15801562000348573d6000803e3d6000fd5b505050506040513d60208110156200035f57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620003b257600080fd5b505af1158015620003c7573d6000803e3d6000fd5b505050506040513d6020811015620003de57600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600660006200040b6200055e565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152600690925290208054909116600117905562000455620004a9565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a350620006b0565b3390565b6000620004f783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200056d60201b60201c565b90505b92915050565b6000826200051157506000620004fa565b828202828482816200051f57fe5b0414620004f75760405162461bcd60e51b81526004018080602001828103825260218152602001806200318a6021913960400191505060405180910390fd5b6000546001600160a01b031690565b60008183620005fd5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015620005c1578181015183820152602001620005a7565b50505050905090810190601f168015620005ef5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816200060a57fe5b0495945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200065757805160ff191683800117855562000687565b8280016001018555821562000687579182015b82811115620006875782518255916020019190600101906200066a565b506200069592915062000699565b5090565b5b808211156200069557600081556001016200069a565b60805160601c60a05160601c612a92620006f860003980610efa5280611ab05250806109e152806121ca528061228252806122a9528061238f52806123b65250612a926000f3fe6080604052600436106102345760003560e01c80636bc87c3a1161012e578063a69df4b5116100ab578063dd4670641161006f578063dd467064146107e8578063dd62ed3e14610812578063ea2f0b371461084d578063eb3826db14610880578063f2fde38b146108955761023b565b8063a69df4b51461072f578063a9059cbb14610744578063b6c523241461077d578063c49b9a8014610792578063d543dbeb146107be5761023b565b806388f82020116100f257806388f820201461066f5780638da5cb5b146106a25780638ee88c53146106b757806395d89b41146106e1578063a457c2d7146106f65761023b565b80636bc87c3a146105e857806370a08231146105fd578063715018a61461063057806375f0a874146106455780637d1db4a51461065a5761023b565b80633685d419116101bc5780634549b039116101805780634549b0391461052657806349bd5a5e146105585780634a74bb021461056d57806352390c02146105825780635342acb4146105b55761023b565b80633685d41914610448578063395093511461047b5780633b124fe7146104b45780633bd5d173146104c9578063437823ec146104f35761023b565b80631694505e116102035780631694505e1461036a57806318160ddd1461039b57806323b872dd146103b05780632d838119146103f3578063313ce5671461041d5761023b565b8063061c82d01461024057806306fdde031461026c578063095ea7b3146102f657806313114a9d146103435761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b5061026a6004803603602081101561026357600080fd5b50356108c8565b005b34801561027857600080fd5b50610281610925565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102bb5781810151838201526020016102a3565b50505050905090810190601f1680156102e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030257600080fd5b5061032f6004803603604081101561031957600080fd5b506001600160a01b0381351690602001356109bb565b604080519115158252519081900360200190f35b34801561034f57600080fd5b506103586109d9565b60408051918252519081900360200190f35b34801561037657600080fd5b5061037f6109df565b604080516001600160a01b039092168252519081900360200190f35b3480156103a757600080fd5b50610358610a03565b3480156103bc57600080fd5b5061032f600480360360608110156103d357600080fd5b506001600160a01b03813581169160208101359091169060400135610a09565b3480156103ff57600080fd5b506103586004803603602081101561041657600080fd5b5035610a90565b34801561042957600080fd5b50610432610af2565b6040805160ff9092168252519081900360200190f35b34801561045457600080fd5b5061026a6004803603602081101561046b57600080fd5b50356001600160a01b0316610afb565b34801561048757600080fd5b5061032f6004803603604081101561049e57600080fd5b506001600160a01b038135169060200135610cbc565b3480156104c057600080fd5b50610358610d0a565b3480156104d557600080fd5b5061026a600480360360208110156104ec57600080fd5b5035610d10565b3480156104ff57600080fd5b5061026a6004803603602081101561051657600080fd5b50356001600160a01b0316610dea565b34801561053257600080fd5b506103586004803603604081101561054957600080fd5b50803590602001351515610e66565b34801561056457600080fd5b5061037f610ef8565b34801561057957600080fd5b5061032f610f1c565b34801561058e57600080fd5b5061026a600480360360208110156105a557600080fd5b50356001600160a01b0316610f2a565b3480156105c157600080fd5b5061032f600480360360208110156105d857600080fd5b50356001600160a01b03166110b0565b3480156105f457600080fd5b506103586110ce565b34801561060957600080fd5b506103586004803603602081101561062057600080fd5b50356001600160a01b03166110d4565b34801561063c57600080fd5b5061026a611136565b34801561065157600080fd5b5061037f6111c6565b34801561066657600080fd5b506103586111d5565b34801561067b57600080fd5b5061032f6004803603602081101561069257600080fd5b50356001600160a01b03166111db565b3480156106ae57600080fd5b5061037f6111f9565b3480156106c357600080fd5b5061026a600480360360208110156106da57600080fd5b5035611208565b3480156106ed57600080fd5b50610281611265565b34801561070257600080fd5b5061032f6004803603604081101561071957600080fd5b506001600160a01b0381351690602001356112c6565b34801561073b57600080fd5b5061026a61132e565b34801561075057600080fd5b5061032f6004803603604081101561076757600080fd5b506001600160a01b03813516906020013561141c565b34801561078957600080fd5b50610358611430565b34801561079e57600080fd5b5061026a600480360360208110156107b557600080fd5b50351515611436565b3480156107ca57600080fd5b5061026a600480360360208110156107e157600080fd5b50356114dd565b3480156107f457600080fd5b5061026a6004803603602081101561080b57600080fd5b503561155b565b34801561081e57600080fd5b506103586004803603604081101561083557600080fd5b506001600160a01b03813581169160200135166115f9565b34801561085957600080fd5b5061026a6004803603602081101561087057600080fd5b50356001600160a01b0316611624565b34801561088c57600080fd5b5061037f61169d565b3480156108a157600080fd5b5061026a600480360360208110156108b857600080fd5b50356001600160a01b03166116ac565b6108d0611834565b6000546001600160a01b03908116911614610920576040805162461bcd60e51b81526020600482018190526024820152600080516020612937833981519152604482015290519081900360640190fd5b601155565b600e8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109b15780601f10610986576101008083540402835291602001916109b1565b820191906000526020600020905b81548152906001019060200180831161099457829003601f168201915b5050505050905090565b60006109cf6109c8611834565b8484611838565b5060015b92915050565b600d5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5490565b6000610a16848484611924565b610a8684610a22611834565b610a818560405180606001604052806028815260200161290f602891396001600160a01b038a16600090815260056020526040812090610a60611834565b6001600160a01b031681526020810191909152604001600020549190611b6a565b611838565b5060019392505050565b6000600c54821115610ad35760405162461bcd60e51b815260040180806020018281038252602a815260200180612854602a913960400191505060405180910390fd5b6000610add611c01565b9050610ae98382611792565b9150505b919050565b60105460ff1690565b610b03611834565b6000546001600160a01b03908116911614610b53576040805162461bcd60e51b81526020600482018190526024820152600080516020612937833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610bc0576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610cb857816001600160a01b031660088281548110610be457fe5b6000918252602090912001546001600160a01b03161415610cb057600880546000198101908110610c1157fe5b600091825260209091200154600880546001600160a01b039092169183908110610c3757fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610c8957fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610cb8565b600101610bc3565b5050565b60006109cf610cc9611834565b84610a818560056000610cda611834565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611c24565b60115481565b6000610d1a611834565b6001600160a01b03811660009081526007602052604090205490915060ff1615610d755760405162461bcd60e51b815260040180806020018281038252602c8152602001806129e9602c913960400191505060405180910390fd5b6000610d8083611c7e565b505050506001600160a01b038416600090815260036020526040902054919250610dac91905082611ccd565b6001600160a01b038316600090815260036020526040902055600c54610dd29082611ccd565b600c55600d54610de29084611c24565b600d55505050565b610df2611834565b6000546001600160a01b03908116911614610e42576040805162461bcd60e51b81526020600482018190526024820152600080516020612937833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600b54831115610ebf576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610ede576000610ecf84611c7e565b509395506109d3945050505050565b6000610ee984611c7e565b509295506109d3945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601554610100900460ff1681565b610f32611834565b6000546001600160a01b03908116911614610f82576040805162461bcd60e51b81526020600482018190526024820152600080516020612937833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615610ff0576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600360205260409020541561104a576001600160a01b03811660009081526003602052604090205461103090610a90565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60135481565b6001600160a01b03811660009081526007602052604081205460ff161561111457506001600160a01b038116600090815260046020526040902054610aed565b6001600160a01b0382166000908152600360205260409020546109d390610a90565b61113e611834565b6000546001600160a01b0390811691161461118e576040805162461bcd60e51b81526020600482018190526024820152600080516020612937833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612957833981519152908390a3600080546001600160a01b0319169055565b6009546001600160a01b031681565b60165481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b611210611834565b6000546001600160a01b03908116911614611260576040805162461bcd60e51b81526020600482018190526024820152600080516020612937833981519152604482015290519081900360640190fd5b601355565b600f8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109b15780601f10610986576101008083540402835291602001916109b1565b60006109cf6112d3611834565b84610a8185604051806060016040528060258152602001612a3860259139600560006112fd611834565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611b6a565b6001546001600160a01b031633146113775760405162461bcd60e51b8152600401808060200182810382526023815260200180612a156023913960400191505060405180910390fd5b60025442116113cd576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061295783398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b60006109cf611429611834565b8484611924565b60025490565b61143e611834565b6000546001600160a01b0390811691161461148e576040805162461bcd60e51b81526020600482018190526024820152600080516020612937833981519152604482015290519081900360640190fd5b60158054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b6114e5611834565b6000546001600160a01b03908116911614611535576040805162461bcd60e51b81526020600482018190526024820152600080516020612937833981519152604482015290519081900360640190fd5b611555606461154f83600b546117db90919063ffffffff16565b90611792565b60165550565b611563611834565b6000546001600160a01b039081169116146115b3576040805162461bcd60e51b81526020600482018190526024820152600080516020612937833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612957833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b61162c611834565b6000546001600160a01b0390811691161461167c576040805162461bcd60e51b81526020600482018190526024820152600080516020612937833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b600a546001600160a01b031681565b6116b4611834565b6000546001600160a01b03908116911614611704576040805162461bcd60e51b81526020600482018190526024820152600080516020612937833981519152604482015290519081900360640190fd5b6001600160a01b0381166117495760405162461bcd60e51b815260040180806020018281038252602681526020018061287e6026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061295783398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60006117d483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611d0f565b9392505050565b6000826117ea575060006109d3565b828202828482816117f757fe5b04146117d45760405162461bcd60e51b81526004018080602001828103825260218152602001806128ee6021913960400191505060405180910390fd5b3390565b6001600160a01b03831661187d5760405162461bcd60e51b81526004018080602001828103825260248152602001806129c56024913960400191505060405180910390fd5b6001600160a01b0382166118c25760405162461bcd60e51b81526004018080602001828103825260228152602001806128a46022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166119695760405162461bcd60e51b81526004018080602001828103825260258152602001806129a06025913960400191505060405180910390fd5b6001600160a01b0382166119ae5760405162461bcd60e51b81526004018080602001828103825260238152602001806128316023913960400191505060405180910390fd5b600081116119ed5760405162461bcd60e51b81526004018080602001828103825260298152602001806129776029913960400191505060405180910390fd5b6119f56111f9565b6001600160a01b0316836001600160a01b031614158015611a2f5750611a196111f9565b6001600160a01b0316826001600160a01b031614155b15611a7557601654811115611a755760405162461bcd60e51b81526004018080602001828103825260288152602001806128c66028913960400191505060405180910390fd5b6000611a80306110d4565b90506016548110611a9057506016545b60175481108015908190611aa7575060155460ff16155b8015611ae557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611af85750601554610100900460ff165b15611b0b576017549150611b0b82611d74565b6001600160a01b03851660009081526006602052604090205460019060ff1680611b4d57506001600160a01b03851660009081526006602052604090205460ff165b15611b56575060005b611b6286868684611e11565b505050505050565b60008184841115611bf95760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611bbe578181015183820152602001611ba6565b50505050905090810190601f168015611beb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611c0e611f85565b9092509050611c1d8282611792565b9250505090565b6000828201838110156117d4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611c958a6120e8565b9250925092506000806000611cb38d8686611cae611c01565b61212a565b919f909e50909c50959a5093985091965092945050505050565b60006117d483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b6a565b60008183611d5e5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611bbe578181015183820152602001611ba6565b506000838581611d6a57fe5b0495945050505050565b6015805460ff191660011790556000611d8e826002611792565b90506000611d9c8383611ccd565b905047611da88361217a565b6000611db44783611ccd565b9050611dc08382612389565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506015805460ff19169055505050565b80611e1e57611e1e612487565b6001600160a01b03841660009081526007602052604090205460ff168015611e5f57506001600160a01b03831660009081526007602052604090205460ff16155b15611e7457611e6f8484846124b9565b611f72565b6001600160a01b03841660009081526007602052604090205460ff16158015611eb557506001600160a01b03831660009081526007602052604090205460ff165b15611ec557611e6f8484846125dd565b6001600160a01b03841660009081526007602052604090205460ff16158015611f0757506001600160a01b03831660009081526007602052604090205460ff16155b15611f1757611e6f848484612686565b6001600160a01b03841660009081526007602052604090205460ff168015611f5757506001600160a01b03831660009081526007602052604090205460ff165b15611f6757611e6f8484846126ca565b611f72848484612686565b80611f7f57611f7f61273d565b50505050565b600c54600b546000918291825b6008548110156120b657826003600060088481548110611fae57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806120135750816004600060088481548110611fec57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561202a57600c54600b54945094505050506120e4565b61206a600360006008848154811061203e57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611ccd565b92506120ac600460006008848154811061208057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611ccd565b9150600101611f92565b50600b54600c546120c691611792565b8210156120de57600c54600b549350935050506120e4565b90925090505b9091565b6000806000806120f78561274b565b9050600061210486612767565b9050600061211c826121168986611ccd565b90611ccd565b979296509094509092505050565b600080808061213988866117db565b9050600061214788876117db565b9050600061215588886117db565b90506000612167826121168686611ccd565b939b939a50919850919650505050505050565b604080516002808252606080830184529260208301908036833701905050905030816000815181106121a857fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561222157600080fd5b505afa158015612235573d6000803e3d6000fd5b505050506040513d602081101561224b57600080fd5b505181518290600190811061225c57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506122a7307f000000000000000000000000000000000000000000000000000000000000000084611838565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561234c578181015183820152602001612334565b505050509050019650505050505050600060405180830381600087803b15801561237557600080fd5b505af1158015611b62573d6000803e3d6000fd5b6123b4307f000000000000000000000000000000000000000000000000000000000000000084611838565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806123f16111f9565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561245c57600080fd5b505af1158015612470573d6000803e3d6000fd5b50505050506040513d6060811015611f7f57600080fd5b6011541580156124975750601354155b156124a1576124b7565b6011805460125560138054601455600091829055555b565b6000806000806000806124cb87611c7e565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506124fd9088611ccd565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461252c9087611ccd565b6001600160a01b03808b1660009081526003602052604080822093909355908a168152205461255b9086611c24565b6001600160a01b03891660009081526003602052604090205561257d81612783565b612587848361280c565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806125ef87611c7e565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506126219087611ccd565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546126579084611c24565b6001600160a01b03891660009081526004602090815260408083209390935560039052205461255b9086611c24565b60008060008060008061269887611c7e565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061252c9087611ccd565b6000806000806000806126dc87611c7e565b6001600160a01b038f16600090815260046020526040902054959b5093995091975095509350915061270e9088611ccd565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546126219087611ccd565b601254601155601454601355565b60006109d3606461154f601154856117db90919063ffffffff16565b60006109d3606461154f601354856117db90919063ffffffff16565b600061278d611c01565b9050600061279b83836117db565b306000908152600360205260409020549091506127b89082611c24565b3060009081526003602090815260408083209390935560079052205460ff161561280757306000908152600460205260409020546127f69084611c24565b306000908152600460205260409020555b505050565b600c546128199083611ccd565b600c55600d546128299082611c24565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207c79217211113e4971c66b7f9d164ee1050c1a960a4d497bb3df927a53d3f28d64736f6c634300060c0033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77
Deployed Bytecode
0x6080604052600436106102345760003560e01c80636bc87c3a1161012e578063a69df4b5116100ab578063dd4670641161006f578063dd467064146107e8578063dd62ed3e14610812578063ea2f0b371461084d578063eb3826db14610880578063f2fde38b146108955761023b565b8063a69df4b51461072f578063a9059cbb14610744578063b6c523241461077d578063c49b9a8014610792578063d543dbeb146107be5761023b565b806388f82020116100f257806388f820201461066f5780638da5cb5b146106a25780638ee88c53146106b757806395d89b41146106e1578063a457c2d7146106f65761023b565b80636bc87c3a146105e857806370a08231146105fd578063715018a61461063057806375f0a874146106455780637d1db4a51461065a5761023b565b80633685d419116101bc5780634549b039116101805780634549b0391461052657806349bd5a5e146105585780634a74bb021461056d57806352390c02146105825780635342acb4146105b55761023b565b80633685d41914610448578063395093511461047b5780633b124fe7146104b45780633bd5d173146104c9578063437823ec146104f35761023b565b80631694505e116102035780631694505e1461036a57806318160ddd1461039b57806323b872dd146103b05780632d838119146103f3578063313ce5671461041d5761023b565b8063061c82d01461024057806306fdde031461026c578063095ea7b3146102f657806313114a9d146103435761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b5061026a6004803603602081101561026357600080fd5b50356108c8565b005b34801561027857600080fd5b50610281610925565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102bb5781810151838201526020016102a3565b50505050905090810190601f1680156102e85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030257600080fd5b5061032f6004803603604081101561031957600080fd5b506001600160a01b0381351690602001356109bb565b604080519115158252519081900360200190f35b34801561034f57600080fd5b506103586109d9565b60408051918252519081900360200190f35b34801561037657600080fd5b5061037f6109df565b604080516001600160a01b039092168252519081900360200190f35b3480156103a757600080fd5b50610358610a03565b3480156103bc57600080fd5b5061032f600480360360608110156103d357600080fd5b506001600160a01b03813581169160208101359091169060400135610a09565b3480156103ff57600080fd5b506103586004803603602081101561041657600080fd5b5035610a90565b34801561042957600080fd5b50610432610af2565b6040805160ff9092168252519081900360200190f35b34801561045457600080fd5b5061026a6004803603602081101561046b57600080fd5b50356001600160a01b0316610afb565b34801561048757600080fd5b5061032f6004803603604081101561049e57600080fd5b506001600160a01b038135169060200135610cbc565b3480156104c057600080fd5b50610358610d0a565b3480156104d557600080fd5b5061026a600480360360208110156104ec57600080fd5b5035610d10565b3480156104ff57600080fd5b5061026a6004803603602081101561051657600080fd5b50356001600160a01b0316610dea565b34801561053257600080fd5b506103586004803603604081101561054957600080fd5b50803590602001351515610e66565b34801561056457600080fd5b5061037f610ef8565b34801561057957600080fd5b5061032f610f1c565b34801561058e57600080fd5b5061026a600480360360208110156105a557600080fd5b50356001600160a01b0316610f2a565b3480156105c157600080fd5b5061032f600480360360208110156105d857600080fd5b50356001600160a01b03166110b0565b3480156105f457600080fd5b506103586110ce565b34801561060957600080fd5b506103586004803603602081101561062057600080fd5b50356001600160a01b03166110d4565b34801561063c57600080fd5b5061026a611136565b34801561065157600080fd5b5061037f6111c6565b34801561066657600080fd5b506103586111d5565b34801561067b57600080fd5b5061032f6004803603602081101561069257600080fd5b50356001600160a01b03166111db565b3480156106ae57600080fd5b5061037f6111f9565b3480156106c357600080fd5b5061026a600480360360208110156106da57600080fd5b5035611208565b3480156106ed57600080fd5b50610281611265565b34801561070257600080fd5b5061032f6004803603604081101561071957600080fd5b506001600160a01b0381351690602001356112c6565b34801561073b57600080fd5b5061026a61132e565b34801561075057600080fd5b5061032f6004803603604081101561076757600080fd5b506001600160a01b03813516906020013561141c565b34801561078957600080fd5b50610358611430565b34801561079e57600080fd5b5061026a600480360360208110156107b557600080fd5b50351515611436565b3480156107ca57600080fd5b5061026a600480360360208110156107e157600080fd5b50356114dd565b3480156107f457600080fd5b5061026a6004803603602081101561080b57600080fd5b503561155b565b34801561081e57600080fd5b506103586004803603604081101561083557600080fd5b506001600160a01b03813581169160200135166115f9565b34801561085957600080fd5b5061026a6004803603602081101561087057600080fd5b50356001600160a01b0316611624565b34801561088c57600080fd5b5061037f61169d565b3480156108a157600080fd5b5061026a600480360360208110156108b857600080fd5b50356001600160a01b03166116ac565b6108d0611834565b6000546001600160a01b03908116911614610920576040805162461bcd60e51b81526020600482018190526024820152600080516020612937833981519152604482015290519081900360640190fd5b601155565b600e8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109b15780601f10610986576101008083540402835291602001916109b1565b820191906000526020600020905b81548152906001019060200180831161099457829003601f168201915b5050505050905090565b60006109cf6109c8611834565b8484611838565b5060015b92915050565b600d5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600b5490565b6000610a16848484611924565b610a8684610a22611834565b610a818560405180606001604052806028815260200161290f602891396001600160a01b038a16600090815260056020526040812090610a60611834565b6001600160a01b031681526020810191909152604001600020549190611b6a565b611838565b5060019392505050565b6000600c54821115610ad35760405162461bcd60e51b815260040180806020018281038252602a815260200180612854602a913960400191505060405180910390fd5b6000610add611c01565b9050610ae98382611792565b9150505b919050565b60105460ff1690565b610b03611834565b6000546001600160a01b03908116911614610b53576040805162461bcd60e51b81526020600482018190526024820152600080516020612937833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610bc0576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610cb857816001600160a01b031660088281548110610be457fe5b6000918252602090912001546001600160a01b03161415610cb057600880546000198101908110610c1157fe5b600091825260209091200154600880546001600160a01b039092169183908110610c3757fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610c8957fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610cb8565b600101610bc3565b5050565b60006109cf610cc9611834565b84610a818560056000610cda611834565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611c24565b60115481565b6000610d1a611834565b6001600160a01b03811660009081526007602052604090205490915060ff1615610d755760405162461bcd60e51b815260040180806020018281038252602c8152602001806129e9602c913960400191505060405180910390fd5b6000610d8083611c7e565b505050506001600160a01b038416600090815260036020526040902054919250610dac91905082611ccd565b6001600160a01b038316600090815260036020526040902055600c54610dd29082611ccd565b600c55600d54610de29084611c24565b600d55505050565b610df2611834565b6000546001600160a01b03908116911614610e42576040805162461bcd60e51b81526020600482018190526024820152600080516020612937833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600b54831115610ebf576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610ede576000610ecf84611c7e565b509395506109d3945050505050565b6000610ee984611c7e565b509295506109d3945050505050565b7f000000000000000000000000f8741ba01630ebae1e084e7c1ab1efcc3478a43b81565b601554610100900460ff1681565b610f32611834565b6000546001600160a01b03908116911614610f82576040805162461bcd60e51b81526020600482018190526024820152600080516020612937833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615610ff0576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600360205260409020541561104a576001600160a01b03811660009081526003602052604090205461103090610a90565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60135481565b6001600160a01b03811660009081526007602052604081205460ff161561111457506001600160a01b038116600090815260046020526040902054610aed565b6001600160a01b0382166000908152600360205260409020546109d390610a90565b61113e611834565b6000546001600160a01b0390811691161461118e576040805162461bcd60e51b81526020600482018190526024820152600080516020612937833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612957833981519152908390a3600080546001600160a01b0319169055565b6009546001600160a01b031681565b60165481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b611210611834565b6000546001600160a01b03908116911614611260576040805162461bcd60e51b81526020600482018190526024820152600080516020612937833981519152604482015290519081900360640190fd5b601355565b600f8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109b15780601f10610986576101008083540402835291602001916109b1565b60006109cf6112d3611834565b84610a8185604051806060016040528060258152602001612a3860259139600560006112fd611834565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611b6a565b6001546001600160a01b031633146113775760405162461bcd60e51b8152600401808060200182810382526023815260200180612a156023913960400191505060405180910390fd5b60025442116113cd576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061295783398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b60006109cf611429611834565b8484611924565b60025490565b61143e611834565b6000546001600160a01b0390811691161461148e576040805162461bcd60e51b81526020600482018190526024820152600080516020612937833981519152604482015290519081900360640190fd5b60158054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b6114e5611834565b6000546001600160a01b03908116911614611535576040805162461bcd60e51b81526020600482018190526024820152600080516020612937833981519152604482015290519081900360640190fd5b611555606461154f83600b546117db90919063ffffffff16565b90611792565b60165550565b611563611834565b6000546001600160a01b039081169116146115b3576040805162461bcd60e51b81526020600482018190526024820152600080516020612937833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612957833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b61162c611834565b6000546001600160a01b0390811691161461167c576040805162461bcd60e51b81526020600482018190526024820152600080516020612937833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b600a546001600160a01b031681565b6116b4611834565b6000546001600160a01b03908116911614611704576040805162461bcd60e51b81526020600482018190526024820152600080516020612937833981519152604482015290519081900360640190fd5b6001600160a01b0381166117495760405162461bcd60e51b815260040180806020018281038252602681526020018061287e6026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061295783398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60006117d483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611d0f565b9392505050565b6000826117ea575060006109d3565b828202828482816117f757fe5b04146117d45760405162461bcd60e51b81526004018080602001828103825260218152602001806128ee6021913960400191505060405180910390fd5b3390565b6001600160a01b03831661187d5760405162461bcd60e51b81526004018080602001828103825260248152602001806129c56024913960400191505060405180910390fd5b6001600160a01b0382166118c25760405162461bcd60e51b81526004018080602001828103825260228152602001806128a46022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166119695760405162461bcd60e51b81526004018080602001828103825260258152602001806129a06025913960400191505060405180910390fd5b6001600160a01b0382166119ae5760405162461bcd60e51b81526004018080602001828103825260238152602001806128316023913960400191505060405180910390fd5b600081116119ed5760405162461bcd60e51b81526004018080602001828103825260298152602001806129776029913960400191505060405180910390fd5b6119f56111f9565b6001600160a01b0316836001600160a01b031614158015611a2f5750611a196111f9565b6001600160a01b0316826001600160a01b031614155b15611a7557601654811115611a755760405162461bcd60e51b81526004018080602001828103825260288152602001806128c66028913960400191505060405180910390fd5b6000611a80306110d4565b90506016548110611a9057506016545b60175481108015908190611aa7575060155460ff16155b8015611ae557507f000000000000000000000000f8741ba01630ebae1e084e7c1ab1efcc3478a43b6001600160a01b0316856001600160a01b031614155b8015611af85750601554610100900460ff165b15611b0b576017549150611b0b82611d74565b6001600160a01b03851660009081526006602052604090205460019060ff1680611b4d57506001600160a01b03851660009081526006602052604090205460ff165b15611b56575060005b611b6286868684611e11565b505050505050565b60008184841115611bf95760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611bbe578181015183820152602001611ba6565b50505050905090810190601f168015611beb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611c0e611f85565b9092509050611c1d8282611792565b9250505090565b6000828201838110156117d4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611c958a6120e8565b9250925092506000806000611cb38d8686611cae611c01565b61212a565b919f909e50909c50959a5093985091965092945050505050565b60006117d483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b6a565b60008183611d5e5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611bbe578181015183820152602001611ba6565b506000838581611d6a57fe5b0495945050505050565b6015805460ff191660011790556000611d8e826002611792565b90506000611d9c8383611ccd565b905047611da88361217a565b6000611db44783611ccd565b9050611dc08382612389565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506015805460ff19169055505050565b80611e1e57611e1e612487565b6001600160a01b03841660009081526007602052604090205460ff168015611e5f57506001600160a01b03831660009081526007602052604090205460ff16155b15611e7457611e6f8484846124b9565b611f72565b6001600160a01b03841660009081526007602052604090205460ff16158015611eb557506001600160a01b03831660009081526007602052604090205460ff165b15611ec557611e6f8484846125dd565b6001600160a01b03841660009081526007602052604090205460ff16158015611f0757506001600160a01b03831660009081526007602052604090205460ff16155b15611f1757611e6f848484612686565b6001600160a01b03841660009081526007602052604090205460ff168015611f5757506001600160a01b03831660009081526007602052604090205460ff165b15611f6757611e6f8484846126ca565b611f72848484612686565b80611f7f57611f7f61273d565b50505050565b600c54600b546000918291825b6008548110156120b657826003600060088481548110611fae57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806120135750816004600060088481548110611fec57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561202a57600c54600b54945094505050506120e4565b61206a600360006008848154811061203e57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611ccd565b92506120ac600460006008848154811061208057fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611ccd565b9150600101611f92565b50600b54600c546120c691611792565b8210156120de57600c54600b549350935050506120e4565b90925090505b9091565b6000806000806120f78561274b565b9050600061210486612767565b9050600061211c826121168986611ccd565b90611ccd565b979296509094509092505050565b600080808061213988866117db565b9050600061214788876117db565b9050600061215588886117db565b90506000612167826121168686611ccd565b939b939a50919850919650505050505050565b604080516002808252606080830184529260208301908036833701905050905030816000815181106121a857fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561222157600080fd5b505afa158015612235573d6000803e3d6000fd5b505050506040513d602081101561224b57600080fd5b505181518290600190811061225c57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506122a7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611838565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561234c578181015183820152602001612334565b505050509050019650505050505050600060405180830381600087803b15801561237557600080fd5b505af1158015611b62573d6000803e3d6000fd5b6123b4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611838565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806123f16111f9565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561245c57600080fd5b505af1158015612470573d6000803e3d6000fd5b50505050506040513d6060811015611f7f57600080fd5b6011541580156124975750601354155b156124a1576124b7565b6011805460125560138054601455600091829055555b565b6000806000806000806124cb87611c7e565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506124fd9088611ccd565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461252c9087611ccd565b6001600160a01b03808b1660009081526003602052604080822093909355908a168152205461255b9086611c24565b6001600160a01b03891660009081526003602052604090205561257d81612783565b612587848361280c565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806125ef87611c7e565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506126219087611ccd565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546126579084611c24565b6001600160a01b03891660009081526004602090815260408083209390935560039052205461255b9086611c24565b60008060008060008061269887611c7e565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061252c9087611ccd565b6000806000806000806126dc87611c7e565b6001600160a01b038f16600090815260046020526040902054959b5093995091975095509350915061270e9088611ccd565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546126219087611ccd565b601254601155601454601355565b60006109d3606461154f601154856117db90919063ffffffff16565b60006109d3606461154f601354856117db90919063ffffffff16565b600061278d611c01565b9050600061279b83836117db565b306000908152600360205260409020549091506127b89082611c24565b3060009081526003602090815260408083209390935560079052205460ff161561280757306000908152600460205260409020546127f69084611c24565b306000908152600460205260409020555b505050565b600c546128199083611ccd565b600c55600d546128299082611c24565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207c79217211113e4971c66b7f9d164ee1050c1a960a4d497bb3df927a53d3f28d64736f6c634300060c0033
Deployed Bytecode Sourcemap
26256:18684:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34035:98;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34035:98:0;;:::i;:::-;;28970:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29882:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29882:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;31003:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;27399:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;27399:51:0;;;;;;;;;;;;;;29247:95;;;;;;;;;;;;;:::i;30051:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30051:313:0;;;;;;;;;;;;;;;;;:::i;31927:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31927:253:0;;:::i;29156:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32643:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32643:479:0;-1:-1:-1;;;;;32643:479:0;;:::i;30372:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30372:218:0;;;;;;;;:::i;27211:26::-;;;;;;;;;;;;;:::i;31098:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31098:377:0;;:::i;33790:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33790:111:0;-1:-1:-1;;;;;33790:111:0;;:::i;31483:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31483:436:0;;;;;;;;;:::i;27457:38::-;;;;;;;;;;;;;:::i;27536:40::-;;;;;;;;;;;;;:::i;32188:447::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32188:447:0;-1:-1:-1;;;;;32188:447:0;;:::i;37932:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37932:123:0;-1:-1:-1;;;;;37932:123:0;;:::i;27298:32::-;;;;;;;;;;;;;:::i;29350:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29350:198:0;-1:-1:-1;;;;;29350:198:0;;:::i;16851:148::-;;;;;;;;;;;;;:::i;26709:75::-;;;;;;;;;;;;;:::i;27589:54::-;;;;;;;;;;;;;:::i;30875:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30875:120:0;-1:-1:-1;;;;;30875:120:0;;:::i;16208:79::-;;;;;;;;;;;;;:::i;34145:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34145:122:0;;:::i;29061:87::-;;;;;;;;;;;;;:::i;30598:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30598:269:0;;;;;;;;:::i;17861:293::-;;;;;;;;;;;;;:::i;29556:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29556:167:0;;;;;;;;:::i;17406:89::-;;;;;;;;;;;;;:::i;34448:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34448:171:0;;;;:::i;34278:162::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34278:162:0;;:::i;17571:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17571:214:0;;:::i;29731:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29731:143:0;;;;;;;;;;:::i;33913:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33913:110:0;-1:-1:-1;;;;;33913:110:0;;:::i;26791:77::-;;;;;;;;;;;;;:::i;17154:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17154:244:0;-1:-1:-1;;;;;17154:244:0;;:::i;34035:98::-;16430:12;:10;:12::i;:::-;16420:6;;-1:-1:-1;;;;;16420:6:0;;;:22;;;16412:67;;;;;-1:-1:-1;;;16412:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16412:67:0;;;;;;;;;;;;;;;34109:7:::1;:16:::0;34035:98::o;28970:83::-;29040:5;29033:12;;;;;;;;-1:-1:-1;;29033:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29007:13;;29033:12;;29040:5;;29033:12;;29040:5;29033:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28970:83;:::o;29882:161::-;29957:4;29974:39;29983:12;:10;:12::i;:::-;29997:7;30006:6;29974:8;:39::i;:::-;-1:-1:-1;30031:4:0;29882:161;;;;;:::o;31003:87::-;31072:10;;31003:87;:::o;27399:51::-;;;:::o;29247:95::-;29327:7;;29247:95;:::o;30051:313::-;30149:4;30166:36;30176:6;30184:9;30195:6;30166:9;:36::i;:::-;30213:121;30222:6;30230:12;:10;:12::i;:::-;30244:89;30282:6;30244:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30244:19:0;;;;;;:11;:19;;;;;;30264:12;:10;:12::i;:::-;-1:-1:-1;;;;;30244:33:0;;;;;;;;;;;;-1:-1:-1;30244:33:0;;;:89;:37;:89::i;:::-;30213:8;:121::i;:::-;-1:-1:-1;30352:4:0;30051:313;;;;;:::o;31927:253::-;31993:7;32032;;32021;:18;;32013:73;;;;-1:-1:-1;;;32013:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32097:19;32120:10;:8;:10::i;:::-;32097:33;-1:-1:-1;32148:24:0;:7;32097:33;32148:11;:24::i;:::-;32141:31;;;31927:253;;;;:::o;29156:83::-;29222:9;;;;29156:83;:::o;32643:479::-;16430:12;:10;:12::i;:::-;16420:6;;-1:-1:-1;;;;;16420:6:0;;;:22;;;16412:67;;;;;-1:-1:-1;;;16412:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16412:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32725:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32717:60;;;::::0;;-1:-1:-1;;;32717:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32793:9;32788:327;32812:9;:16:::0;32808:20;::::1;32788:327;;;32870:7;-1:-1:-1::0;;;;;32854:23:0::1;:9;32864:1;32854:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;32854:12:0::1;:23;32850:254;;;32913:9;32923:16:::0;;-1:-1:-1;;32923:20:0;;;32913:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;32898:9:::1;:12:::0;;-1:-1:-1;;;;;32913:31:0;;::::1;::::0;32908:1;;32898:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;32898:46:0::1;-1:-1:-1::0;;;;;32898:46:0;;::::1;;::::0;;32963:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;33002:11:::1;:20:::0;;;;:28;;-1:-1:-1;;33002:28:0::1;::::0;;33049:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;33049:15:0;;;;;-1:-1:-1;;;;;;33049:15:0::1;::::0;;;;;33083:5:::1;;32850:254;32830:3;;32788:327;;;;32643:479:::0;:::o;30372:218::-;30460:4;30477:83;30486:12;:10;:12::i;:::-;30500:7;30509:50;30548:10;30509:11;:25;30521:12;:10;:12::i;:::-;-1:-1:-1;;;;;30509:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30509:25:0;;;:34;;;;;;;;;;;:38;:50::i;27211:26::-;;;;:::o;31098:377::-;31150:14;31167:12;:10;:12::i;:::-;-1:-1:-1;;;;;31199:19:0;;;;;;:11;:19;;;;;;31150:29;;-1:-1:-1;31199:19:0;;31198:20;31190:77;;;;-1:-1:-1;;;31190:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31279:15;31303:19;31314:7;31303:10;:19::i;:::-;-1:-1:-1;;;;;;;;;31351:15:0;;;;;;:7;:15;;;;;;31278:44;;-1:-1:-1;31351:28:0;;:15;-1:-1:-1;31278:44:0;31351:19;:28::i;:::-;-1:-1:-1;;;;;31333:15:0;;;;;;:7;:15;;;;;:46;31400:7;;:20;;31412:7;31400:11;:20::i;:::-;31390:7;:30;31444:10;;:23;;31459:7;31444:14;:23::i;:::-;31431:10;:36;-1:-1:-1;;;31098:377:0:o;33790:111::-;16430:12;:10;:12::i;:::-;16420:6;;-1:-1:-1;;;;;16420:6:0;;;:22;;;16412:67;;;;;-1:-1:-1;;;16412:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16412:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33859:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;33859:34:0::1;33889:4;33859:34;::::0;;33790:111::o;31483:436::-;31573:7;31612;;31601;:18;;31593:62;;;;;-1:-1:-1;;;31593:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31671:17;31666:246;;31706:15;31730:19;31741:7;31730:10;:19::i;:::-;-1:-1:-1;31705:44:0;;-1:-1:-1;31764:14:0;;-1:-1:-1;;;;;31764:14:0;31666:246;31813:23;31844:19;31855:7;31844:10;:19::i;:::-;-1:-1:-1;31811:52:0;;-1:-1:-1;31878:22:0;;-1:-1:-1;;;;;31878:22:0;27457:38;;;:::o;27536:40::-;;;;;;;;;:::o;32188:447::-;16430:12;:10;:12::i;:::-;16420:6;;-1:-1:-1;;;;;16420:6:0;;;:22;;;16412:67;;;;;-1:-1:-1;;;16412:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16412:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32385:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32384:21;32376:61;;;::::0;;-1:-1:-1;;;32376:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;32451:16:0;::::1;32470:1;32451:16:::0;;;:7:::1;:16;::::0;;;;;:20;32448:108:::1;;-1:-1:-1::0;;;;;32527:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;32507:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;32488:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;32448:108:::1;-1:-1:-1::0;;;;;32566:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;32566:27:0::1;32589:4;32566:27:::0;;::::1;::::0;;;32604:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;32604:23:0::1;::::0;;::::1;::::0;;32188:447::o;37932:123::-;-1:-1:-1;;;;;38020:27:0;37996:4;38020:27;;;:18;:27;;;;;;;;;37932:123::o;27298:32::-;;;;:::o;29350:198::-;-1:-1:-1;;;;;29440:20:0;;29416:7;29440:20;;;:11;:20;;;;;;;;29436:49;;;-1:-1:-1;;;;;;29469:16:0;;;;;;:7;:16;;;;;;29462:23;;29436:49;-1:-1:-1;;;;;29523:16:0;;;;;;:7;:16;;;;;;29503:37;;:19;:37::i;16851:148::-;16430:12;:10;:12::i;:::-;16420:6;;-1:-1:-1;;;;;16420:6:0;;;:22;;;16412:67;;;;;-1:-1:-1;;;16412:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16412:67:0;;;;;;;;;;;;;;;16958:1:::1;16942:6:::0;;16921:40:::1;::::0;-1:-1:-1;;;;;16942:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16921:40:0;16958:1;;16921:40:::1;16989:1;16972:19:::0;;-1:-1:-1;;;;;;16972:19:0::1;::::0;;16851:148::o;26709:75::-;;;-1:-1:-1;;;;;26709:75:0;;:::o;27589:54::-;;;;:::o;30875:120::-;-1:-1:-1;;;;;30967:20:0;30943:4;30967:20;;;:11;:20;;;;;;;;;30875:120::o;16208:79::-;16246:7;16273:6;-1:-1:-1;;;;;16273:6:0;16208:79;:::o;34145:122::-;16430:12;:10;:12::i;:::-;16420:6;;-1:-1:-1;;;;;16420:6:0;;;:22;;;16412:67;;;;;-1:-1:-1;;;16412:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16412:67:0;;;;;;;;;;;;;;;34231:13:::1;:28:::0;34145:122::o;29061:87::-;29133:7;29126:14;;;;;;;;-1:-1:-1;;29126:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29100:13;;29126:14;;29133:7;;29126:14;;29133:7;29126:14;;;;;;;;;;;;;;;;;;;;;;;;30598:269;30691:4;30708:129;30717:12;:10;:12::i;:::-;30731:7;30740:96;30779:15;30740:96;;;;;;;;;;;;;;;;;:11;:25;30752:12;:10;:12::i;:::-;-1:-1:-1;;;;;30740:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30740:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17861:293::-;17913:14;;-1:-1:-1;;;;;17913:14:0;17931:10;17913:28;17905:76;;;;-1:-1:-1;;;17905:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18006:9;;18000:3;:15;17992:60;;;;;-1:-1:-1;;;17992:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18097:14;;;18089:6;;18068:44;;-1:-1:-1;;;;;18097:14:0;;;;18089:6;;;;-1:-1:-1;;;;;;;;;;;18068:44:0;;18132:14;;;18123:23;;-1:-1:-1;;;;;;18123:23:0;-1:-1:-1;;;;;18132:14:0;;;18123:23;;;;;;17861:293::o;29556:167::-;29634:4;29651:42;29661:12;:10;:12::i;:::-;29675:9;29686:6;29651:9;:42::i;17406:89::-;17478:9;;17406:89;:::o;34448:171::-;16430:12;:10;:12::i;:::-;16420:6;;-1:-1:-1;;;;;16420:6:0;;;:22;;;16412:67;;;;;-1:-1:-1;;;16412:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16412:67:0;;;;;;;;;;;;;;;34525:21:::1;:32:::0;;;::::1;;;::::0;::::1;-1:-1:-1::0;;34525:32:0;;::::1;::::0;;;::::1;::::0;;;34573:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;34448:171:::0;:::o;34278:162::-;16430:12;:10;:12::i;:::-;16420:6;;-1:-1:-1;;;;;16420:6:0;;;:22;;;16412:67;;;;;-1:-1:-1;;;16412:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16412:67:0;;;;;;;;;;;;;;;34372:60:::1;34416:5;34372:25;34384:12;34372:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;34357:12;:75:::0;-1:-1:-1;34278:162:0:o;17571:214::-;16430:12;:10;:12::i;:::-;16420:6;;-1:-1:-1;;;;;16420:6:0;;;:22;;;16412:67;;;;;-1:-1:-1;;;16412:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16412:67:0;;;;;;;;;;;;;;;17652:6:::1;::::0;;;17635:23;;-1:-1:-1;;;;;;17635:23:0;;::::1;-1:-1:-1::0;;;;;17652:6:0;::::1;17635:23;::::0;;;17669:19:::1;::::0;;17711:3:::1;:10:::0;::::1;17699:9;:22:::0;17737:40:::1;::::0;17652:6;;-1:-1:-1;;;;;;;;;;;17737:40:0;17652:6;;17737:40:::1;17571:214:::0;:::o;29731:143::-;-1:-1:-1;;;;;29839:18:0;;;29812:7;29839:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29731:143::o;33913:110::-;16430:12;:10;:12::i;:::-;16420:6;;-1:-1:-1;;;;;16420:6:0;;;:22;;;16412:67;;;;;-1:-1:-1;;;16412:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16412:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33980:27:0::1;34010:5;33980:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;33980:35:0::1;::::0;;33913:110::o;26791:77::-;;;-1:-1:-1;;;;;26791:77:0;;:::o;17154:244::-;16430:12;:10;:12::i;:::-;16420:6;;-1:-1:-1;;;;;16420:6:0;;;:22;;;16412:67;;;;;-1:-1:-1;;;16412:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16412:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17243:22:0;::::1;17235:73;;;;-1:-1:-1::0;;;17235:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17345:6;::::0;;17324:38:::1;::::0;-1:-1:-1;;;;;17324:38:0;;::::1;::::0;17345:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;17324:38:0;::::1;17373:6;:17:::0;;-1:-1:-1;;;;;;17373:17:0::1;-1:-1:-1::0;;;;;17373:17:0;;;::::1;::::0;;;::::1;::::0;;17154:244::o;6424:132::-;6482:7;6509:39;6513:1;6516;6509:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6502:46;6424:132;-1:-1:-1;;;6424:132:0:o;5477:471::-;5535:7;5780:6;5776:47;;-1:-1:-1;5810:1:0;5803:8;;5776:47;5847:5;;;5851:1;5847;:5;:1;5871:5;;;;;:10;5863:56;;;;-1:-1:-1;;;5863:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8616:106;8704:10;8616:106;:::o;38063:337::-;-1:-1:-1;;;;;38156:19:0;;38148:68;;;;-1:-1:-1;;;38148:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38235:21:0;;38227:68;;;;-1:-1:-1;;;38227:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38308:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;38360:32;;;;;;;;;;;;;;;;;38063:337;;;:::o;38408:1813::-;-1:-1:-1;;;;;38530:18:0;;38522:68;;;;-1:-1:-1;;;38522:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38609:16:0;;38601:64;;;;-1:-1:-1;;;38601:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38693:1;38684:6;:10;38676:64;;;;-1:-1:-1;;;38676:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38762:7;:5;:7::i;:::-;-1:-1:-1;;;;;38754:15:0;:4;-1:-1:-1;;;;;38754:15:0;;;:32;;;;;38779:7;:5;:7::i;:::-;-1:-1:-1;;;;;38773:13:0;:2;-1:-1:-1;;;;;38773:13:0;;;38754:32;38751:125;;;38819:12;;38809:6;:22;;38801:75;;;;-1:-1:-1;;;38801:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39171:28;39202:24;39220:4;39202:9;:24::i;:::-;39171:55;;39274:12;;39250:20;:36;39247:112;;-1:-1:-1;39335:12:0;;39247:112;39430:29;;39406:53;;;;;;;39488;;-1:-1:-1;39525:16:0;;;;39524:17;39488:53;:91;;;;;39566:13;-1:-1:-1;;;;;39558:21:0;:4;-1:-1:-1;;;;;39558:21:0;;;39488:91;:129;;;;-1:-1:-1;39596:21:0;;;;;;;39488:129;39470:318;;;39667:29;;39644:52;;39740:36;39755:20;39740:14;:36::i;:::-;-1:-1:-1;;;;;39996:24:0;;39869:12;39996:24;;;:18;:24;;;;;;39884:4;;39996:24;;;:50;;-1:-1:-1;;;;;;40024:22:0;;;;;;:18;:22;;;;;;;;39996:50;39993:96;;;-1:-1:-1;40072:5:0;39993:96;40175:38;40190:4;40195:2;40198:6;40205:7;40175:14;:38::i;:::-;38408:1813;;;;;;:::o;5026:192::-;5112:7;5148:12;5140:6;;;;5132:29;;;;-1:-1:-1;;;5132:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5184:5:0;;;5026:192::o;36082:163::-;36123:7;36144:15;36161;36180:19;:17;:19::i;:::-;36143:56;;-1:-1:-1;36143:56:0;-1:-1:-1;36217:20:0;36143:56;;36217:11;:20::i;:::-;36210:27;;;;36082:163;:::o;4123:181::-;4181:7;4213:5;;;4237:6;;;;4229:46;;;;;-1:-1:-1;;;4229:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;34880:419;34939:7;34948;34957;34966;34975;34984;35005:23;35030:12;35044:18;35066:20;35078:7;35066:11;:20::i;:::-;35004:82;;;;;;35098:15;35115:23;35140:12;35156:50;35168:7;35177:4;35183:10;35195;:8;:10::i;:::-;35156:11;:50::i;:::-;35097:109;;;;-1:-1:-1;35097:109:0;;-1:-1:-1;35257:15:0;;-1:-1:-1;35274:4:0;;-1:-1:-1;35280:10:0;;-1:-1:-1;34880:419:0;;-1:-1:-1;;;;;34880:419:0:o;4587:136::-;4645:7;4672:43;4676:1;4679;4672:43;;;;;;;;;;;;;;;;;:3;:43::i;7052:278::-;7138:7;7173:12;7166:5;7158:28;;;;-1:-1:-1;;;7158:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7197:9;7213:1;7209;:5;;;;;;;7052:278;-1:-1:-1;;;;;7052:278:0:o;40229:985::-;28027:16;:23;;-1:-1:-1;;28027:23:0;28046:4;28027:23;;;:16;40380:27:::1;:20:::0;40405:1:::1;40380:24;:27::i;:::-;40365:42:::0;-1:-1:-1;40418:17:0::1;40438:30;:20:::0;40365:42;40438:24:::1;:30::i;:::-;40418:50:::0;-1:-1:-1;40771:21:0::1;40837:22;40854:4:::0;40837:16:::1;:22::i;:::-;40990:18;41011:41;:21;41037:14:::0;41011:25:::1;:41::i;:::-;40990:62;;41102:35;41115:9;41126:10;41102:12;:35::i;:::-;41163:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;28073:16:0;:24;;-1:-1:-1;;28073:24:0;;;-1:-1:-1;;;40229:985:0:o;42413:834::-;42524:7;42520:40;;42546:14;:12;:14::i;:::-;-1:-1:-1;;;;;42585:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;42609:22:0;;;;;;:11;:22;;;;;;;;42608:23;42585:46;42581:597;;;42648:48;42670:6;42678:9;42689:6;42648:21;:48::i;:::-;42581:597;;;-1:-1:-1;;;;;42719:19:0;;;;;;:11;:19;;;;;;;;42718:20;:46;;;;-1:-1:-1;;;;;;42742:22:0;;;;;;:11;:22;;;;;;;;42718:46;42714:464;;;42781:46;42801:6;42809:9;42820:6;42781:19;:46::i;42714:464::-;-1:-1:-1;;;;;42850:19:0;;;;;;:11;:19;;;;;;;;42849:20;:47;;;;-1:-1:-1;;;;;;42874:22:0;;;;;;:11;:22;;;;;;;;42873:23;42849:47;42845:333;;;42913:44;42931:6;42939:9;42950:6;42913:17;:44::i;42845:333::-;-1:-1:-1;;;;;42979:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;43002:22:0;;;;;;:11;:22;;;;;;;;42979:45;42975:203;;;43041:48;43063:6;43071:9;43082:6;43041:21;:48::i;42975:203::-;43122:44;43140:6;43148:9;43159:6;43122:17;:44::i;:::-;43202:7;43198:41;;43224:15;:13;:15::i;:::-;42413:834;;;;:::o;36253:561::-;36350:7;;36386;;36303;;;;;36410:289;36434:9;:16;36430:20;;36410:289;;;36500:7;36476;:21;36484:9;36494:1;36484:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36484:12:0;36476:21;;;;;;;;;;;;;:31;;:66;;;36535:7;36511;:21;36519:9;36529:1;36519:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36519:12:0;36511:21;;;;;;;;;;;;;:31;36476:66;36472:97;;;36552:7;;36561;;36544:25;;;;;;;;;36472:97;36594:34;36606:7;:21;36614:9;36624:1;36614:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36614:12:0;36606:21;;;;;;;;;;;;;36594:7;;:11;:34::i;:::-;36584:44;;36653:34;36665:7;:21;36673:9;36683:1;36673:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36673:12:0;36665:21;;;;;;;;;;;;;36653:7;;:11;:34::i;:::-;36643:44;-1:-1:-1;36452:3:0;;36410:289;;;-1:-1:-1;36735:7:0;;36723;;:20;;:11;:20::i;:::-;36713:7;:30;36709:61;;;36753:7;;36762;;36745:25;;;;;;;;36709:61;36789:7;;-1:-1:-1;36798:7:0;-1:-1:-1;36253:561:0;;;:::o;35307:330::-;35367:7;35376;35385;35405:12;35420:24;35436:7;35420:15;:24::i;:::-;35405:39;;35455:18;35476:30;35498:7;35476:21;:30::i;:::-;35455:51;-1:-1:-1;35517:23:0;35543:33;35455:51;35543:17;:7;35555:4;35543:11;:17::i;:::-;:21;;:33::i;:::-;35517:59;35612:4;;-1:-1:-1;35618:10:0;;-1:-1:-1;35307:330:0;;-1:-1:-1;;;35307:330:0:o;35645:429::-;35760:7;;;;35816:24;:7;35828:11;35816;:24::i;:::-;35798:42;-1:-1:-1;35851:12:0;35866:21;:4;35875:11;35866:8;:21::i;:::-;35851:36;-1:-1:-1;35898:18:0;35919:27;:10;35934:11;35919:14;:27::i;:::-;35898:48;-1:-1:-1;35957:23:0;35983:33;35898:48;35983:17;:7;35995:4;35983:11;:17::i;:33::-;36035:7;;;;-1:-1:-1;36061:4:0;;-1:-1:-1;35645:429:0;;-1:-1:-1;;;;;;;35645:429:0:o;41222:589::-;41372:16;;;41386:1;41372:16;;;41348:21;41372:16;;;;;41348:21;41372:16;;;;;;;;;;-1:-1:-1;41372:16:0;41348:40;;41417:4;41399;41404:1;41399:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;41399:23:0;;;-1:-1:-1;;;;;41399:23:0;;;;;41443:15;-1:-1:-1;;;;;41443:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41443:22:0;41433:7;;:4;;41438:1;;41433:7;;;;;;;;;;;:32;-1:-1:-1;;;;;41433:32:0;;;-1:-1:-1;;;;;41433:32:0;;;;;41478:62;41495:4;41510:15;41528:11;41478:8;:62::i;:::-;41579:15;-1:-1:-1;;;;;41579:66:0;;41660:11;41686:1;41730:4;41757;41777:15;41579:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41579:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41819:513;41967:62;41984:4;41999:15;42017:11;41967:8;:62::i;:::-;42072:15;-1:-1:-1;;;;;42072:31:0;;42111:9;42144:4;42164:11;42190:1;42233;42276:7;:5;:7::i;:::-;42298:15;42072:252;;;;;;;;;;;;;-1:-1:-1;;;;;42072:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42072:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37533:250;37579:7;;:12;:34;;;;-1:-1:-1;37595:13:0;;:18;37579:34;37576:46;;;37615:7;;37576:46;37660:7;;;37642:15;:25;37702:13;;;37678:21;:37;-1:-1:-1;37736:11:0;;;;37758:17;37533:250;:::o;44359:566::-;44462:15;44479:23;44504:12;44518:23;44543:12;44557:18;44579:19;44590:7;44579:10;:19::i;:::-;-1:-1:-1;;;;;44627:15:0;;;;;;:7;:15;;;;;;44461:137;;-1:-1:-1;44461:137:0;;-1:-1:-1;44461:137:0;;-1:-1:-1;44461:137:0;-1:-1:-1;44461:137:0;-1:-1:-1;44461:137:0;-1:-1:-1;44627:28:0;;44647:7;44627:19;:28::i;:::-;-1:-1:-1;;;;;44609:15:0;;;;;;:7;:15;;;;;;;;:46;;;;44684:7;:15;;;;:28;;44704:7;44684:19;:28::i;:::-;-1:-1:-1;;;;;44666:15:0;;;;;;;:7;:15;;;;;;:46;;;;44744:18;;;;;;;:39;;44767:15;44744:22;:39::i;:::-;-1:-1:-1;;;;;44723:18:0;;;;;;:7;:18;;;;;:60;44797:26;44812:10;44797:14;:26::i;:::-;44834:23;44846:4;44852;44834:11;:23::i;:::-;44890:9;-1:-1:-1;;;;;44873:44:0;44882:6;-1:-1:-1;;;;;44873:44:0;;44901:15;44873:44;;;;;;;;;;;;;;;;;;44359:566;;;;;;;;;:::o;43765:586::-;43866:15;43883:23;43908:12;43922:23;43947:12;43961:18;43983:19;43994:7;43983:10;:19::i;:::-;-1:-1:-1;;;;;44031:15:0;;;;;;:7;:15;;;;;;43865:137;;-1:-1:-1;43865:137:0;;-1:-1:-1;43865:137:0;;-1:-1:-1;43865:137:0;-1:-1:-1;43865:137:0;-1:-1:-1;43865:137:0;-1:-1:-1;44031:28:0;;43865:137;44031:19;:28::i;:::-;-1:-1:-1;;;;;44013:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;44091:18;;;;;:7;:18;;;;;:39;;44114:15;44091:22;:39::i;:::-;-1:-1:-1;;;;;44070:18:0;;;;;;:7;:18;;;;;;;;:60;;;;44162:7;:18;;;;:39;;44185:15;44162:22;:39::i;43255:502::-;43354:15;43371:23;43396:12;43410:23;43435:12;43449:18;43471:19;43482:7;43471:10;:19::i;:::-;-1:-1:-1;;;;;43519:15:0;;;;;;:7;:15;;;;;;43353:137;;-1:-1:-1;43353:137:0;;-1:-1:-1;43353:137:0;;-1:-1:-1;43353:137:0;-1:-1:-1;43353:137:0;-1:-1:-1;43353:137:0;-1:-1:-1;43519:28:0;;43353:137;43519:19;:28::i;33132:642::-;33235:15;33252:23;33277:12;33291:23;33316:12;33330:18;33352:19;33363:7;33352:10;:19::i;:::-;-1:-1:-1;;;;;33400:15:0;;;;;;:7;:15;;;;;;33234:137;;-1:-1:-1;33234:137:0;;-1:-1:-1;33234:137:0;;-1:-1:-1;33234:137:0;-1:-1:-1;33234:137:0;-1:-1:-1;33234:137:0;-1:-1:-1;33400:28:0;;33420:7;33400:19;:28::i;:::-;-1:-1:-1;;;;;33382:15:0;;;;;;:7;:15;;;;;;;;:46;;;;33457:7;:15;;;;:28;;33477:7;33457:19;:28::i;37795:125::-;37849:15;;37839:7;:25;37891:21;;37875:13;:37;37795:125::o;37193:154::-;37257:7;37284:55;37323:5;37284:20;37296:7;;37284;:11;;:20;;;;:::i;37355:166::-;37425:7;37452:61;37497:5;37452:26;37464:13;;37452:7;:11;;:26;;;;:::i;36826:355::-;36889:19;36912:10;:8;:10::i;:::-;36889:33;-1:-1:-1;36933:18:0;36954:27;:10;36889:33;36954:14;:27::i;:::-;37033:4;37017:22;;;;:7;:22;;;;;;36933:48;;-1:-1:-1;37017:38:0;;36933:48;37017:26;:38::i;:::-;37008:4;36992:22;;;;:7;:22;;;;;;;;:63;;;;37069:11;:26;;;;;;37066:107;;;37151:4;37135:22;;;;:7;:22;;;;;;:38;;37162:10;37135:26;:38::i;:::-;37126:4;37110:22;;;;:7;:22;;;;;:63;37066:107;36826:355;;;:::o;34725:147::-;34803:7;;:17;;34815:4;34803:11;:17::i;:::-;34793:7;:27;34844:10;;:20;;34859:4;34844:14;:20::i;:::-;34831:10;:33;-1:-1:-1;;34725:147:0:o
Swarm Source
ipfs://7c79217211113e4971c66b7f9d164ee1050c1a960a4d497bb3df927a53d3f28d
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.