More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 130 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 18369555 | 472 days ago | IN | 0 ETH | 0.00060552 | ||||
Approve | 18202015 | 495 days ago | IN | 0 ETH | 0.00033023 | ||||
Approve | 18202006 | 495 days ago | IN | 0 ETH | 0.00033942 | ||||
Approve | 18202000 | 495 days ago | IN | 0 ETH | 0.0003473 | ||||
Approve | 18201991 | 495 days ago | IN | 0 ETH | 0.000312 | ||||
Approve | 18201986 | 495 days ago | IN | 0 ETH | 0.00031433 | ||||
Approve | 18201975 | 495 days ago | IN | 0 ETH | 0.00033189 | ||||
Approve | 18201971 | 495 days ago | IN | 0 ETH | 0.00033149 | ||||
Approve | 18171345 | 499 days ago | IN | 0 ETH | 0.00108195 | ||||
Approve | 18169815 | 500 days ago | IN | 0 ETH | 0.00054239 | ||||
Approve | 18168389 | 500 days ago | IN | 0 ETH | 0.00028348 | ||||
Approve | 18168387 | 500 days ago | IN | 0 ETH | 0.00053162 | ||||
Approve | 18167734 | 500 days ago | IN | 0 ETH | 0.00036355 | ||||
Approve | 18165823 | 500 days ago | IN | 0 ETH | 0.00097967 | ||||
Approve | 18165788 | 500 days ago | IN | 0 ETH | 0.00078825 | ||||
Approve | 18165771 | 500 days ago | IN | 0 ETH | 0.00086305 | ||||
Approve | 18165769 | 500 days ago | IN | 0 ETH | 0.00087007 | ||||
Approve | 18165766 | 500 days ago | IN | 0 ETH | 0.00091284 | ||||
Approve | 18165630 | 500 days ago | IN | 0 ETH | 0.00083086 | ||||
Approve | 18165591 | 500 days ago | IN | 0 ETH | 0.00098027 | ||||
Approve | 18165463 | 500 days ago | IN | 0 ETH | 0.00068944 | ||||
Transfer | 18165461 | 500 days ago | IN | 0 ETH | 0.00206648 | ||||
Approve | 18165450 | 500 days ago | IN | 0 ETH | 0.00064713 | ||||
Approve | 18165446 | 500 days ago | IN | 0 ETH | 0.00119069 | ||||
Approve | 18165442 | 500 days ago | IN | 0 ETH | 0.00128038 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
18165042 | 500 days ago | 0.00525558 ETH | ||||
18165042 | 500 days ago | 0.05255589 ETH | ||||
18165042 | 500 days ago | 0.05781148 ETH | ||||
18165040 | 500 days ago | 0.0059569 ETH | ||||
18165040 | 500 days ago | 0.059569 ETH | ||||
18165040 | 500 days ago | 0.0655259 ETH | ||||
18165039 | 500 days ago | 0.00622164 ETH | ||||
18165039 | 500 days ago | 0.06221645 ETH | ||||
18165039 | 500 days ago | 0.0684381 ETH | ||||
18165038 | 500 days ago | 0.00679944 ETH | ||||
18165038 | 500 days ago | 0.06799446 ETH | ||||
18165038 | 500 days ago | 0.07479391 ETH | ||||
18165033 | 500 days ago | 0.00739612 ETH | ||||
18165033 | 500 days ago | 0.07396127 ETH | ||||
18165033 | 500 days ago | 0.0813574 ETH | ||||
18165032 | 500 days ago | 0.00739612 ETH | ||||
18165032 | 500 days ago | 0.07396127 ETH | ||||
18165032 | 500 days ago | 0.0813574 ETH | ||||
18165032 | 500 days ago | 0.00940716 ETH | ||||
18165032 | 500 days ago | 0.08070179 ETH | ||||
18165032 | 500 days ago | 0.09010896 ETH | ||||
18165031 | 500 days ago | 0.01234337 ETH | ||||
18165031 | 500 days ago | 0.08803197 ETH | ||||
18165031 | 500 days ago | 0.10037534 ETH | ||||
18165028 | 500 days ago | 0.00950765 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Kermit
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-18 */ /** //telegram: https://t.me/kermitfrogportal //website:Https://kermit.cool //twitter: https://twitter.com/kermittokenerc * SPDX-License-Identifier: MIT */ pragma solidity 0.8.21; library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { // 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @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) { return a + b; } /** * @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 a - b; } /** * @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) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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 a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting 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) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IERC20 { /** * @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 Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Indicates a failed `decreaseAllowance` request. */ error ERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `requestedDecrease`. * * NOTE: Although this function is designed to avoid double spending with {approval}, * it can still be frontrunned, preventing any attempt of allowance reduction. */ function decreaseAllowance(address spender, uint256 requestedDecrease) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); if (currentAllowance < requestedDecrease) { revert ERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } unchecked { _approve(owner, spender, currentAllowance - requestedDecrease); } return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` (or `to`) is * the zero address. All customizations to transfers, mints, and burns should be done by overriding this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, by transferring it to address(0). * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 value) internal virtual { _approve(owner, spender, value, true); } /** * @dev Alternative version of {_approve} with an optional flag that can enable or disable the Approval event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to true * using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual 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 { _transferOwnership(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" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IDexFactory { function createPair( address tokenA, address tokenB ) external returns (address pair); } interface IDexRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract Kermit is ERC20, Ownable { using SafeMath for uint256; IDexRouter public immutable dexRouter; address public immutable dexPair; // Swapback bool private duringContractSell; bool public contractSellEnabled = false; uint256 public minBalanceForContractSell; uint256 public maxAmountTokensForContractSell; //Anti-whale bool public tradingLimitsOn = true; bool public limitTxsPerBlock = true; uint256 public maxHold; uint256 public maxTx; mapping(address => uint256) private _addressLastTransfer; // to hold last Transfers temporarily during launch // Blacklist mapping(address => bool) public blacklisted; bool public canSetBlacklist = true; // Fee receivers address public treasuryWallet; address public projectWallet; bool public tokenLaunched = false; uint256 public buyFeesTotal; uint256 public treasuryFeeBuy; uint256 public projectFeeBuy; uint256 public sellFeesTotal; uint256 public treasuryFeeSell; uint256 public projectFeeSell; uint256 public tokensToSwapTreasury; uint256 public tokensToSwapProject; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private exemptFromFees; mapping(address => bool) public exemptFromMaxLimits; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public isAMMPair; event FeeWhitelist(address indexed account, bool isExcluded); event SetAMMPair(address indexed pair, bool indexed value); event treasuryWalletUpdated( address indexed newWallet, address indexed oldWallet ); event projectWalletUpdated( address indexed newWallet, address indexed oldWallet ); constructor() ERC20("Kermit", "KERM") { IDexRouter _dexRouter = IDexRouter( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); txLimitsWhitelist(address(_dexRouter), true); dexRouter = _dexRouter; dexPair = IDexFactory(_dexRouter.factory()) .createPair(address(this), _dexRouter.WETH()); txLimitsWhitelist(address(dexPair), true); _setAutomatedMarketMakerPair(address(dexPair), true); uint256 _treasuryFeeBuy = 2; uint256 _projectFeeBuy = 15; uint256 _treasuryFeeSell = 2; uint256 _projectFeeSell = 20; uint256 tokenSupply = 100000000000 * 1e18; maxTx = (tokenSupply * 20) / 1000; // 2% of total supply maxHold = (tokenSupply * 20) / 1000; // 2% of total supply minBalanceForContractSell = (tokenSupply * 5) / 10000; // 0.05% swapback trigger maxAmountTokensForContractSell = (tokenSupply * 5) / 1000; // 0.5% max swapback treasuryFeeBuy = _treasuryFeeBuy; projectFeeBuy = _projectFeeBuy; buyFeesTotal = treasuryFeeBuy + projectFeeBuy; treasuryFeeSell = _treasuryFeeSell; projectFeeSell = _projectFeeSell; sellFeesTotal = treasuryFeeSell + projectFeeSell; treasuryWallet = address(msg.sender); projectWallet = address(msg.sender); // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromFees(treasuryWallet, true); txLimitsWhitelist(owner(), true); txLimitsWhitelist(address(this), true); txLimitsWhitelist(address(0xdead), true); txLimitsWhitelist(treasuryWallet, true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, tokenSupply); } receive() external payable {} /// @notice Launches the token and enables trading. Irriversable. function startLaunch() external onlyOwner { tokenLaunched = true; contractSellEnabled = true; } /// @notice Removes the max wallet and max transaction limits function finishLaunchPeriod() external onlyOwner returns (bool) { tradingLimitsOn = false; return true; } /// @notice Disables the Same wallet block transfer delay function disableBlockTxLimit() external onlyOwner returns (bool) { limitTxsPerBlock = false; return true; } /// @notice Changes the minimum balance of tokens the contract must have before duringContractSell tokens for ETH. Base 100000, so 0.5% = 500. function updateContractSellMin( uint256 newAmount ) external onlyOwner returns (bool) { require( newAmount >= totalSupply() / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (500 * totalSupply()) / 100000, "Swap amount cannot be higher than 0.5% total supply." ); require( newAmount <= maxAmountTokensForContractSell, "Swap amount cannot be higher than maxAmountTokensForContractSell" ); minBalanceForContractSell = newAmount; return true; } /// @notice Changes the maximum amount of tokens the contract can swap for ETH. Base 10000, so 0.5% = 50. function updateMaxContractSellAmount( uint256 newAmount ) external onlyOwner returns (bool) { require( newAmount >= minBalanceForContractSell, "Swap amount cannot be lower than minBalanceForContractSell" ); maxAmountTokensForContractSell = newAmount; return true; } /// @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction /// @param newNum Base 1000, so 1% = 10 function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require(newNum >= 2, "Cannot set maxTx lower than 0.2%"); maxTx = (newNum * totalSupply()) / 1000; } /// @notice Changes the maximum amount of tokens a wallet can hold /// @param newNum Base 1000, so 1% = 10 function updateMaxHoldAmount(uint256 newNum) external onlyOwner { require(newNum >= 5, "Cannot set maxHold lower than 0.5%"); maxHold = (newNum * totalSupply()) / 1000; } /// @notice Sets if a wallet is excluded from the max wallet and tx limits /// @param updAds The wallet to update /// @param isEx If the wallet is excluded or not function txLimitsWhitelist( address updAds, bool isEx ) public onlyOwner { exemptFromMaxLimits[updAds] = isEx; } /// @notice Sets if the contract can sell tokens /// @param enabled set to false to disable selling function setContractSellEnabled(bool enabled) external onlyOwner { contractSellEnabled = enabled; } /// @notice Sets the fees for buys /// @param _treasuryFee The fee for the treasury wallet /// @param _projectFee The fee for the dev wallet function setBuyFees( uint256 _treasuryFee, uint256 _projectFee ) external onlyOwner { treasuryFeeBuy = _treasuryFee; projectFeeBuy = _projectFee; buyFeesTotal = treasuryFeeBuy + projectFeeBuy; require(buyFeesTotal <= 12, "Must keep fees at 12% or less"); } /// @notice Sets the fees for sells /// @param _treasuryFee The fee for the treasury wallet /// @param _projectFee The fee for the dev wallet function setSellFees( uint256 _treasuryFee, uint256 _projectFee ) external onlyOwner { treasuryFeeSell = _treasuryFee; projectFeeSell = _projectFee; sellFeesTotal = treasuryFeeSell + projectFeeSell; require(sellFeesTotal <= 12, "Must keep fees at 12% or less"); } /// @notice Sets if a wallet is excluded from fees /// @param account The wallet to update /// @param excluded If the wallet is excluded or not function excludeFromFees(address account, bool excluded) public onlyOwner { exemptFromFees[account] = excluded; emit FeeWhitelist(account, excluded); } /// @notice Sets an address as a new liquidity pair. You probably dont want to do this. /// @param pair The new pair function setAutomatedMarketMakerPair( address pair, bool value ) public onlyOwner { require( pair != dexPair, "The pair cannot be removed from isAMMPair" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { isAMMPair[pair] = value; emit SetAMMPair(pair, value); } /// @notice Sets a wallet as the new treasury wallet /// @param newTreasuryWallet The new treasury wallet function updateTreasuryWallet( address newTreasuryWallet ) external onlyOwner { emit treasuryWalletUpdated(newTreasuryWallet, treasuryWallet); treasuryWallet = newTreasuryWallet; } /// @notice Sets a wallet as the new dev wallet /// @param newWallet The new dev wallet function updateProjectWallet(address newWallet) external onlyOwner { emit projectWalletUpdated(newWallet, projectWallet); projectWallet = newWallet; } /// @notice Sets the blacklist status of multiple addresses /// @param addresses The addresses to update /// @param isBlacklisted If the addresses are blacklisted or not function updateBlacklistMultiple( address[] calldata addresses, bool isBlacklisted ) external onlyOwner { require(canSetBlacklist, "Blacklist is locked"); for (uint256 i = 0; i < addresses.length; i++) { blacklisted[addresses[i]] = isBlacklisted; } } /// @notice Removes the owner ability to change the blacklist function lockBlacklist() external onlyOwner { canSetBlacklist = false; } function isExcludedFromFees(address account) public view returns (bool) { return exemptFromFees[account]; } function _update( address from, address to, uint256 amount ) internal override { if (amount == 0) { super._update(from, to, 0); return; } if (tradingLimitsOn) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !duringContractSell ) { if (!tokenLaunched) { require( exemptFromFees[from] || exemptFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (limitTxsPerBlock) { if ( to != owner() && to != address(dexRouter) && to != address(dexPair) ) { require( _addressLastTransfer[tx.origin] < block.number, "_update:: Transfer Delay enabled. Only one purchase per block allowed." ); _addressLastTransfer[tx.origin] = block.number; } } //when buy if (isAMMPair[from] && !exemptFromMaxLimits[to]) { require( amount <= maxTx, "Buy transfer amount exceeds the maxTx." ); require( amount + balanceOf(to) <= maxHold, "Max wallet exceeded" ); } //when sell else if ( isAMMPair[to] && !exemptFromMaxLimits[from] ) { require( amount <= maxTx, "Sell transfer amount exceeds the maxTx." ); } else if (!exemptFromMaxLimits[to]) { require( amount + balanceOf(to) <= maxHold, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= minBalanceForContractSell; if ( canSwap && contractSellEnabled && !duringContractSell && !isAMMPair[from] && !exemptFromFees[from] && !exemptFromFees[to] ) { duringContractSell = true; swapBack(); duringContractSell = false; } bool takeFee = !duringContractSell; // if any account belongs to _isExcludedFromFee account then remove the fee if (exemptFromFees[from] || exemptFromFees[to]) { takeFee = false; } if (!exemptFromFees[from] || !exemptFromFees[to]) { require(!blacklisted[from], "Address is blacklisted"); } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (isAMMPair[to] && sellFeesTotal > 0) { fees = amount.mul(sellFeesTotal).div(100); tokensToSwapProject += (fees * projectFeeSell) / sellFeesTotal; tokensToSwapTreasury += (fees * treasuryFeeSell) / sellFeesTotal; } // on buy else if (isAMMPair[from] && buyFeesTotal > 0) { fees = amount.mul(buyFeesTotal).div(100); tokensToSwapProject += (fees * projectFeeBuy) / buyFeesTotal; tokensToSwapTreasury += (fees * treasuryFeeBuy) / buyFeesTotal; } if (fees > 0) { super._update(from, address(this), fees); } amount -= fees; } super._update(from, to, amount); } 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] = dexRouter.WETH(); _approve(address(this), address(dexRouter), tokenAmount); // make the swap dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensToSwapTreasury + tokensToSwapProject; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > maxAmountTokensForContractSell) { contractBalance = maxAmountTokensForContractSell; } uint256 initialETHBalance = address(this).balance; swapTokensForEth(contractBalance); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForProject = ethBalance.mul(tokensToSwapProject).div(totalTokensToSwap); tokensToSwapTreasury = 0; tokensToSwapProject = 0; (success, ) = address(projectWallet).call{value: ethForProject}(""); (success, ) = address(treasuryWallet).call{ value: address(this).balance }(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"currentAllowance","type":"uint256"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"ERC20FailedDecreaseAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"FeeWhitelist","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":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAMMPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"projectWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"treasuryWalletUpdated","type":"event"},{"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":"value","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":[{"internalType":"address","name":"","type":"address"}],"name":"blacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFeesTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canSetBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractSellEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"requestedDecrease","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dexPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dexRouter","outputs":[{"internalType":"contract IDexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableBlockTxLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"exemptFromMaxLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finishLaunchPeriod","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"isAMMPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitTxsPerBlock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxAmountTokensForContractSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minBalanceForContractSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"projectFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFeesTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_projectFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setContractSellEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_projectFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startLaunch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenLaunched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensToSwapProject","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensToSwapTreasury","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingLimitsOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"treasuryFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"txLimitsWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"updateBlacklistMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateContractSellMin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateMaxContractSellAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxHoldAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateProjectWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTreasuryWallet","type":"address"}],"name":"updateTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526005805460ff60a81b191690556008805461ffff1916610101179055600d805460ff19166001179055600e805460ff60a01b1916905534801562000046575f80fd5b506040518060400160405280600681526020016512d95c9b5a5d60d21b815250604051806040016040528060048152602001634b45524d60e01b8152508160039081620000949190620013f0565b506004620000a38282620013f0565b505050620000c0620000ba6200041a60201b60201c565b6200041e565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e28160016200046f565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200012b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001519190620014b8565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200019d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001c39190620014b8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156200020e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002349190620014b8565b6001600160a01b031660a08190526200024f9060016200046f565b60a0516200025f906001620004e7565b6002600f8160146c01431e0fae6d7217caa00000006103e8620002838284620014fb565b6200028f919062001515565b600a556103e8620002a2826014620014fb565b620002ae919062001515565b600955612710620002c1826005620014fb565b620002cd919062001515565b6006556103e8620002e0826005620014fb565b620002ec919062001515565b6007556010859055601184905562000305848662001535565b600f55601383905560148290556200031e828462001535565b601255600d8054610100600160a81b03191633610100810291909117909155600e80546001600160a01b03191690911790556200036f620003676005546001600160a01b031690565b60016200053a565b6200037c3060016200053a565b6200038b61dead60016200053a565b600d54620003a99061010090046001600160a01b031660016200053a565b620003c8620003c06005546001600160a01b031690565b60016200046f565b620003d53060016200046f565b620003e461dead60016200046f565b600d54620004029061010090046001600160a01b031660016200046f565b6200040e3382620005e2565b505050505050620015e6565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6005546001600160a01b03163314620004bd5760405162461bcd60e51b815260206004820181905260248201525f8051602062003f0d83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091165f908152601860205260409020805460ff1916911515919091179055565b6001600160a01b0382165f81815260196020526040808220805460ff191685151590811790915590519092917fee6ce3a11a74f9a94b8a0152fc219acc6645b25bc298e2cae8ec6a520bd83da991a35050565b6005546001600160a01b03163314620005845760405162461bcd60e51b815260206004820181905260248201525f8051602062003f0d8339815191526044820152606401620004b4565b6001600160a01b0382165f81815260176020908152604091829020805460ff191685151590811790915591519182527f781d26db56cdaee11e2fce438cd1461fa45f059fcd5f02aa8e6b1e5716d8d465910160405180910390a25050565b6001600160a01b0382166200060d5760405163ec442f0560e01b81525f6004820152602401620004b4565b6200061a5f83836200061e565b5050565b805f0362000638576200063383835f62000e60565b505050565b60085460ff161562000abe576005546001600160a01b038481169116148015906200067157506005546001600160a01b03838116911614155b80156200068657506001600160a01b03821615155b80156200069e57506001600160a01b03821661dead14155b8015620006b55750600554600160a01b900460ff16155b1562000abe57600e54600160a01b900460ff1662000759576001600160a01b0383165f9081526017602052604090205460ff16806200070b57506001600160a01b0382165f9081526017602052604090205460ff165b620007595760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401620004b4565b600854610100900460ff16156200086b576005546001600160a01b038381169116148015906200079d57506080516001600160a01b0316826001600160a01b031614155b8015620007be575060a0516001600160a01b0316826001600160a01b031614155b156200086b57325f908152600b60205260409020544311620008595760405162461bcd60e51b815260206004820152604760248201527f5f7570646174653a3a205472616e736665722044656c617920656e61626c656460448201527f2e20204f6e6c79206f6e652070757263686173652070657220626c6f636b2061606482015266363637bbb2b21760c91b608482015260a401620004b4565b325f908152600b602052604090204390555b6001600160a01b0383165f9081526019602052604090205460ff168015620008ab57506001600160a01b0382165f9081526018602052604090205460ff16155b156200098757600a54811115620009145760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401620004b4565b6009546001600160a01b0383165f908152602081905260409020546200093b908362001535565b1115620009815760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401620004b4565b62000abe565b6001600160a01b0382165f9081526019602052604090205460ff168015620009c757506001600160a01b0383165f9081526018602052604090205460ff16155b1562000a3157600a54811115620009815760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401620004b4565b6001600160a01b0382165f9081526018602052604090205460ff1662000abe576009546001600160a01b0383165f9081526020819052604090205462000a78908362001535565b111562000abe5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401620004b4565b305f908152602081905260409020546006548110801590819062000aeb5750600554600160a81b900460ff165b801562000b025750600554600160a01b900460ff16155b801562000b2757506001600160a01b0385165f9081526019602052604090205460ff16155b801562000b4c57506001600160a01b0385165f9081526017602052604090205460ff16155b801562000b7157506001600160a01b0384165f9081526017602052604090205460ff16155b1562000ba2576005805460ff60a01b1916600160a01b17905562000b9462000f8f565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526017602052604090205460ff600160a01b90920482161591168062000bef57506001600160a01b0385165f9081526017602052604090205460ff165b1562000bf857505f5b6001600160a01b0386165f9081526017602052604090205460ff16158062000c3857506001600160a01b0385165f9081526017602052604090205460ff16155b1562000ca8576001600160a01b0386165f908152600c602052604090205460ff161562000ca85760405162461bcd60e51b815260206004820152601660248201527f4164647265737320697320626c61636b6c6973746564000000000000000000006044820152606401620004b4565b5f811562000e4a576001600160a01b0386165f9081526019602052604090205460ff16801562000cd957505f601254115b1562000d725760125462000cfe9060649062000cf7908890620010d6565b90620010ec565b90506012546014548262000d139190620014fb565b62000d1f919062001515565b60165f82825462000d31919062001535565b909155505060125460135462000d489083620014fb565b62000d54919062001515565b60155f82825462000d66919062001535565b9091555062000e279050565b6001600160a01b0387165f9081526019602052604090205460ff16801562000d9b57505f600f54115b1562000e2757600f5462000db99060649062000cf7908890620010d6565b9050600f546011548262000dce9190620014fb565b62000dda919062001515565b60165f82825462000dec919062001535565b9091555050600f5460105462000e039083620014fb565b62000e0f919062001515565b60155f82825462000e21919062001535565b90915550505b801562000e3b5762000e3b87308362000e60565b62000e4781866200154b565b94505b62000e5787878762000e60565b50505050505050565b6001600160a01b03831662000e8e578060025f82825462000e82919062001535565b9091555062000f009050565b6001600160a01b0383165f908152602081905260409020548181101562000ee25760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620004b4565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821662000f1e5760028054829003905562000f3c565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000f8291815260200190565b60405180910390a3505050565b305f9081526020819052604081205490505f60165460155462000fb3919062001535565b90505f82158062000fc2575081155b1562000fcd57505050565b60075483111562000fde5760075492505b4762000fea84620010f9565b5f62000ff747836200126a565b90505f620010168562000cf760165485620010d660201b90919060201c565b5f60158190556016819055600e546040519293506001600160a01b031691839181818185875af1925050503d805f81146200106d576040519150601f19603f3d011682016040523d82523d5f602084013e62001072565b606091505b5050600d5460405191955061010090046001600160a01b03169047905f81818185875af1925050503d805f8114620010c6576040519150601f19603f3d011682016040523d82523d5f602084013e620010cb565b606091505b505050505050505050565b5f620010e38284620014fb565b90505b92915050565b5f620010e3828462001515565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106200112f576200112f62001561565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200118e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620011b49190620014b8565b81600181518110620011ca57620011ca62001561565b60200260200101906001600160a01b031690816001600160a01b031681525050620011ff30608051846200127760201b60201c565b6080516001600160a01b031663791ac947835f8430426040518663ffffffff1660e01b81526004016200123795949392919062001575565b5f604051808303815f87803b1580156200124f575f80fd5b505af115801562001262573d5f803e3d5ffd5b505050505050565b5f620010e382846200154b565b6200063383838360016001600160a01b038416620012ab5760405163e602df0560e01b81525f6004820152602401620004b4565b6001600160a01b038316620012d657604051634a1406b160e11b81525f6004820152602401620004b4565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156200135357826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516200134a91815260200190565b60405180910390a35b50505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200138257607f821691505b602082108103620013a157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000633575f81815260208120601f850160051c81016020861015620013cf5750805b601f850160051c820191505b818110156200126257828155600101620013db565b81516001600160401b038111156200140c576200140c62001359565b62001424816200141d84546200136d565b84620013a7565b602080601f8311600181146200145a575f8415620014425750858301515b5f19600386901b1c1916600185901b17855562001262565b5f85815260208120601f198616915b828110156200148a5788860151825594840194600190910190840162001469565b5085821015620014a857878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f60208284031215620014c9575f80fd5b81516001600160a01b0381168114620014e0575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620010e657620010e6620014e7565b5f826200153057634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620010e657620010e6620014e7565b81810381811115620010e657620010e6620014e7565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015620015c55784516001600160a01b0316835293830193918301916001016200159e565b50506001600160a01b03969096166060850152505050608001529392505050565b60805160a0516128db620016325f395f81816109cb015281816110900152611a2401525f81816103fd015281816119e60152818161237e01528181612435015261247101526128db5ff3fe60806040526004361061035e575f3560e01c8063830804c9116101bd578063b6332002116100f2578063dbac26e911610092578063de78e78a1161006d578063de78e78a1461099a578063f242ab41146109ba578063f2fde38b146109ed578063f799b2c814610a0c575f80fd5b8063dbac26e91461092e578063dcbc1b561461095c578063dd62ed3e1461097b575f80fd5b8063c0246668116100cd578063c0246668146108c7578063c463b995146108e6578063d6bb9612146108fa578063d6dc84cc14610919575f80fd5b8063b63320021461087a578063bbd2f21a14610893578063beb08ab9146108a8575f80fd5b80639a7a23d61161015d578063a457c2d711610138578063a457c2d7146107ef578063a9059cbb1461080e578063b0249cc61461082d578063b2d8f2081461085b575f80fd5b80639a7a23d61461079c5780639b77884d146107bb5780639fd8234e146107d0575f80fd5b80638fbef097116101985780638fbef0971461073f5780639125ff841461075e57806395d89b41146107735780639a6c614e14610787575f80fd5b8063830804c9146106ee5780638d1942a7146107035780638da5cb5b14610722575f80fd5b806343278c611161029357806370a0823111610233578063727fd3581161020e578063727fd358146106905780637437681e146106a55780637e7e5acc146106ba578063809d458d146106cf575f80fd5b806370a0823114610629578063715018a61461065d5780637192762814610671575f80fd5b80634fbee1931161026e5780634fbee193146105a657806359a945e9146105dd57806365954704146105f15780636c53c8f714610610575f80fd5b806343278c611461054d5780634626402b1461056257806348b98ef514610586575f80fd5b806318160ddd116102fe57806323b872dd116102d957806323b872dd146104d5578063313ce567146104f4578063395093511461050f5780633b7b6a101461052e575f80fd5b806318160ddd146104845780631a2953fe14610498578063203e727e146104b6575f80fd5b806306fdde031161033957806306fdde03146103cb5780630758d924146103ec578063095ea7b31461043757806311aa0ee514610456575f80fd5b806303a88e801461036957806303a928eb1461039257806304019c14146103a8575f80fd5b3661036557005b5f80fd5b348015610374575f80fd5b5061037d610a21565b60405190151581526020015b60405180910390f35b34801561039d575f80fd5b506103a6610a67565b005b3480156103b3575f80fd5b506103bd60165481565b604051908152602001610389565b3480156103d6575f80fd5b506103df610a9d565b60405161038991906124ea565b3480156103f7575f80fd5b5061041f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610389565b348015610442575f80fd5b5061037d610451366004612549565b610b2d565b348015610461575f80fd5b5061037d610470366004612573565b60186020525f908152604090205460ff1681565b34801561048f575f80fd5b506002546103bd565b3480156104a3575f80fd5b5060085461037d90610100900460ff1681565b3480156104c1575f80fd5b506103a66104d036600461258e565b610b46565b3480156104e0575f80fd5b5061037d6104ef3660046125a5565b610be7565b3480156104ff575f80fd5b5060405160128152602001610389565b34801561051a575f80fd5b5061037d610529366004612549565b610c0a565b348015610539575f80fd5b506103a661054836600461258e565b610c2b565b348015610558575f80fd5b506103bd60065481565b34801561056d575f80fd5b50600d5461041f9061010090046001600160a01b031681565b348015610591575f80fd5b5060055461037d90600160a81b900460ff1681565b3480156105b1575f80fd5b5061037d6105c0366004612573565b6001600160a01b03165f9081526017602052604090205460ff1690565b3480156105e8575f80fd5b506103a6610cd7565b3480156105fc575f80fd5b506103a661060b3660046125f2565b610d29565b34801561061b575f80fd5b50600d5461037d9060ff1681565b348015610634575f80fd5b506103bd610643366004612573565b6001600160a01b03165f9081526020819052604090205490565b348015610668575f80fd5b506103a6610d71565b34801561067c575f80fd5b506103a661068b366004612573565b610da6565b34801561069b575f80fd5b506103bd60155481565b3480156106b0575f80fd5b506103bd600a5481565b3480156106c5575f80fd5b506103bd600f5481565b3480156106da575f80fd5b506103a66106e9366004612573565b610e2c565b3480156106f9575f80fd5b506103bd60075481565b34801561070e575f80fd5b5061037d61071d36600461258e565b610ebd565b34801561072d575f80fd5b506005546001600160a01b031661041f565b34801561074a575f80fd5b506103a661075936600461260b565b610f6f565b348015610769575f80fd5b506103bd60135481565b34801561077e575f80fd5b506103df611055565b348015610792575f80fd5b506103bd60095481565b3480156107a7575f80fd5b506103a66107b6366004612688565b611064565b3480156107c6575f80fd5b506103bd60115481565b3480156107db575f80fd5b506103a66107ea3660046126bb565b61112f565b3480156107fa575f80fd5b5061037d610809366004612549565b6111c2565b348015610819575f80fd5b5061037d610828366004612549565b611218565b348015610838575f80fd5b5061037d610847366004612573565b60196020525f908152604090205460ff1681565b348015610866575f80fd5b506103a66108753660046126bb565b611225565b348015610885575f80fd5b5060085461037d9060ff1681565b34801561089e575f80fd5b506103bd60105481565b3480156108b3575f80fd5b50600e5461041f906001600160a01b031681565b3480156108d2575f80fd5b506103a66108e1366004612688565b6112b8565b3480156108f1575f80fd5b5061037d611340565b348015610905575f80fd5b5061037d61091436600461258e565b61137c565b348015610924575f80fd5b506103bd60125481565b348015610939575f80fd5b5061037d610948366004612573565b600c6020525f908152604090205460ff1681565b348015610967575f80fd5b506103a6610976366004612688565b61153e565b348015610986575f80fd5b506103bd6109953660046126db565b611592565b3480156109a5575f80fd5b50600e5461037d90600160a01b900460ff1681565b3480156109c5575f80fd5b5061041f7f000000000000000000000000000000000000000000000000000000000000000081565b3480156109f8575f80fd5b506103a6610a07366004612573565b6115bc565b348015610a17575f80fd5b506103bd60145481565b6005545f906001600160a01b03163314610a565760405162461bcd60e51b8152600401610a4d90612712565b60405180910390fd5b506008805461ff0019169055600190565b6005546001600160a01b03163314610a915760405162461bcd60e51b8152600401610a4d90612712565b600d805460ff19169055565b606060038054610aac90612747565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad890612747565b8015610b235780601f10610afa57610100808354040283529160200191610b23565b820191905f5260205f20905b815481529060010190602001808311610b0657829003601f168201915b5050505050905090565b5f33610b3a818585611657565b60019150505b92915050565b6005546001600160a01b03163314610b705760405162461bcd60e51b8152600401610a4d90612712565b6002811015610bc15760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e32256044820152606401610a4d565b6103e8610bcd60025490565b610bd79083612793565b610be191906127aa565b600a5550565b5f33610bf4858285611669565b610bff8585856116c6565b506001949350505050565b5f33610b3a818585610c1c8383611592565b610c2691906127c9565b611657565b6005546001600160a01b03163314610c555760405162461bcd60e51b8152600401610a4d90612712565b6005811015610cb15760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d6178486f6c64206c6f776572207468616e20302e604482015261352560f01b6064820152608401610a4d565b6103e8610cbd60025490565b610cc79083612793565b610cd191906127aa565b60095550565b6005546001600160a01b03163314610d015760405162461bcd60e51b8152600401610a4d90612712565b600e805460ff60a01b1916600160a01b1790556005805460ff60a81b1916600160a81b179055565b6005546001600160a01b03163314610d535760405162461bcd60e51b8152600401610a4d90612712565b60058054911515600160a81b0260ff60a81b19909216919091179055565b6005546001600160a01b03163314610d9b5760405162461bcd60e51b8152600401610a4d90612712565b610da45f611723565b565b6005546001600160a01b03163314610dd05760405162461bcd60e51b8152600401610a4d90612712565b600e546040516001600160a01b03918216918316907fd0bdd1bf92049384d44f81d258f51a39b26cfc1d256348efb3b109fd8db72711905f90a3600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e565760405162461bcd60e51b8152600401610a4d90612712565b600d546040516001600160a01b036101009092048216918316907f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f635905f90a3600d80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005545f906001600160a01b03163314610ee95760405162461bcd60e51b8152600401610a4d90612712565b600654821015610f615760405162461bcd60e51b815260206004820152603a60248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f206d696e42616c616e6365466f72436f6e747261637453656c6c0000000000006064820152608401610a4d565b50600781905560015b919050565b6005546001600160a01b03163314610f995760405162461bcd60e51b8152600401610a4d90612712565b600d5460ff16610fe15760405162461bcd60e51b8152602060048201526013602482015272109b1858dadb1a5cdd081a5cc81b1bd8dad959606a1b6044820152606401610a4d565b5f5b8281101561104f5781600c5f868685818110611001576110016127dc565b90506020020160208101906110169190612573565b6001600160a01b0316815260208101919091526040015f20805460ff191691151591909117905580611047816127f0565b915050610fe3565b50505050565b606060048054610aac90612747565b6005546001600160a01b0316331461108e5760405162461bcd60e51b8152600401610a4d90612712565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036111215760405162461bcd60e51b815260206004820152602960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526834b9a0a6a6a830b4b960b91b6064820152608401610a4d565b61112b8282611774565b5050565b6005546001600160a01b031633146111595760405162461bcd60e51b8152600401610a4d90612712565b6013829055601481905561116d81836127c9565b6012819055600c101561112b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610a4d565b5f33816111cf8286611592565b90508381101561120b57604051632983c0c360e21b81526001600160a01b03861660048201526024810182905260448101859052606401610a4d565b610bff8286868403611657565b5f33610b3a8185856116c6565b6005546001600160a01b0316331461124f5760405162461bcd60e51b8152600401610a4d90612712565b6010829055601181905561126381836127c9565b600f819055600c101561112b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610a4d565b6005546001600160a01b031633146112e25760405162461bcd60e51b8152600401610a4d90612712565b6001600160a01b0382165f81815260176020908152604091829020805460ff191685151590811790915591519182527f781d26db56cdaee11e2fce438cd1461fa45f059fcd5f02aa8e6b1e5716d8d465910160405180910390a25050565b6005545f906001600160a01b0316331461136c5760405162461bcd60e51b8152600401610a4d90612712565b506008805460ff19169055600190565b6005545f906001600160a01b031633146113a85760405162461bcd60e51b8152600401610a4d90612712565b620186a06113b560025490565b6113bf91906127aa565b82101561142c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a4d565b620186a061143960025490565b611445906101f4612793565b61144f91906127aa565b8211156114bb5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a4d565b600754821115611535576040805162461bcd60e51b81526020600482015260248101919091527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e206d6178416d6f756e74546f6b656e73466f72436f6e747261637453656c6c6064820152608401610a4d565b50600655600190565b6005546001600160a01b031633146115685760405162461bcd60e51b8152600401610a4d90612712565b6001600160a01b03919091165f908152601860205260409020805460ff1916911515919091179055565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146115e65760405162461bcd60e51b8152600401610a4d90612712565b6001600160a01b03811661164b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a4d565b61165481611723565b50565b61166483838360016117c7565b505050565b5f6116748484611592565b90505f19811461104f57818110156116b857604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610a4d565b61104f84848484035f6117c7565b6001600160a01b0383166116ef57604051634b637e8f60e11b81525f6004820152602401610a4d565b6001600160a01b0382166117185760405163ec442f0560e01b81525f6004820152602401610a4d565b611664838383611899565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260196020526040808220805460ff191685151590811790915590519092917fee6ce3a11a74f9a94b8a0152fc219acc6645b25bc298e2cae8ec6a520bd83da991a35050565b6001600160a01b0384166117f05760405163e602df0560e01b81525f6004820152602401610a4d565b6001600160a01b03831661181957604051634a1406b160e11b81525f6004820152602401610a4d565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561104f57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161188b91815260200190565b60405180910390a350505050565b805f036118ab5761166483835f6120af565b60085460ff1615611d44576005546001600160a01b038481169116148015906118e257506005546001600160a01b03838116911614155b80156118f657506001600160a01b03821615155b801561190d57506001600160a01b03821661dead14155b80156119235750600554600160a01b900460ff16155b15611d4457600e54600160a01b900460ff166119bb576001600160a01b0383165f9081526017602052604090205460ff168061197657506001600160a01b0382165f9081526017602052604090205460ff165b6119bb5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a4d565b600854610100900460ff1615611b03576005546001600160a01b03838116911614801590611a1b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611a5957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611b0357325f908152600b60205260409020544311611af15760405162461bcd60e51b815260206004820152604760248201527f5f7570646174653a3a205472616e736665722044656c617920656e61626c656460448201527f2e20204f6e6c79206f6e652070757263686173652070657220626c6f636b2061606482015266363637bbb2b21760c91b608482015260a401610a4d565b325f908152600b602052604090204390555b6001600160a01b0383165f9081526019602052604090205460ff168015611b4257506001600160a01b0382165f9081526018602052604090205460ff16155b15611c1657600a54811115611ba85760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401610a4d565b6009546001600160a01b0383165f90815260208190526040902054611bcd90836127c9565b1115611c115760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a4d565b611d44565b6001600160a01b0382165f9081526019602052604090205460ff168015611c5557506001600160a01b0383165f9081526018602052604090205460ff16155b15611cbc57600a54811115611c115760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401610a4d565b6001600160a01b0382165f9081526018602052604090205460ff16611d44576009546001600160a01b0383165f90815260208190526040902054611d0090836127c9565b1115611d445760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a4d565b305f9081526020819052604090205460065481108015908190611d705750600554600160a81b900460ff165b8015611d865750600554600160a01b900460ff16155b8015611daa57506001600160a01b0385165f9081526019602052604090205460ff16155b8015611dce57506001600160a01b0385165f9081526017602052604090205460ff16155b8015611df257506001600160a01b0384165f9081526017602052604090205460ff16155b15611e20576005805460ff60a01b1916600160a01b179055611e126121d5565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526017602052604090205460ff600160a01b909204821615911680611e6c57506001600160a01b0385165f9081526017602052604090205460ff165b15611e7457505f5b6001600160a01b0386165f9081526017602052604090205460ff161580611eb357506001600160a01b0385165f9081526017602052604090205460ff16155b15611f19576001600160a01b0386165f908152600c602052604090205460ff1615611f195760405162461bcd60e51b81526020600482015260166024820152751059191c995cdcc81a5cc8189b1858dadb1a5cdd195960521b6044820152606401610a4d565b5f811561209b576001600160a01b0386165f9081526019602052604090205460ff168015611f4857505f601254115b15611fd457611f6d6064611f676012548861230c90919063ffffffff16565b9061231e565b905060125460145482611f809190612793565b611f8a91906127aa565b60165f828254611f9a91906127c9565b9091555050601254601354611faf9083612793565b611fb991906127aa565b60155f828254611fc991906127c9565b9091555061207d9050565b6001600160a01b0387165f9081526019602052604090205460ff168015611ffc57505f600f54115b1561207d5761201b6064611f67600f548861230c90919063ffffffff16565b9050600f546011548261202e9190612793565b61203891906127aa565b60165f82825461204891906127c9565b9091555050600f5460105461205d9083612793565b61206791906127aa565b60155f82825461207791906127c9565b90915550505b801561208e5761208e8730836120af565b6120988186612808565b94505b6120a68787876120af565b50505050505050565b6001600160a01b0383166120d9578060025f8282546120ce91906127c9565b909155506121499050565b6001600160a01b0383165f908152602081905260409020548181101561212b5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610a4d565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661216557600280548290039055612183565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121c891815260200190565b60405180910390a3505050565b305f9081526020819052604081205490505f6016546015546121f791906127c9565b90505f821580612205575081155b1561220f57505050565b60075483111561221f5760075492505b4761222984612329565b5f61223447836124df565b90505f61225085611f676016548561230c90919063ffffffff16565b5f60158190556016819055600e546040519293506001600160a01b031691839181818185875af1925050503d805f81146122a5576040519150601f19603f3d011682016040523d82523d5f602084013e6122aa565b606091505b5050600d5460405191955061010090046001600160a01b03169047905f81818185875af1925050503d805f81146122fc576040519150601f19603f3d011682016040523d82523d5f602084013e612301565b606091505b505050505050505050565b5f6123178284612793565b9392505050565b5f61231782846127aa565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061235c5761235c6127dc565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123fc919061281b565b8160018151811061240f5761240f6127dc565b60200260200101906001600160a01b031690816001600160a01b03168152505061245a307f000000000000000000000000000000000000000000000000000000000000000084611657565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906124ae9085905f90869030904290600401612836565b5f604051808303815f87803b1580156124c5575f80fd5b505af11580156124d7573d5f803e3d5ffd5b505050505050565b5f6123178284612808565b5f6020808352835180828501525f5b81811015612515578581018301518582016040015282016124f9565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611654575f80fd5b5f806040838503121561255a575f80fd5b823561256581612535565b946020939093013593505050565b5f60208284031215612583575f80fd5b813561231781612535565b5f6020828403121561259e575f80fd5b5035919050565b5f805f606084860312156125b7575f80fd5b83356125c281612535565b925060208401356125d281612535565b929592945050506040919091013590565b80358015158114610f6a575f80fd5b5f60208284031215612602575f80fd5b612317826125e3565b5f805f6040848603121561261d575f80fd5b833567ffffffffffffffff80821115612634575f80fd5b818601915086601f830112612647575f80fd5b813581811115612655575f80fd5b8760208260051b8501011115612669575f80fd5b60209283019550935061267f91860190506125e3565b90509250925092565b5f8060408385031215612699575f80fd5b82356126a481612535565b91506126b2602084016125e3565b90509250929050565b5f80604083850312156126cc575f80fd5b50508035926020909101359150565b5f80604083850312156126ec575f80fd5b82356126f781612535565b9150602083013561270781612535565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061275b57607f821691505b60208210810361277957634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610b4057610b4061277f565b5f826127c457634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610b4057610b4061277f565b634e487b7160e01b5f52603260045260245ffd5b5f600182016128015761280161277f565b5060010190565b81810381811115610b4057610b4061277f565b5f6020828403121561282b575f80fd5b815161231781612535565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156128845784516001600160a01b03168352938301939183019160010161285f565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220b45aced58acb5fa206243d07d39917e7aa5203ff8085bda7e8d70a7b46def5d464736f6c634300081500334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x60806040526004361061035e575f3560e01c8063830804c9116101bd578063b6332002116100f2578063dbac26e911610092578063de78e78a1161006d578063de78e78a1461099a578063f242ab41146109ba578063f2fde38b146109ed578063f799b2c814610a0c575f80fd5b8063dbac26e91461092e578063dcbc1b561461095c578063dd62ed3e1461097b575f80fd5b8063c0246668116100cd578063c0246668146108c7578063c463b995146108e6578063d6bb9612146108fa578063d6dc84cc14610919575f80fd5b8063b63320021461087a578063bbd2f21a14610893578063beb08ab9146108a8575f80fd5b80639a7a23d61161015d578063a457c2d711610138578063a457c2d7146107ef578063a9059cbb1461080e578063b0249cc61461082d578063b2d8f2081461085b575f80fd5b80639a7a23d61461079c5780639b77884d146107bb5780639fd8234e146107d0575f80fd5b80638fbef097116101985780638fbef0971461073f5780639125ff841461075e57806395d89b41146107735780639a6c614e14610787575f80fd5b8063830804c9146106ee5780638d1942a7146107035780638da5cb5b14610722575f80fd5b806343278c611161029357806370a0823111610233578063727fd3581161020e578063727fd358146106905780637437681e146106a55780637e7e5acc146106ba578063809d458d146106cf575f80fd5b806370a0823114610629578063715018a61461065d5780637192762814610671575f80fd5b80634fbee1931161026e5780634fbee193146105a657806359a945e9146105dd57806365954704146105f15780636c53c8f714610610575f80fd5b806343278c611461054d5780634626402b1461056257806348b98ef514610586575f80fd5b806318160ddd116102fe57806323b872dd116102d957806323b872dd146104d5578063313ce567146104f4578063395093511461050f5780633b7b6a101461052e575f80fd5b806318160ddd146104845780631a2953fe14610498578063203e727e146104b6575f80fd5b806306fdde031161033957806306fdde03146103cb5780630758d924146103ec578063095ea7b31461043757806311aa0ee514610456575f80fd5b806303a88e801461036957806303a928eb1461039257806304019c14146103a8575f80fd5b3661036557005b5f80fd5b348015610374575f80fd5b5061037d610a21565b60405190151581526020015b60405180910390f35b34801561039d575f80fd5b506103a6610a67565b005b3480156103b3575f80fd5b506103bd60165481565b604051908152602001610389565b3480156103d6575f80fd5b506103df610a9d565b60405161038991906124ea565b3480156103f7575f80fd5b5061041f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610389565b348015610442575f80fd5b5061037d610451366004612549565b610b2d565b348015610461575f80fd5b5061037d610470366004612573565b60186020525f908152604090205460ff1681565b34801561048f575f80fd5b506002546103bd565b3480156104a3575f80fd5b5060085461037d90610100900460ff1681565b3480156104c1575f80fd5b506103a66104d036600461258e565b610b46565b3480156104e0575f80fd5b5061037d6104ef3660046125a5565b610be7565b3480156104ff575f80fd5b5060405160128152602001610389565b34801561051a575f80fd5b5061037d610529366004612549565b610c0a565b348015610539575f80fd5b506103a661054836600461258e565b610c2b565b348015610558575f80fd5b506103bd60065481565b34801561056d575f80fd5b50600d5461041f9061010090046001600160a01b031681565b348015610591575f80fd5b5060055461037d90600160a81b900460ff1681565b3480156105b1575f80fd5b5061037d6105c0366004612573565b6001600160a01b03165f9081526017602052604090205460ff1690565b3480156105e8575f80fd5b506103a6610cd7565b3480156105fc575f80fd5b506103a661060b3660046125f2565b610d29565b34801561061b575f80fd5b50600d5461037d9060ff1681565b348015610634575f80fd5b506103bd610643366004612573565b6001600160a01b03165f9081526020819052604090205490565b348015610668575f80fd5b506103a6610d71565b34801561067c575f80fd5b506103a661068b366004612573565b610da6565b34801561069b575f80fd5b506103bd60155481565b3480156106b0575f80fd5b506103bd600a5481565b3480156106c5575f80fd5b506103bd600f5481565b3480156106da575f80fd5b506103a66106e9366004612573565b610e2c565b3480156106f9575f80fd5b506103bd60075481565b34801561070e575f80fd5b5061037d61071d36600461258e565b610ebd565b34801561072d575f80fd5b506005546001600160a01b031661041f565b34801561074a575f80fd5b506103a661075936600461260b565b610f6f565b348015610769575f80fd5b506103bd60135481565b34801561077e575f80fd5b506103df611055565b348015610792575f80fd5b506103bd60095481565b3480156107a7575f80fd5b506103a66107b6366004612688565b611064565b3480156107c6575f80fd5b506103bd60115481565b3480156107db575f80fd5b506103a66107ea3660046126bb565b61112f565b3480156107fa575f80fd5b5061037d610809366004612549565b6111c2565b348015610819575f80fd5b5061037d610828366004612549565b611218565b348015610838575f80fd5b5061037d610847366004612573565b60196020525f908152604090205460ff1681565b348015610866575f80fd5b506103a66108753660046126bb565b611225565b348015610885575f80fd5b5060085461037d9060ff1681565b34801561089e575f80fd5b506103bd60105481565b3480156108b3575f80fd5b50600e5461041f906001600160a01b031681565b3480156108d2575f80fd5b506103a66108e1366004612688565b6112b8565b3480156108f1575f80fd5b5061037d611340565b348015610905575f80fd5b5061037d61091436600461258e565b61137c565b348015610924575f80fd5b506103bd60125481565b348015610939575f80fd5b5061037d610948366004612573565b600c6020525f908152604090205460ff1681565b348015610967575f80fd5b506103a6610976366004612688565b61153e565b348015610986575f80fd5b506103bd6109953660046126db565b611592565b3480156109a5575f80fd5b50600e5461037d90600160a01b900460ff1681565b3480156109c5575f80fd5b5061041f7f00000000000000000000000037414b167b17871c3312ff6a6551faca1124513a81565b3480156109f8575f80fd5b506103a6610a07366004612573565b6115bc565b348015610a17575f80fd5b506103bd60145481565b6005545f906001600160a01b03163314610a565760405162461bcd60e51b8152600401610a4d90612712565b60405180910390fd5b506008805461ff0019169055600190565b6005546001600160a01b03163314610a915760405162461bcd60e51b8152600401610a4d90612712565b600d805460ff19169055565b606060038054610aac90612747565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad890612747565b8015610b235780601f10610afa57610100808354040283529160200191610b23565b820191905f5260205f20905b815481529060010190602001808311610b0657829003601f168201915b5050505050905090565b5f33610b3a818585611657565b60019150505b92915050565b6005546001600160a01b03163314610b705760405162461bcd60e51b8152600401610a4d90612712565b6002811015610bc15760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e32256044820152606401610a4d565b6103e8610bcd60025490565b610bd79083612793565b610be191906127aa565b600a5550565b5f33610bf4858285611669565b610bff8585856116c6565b506001949350505050565b5f33610b3a818585610c1c8383611592565b610c2691906127c9565b611657565b6005546001600160a01b03163314610c555760405162461bcd60e51b8152600401610a4d90612712565b6005811015610cb15760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d6178486f6c64206c6f776572207468616e20302e604482015261352560f01b6064820152608401610a4d565b6103e8610cbd60025490565b610cc79083612793565b610cd191906127aa565b60095550565b6005546001600160a01b03163314610d015760405162461bcd60e51b8152600401610a4d90612712565b600e805460ff60a01b1916600160a01b1790556005805460ff60a81b1916600160a81b179055565b6005546001600160a01b03163314610d535760405162461bcd60e51b8152600401610a4d90612712565b60058054911515600160a81b0260ff60a81b19909216919091179055565b6005546001600160a01b03163314610d9b5760405162461bcd60e51b8152600401610a4d90612712565b610da45f611723565b565b6005546001600160a01b03163314610dd05760405162461bcd60e51b8152600401610a4d90612712565b600e546040516001600160a01b03918216918316907fd0bdd1bf92049384d44f81d258f51a39b26cfc1d256348efb3b109fd8db72711905f90a3600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e565760405162461bcd60e51b8152600401610a4d90612712565b600d546040516001600160a01b036101009092048216918316907f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f635905f90a3600d80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005545f906001600160a01b03163314610ee95760405162461bcd60e51b8152600401610a4d90612712565b600654821015610f615760405162461bcd60e51b815260206004820152603a60248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f206d696e42616c616e6365466f72436f6e747261637453656c6c0000000000006064820152608401610a4d565b50600781905560015b919050565b6005546001600160a01b03163314610f995760405162461bcd60e51b8152600401610a4d90612712565b600d5460ff16610fe15760405162461bcd60e51b8152602060048201526013602482015272109b1858dadb1a5cdd081a5cc81b1bd8dad959606a1b6044820152606401610a4d565b5f5b8281101561104f5781600c5f868685818110611001576110016127dc565b90506020020160208101906110169190612573565b6001600160a01b0316815260208101919091526040015f20805460ff191691151591909117905580611047816127f0565b915050610fe3565b50505050565b606060048054610aac90612747565b6005546001600160a01b0316331461108e5760405162461bcd60e51b8152600401610a4d90612712565b7f00000000000000000000000037414b167b17871c3312ff6a6551faca1124513a6001600160a01b0316826001600160a01b0316036111215760405162461bcd60e51b815260206004820152602960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201526834b9a0a6a6a830b4b960b91b6064820152608401610a4d565b61112b8282611774565b5050565b6005546001600160a01b031633146111595760405162461bcd60e51b8152600401610a4d90612712565b6013829055601481905561116d81836127c9565b6012819055600c101561112b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610a4d565b5f33816111cf8286611592565b90508381101561120b57604051632983c0c360e21b81526001600160a01b03861660048201526024810182905260448101859052606401610a4d565b610bff8286868403611657565b5f33610b3a8185856116c6565b6005546001600160a01b0316331461124f5760405162461bcd60e51b8152600401610a4d90612712565b6010829055601181905561126381836127c9565b600f819055600c101561112b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610a4d565b6005546001600160a01b031633146112e25760405162461bcd60e51b8152600401610a4d90612712565b6001600160a01b0382165f81815260176020908152604091829020805460ff191685151590811790915591519182527f781d26db56cdaee11e2fce438cd1461fa45f059fcd5f02aa8e6b1e5716d8d465910160405180910390a25050565b6005545f906001600160a01b0316331461136c5760405162461bcd60e51b8152600401610a4d90612712565b506008805460ff19169055600190565b6005545f906001600160a01b031633146113a85760405162461bcd60e51b8152600401610a4d90612712565b620186a06113b560025490565b6113bf91906127aa565b82101561142c5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a4d565b620186a061143960025490565b611445906101f4612793565b61144f91906127aa565b8211156114bb5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a4d565b600754821115611535576040805162461bcd60e51b81526020600482015260248101919091527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e206d6178416d6f756e74546f6b656e73466f72436f6e747261637453656c6c6064820152608401610a4d565b50600655600190565b6005546001600160a01b031633146115685760405162461bcd60e51b8152600401610a4d90612712565b6001600160a01b03919091165f908152601860205260409020805460ff1916911515919091179055565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146115e65760405162461bcd60e51b8152600401610a4d90612712565b6001600160a01b03811661164b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a4d565b61165481611723565b50565b61166483838360016117c7565b505050565b5f6116748484611592565b90505f19811461104f57818110156116b857604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610a4d565b61104f84848484035f6117c7565b6001600160a01b0383166116ef57604051634b637e8f60e11b81525f6004820152602401610a4d565b6001600160a01b0382166117185760405163ec442f0560e01b81525f6004820152602401610a4d565b611664838383611899565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260196020526040808220805460ff191685151590811790915590519092917fee6ce3a11a74f9a94b8a0152fc219acc6645b25bc298e2cae8ec6a520bd83da991a35050565b6001600160a01b0384166117f05760405163e602df0560e01b81525f6004820152602401610a4d565b6001600160a01b03831661181957604051634a1406b160e11b81525f6004820152602401610a4d565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561104f57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161188b91815260200190565b60405180910390a350505050565b805f036118ab5761166483835f6120af565b60085460ff1615611d44576005546001600160a01b038481169116148015906118e257506005546001600160a01b03838116911614155b80156118f657506001600160a01b03821615155b801561190d57506001600160a01b03821661dead14155b80156119235750600554600160a01b900460ff16155b15611d4457600e54600160a01b900460ff166119bb576001600160a01b0383165f9081526017602052604090205460ff168061197657506001600160a01b0382165f9081526017602052604090205460ff165b6119bb5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a4d565b600854610100900460ff1615611b03576005546001600160a01b03838116911614801590611a1b57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611a5957507f00000000000000000000000037414b167b17871c3312ff6a6551faca1124513a6001600160a01b0316826001600160a01b031614155b15611b0357325f908152600b60205260409020544311611af15760405162461bcd60e51b815260206004820152604760248201527f5f7570646174653a3a205472616e736665722044656c617920656e61626c656460448201527f2e20204f6e6c79206f6e652070757263686173652070657220626c6f636b2061606482015266363637bbb2b21760c91b608482015260a401610a4d565b325f908152600b602052604090204390555b6001600160a01b0383165f9081526019602052604090205460ff168015611b4257506001600160a01b0382165f9081526018602052604090205460ff16155b15611c1657600a54811115611ba85760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401610a4d565b6009546001600160a01b0383165f90815260208190526040902054611bcd90836127c9565b1115611c115760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a4d565b611d44565b6001600160a01b0382165f9081526019602052604090205460ff168015611c5557506001600160a01b0383165f9081526018602052604090205460ff16155b15611cbc57600a54811115611c115760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401610a4d565b6001600160a01b0382165f9081526018602052604090205460ff16611d44576009546001600160a01b0383165f90815260208190526040902054611d0090836127c9565b1115611d445760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a4d565b305f9081526020819052604090205460065481108015908190611d705750600554600160a81b900460ff165b8015611d865750600554600160a01b900460ff16155b8015611daa57506001600160a01b0385165f9081526019602052604090205460ff16155b8015611dce57506001600160a01b0385165f9081526017602052604090205460ff16155b8015611df257506001600160a01b0384165f9081526017602052604090205460ff16155b15611e20576005805460ff60a01b1916600160a01b179055611e126121d5565b6005805460ff60a01b191690555b6005546001600160a01b0386165f9081526017602052604090205460ff600160a01b909204821615911680611e6c57506001600160a01b0385165f9081526017602052604090205460ff165b15611e7457505f5b6001600160a01b0386165f9081526017602052604090205460ff161580611eb357506001600160a01b0385165f9081526017602052604090205460ff16155b15611f19576001600160a01b0386165f908152600c602052604090205460ff1615611f195760405162461bcd60e51b81526020600482015260166024820152751059191c995cdcc81a5cc8189b1858dadb1a5cdd195960521b6044820152606401610a4d565b5f811561209b576001600160a01b0386165f9081526019602052604090205460ff168015611f4857505f601254115b15611fd457611f6d6064611f676012548861230c90919063ffffffff16565b9061231e565b905060125460145482611f809190612793565b611f8a91906127aa565b60165f828254611f9a91906127c9565b9091555050601254601354611faf9083612793565b611fb991906127aa565b60155f828254611fc991906127c9565b9091555061207d9050565b6001600160a01b0387165f9081526019602052604090205460ff168015611ffc57505f600f54115b1561207d5761201b6064611f67600f548861230c90919063ffffffff16565b9050600f546011548261202e9190612793565b61203891906127aa565b60165f82825461204891906127c9565b9091555050600f5460105461205d9083612793565b61206791906127aa565b60155f82825461207791906127c9565b90915550505b801561208e5761208e8730836120af565b6120988186612808565b94505b6120a68787876120af565b50505050505050565b6001600160a01b0383166120d9578060025f8282546120ce91906127c9565b909155506121499050565b6001600160a01b0383165f908152602081905260409020548181101561212b5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610a4d565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661216557600280548290039055612183565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121c891815260200190565b60405180910390a3505050565b305f9081526020819052604081205490505f6016546015546121f791906127c9565b90505f821580612205575081155b1561220f57505050565b60075483111561221f5760075492505b4761222984612329565b5f61223447836124df565b90505f61225085611f676016548561230c90919063ffffffff16565b5f60158190556016819055600e546040519293506001600160a01b031691839181818185875af1925050503d805f81146122a5576040519150601f19603f3d011682016040523d82523d5f602084013e6122aa565b606091505b5050600d5460405191955061010090046001600160a01b03169047905f81818185875af1925050503d805f81146122fc576040519150601f19603f3d011682016040523d82523d5f602084013e612301565b606091505b505050505050505050565b5f6123178284612793565b9392505050565b5f61231782846127aa565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061235c5761235c6127dc565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123fc919061281b565b8160018151811061240f5761240f6127dc565b60200260200101906001600160a01b031690816001600160a01b03168152505061245a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611657565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906124ae9085905f90869030904290600401612836565b5f604051808303815f87803b1580156124c5575f80fd5b505af11580156124d7573d5f803e3d5ffd5b505050505050565b5f6123178284612808565b5f6020808352835180828501525f5b81811015612515578581018301518582016040015282016124f9565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611654575f80fd5b5f806040838503121561255a575f80fd5b823561256581612535565b946020939093013593505050565b5f60208284031215612583575f80fd5b813561231781612535565b5f6020828403121561259e575f80fd5b5035919050565b5f805f606084860312156125b7575f80fd5b83356125c281612535565b925060208401356125d281612535565b929592945050506040919091013590565b80358015158114610f6a575f80fd5b5f60208284031215612602575f80fd5b612317826125e3565b5f805f6040848603121561261d575f80fd5b833567ffffffffffffffff80821115612634575f80fd5b818601915086601f830112612647575f80fd5b813581811115612655575f80fd5b8760208260051b8501011115612669575f80fd5b60209283019550935061267f91860190506125e3565b90509250925092565b5f8060408385031215612699575f80fd5b82356126a481612535565b91506126b2602084016125e3565b90509250929050565b5f80604083850312156126cc575f80fd5b50508035926020909101359150565b5f80604083850312156126ec575f80fd5b82356126f781612535565b9150602083013561270781612535565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061275b57607f821691505b60208210810361277957634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610b4057610b4061277f565b5f826127c457634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115610b4057610b4061277f565b634e487b7160e01b5f52603260045260245ffd5b5f600182016128015761280161277f565b5060010190565b81810381811115610b4057610b4061277f565b5f6020828403121561282b575f80fd5b815161231781612535565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156128845784516001600160a01b03168352938301939183019160010161285f565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220b45aced58acb5fa206243d07d39917e7aa5203ff8085bda7e8d70a7b46def5d464736f6c63430008150033
Deployed Bytecode Sourcemap
26384:16325:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30878:130;;;;;;;;;;;;;:::i;:::-;;;179:14:1;;172:22;154:41;;142:2;127:18;30878:130:0;;;;;;;;36615:86;;;;;;;;;;;;;:::i;:::-;;27528:34;;;;;;;;;;;;;;;;;;;352:25:1;;;340:2;325:18;27528:34:0;206:177:1;12858:91:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26460:37::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1124:32:1;;;1106:51;;1094:2;1079:18;26460:37:0;941:222:1;15151:190:0;;;;;;;;;;-1:-1:-1;15151:190:0;;;;;:::i;:::-;;:::i;27706:51::-;;;;;;;;;;-1:-1:-1;27706:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;13960:99;;;;;;;;;;-1:-1:-1;14039:12:0;;13960:99;;26806:35;;;;;;;;;;-1:-1:-1;26806:35:0;;;;;;;;;;;32438:188;;;;;;;;;;-1:-1:-1;32438:188:0;;;;;:::i;:::-;;:::i;15919:249::-;;;;;;;;;;-1:-1:-1;15919:249:0;;;;;:::i;:::-;;:::i;13811:84::-;;;;;;;;;;-1:-1:-1;13811:84:0;;13885:2;2664:36:1;;2652:2;2637:18;13811:84:0;2522:184:1;16577:238:0;;;;;;;;;;-1:-1:-1;16577:238:0;;;;;:::i;:::-;;:::i;32751:193::-;;;;;;;;;;-1:-1:-1;32751:193:0;;;;;:::i;:::-;;:::i;26646:40::-;;;;;;;;;;;;;;;;27154:29;;;;;;;;;;-1:-1:-1;27154:29:0;;;;;;;-1:-1:-1;;;;;27154:29:0;;;26600:39;;;;;;;;;;-1:-1:-1;26600:39:0;;;;-1:-1:-1;;;26600:39:0;;;;;;36709:121;;;;;;;;;;-1:-1:-1;36709:121:0;;;;;:::i;:::-;-1:-1:-1;;;;;36799:23:0;36775:4;36799:23;;;:14;:23;;;;;;;;;36709:121;30486:118;;;;;;;;;;;;;:::i;33397:113::-;;;;;;;;;;-1:-1:-1;33397:113:0;;;;;:::i;:::-;;:::i;27089:34::-;;;;;;;;;;-1:-1:-1;27089:34:0;;;;;;;;14122:118;;;;;;;;;;-1:-1:-1;14122:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;14214:18:0;14187:7;14214:18;;;;;;;;;;;;14122:118;25019:103;;;;;;;;;;;;;:::i;35856:173::-;;;;;;;;;;-1:-1:-1;35856:173:0;;;;;:::i;:::-;;:::i;27486:35::-;;;;;;;;;;;;;;;;26877:20;;;;;;;;;;;;;;;;27269:27;;;;;;;;;;;;;;;;35533:217;;;;;;;;;;-1:-1:-1;35533:217:0;;;;;:::i;:::-;;:::i;26693:45::-;;;;;;;;;;;;;;;;31934:346;;;;;;;;;;-1:-1:-1;31934:346:0;;;;;:::i;:::-;;:::i;24368:87::-;;;;;;;;;;-1:-1:-1;24441:6:0;;-1:-1:-1;;;;;24441:6:0;24368:87;;36222:318;;;;;;;;;;-1:-1:-1;36222:318:0;;;;;:::i;:::-;;:::i;27411:30::-;;;;;;;;;;;;;;;;13068:95;;;;;;;;;;;;;:::i;26848:22::-;;;;;;;;;;;;;;;;34962:284;;;;;;;;;;-1:-1:-1;34962:284:0;;;;;:::i;:::-;;:::i;27339:28::-;;;;;;;;;;;;;;;;34159:327;;;;;;;;;;-1:-1:-1;34159:327:0;;;;;:::i;:::-;;:::i;17503:504::-;;;;;;;;;;-1:-1:-1;17503:504:0;;;;;:::i;:::-;;:::i;14445:182::-;;;;;;;;;;-1:-1:-1;14445:182:0;;;;;:::i;:::-;;:::i;27915:41::-;;;;;;;;;;-1:-1:-1;27915:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33674:320;;;;;;;;;;-1:-1:-1;33674:320:0;;;;;:::i;:::-;;:::i;26765:34::-;;;;;;;;;;-1:-1:-1;26765:34:0;;;;;;;;27303:29;;;;;;;;;;;;;;;;27190:28;;;;;;;;;;-1:-1:-1;27190:28:0;;;;-1:-1:-1;;;;;27190:28:0;;;34653:174;;;;;;;;;;-1:-1:-1;34653:174:0;;;;;:::i;:::-;;:::i;30679:128::-;;;;;;;;;;;;;:::i;31164:651::-;;;;;;;;;;-1:-1:-1;31164:651:0;;;;;:::i;:::-;;:::i;27376:28::-;;;;;;;;;;;;;;;;27039:43;;;;;;;;;;-1:-1:-1;27039:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33130:149;;;;;;;;;;-1:-1:-1;33130:149:0;;;;;:::i;:::-;;:::i;14690:142::-;;;;;;;;;;-1:-1:-1;14690:142:0;;;;;:::i;:::-;;:::i;27227:33::-;;;;;;;;;;-1:-1:-1;27227:33:0;;;;-1:-1:-1;;;27227:33:0;;;;;;26504:32;;;;;;;;;;;;;;;25277:238;;;;;;;;;;-1:-1:-1;25277:238:0;;;;;:::i;:::-;;:::i;27448:29::-;;;;;;;;;;;;;;;;30878:130;24441:6;;30937:4;;-1:-1:-1;;;;;24441:6:0;10027:10;24588:23;24580:68;;;;-1:-1:-1;;;24580:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;30954:16:0::1;:24:::0;;-1:-1:-1;;30954:24:0::1;::::0;;:16:::1;30878:130:::0;:::o;36615:86::-;24441:6;;-1:-1:-1;;;;;24441:6:0;10027:10;24588:23;24580:68;;;;-1:-1:-1;;;24580:68:0;;;;;;;:::i;:::-;36670:15:::1;:23:::0;;-1:-1:-1;;36670:23:0::1;::::0;;36615:86::o;12858:91::-;12903:13;12936:5;12929:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12858:91;:::o;15151:190::-;15224:4;10027:10;15280:31;10027:10;15296:7;15305:5;15280:8;:31::i;:::-;15329:4;15322:11;;;15151:190;;;;;:::o;32438:188::-;24441:6;;-1:-1:-1;;;;;24441:6:0;10027:10;24588:23;24580:68;;;;-1:-1:-1;;;24580:68:0;;;;;;;:::i;:::-;32530:1:::1;32520:6;:11;;32512:56;;;::::0;-1:-1:-1;;;32512:56:0;;5877:2:1;32512:56:0::1;::::0;::::1;5859:21:1::0;;;5896:18;;;5889:30;5955:34;5935:18;;;5928:62;6007:18;;32512:56:0::1;5675:356:1::0;32512:56:0::1;32614:4;32597:13;14039:12:::0;;;13960:99;32597:13:::1;32588:22;::::0;:6;:22:::1;:::i;:::-;32587:31;;;;:::i;:::-;32579:5;:39:::0;-1:-1:-1;32438:188:0:o;15919:249::-;16006:4;10027:10;16064:37;16080:4;10027:10;16095:5;16064:15;:37::i;:::-;16112:26;16122:4;16128:2;16132:5;16112:9;:26::i;:::-;-1:-1:-1;16156:4:0;;15919:249;-1:-1:-1;;;;15919:249:0:o;16577:238::-;16665:4;10027:10;16721:64;10027:10;16737:7;16774:10;16746:25;10027:10;16737:7;16746:9;:25::i;:::-;:38;;;;:::i;:::-;16721:8;:64::i;32751:193::-;24441:6;;-1:-1:-1;;;;;24441:6:0;10027:10;24588:23;24580:68;;;;-1:-1:-1;;;24580:68:0;;;;;;;:::i;:::-;32844:1:::1;32834:6;:11;;32826:58;;;::::0;-1:-1:-1;;;32826:58:0;;6895:2:1;32826:58:0::1;::::0;::::1;6877:21:1::0;6934:2;6914:18;;;6907:30;6973:34;6953:18;;;6946:62;-1:-1:-1;;;7024:18:1;;;7017:32;7066:19;;32826:58:0::1;6693:398:1::0;32826:58:0::1;32932:4;32915:13;14039:12:::0;;;13960:99;32915:13:::1;32906:22;::::0;:6;:22:::1;:::i;:::-;32905:31;;;;:::i;:::-;32895:7;:41:::0;-1:-1:-1;32751:193:0:o;30486:118::-;24441:6;;-1:-1:-1;;;;;24441:6:0;10027:10;24588:23;24580:68;;;;-1:-1:-1;;;24580:68:0;;;;;;;:::i;:::-;30539:13:::1;:20:::0;;-1:-1:-1;;;;30539:20:0::1;-1:-1:-1::0;;;30539:20:0::1;::::0;;30570:19:::1;:26:::0;;-1:-1:-1;;;;30570:26:0::1;-1:-1:-1::0;;;30570:26:0::1;::::0;;30486:118::o;33397:113::-;24441:6;;-1:-1:-1;;;;;24441:6:0;10027:10;24588:23;24580:68;;;;-1:-1:-1;;;24580:68:0;;;;;;;:::i;:::-;33473:19:::1;:29:::0;;;::::1;;-1:-1:-1::0;;;33473:29:0::1;-1:-1:-1::0;;;;33473:29:0;;::::1;::::0;;;::::1;::::0;;33397:113::o;25019:103::-;24441:6;;-1:-1:-1;;;;;24441:6:0;10027:10;24588:23;24580:68;;;;-1:-1:-1;;;24580:68:0;;;;;;;:::i;:::-;25084:30:::1;25111:1;25084:18;:30::i;:::-;25019:103::o:0;35856:173::-;24441:6;;-1:-1:-1;;;;;24441:6:0;10027:10;24588:23;24580:68;;;;-1:-1:-1;;;24580:68:0;;;;;;;:::i;:::-;35971:13:::1;::::0;35939:46:::1;::::0;-1:-1:-1;;;;;35971:13:0;;::::1;::::0;35939:46;::::1;::::0;::::1;::::0;35971:13:::1;::::0;35939:46:::1;35996:13;:25:::0;;-1:-1:-1;;;;;;35996:25:0::1;-1:-1:-1::0;;;;;35996:25:0;;;::::1;::::0;;;::::1;::::0;;35856:173::o;35533:217::-;24441:6;;-1:-1:-1;;;;;24441:6:0;10027:10;24588:23;24580:68;;;;-1:-1:-1;;;24580:68:0;;;;;;;:::i;:::-;35682:14:::1;::::0;35641:56:::1;::::0;-1:-1:-1;;;;;35682:14:0::1;::::0;;::::1;::::0;::::1;::::0;35641:56;::::1;::::0;::::1;::::0;;;::::1;35708:14;:34:::0;;-1:-1:-1;;;;;35708:34:0;;::::1;;;-1:-1:-1::0;;;;;;35708:34:0;;::::1;::::0;;;::::1;::::0;;35533:217::o;31934:346::-;24441:6;;32034:4;;-1:-1:-1;;;;;24441:6:0;10027:10;24588:23;24580:68;;;;-1:-1:-1;;;24580:68:0;;;;;;;:::i;:::-;32086:25:::1;;32073:9;:38;;32051:146;;;::::0;-1:-1:-1;;;32051:146:0;;7298:2:1;32051:146:0::1;::::0;::::1;7280:21:1::0;7337:2;7317:18;;;7310:30;7376:34;7356:18;;;7349:62;7447:28;7427:18;;;7420:56;7493:19;;32051:146:0::1;7096:422:1::0;32051:146:0::1;-1:-1:-1::0;32208:30:0::1;:42:::0;;;32268:4:::1;24659:1;31934:346:::0;;;:::o;36222:318::-;24441:6;;-1:-1:-1;;;;;24441:6:0;10027:10;24588:23;24580:68;;;;-1:-1:-1;;;24580:68:0;;;;;;;:::i;:::-;36368:15:::1;::::0;::::1;;36360:47;;;::::0;-1:-1:-1;;;36360:47:0;;7725:2:1;36360:47:0::1;::::0;::::1;7707:21:1::0;7764:2;7744:18;;;7737:30;-1:-1:-1;;;7783:18:1;;;7776:49;7842:18;;36360:47:0::1;7523:343:1::0;36360:47:0::1;36423:9;36418:115;36438:20:::0;;::::1;36418:115;;;36508:13;36480:11;:25;36492:9;;36502:1;36492:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;36480:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;36480:25:0;:41;;-1:-1:-1;;36480:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36460:3;::::1;::::0;::::1;:::i;:::-;;;;36418:115;;;;36222:318:::0;;;:::o;13068:95::-;13115:13;13148:7;13141:14;;;;;:::i;34962:284::-;24441:6;;-1:-1:-1;;;;;24441:6:0;10027:10;24588:23;24580:68;;;;-1:-1:-1;;;24580:68:0;;;;;;;:::i;:::-;35108:7:::1;-1:-1:-1::0;;;;;35100:15:0::1;:4;-1:-1:-1::0;;;;;35100:15:0::1;::::0;35078:106:::1;;;::::0;-1:-1:-1;;;35078:106:0;;8345:2:1;35078:106:0::1;::::0;::::1;8327:21:1::0;8384:2;8364:18;;;8357:30;8423:34;8403:18;;;8396:62;-1:-1:-1;;;8474:18:1;;;8467:39;8523:19;;35078:106:0::1;8143:405:1::0;35078:106:0::1;35197:41;35226:4;35232:5;35197:28;:41::i;:::-;34962:284:::0;;:::o;34159:327::-;24441:6;;-1:-1:-1;;;;;24441:6:0;10027:10;24588:23;24580:68;;;;-1:-1:-1;;;24580:68:0;;;;;;;:::i;:::-;34278:15:::1;:30:::0;;;34319:14:::1;:28:::0;;;34374:32:::1;34336:11:::0;34296:12;34374:32:::1;:::i;:::-;34358:13;:48:::0;;;34442:2:::1;-1:-1:-1::0;34425:19:0::1;34417:61;;;::::0;-1:-1:-1;;;34417:61:0;;8755:2:1;34417:61:0::1;::::0;::::1;8737:21:1::0;8794:2;8774:18;;;8767:30;8833:31;8813:18;;;8806:59;8882:18;;34417:61:0::1;8553:353:1::0;17503:504:0;17598:4;10027:10;17598:4;17681:25;10027:10;17698:7;17681:9;:25::i;:::-;17654:52;;17740:17;17721:16;:36;17717:150;;;17781:74;;-1:-1:-1;;;17781:74:0;;-1:-1:-1;;;;;9131:32:1;;17781:74:0;;;9113:51:1;9180:18;;;9173:34;;;9223:18;;;9216:34;;;9086:18;;17781:74:0;8911:345:1;17717:150:0;17902:62;17911:5;17918:7;17946:17;17927:16;:36;17902:8;:62::i;14445:182::-;14514:4;10027:10;14570:27;10027:10;14587:2;14591:5;14570:9;:27::i;33674:320::-;24441:6;;-1:-1:-1;;;;;24441:6:0;10027:10;24588:23;24580:68;;;;-1:-1:-1;;;24580:68:0;;;;;;;:::i;:::-;33792:14:::1;:29:::0;;;33832:13:::1;:27:::0;;;33885:30:::1;33848:11:::0;33809:12;33885:30:::1;:::i;:::-;33870:12;:45:::0;;;33950:2:::1;-1:-1:-1::0;33934:18:0::1;33926:60;;;::::0;-1:-1:-1;;;33926:60:0;;8755:2:1;33926:60:0::1;::::0;::::1;8737:21:1::0;8794:2;8774:18;;;8767:30;8833:31;8813:18;;;8806:59;8882:18;;33926:60:0::1;8553:353:1::0;34653:174:0;24441:6;;-1:-1:-1;;;;;24441:6:0;10027:10;24588:23;24580:68;;;;-1:-1:-1;;;24580:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34738:23:0;::::1;;::::0;;;:14:::1;:23;::::0;;;;;;;;:34;;-1:-1:-1;;34738:34:0::1;::::0;::::1;;::::0;;::::1;::::0;;;34788:31;;154:41:1;;;34788:31:0::1;::::0;127:18:1;34788:31:0::1;;;;;;;34653:174:::0;;:::o;30679:128::-;24441:6;;30737:4;;-1:-1:-1;;;;;24441:6:0;10027:10;24588:23;24580:68;;;;-1:-1:-1;;;24580:68:0;;;;;;;:::i;:::-;-1:-1:-1;30754:15:0::1;:23:::0;;-1:-1:-1;;30754:23:0::1;::::0;;;30679:128;:::o;31164:651::-;24441:6;;31258:4;;-1:-1:-1;;;;;24441:6:0;10027:10;24588:23;24580:68;;;;-1:-1:-1;;;24580:68:0;;;;;;;:::i;:::-;31326:6:::1;31310:13;14039:12:::0;;;13960:99;31310:13:::1;:22;;;;:::i;:::-;31297:9;:35;;31275:138;;;::::0;-1:-1:-1;;;31275:138:0;;9463:2:1;31275:138:0::1;::::0;::::1;9445:21:1::0;9502:2;9482:18;;;9475:30;9541:34;9521:18;;;9514:62;-1:-1:-1;;;9592:18:1;;;9585:51;9653:19;;31275:138:0::1;9261:417:1::0;31275:138:0::1;31483:6;31466:13;14039:12:::0;;;13960:99;31466:13:::1;31460:19;::::0;:3:::1;:19;:::i;:::-;31459:30;;;;:::i;:::-;31446:9;:43;;31424:145;;;::::0;-1:-1:-1;;;31424:145:0;;9885:2:1;31424:145:0::1;::::0;::::1;9867:21:1::0;9924:2;9904:18;;;9897:30;9963:34;9943:18;;;9936:62;-1:-1:-1;;;10014:18:1;;;10007:50;10074:19;;31424:145:0::1;9683:416:1::0;31424:145:0::1;31615:30;;31602:9;:43;;31580:157;;;::::0;;-1:-1:-1;;;31580:157:0;;10306:2:1;31580:157:0::1;::::0;::::1;10288:21:1::0;10325:18;;;10318:30;;;;10384:34;10364:18;;;10357:62;10455:34;10435:18;;;10428:62;10507:19;;31580:157:0::1;10104:428:1::0;31580:157:0::1;-1:-1:-1::0;31748:25:0::1;:37:::0;31803:4:::1;::::0;31164:651::o;33130:149::-;24441:6;;-1:-1:-1;;;;;24441:6:0;10027:10;24588:23;24580:68;;;;-1:-1:-1;;;24580:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33237:27:0;;;::::1;;::::0;;;:19:::1;:27;::::0;;;;:34;;-1:-1:-1;;33237:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;33130:149::o;14690:142::-;-1:-1:-1;;;;;14797:18:0;;;14770:7;14797:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14690:142::o;25277:238::-;24441:6;;-1:-1:-1;;;;;24441:6:0;10027:10;24588:23;24580:68;;;;-1:-1:-1;;;24580:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25380:22:0;::::1;25358:110;;;::::0;-1:-1:-1;;;25358:110:0;;10739:2:1;25358:110:0::1;::::0;::::1;10721:21:1::0;10778:2;10758:18;;;10751:30;10817:34;10797:18;;;10790:62;-1:-1:-1;;;10868:18:1;;;10861:36;10914:19;;25358:110:0::1;10537:402:1::0;25358:110:0::1;25479:28;25498:8;25479:18;:28::i;:::-;25277:238:::0;:::o;21700:138::-;21793:37;21802:5;21809:7;21818:5;21825:4;21793:8;:37::i;:::-;21700:138;;;:::o;23437:487::-;23537:24;23564:25;23574:5;23581:7;23564:9;:25::i;:::-;23537:52;;-1:-1:-1;;23604:16:0;:37;23600:317;;23681:5;23662:16;:24;23658:132;;;23714:60;;-1:-1:-1;;;23714:60:0;;-1:-1:-1;;;;;9131:32:1;;23714:60:0;;;9113:51:1;9180:18;;;9173:34;;;9223:18;;;9216:34;;;9086:18;;23714:60:0;8911:345:1;23658:132:0;23833:57;23842:5;23849:7;23877:5;23858:16;:24;23884:5;23833:8;:57::i;18392:308::-;-1:-1:-1;;;;;18476:18:0;;18472:88;;18518:30;;-1:-1:-1;;;18518:30:0;;18545:1;18518:30;;;1106:51:1;1079:18;;18518:30:0;941:222:1;18472:88:0;-1:-1:-1;;;;;18574:16:0;;18570:88;;18614:32;;-1:-1:-1;;;18614:32:0;;18643:1;18614:32;;;1106:51:1;1079:18;;18614:32:0;941:222:1;18570:88:0;18668:24;18676:4;18682:2;18686:5;18668:7;:24::i;25675:191::-;25768:6;;;-1:-1:-1;;;;;25785:17:0;;;-1:-1:-1;;;;;;25785:17:0;;;;;;;25818:40;;25768:6;;;25785:17;25768:6;;25818:40;;25749:16;;25818:40;25738:128;25675:191;:::o;35254:155::-;-1:-1:-1;;;;;35337:15:0;;;;;;:9;:15;;;;;;:23;;-1:-1:-1;;35337:23:0;;;;;;;;;;35378;;35337;;:15;35378:23;;;35254:155;;:::o;22705:443::-;-1:-1:-1;;;;;22818:19:0;;22814:91;;22861:32;;-1:-1:-1;;;22861:32:0;;22890:1;22861:32;;;1106:51:1;1079:18;;22861:32:0;941:222:1;22814:91:0;-1:-1:-1;;;;;22919:21:0;;22915:92;;22964:31;;-1:-1:-1;;;22964:31:0;;22992:1;22964:31;;;1106:51:1;1079:18;;22964:31:0;941:222:1;22915:92:0;-1:-1:-1;;;;;23017:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;23063:78;;;;23114:7;-1:-1:-1;;;;;23098:31:0;23107:5;-1:-1:-1;;;;;23098:31:0;;23123:5;23098:31;;;;352:25:1;;340:2;325:18;;206:177;23098:31:0;;;;;;;;22705:443;;;;:::o;36838:4297::-;36964:6;36974:1;36964:11;36960:91;;36992:26;37006:4;37012:2;37016:1;36992:13;:26::i;36960:91::-;37067:15;;;;37063:2240;;;24441:6;;-1:-1:-1;;;;;37121:15:0;;;24441:6;;37121:15;;;;:49;;-1:-1:-1;24441:6:0;;-1:-1:-1;;;;;37157:13:0;;;24441:6;;37157:13;;37121:49;:86;;;;-1:-1:-1;;;;;;37191:16:0;;;;37121:86;:128;;;;-1:-1:-1;;;;;;37228:21:0;;37242:6;37228:21;;37121:128;:168;;;;-1:-1:-1;37271:18:0;;-1:-1:-1;;;37271:18:0;;;;37270:19;37121:168;37099:2193;;;37329:13;;-1:-1:-1;;;37329:13:0;;;;37324:213;;-1:-1:-1;;;;;37401:20:0;;;;;;:14;:20;;;;;;;;;:42;;-1:-1:-1;;;;;;37425:18:0;;;;;;:14;:18;;;;;;;;37401:42;37367:150;;;;-1:-1:-1;;;37367:150:0;;11146:2:1;37367:150:0;;;11128:21:1;11185:2;11165:18;;;11158:30;-1:-1:-1;;;11204:18:1;;;11197:52;11266:18;;37367:150:0;10944:346:1;37367:150:0;37693:16;;;;;;;37689:607;;;24441:6;;-1:-1:-1;;;;;37764:13:0;;;24441:6;;37764:13;;;;:66;;;37820:9;-1:-1:-1;;;;;37806:24:0;:2;-1:-1:-1;;;;;37806:24:0;;;37764:66;:117;;;;;37873:7;-1:-1:-1;;;;;37859:22:0;:2;-1:-1:-1;;;;;37859:22:0;;;37764:117;37734:543;;;37991:9;37970:31;;;;:20;:31;;;;;;38037:12;-1:-1:-1;37932:248:0;;;;-1:-1:-1;;;37932:248:0;;11497:2:1;37932:248:0;;;11479:21:1;11536:2;11516:18;;;11509:30;11575:34;11555:18;;;11548:62;11646:34;11626:18;;;11619:62;-1:-1:-1;;;11697:19:1;;;11690:38;11745:19;;37932:248:0;11295:475:1;37932:248:0;38228:9;38207:31;;;;:20;:31;;;;;38241:12;38207:46;;37734:543;-1:-1:-1;;;;;38348:15:0;;;;;;:9;:15;;;;;;;;:43;;;;-1:-1:-1;;;;;;38368:23:0;;;;;;:19;:23;;;;;;;;38367:24;38348:43;38344:933;;;38460:5;;38450:6;:15;;38416:139;;;;-1:-1:-1;;;38416:139:0;;11977:2:1;38416:139:0;;;11959:21:1;12016:2;11996:18;;;11989:30;12055:34;12035:18;;;12028:62;-1:-1:-1;;;12106:18:1;;;12099:36;12152:19;;38416:139:0;11775:402:1;38416:139:0;38638:7;;-1:-1:-1;;;;;14214:18:0;;14187:7;14214:18;;;;;;;;;;;38612:22;;:6;:22;:::i;:::-;:33;;38578:138;;;;-1:-1:-1;;;38578:138:0;;12384:2:1;38578:138:0;;;12366:21:1;12423:2;12403:18;;;12396:30;-1:-1:-1;;;12442:18:1;;;12435:49;12501:18;;38578:138:0;12182:343:1;38578:138:0;38344:933;;;-1:-1:-1;;;;;38814:13:0;;;;;;:9;:13;;;;;;;;:43;;;;-1:-1:-1;;;;;;38832:25:0;;;;;;:19;:25;;;;;;;;38831:26;38814:43;38788:489;;;38944:5;;38934:6;:15;;38900:140;;;;-1:-1:-1;;;38900:140:0;;12732:2:1;38900:140:0;;;12714:21:1;12771:2;12751:18;;;12744:30;12810:34;12790:18;;;12783:62;-1:-1:-1;;;12861:18:1;;;12854:37;12908:19;;38900:140:0;12530:403:1;38788:489:0;-1:-1:-1;;;;;39071:23:0;;;;;;:19;:23;;;;;;;;39066:211;;39179:7;;-1:-1:-1;;;;;14214:18:0;;14187:7;14214:18;;;;;;;;;;;39153:22;;:6;:22;:::i;:::-;:33;;39119:138;;;;-1:-1:-1;;;39119:138:0;;12384:2:1;39119:138:0;;;12366:21:1;12423:2;12403:18;;;12396:30;-1:-1:-1;;;12442:18:1;;;12435:49;12501:18;;39119:138:0;12182:343:1;39119:138:0;39364:4;39315:28;14214:18;;;;;;;;;;;39422:25;;39398:49;;;;;;;39478:43;;-1:-1:-1;39502:19:0;;-1:-1:-1;;;39502:19:0;;;;39478:43;:79;;;;-1:-1:-1;39539:18:0;;-1:-1:-1;;;39539:18:0;;;;39538:19;39478:79;:112;;;;-1:-1:-1;;;;;;39575:15:0;;;;;;:9;:15;;;;;;;;39574:16;39478:112;:150;;;;-1:-1:-1;;;;;;39608:20:0;;;;;;:14;:20;;;;;;;;39607:21;39478:150;:186;;;;-1:-1:-1;;;;;;39646:18:0;;;;;;:14;:18;;;;;;;;39645:19;39478:186;39460:338;;;39691:18;:25;;-1:-1:-1;;;;39691:25:0;-1:-1:-1;;;39691:25:0;;;39733:10;:8;:10::i;:::-;39760:18;:26;;-1:-1:-1;;;;39760:26:0;;;39460:338;39826:18;;-1:-1:-1;;;;;39946:20:0;;39810:12;39946:20;;;:14;:20;;;;;;39826:18;-1:-1:-1;;;39826:18:0;;;;;39825:19;;39946:20;;:42;;-1:-1:-1;;;;;;39970:18:0;;;;;;:14;:18;;;;;;;;39946:42;39942:90;;;-1:-1:-1;40015:5:0;39942:90;-1:-1:-1;;;;;40049:20:0;;;;;;:14;:20;;;;;;;;40048:21;;:44;;-1:-1:-1;;;;;;40074:18:0;;;;;;:14;:18;;;;;;;;40073:19;40048:44;40044:130;;;-1:-1:-1;;;;;40118:17:0;;;;;;:11;:17;;;;;;;;40117:18;40109:53;;;;-1:-1:-1;;;40109:53:0;;13140:2:1;40109:53:0;;;13122:21:1;13179:2;13159:18;;;13152:30;-1:-1:-1;;;13198:18:1;;;13191:52;13260:18;;40109:53:0;12938:346:1;40109:53:0;40186:12;40291:7;40287:797;;;-1:-1:-1;;;;;40343:13:0;;;;;;:9;:13;;;;;;;;:34;;;;;40376:1;40360:13;;:17;40343:34;40339:598;;;40405:34;40435:3;40405:25;40416:13;;40405:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;40398:41;;40507:13;;40489:14;;40482:4;:21;;;;:::i;:::-;40481:39;;;;:::i;:::-;40458:19;;:62;;;;;;;:::i;:::-;;;;-1:-1:-1;;40590:13:0;;40571:15;;40564:22;;:4;:22;:::i;:::-;40563:40;;;;:::i;:::-;40539:20;;:64;;;;;;;:::i;:::-;;;;-1:-1:-1;40339:598:0;;-1:-1:-1;40339:598:0;;-1:-1:-1;;;;;40665:15:0;;;;;;:9;:15;;;;;;;;:35;;;;;40699:1;40684:12;;:16;40665:35;40661:276;;;40728:33;40757:3;40728:24;40739:12;;40728:6;:10;;:24;;;;:::i;:33::-;40721:40;;40828:12;;40811:13;;40804:4;:20;;;;:::i;:::-;40803:37;;;;:::i;:::-;40780:19;;:60;;;;;;;:::i;:::-;;;;-1:-1:-1;;40909:12:0;;40891:14;;40884:21;;:4;:21;:::i;:::-;40883:38;;;;:::i;:::-;40859:20;;:62;;;;;;;:::i;:::-;;;;-1:-1:-1;;40661:276:0;40957:8;;40953:89;;40986:40;41000:4;41014;41021;40986:13;:40::i;:::-;41058:14;41068:4;41058:14;;:::i;:::-;;;40287:797;41096:31;41110:4;41116:2;41120:6;41096:13;:31::i;:::-;36949:4186;;;;36838:4297;;;:::o;19016:1135::-;-1:-1:-1;;;;;19106:18:0;;19102:552;;19260:5;19244:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;19102:552:0;;-1:-1:-1;19102:552:0;;-1:-1:-1;;;;;19320:15:0;;19298:19;19320:15;;;;;;;;;;;19354:19;;;19350:117;;;19401:50;;-1:-1:-1;;;19401:50:0;;-1:-1:-1;;;;;9131:32:1;;19401:50:0;;;9113:51:1;9180:18;;;9173:34;;;9223:18;;;9216:34;;;9086:18;;19401:50:0;8911:345:1;19350:117:0;-1:-1:-1;;;;;19590:15:0;;:9;:15;;;;;;;;;;19608:19;;;;19590:37;;19102:552;-1:-1:-1;;;;;19670:16:0;;19666:435;;19836:12;:21;;;;;;;19666:435;;;-1:-1:-1;;;;;20052:13:0;;:9;:13;;;;;;;;;;:22;;;;;;19666:435;20133:2;-1:-1:-1;;;;;20118:25:0;20127:4;-1:-1:-1;;;;;20118:25:0;;20137:5;20118:25;;;;352::1;;340:2;325:18;;206:177;20118:25:0;;;;;;;;19016:1135;;;:::o;41722:984::-;41805:4;41761:23;14214:18;;;;;;;;;;;41761:50;;41822:25;41873:19;;41850:20;;:42;;;;:::i;:::-;41822:70;-1:-1:-1;41903:12:0;41932:20;;;:46;;-1:-1:-1;41956:22:0;;41932:46;41928:85;;;41995:7;;;41722:984::o;41928:85::-;42047:30;;42029:15;:48;42025:129;;;42112:30;;42094:48;;42025:129;42194:21;42228:33;42245:15;42228:16;:33::i;:::-;42274:18;42295:44;:21;42321:17;42295:25;:44::i;:::-;42274:65;;42352:21;42376:58;42416:17;42376:35;42391:19;;42376:10;:14;;:35;;;;:::i;:58::-;42470:1;42447:20;:24;;;42482:19;:23;;;42540:13;;42532:53;;42352:82;;-1:-1:-1;;;;;;42540:13:0;;42352:82;;42532:53;42470:1;42532:53;42352:82;42540:13;42532:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;42620:14:0;;42612:86;;42518:67;;-1:-1:-1;42620:14:0;;;-1:-1:-1;;;;;42620:14:0;;42662:21;;42612:86;;;;42662:21;42620:14;42612:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;41722:984:0:o;3414:98::-;3472:7;3499:5;3503:1;3499;:5;:::i;:::-;3492:12;3414:98;-1:-1:-1;;;3414:98:0:o;3813:::-;3871:7;3898:5;3902:1;3898;:5;:::i;41143:571::-;41293:16;;;41307:1;41293:16;;;;;;;;41269:21;;41293:16;;;;;;;;;;-1:-1:-1;41293:16:0;41269:40;;41338:4;41320;41325:1;41320:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;41320:23:0;;;-1:-1:-1;;;;;41320:23:0;;;;;41364:9;-1:-1:-1;;;;;41364:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41354:4;41359:1;41354:7;;;;;;;;:::i;:::-;;;;;;:26;-1:-1:-1;;;;;41354:26:0;;;-1:-1:-1;;;;;41354:26:0;;;;;41393:56;41410:4;41425:9;41437:11;41393:8;:56::i;:::-;41488:218;;-1:-1:-1;;;41488:218:0;;-1:-1:-1;;;;;41488:9:0;:60;;;;:218;;41563:11;;41589:1;;41633:4;;41660;;41680:15;;41488:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41198:516;41143:571;:::o;3057:98::-;3115:7;3142:5;3146:1;3142;:5;:::i;388:548:1:-;500:4;529:2;558;547:9;540:21;590:6;584:13;633:6;628:2;617:9;613:18;606:34;658:1;668:140;682:6;679:1;676:13;668:140;;;777:14;;;773:23;;767:30;743:17;;;762:2;739:26;732:66;697:10;;668:140;;;672:3;857:1;852:2;843:6;832:9;828:22;824:31;817:42;927:2;920;916:7;911:2;903:6;899:15;895:29;884:9;880:45;876:54;868:62;;;;388:548;;;;:::o;1168:131::-;-1:-1:-1;;;;;1243:31:1;;1233:42;;1223:70;;1289:1;1286;1279:12;1304:315;1372:6;1380;1433:2;1421:9;1412:7;1408:23;1404:32;1401:52;;;1449:1;1446;1439:12;1401:52;1488:9;1475:23;1507:31;1532:5;1507:31;:::i;:::-;1557:5;1609:2;1594:18;;;;1581:32;;-1:-1:-1;;;1304:315:1:o;1624:247::-;1683:6;1736:2;1724:9;1715:7;1711:23;1707:32;1704:52;;;1752:1;1749;1742:12;1704:52;1791:9;1778:23;1810:31;1835:5;1810:31;:::i;1876:180::-;1935:6;1988:2;1976:9;1967:7;1963:23;1959:32;1956:52;;;2004:1;2001;1994:12;1956:52;-1:-1:-1;2027:23:1;;1876:180;-1:-1:-1;1876:180:1:o;2061:456::-;2138:6;2146;2154;2207:2;2195:9;2186:7;2182:23;2178:32;2175:52;;;2223:1;2220;2213:12;2175:52;2262:9;2249:23;2281:31;2306:5;2281:31;:::i;:::-;2331:5;-1:-1:-1;2388:2:1;2373:18;;2360:32;2401:33;2360:32;2401:33;:::i;:::-;2061:456;;2453:7;;-1:-1:-1;;;2507:2:1;2492:18;;;;2479:32;;2061:456::o;2919:160::-;2984:20;;3040:13;;3033:21;3023:32;;3013:60;;3069:1;3066;3059:12;3084:180;3140:6;3193:2;3181:9;3172:7;3168:23;3164:32;3161:52;;;3209:1;3206;3199:12;3161:52;3232:26;3248:9;3232:26;:::i;3269:689::-;3361:6;3369;3377;3430:2;3418:9;3409:7;3405:23;3401:32;3398:52;;;3446:1;3443;3436:12;3398:52;3486:9;3473:23;3515:18;3556:2;3548:6;3545:14;3542:34;;;3572:1;3569;3562:12;3542:34;3610:6;3599:9;3595:22;3585:32;;3655:7;3648:4;3644:2;3640:13;3636:27;3626:55;;3677:1;3674;3667:12;3626:55;3717:2;3704:16;3743:2;3735:6;3732:14;3729:34;;;3759:1;3756;3749:12;3729:34;3814:7;3807:4;3797:6;3794:1;3790:14;3786:2;3782:23;3778:34;3775:47;3772:67;;;3835:1;3832;3825:12;3772:67;3866:4;3858:13;;;;-1:-1:-1;3890:6:1;-1:-1:-1;3915:37:1;;3931:20;;;-1:-1:-1;3915:37:1;:::i;:::-;3905:47;;3269:689;;;;;:::o;3963:315::-;4028:6;4036;4089:2;4077:9;4068:7;4064:23;4060:32;4057:52;;;4105:1;4102;4095:12;4057:52;4144:9;4131:23;4163:31;4188:5;4163:31;:::i;:::-;4213:5;-1:-1:-1;4237:35:1;4268:2;4253:18;;4237:35;:::i;:::-;4227:45;;3963:315;;;;;:::o;4283:248::-;4351:6;4359;4412:2;4400:9;4391:7;4387:23;4383:32;4380:52;;;4428:1;4425;4418:12;4380:52;-1:-1:-1;;4451:23:1;;;4521:2;4506:18;;;4493:32;;-1:-1:-1;4283:248:1:o;4536:388::-;4604:6;4612;4665:2;4653:9;4644:7;4640:23;4636:32;4633:52;;;4681:1;4678;4671:12;4633:52;4720:9;4707:23;4739:31;4764:5;4739:31;:::i;:::-;4789:5;-1:-1:-1;4846:2:1;4831:18;;4818:32;4859:33;4818:32;4859:33;:::i;:::-;4911:7;4901:17;;;4536:388;;;;;:::o;4929:356::-;5131:2;5113:21;;;5150:18;;;5143:30;5209:34;5204:2;5189:18;;5182:62;5276:2;5261:18;;4929:356::o;5290:380::-;5369:1;5365:12;;;;5412;;;5433:61;;5487:4;5479:6;5475:17;5465:27;;5433:61;5540:2;5532:6;5529:14;5509:18;5506:38;5503:161;;5586:10;5581:3;5577:20;5574:1;5567:31;5621:4;5618:1;5611:15;5649:4;5646:1;5639:15;5503:161;;5290:380;;;:::o;6036:127::-;6097:10;6092:3;6088:20;6085:1;6078:31;6128:4;6125:1;6118:15;6152:4;6149:1;6142:15;6168:168;6241:9;;;6272;;6289:15;;;6283:22;;6269:37;6259:71;;6310:18;;:::i;6341:217::-;6381:1;6407;6397:132;;6451:10;6446:3;6442:20;6439:1;6432:31;6486:4;6483:1;6476:15;6514:4;6511:1;6504:15;6397:132;-1:-1:-1;6543:9:1;;6341:217::o;6563:125::-;6628:9;;;6649:10;;;6646:36;;;6662:18;;:::i;7871:127::-;7932:10;7927:3;7923:20;7920:1;7913:31;7963:4;7960:1;7953:15;7987:4;7984:1;7977:15;8003:135;8042:3;8063:17;;;8060:43;;8083:18;;:::i;:::-;-1:-1:-1;8130:1:1;8119:13;;8003:135::o;13289:128::-;13356:9;;;13377:11;;;13374:37;;;13391:18;;:::i;13764:251::-;13834:6;13887:2;13875:9;13866:7;13862:23;13858:32;13855:52;;;13903:1;13900;13893:12;13855:52;13935:9;13929:16;13954:31;13979:5;13954:31;:::i;14020:980::-;14282:4;14330:3;14319:9;14315:19;14361:6;14350:9;14343:25;14387:2;14425:6;14420:2;14409:9;14405:18;14398:34;14468:3;14463:2;14452:9;14448:18;14441:31;14492:6;14527;14521:13;14558:6;14550;14543:22;14596:3;14585:9;14581:19;14574:26;;14635:2;14627:6;14623:15;14609:29;;14656:1;14666:195;14680:6;14677:1;14674:13;14666:195;;;14745:13;;-1:-1:-1;;;;;14741:39:1;14729:52;;14836:15;;;;14801:12;;;;14777:1;14695:9;14666:195;;;-1:-1:-1;;;;;;;14917:32:1;;;;14912:2;14897:18;;14890:60;-1:-1:-1;;;14981:3:1;14966:19;14959:35;14878:3;14020:980;-1:-1:-1;;;14020:980:1:o
Swarm Source
ipfs://b45aced58acb5fa206243d07d39917e7aa5203ff8085bda7e8d70a7b46def5d4
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 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.