ERC-20
Overview
Max Total Supply
39,030,615,894 ₮
Holders
25
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
623,418,623.3644606611328125 ₮Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
USDT
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-27 */ pragma solidity ^0.8.20; /* ⬜️⬜️⬜️⬜️⬜️⬜️⬜️🟩🟩🟩🟩⬜️⬜️⬜️⬜️⬜️⬜️⬜️ ⬜️⬜️⬜️⬜️⬜️🟩🟩🟩🟩🟩🟩🟩🟩🟩⬜️⬜️⬜️⬜️ ⬜️⬜️⬜️🟩🟩🟩🟩🟩🟩🟩🟩🟩🟩🟩🟩⬜️⬜️⬜️ ⬜️⬜️🟩🟩🟩⬜️⬜️⬜️⬜️⬜️⬜️⬜️⬜️🟩🟩🟩⬜️⬜️ ⬜️⬜️🟩🟩🟩⬜️⬜️⬜️⬜️⬜️⬜️⬜️⬜️🟩🟩🟩⬜️⬜️ ⬜️🟩🟩🟩🟩🟩🟩🟩⬜️⬜️🟩🟩🟩🟩🟩🟩🟩⬜️ ⬜️🟩🟩🟩🟩🟩🟩🟩⬜️⬜️🟩🟩🟩🟩🟩🟩🟩⬜️ 🟩🟩🟩⬜️🟩🟩🟩🟩⬜️⬜️🟩🟩🟩🟩⬜️🟩🟩🟩 🟩🟩🟩🟩⬜️🟩🟩🟩⬜️⬜️🟩🟩🟩⬜️🟩🟩🟩🟩 🟩🟩🟩🟩🟩🟩🟩🟩🟩🟩🟩🟩🟩🟩🟩🟩🟩🟩 🟩🟩🟩🟩🟩🟩🟩🟩⬜️⬜️🟩🟩🟩🟩🟩🟩🟩🟩 ⬜️🟩🟩🟩🟩🟩🟩🟩⬜️⬜️🟩🟩🟩🟩🟩🟩🟩⬜️ ⬜️🟩🟩🟩🟩🟩🟩🟩⬜️⬜️🟩🟩🟩🟩🟩🟩🟩⬜️ ⬜️⬜️🟩🟩🟩🟩🟩🟩⬜️⬜️🟩🟩🟩🟩🟩🟩🟩⬜️ ⬜️⬜️🟩🟩🟩🟩🟩🟩⬜️⬜️🟩🟩🟩🟩🟩🟩⬜️⬜️ ⬜️⬜️⬜️🟩🟩🟩🟩🟩⬜️⬜️🟩🟩🟩🟩🟩⬜️⬜️⬜️ ⬜️⬜️⬜️⬜️⬜️🟩🟩🟩🟩🟩🟩🟩🟩⬜️⬜️⬜️⬜️⬜️ ⬜️⬜️⬜️⬜️⬜️⬜️⬜️🟩🟩🟩🟩⬜️⬜️⬜️⬜️⬜️⬜️⬜️ Tether finally on the blockchain 0/0 tax lp burnt */ //SPDX-License-Identifier: UNLICENSED interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface 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. * * 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); } 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); } 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-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 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 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 {} } library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function factory() external pure returns (address); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract USDT is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); address public USDT = 0xdAC17F958D2ee523a2206206994597C13D831ec7; address public burnAddress = deadAddress; bool private swapping; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsActive = true; bool public tradingActive = false; bool public swapEnabled = true; uint256 public buyTotalFees; uint256 public buyDevFee; uint256 public buyLiquidityFee; uint256 public buyBurnFee; uint256 public sellTotalFees; uint256 public sellDevFee; uint256 public sellLiquidityFee; uint256 public sellBurnFee; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; event ExcludeFromFees(address indexed account, bool isExcluded); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); constructor() ERC20(unicode"⬜️⬜️⬜️⬜️⬜️⬜️⬜️🟩🟩🟩🟩⬜️⬜️⬜️⬜️⬜️⬜️⬜️\n⬜️⬜️⬜️⬜️⬜️🟩🟩🟩🟩🟩🟩🟩🟩🟩⬜️⬜️⬜️⬜️\n⬜️⬜️⬜️🟩🟩🟩🟩🟩🟩🟩🟩🟩🟩🟩🟩⬜️⬜️⬜️\n⬜️⬜️🟩🟩🟩⬜️⬜️⬜️⬜️⬜️⬜️⬜️⬜️🟩🟩🟩⬜️⬜️\n⬜️⬜️🟩🟩🟩⬜️⬜️⬜️⬜️⬜️⬜️⬜️⬜️🟩🟩🟩⬜️⬜️\n⬜️🟩🟩🟩🟩🟩🟩🟩⬜️⬜️🟩🟩🟩🟩🟩🟩🟩⬜️\n⬜️🟩🟩🟩🟩🟩🟩🟩⬜️⬜️🟩🟩🟩🟩🟩🟩🟩⬜️\n🟩🟩🟩⬜️🟩🟩🟩🟩⬜️⬜️🟩🟩🟩🟩⬜️🟩🟩🟩\n🟩🟩🟩🟩⬜️🟩🟩🟩⬜️⬜️🟩🟩🟩⬜️🟩🟩🟩🟩\n🟩🟩🟩🟩🟩🟩🟩🟩⬜️⬜️🟩🟩🟩🟩🟩🟩🟩🟩\n⬜️🟩🟩🟩🟩🟩🟩🟩⬜️⬜️🟩🟩🟩🟩🟩🟩🟩⬜️\n⬜️🟩🟩🟩🟩🟩🟩🟩⬜️⬜️🟩🟩🟩🟩🟩🟩🟩⬜\n⬜️⬜️🟩🟩🟩🟩🟩🟩⬜️⬜️🟩🟩🟩🟩🟩🟩🟩⬜️\n⬜️⬜️🟩🟩🟩🟩🟩🟩⬜️⬜️🟩🟩🟩🟩🟩🟩⬜️⬜️\n⬜️⬜️⬜️🟩🟩🟩🟩🟩⬜️⬜️🟩🟩🟩🟩🟩⬜️⬜️⬜️\n⬜️⬜️⬜️⬜️⬜️🟩🟩🟩🟩🟩🟩🟩🟩⬜️⬜️⬜️⬜️⬜️\n⬜️⬜️⬜️⬜️⬜️⬜️⬜️🟩🟩🟩🟩⬜️⬜️⬜️⬜️⬜️⬜️⬜️", unicode"₮") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); extemptMaxTx(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), USDT); extemptMaxTx(address(uniswapV2Pair), true); uint256 _buyDevFee = 20; uint256 _buyLiquidityFee = 0; uint256 _buyBurnFee = 0; uint256 _sellDevFee = 25; uint256 _sellBurnFee = 0; uint256 _sellLiquidityFee = 0; uint256 totalSupply = 39_030_615_894 * 1e18; maxTransactionAmount = totalSupply * 2 / 100; // 2% from total supply maxTransactionAmountTxn maxWallet = totalSupply * 2 / 100; // 2% from total supply maxWallet swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet buyDevFee = _buyDevFee; buyLiquidityFee = _buyLiquidityFee; buyBurnFee = _buyBurnFee; buyTotalFees = buyDevFee + buyLiquidityFee + buyBurnFee; sellDevFee = _sellDevFee; sellLiquidityFee = _sellLiquidityFee; sellBurnFee = _sellBurnFee; sellTotalFees = sellDevFee + sellLiquidityFee + buyBurnFee; devWallet = address(0x43813fCF69259bC6a58Dd7f33f7bA8f896Bca5eF); // exclude from paying fees or having max transaction amount extemptFee(owner(), true); extemptFee(address(this), true); extemptFee(address(0xdead), true); extemptMaxTx(owner(), true); extemptMaxTx(address(this), true); extemptMaxTx(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 activateTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsActive = false; return true; } function setDeadAddress(address addy) public onlyOwner{ burnAddress = addy; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function setMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function setMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function extemptMaxTx(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function setFee( uint256 _buyDevFee, uint256 _buyLiquidityFee, uint256 _buyBurnFee, uint256 _sellDevFee, uint256 _sellLiquidityFee, uint256 _sellBurnFee ) external onlyOwner { buyDevFee = _buyDevFee; buyLiquidityFee = _buyLiquidityFee; buyBurnFee = _buyBurnFee; sellDevFee = _sellDevFee; sellLiquidityFee = _sellLiquidityFee; sellBurnFee = _sellBurnFee; buyTotalFees = buyDevFee + buyLiquidityFee + buyBurnFee; sellTotalFees = sellDevFee + sellLiquidityFee + _sellBurnFee; require(buyTotalFees <= 20, "Must keep fees at 20% or less"); require(sellTotalFees <= 20, "Must keep fees at 20% or less"); } function extemptFee(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function updateDevWallet(address newDevWallet) external onlyOwner { emit devWalletUpdated(newDevWallet, devWallet); devWallet = newDevWallet; } 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; } if (limitsActive) { 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. //when buy if ( from == uniswapV2Pair && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } 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 && to == uniswapV2Pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; uint256 current_mcap = getMarketCap(uniswapV2Pair, 1); if(current_mcap > 100000 * 1e18){ sellBurnFee = 1; sellDevFee = 9; }else if(current_mcap > 250000 * 1e18){ sellTotalFees = 0; buyTotalFees = 0; } 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; uint256 tokensForLiquidity = 0; uint256 tokensForDev = 0; uint256 tokensForBurn = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (to == uniswapV2Pair && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees; tokensForDev = (fees * sellDevFee) / sellTotalFees; tokensForBurn = (fees * sellBurnFee) / sellTotalFees; } // on buy else if (from == uniswapV2Pair && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; tokensForDev = (fees * buyDevFee) / buyTotalFees; tokensForBurn = (fees * buyBurnFee) / buyTotalFees; } if (fees> 0) { super._transfer(from, address(this), fees); } if (tokensForLiquidity > 0) { super._transfer(address(this), uniswapV2Pair, tokensForLiquidity); } if(tokensForBurn > 0){ super._transfer(address(this), burnAddress, tokensForBurn); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForUSDT(uint256 tokenAmount) private { // generate the uniswap pair path of token -> USDT address[] memory path = new address[](2); path[0] = address(this); path[1] = USDT; _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of USDC path, devWallet, block.timestamp ); } // calculate price based on pair reserves function getMarketCap(address pairAddress, uint amount) public view returns(uint) { IUniswapV2Pair pair = IUniswapV2Pair(pairAddress); IERC20 token1 = IERC20(pair.token1()); IERC20Metadata data1 = IERC20Metadata(pair.token1()); (uint Res0, uint Res1,) = pair.getReserves(); // decimals uint res0 = Res0*(10**data1.decimals()); return((amount*res0)/Res1) * totalSupply(); // } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); if (contractBalance == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } swapTokensForUSDT(contractBalance); } }
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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"USDT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBurnFee","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":"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":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"extemptFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"extemptMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pairAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"getMarketCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsActive","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":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBurnFee","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":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"}],"name":"setDeadAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyDevFee","type":"uint256"},{"internalType":"uint256","name":"_buyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_buyBurnFee","type":"uint256"},{"internalType":"uint256","name":"_sellDevFee","type":"uint256"},{"internalType":"uint256","name":"_sellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_sellBurnFee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxWalletAmount","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":"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":[{"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":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c060405273dac17f958d2ee523a2206206994597c13d831ec760065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061dead60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c5f6101000a81548160ff0219169083151502179055505f600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550348015620000f5575f80fd5b506040518061060001604052806105c98152602001620053546105c991396040518060400160405280600381526020017fe282ae000000000000000000000000000000000000000000000000000000000081525081600390816200015a919062000c3c565b5080600490816200016c919062000c3c565b5050506200018f620001836200054e60201b60201c565b6200055560201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001ba8160016200061860201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000238573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200025e919062000d85565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b8152600401620002bb92919062000dc6565b6020604051808303815f875af1158015620002d8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002fe919062000d85565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034660a05160016200061860201b60201c565b5f601490505f805f601990505f805f6b7e1d5e67493e0adc979800009050606460028262000375919062000e1e565b62000381919062000e95565b600981905550606460028262000398919062000e1e565b620003a4919062000e95565b600b81905550612710600582620003bc919062000e1e565b620003c8919062000e95565b600a8190555086600e8190555085600f8190555084601081905550601054600f54600e54620003f8919062000ecc565b62000404919062000ecc565b600d8190555083601281905550816013819055508260148190555060105460135460125462000434919062000ecc565b62000440919062000ecc565b6011819055507343813fcf69259bc6a58dd7f33f7ba8f896bca5ef60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004bc620004ae620006ff60201b60201c565b60016200072760201b60201c565b620004cf3060016200072760201b60201c565b620004e461dead60016200072760201b60201c565b62000506620004f8620006ff60201b60201c565b60016200061860201b60201c565b620005193060016200061860201b60201c565b6200052e61dead60016200061860201b60201c565b6200054033826200085e60201b60201c565b505050505050505062001055565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006286200054e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200064e620006ff60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200069e9062000f64565b60405180910390fd5b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007376200054e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200075d620006ff60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007ad9062000f64565b60405180910390fd5b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000852919062000fa0565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008c69062001009565b60405180910390fd5b620008e25f8383620009ce60201b60201c565b8060025f828254620008f5919062000ecc565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825462000949919062000ecc565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009af91906200103a565b60405180910390a3620009ca5f8383620009d360201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000a5457607f821691505b60208210810362000a6a5762000a6962000a0f565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000ace7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a91565b62000ada868362000a91565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000b2462000b1e62000b188462000af2565b62000afb565b62000af2565b9050919050565b5f819050919050565b62000b3f8362000b04565b62000b5762000b4e8262000b2b565b84845462000a9d565b825550505050565b5f90565b62000b6d62000b5f565b62000b7a81848462000b34565b505050565b5b8181101562000ba15762000b955f8262000b63565b60018101905062000b80565b5050565b601f82111562000bf05762000bba8162000a70565b62000bc58462000a82565b8101602085101562000bd5578190505b62000bed62000be48562000a82565b83018262000b7f565b50505b505050565b5f82821c905092915050565b5f62000c125f198460080262000bf5565b1980831691505092915050565b5f62000c2c838362000c01565b9150826002028217905092915050565b62000c4782620009d8565b67ffffffffffffffff81111562000c635762000c62620009e2565b5b62000c6f825462000a3c565b62000c7c82828562000ba5565b5f60209050601f83116001811462000cb2575f841562000c9d578287015190505b62000ca9858262000c1f565b86555062000d18565b601f19841662000cc28662000a70565b5f5b8281101562000ceb5784890151825560018201915060208501945060208101905062000cc4565b8683101562000d0b578489015162000d07601f89168262000c01565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000d4f8262000d24565b9050919050565b62000d618162000d43565b811462000d6c575f80fd5b50565b5f8151905062000d7f8162000d56565b92915050565b5f6020828403121562000d9d5762000d9c62000d20565b5b5f62000dac8482850162000d6f565b91505092915050565b62000dc08162000d43565b82525050565b5f60408201905062000ddb5f83018562000db5565b62000dea602083018462000db5565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000e2a8262000af2565b915062000e378362000af2565b925082820262000e478162000af2565b9150828204841483151762000e615762000e6062000df1565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000ea18262000af2565b915062000eae8362000af2565b92508262000ec15762000ec062000e68565b5b828204905092915050565b5f62000ed88262000af2565b915062000ee58362000af2565b925082820190508082111562000f005762000eff62000df1565b5b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f62000f4c60208362000f06565b915062000f598262000f16565b602082019050919050565b5f6020820190508181035f83015262000f7d8162000f3e565b9050919050565b5f8115159050919050565b62000f9a8162000f84565b82525050565b5f60208201905062000fb55f83018462000f8f565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000ff1601f8362000f06565b915062000ffe8262000fbb565b602082019050919050565b5f6020820190508181035f830152620010228162000fe3565b9050919050565b620010348162000af2565b82525050565b5f6020820190506200104f5f83018462001029565b92915050565b60805160a0516142a5620010af5f395f818161105b015281816122b6015281816124f7015281816126110152818161276a01528181612851015261295501525f8181610bff01528181612ea20152612ec901526142a55ff3fe608060405260043610610280575f3560e01c806377975e0b1161014e578063c54e44eb116100c0578063e71dc3f511610079578063e71dc3f514610987578063f11a24d3146109b1578063f2fde38b146109db578063f637434214610a03578063f8b45b0514610a2d578063fecd37ae14610a5757610287565b8063c54e44eb14610867578063c8c8ebe414610891578063d257b34f146108bb578063d85ba063146108f7578063dd62ed3e14610921578063e2f456051461095d57610287565b80639c3b4fdc116101125780639c3b4fdc1461075b578063a0d82dc514610785578063a9059cbb146107af578063adb873bd146107eb578063bbc0c74214610815578063bd9a3b6d1461083f57610287565b806377975e0b1461068d5780638da5cb5b146106b55780638ea5220f146106df578063924de9b71461070957806395d89b411461073157610287565b80632e469139116101f25780636ddd1713116101ab5780636ddd17131461059557806370a08231146105bf57806370d5ae05146105fb578063715018a61461062557806374010ece1461063b578063751039fc1461066357610287565b80632e46913914610477578063313ce5671461049f57806349bd5a5e146104c95780634fbee193146104f35780635a12fd411461052f5780636a486a8e1461056b57610287565b806318160ddd1161024457806318160ddd1461036d5780631816467f146103975780631cce34ee146103bf57806323b872dd146103e957806327a14fc21461042557806327c8f8351461044d57610287565b806306fdde031461028b578063095ea7b3146102b55780630bd05b69146102f157806310d5de53146103075780631694505e1461034357610287565b3661028757005b5f80fd5b348015610296575f80fd5b5061029f610a7f565b6040516102ac9190613004565b60405180910390f35b3480156102c0575f80fd5b506102db60048036038101906102d691906130b5565b610b0f565b6040516102e8919061310d565b60405180910390f35b3480156102fc575f80fd5b50610305610b2c565b005b348015610312575f80fd5b5061032d60048036038101906103289190613126565b610be0565b60405161033a919061310d565b60405180910390f35b34801561034e575f80fd5b50610357610bfd565b60405161036491906131ac565b60405180910390f35b348015610378575f80fd5b50610381610c21565b60405161038e91906131d4565b60405180910390f35b3480156103a2575f80fd5b506103bd60048036038101906103b89190613126565b610c2a565b005b3480156103ca575f80fd5b506103d3610d64565b6040516103e0919061310d565b60405180910390f35b3480156103f4575f80fd5b5061040f600480360381019061040a91906131ed565b610d76565b60405161041c919061310d565b60405180910390f35b348015610430575f80fd5b5061044b6004803603810190610446919061323d565b610e68565b005b348015610458575f80fd5b50610461610f77565b60405161046e9190613277565b60405180910390f35b348015610482575f80fd5b5061049d600480360381019061049891906132ba565b610f7d565b005b3480156104aa575f80fd5b506104b3611051565b6040516104c09190613313565b60405180910390f35b3480156104d4575f80fd5b506104dd611059565b6040516104ea9190613277565b60405180910390f35b3480156104fe575f80fd5b5061051960048036038101906105149190613126565b61107d565b604051610526919061310d565b60405180910390f35b34801561053a575f80fd5b50610555600480360381019061055091906130b5565b6110cf565b60405161056291906131d4565b60405180910390f35b348015610576575f80fd5b5061057f611306565b60405161058c91906131d4565b60405180910390f35b3480156105a0575f80fd5b506105a961130c565b6040516105b6919061310d565b60405180910390f35b3480156105ca575f80fd5b506105e560048036038101906105e09190613126565b61131f565b6040516105f291906131d4565b60405180910390f35b348015610606575f80fd5b5061060f611364565b60405161061c9190613277565b60405180910390f35b348015610630575f80fd5b50610639611389565b005b348015610646575f80fd5b50610661600480360381019061065c919061323d565b611410565b005b34801561066e575f80fd5b5061067761151f565b604051610684919061310d565b60405180910390f35b348015610698575f80fd5b506106b360048036038101906106ae9190613126565b6115bc565b005b3480156106c0575f80fd5b506106c961167b565b6040516106d69190613277565b60405180910390f35b3480156106ea575f80fd5b506106f36116a3565b6040516107009190613277565b60405180910390f35b348015610714575f80fd5b5061072f600480360381019061072a919061332c565b6116c8565b005b34801561073c575f80fd5b50610745611761565b6040516107529190613004565b60405180910390f35b348015610766575f80fd5b5061076f6117f1565b60405161077c91906131d4565b60405180910390f35b348015610790575f80fd5b506107996117f7565b6040516107a691906131d4565b60405180910390f35b3480156107ba575f80fd5b506107d560048036038101906107d091906130b5565b6117fd565b6040516107e2919061310d565b60405180910390f35b3480156107f6575f80fd5b506107ff61181a565b60405161080c91906131d4565b60405180910390f35b348015610820575f80fd5b50610829611820565b604051610836919061310d565b60405180910390f35b34801561084a575f80fd5b5061086560048036038101906108609190613357565b611833565b005b348015610872575f80fd5b5061087b6119b1565b6040516108889190613277565b60405180910390f35b34801561089c575f80fd5b506108a56119d6565b6040516108b291906131d4565b60405180910390f35b3480156108c6575f80fd5b506108e160048036038101906108dc919061323d565b6119dc565b6040516108ee919061310d565b60405180910390f35b348015610902575f80fd5b5061090b611b30565b60405161091891906131d4565b60405180910390f35b34801561092c575f80fd5b50610947600480360381019061094291906133e0565b611b36565b60405161095491906131d4565b60405180910390f35b348015610968575f80fd5b50610971611bb8565b60405161097e91906131d4565b60405180910390f35b348015610992575f80fd5b5061099b611bbe565b6040516109a891906131d4565b60405180910390f35b3480156109bc575f80fd5b506109c5611bc4565b6040516109d291906131d4565b60405180910390f35b3480156109e6575f80fd5b50610a0160048036038101906109fc9190613126565b611bca565b005b348015610a0e575f80fd5b50610a17611cc0565b604051610a2491906131d4565b60405180910390f35b348015610a38575f80fd5b50610a41611cc6565b604051610a4e91906131d4565b60405180910390f35b348015610a62575f80fd5b50610a7d6004803603810190610a7891906132ba565b611ccc565b005b606060038054610a8e9061344b565b80601f0160208091040260200160405190810160405280929190818152602001828054610aba9061344b565b8015610b055780601f10610adc57610100808354040283529160200191610b05565b820191905f5260205f20905b815481529060010190602001808311610ae857829003601f168201915b5050505050905090565b5f610b22610b1b611dee565b8484611df5565b6001905092915050565b610b34611dee565b73ffffffffffffffffffffffffffffffffffffffff16610b5261167b565b73ffffffffffffffffffffffffffffffffffffffff1614610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f906134c5565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6016602052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b610c32611dee565b73ffffffffffffffffffffffffffffffffffffffff16610c5061167b565b73ffffffffffffffffffffffffffffffffffffffff1614610ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d906134c5565b60405180910390fd5b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a38060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c5f9054906101000a900460ff1681565b5f610d82848484611fb8565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610dc9611dee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90613553565b60405180910390fd5b610e5c85610e54611dee565b858403611df5565b60019150509392505050565b610e70611dee565b73ffffffffffffffffffffffffffffffffffffffff16610e8e61167b565b73ffffffffffffffffffffffffffffffffffffffff1614610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb906134c5565b60405180910390fd5b670de0b6b3a76400006103e86005610efa610c21565b610f04919061359e565b610f0e919061360c565b610f18919061360c565b811015610f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f51906136ac565b60405180910390fd5b670de0b6b3a764000081610f6e919061359e565b600b8190555050565b61dead81565b610f85611dee565b73ffffffffffffffffffffffffffffffffffffffff16610fa361167b565b73ffffffffffffffffffffffffffffffffffffffff1614610ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff0906134c5565b60405180910390fd5b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f6012905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f808390505f8173ffffffffffffffffffffffffffffffffffffffff1663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561111e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061114291906136de565b90505f8273ffffffffffffffffffffffffffffffffffffffff1663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561118e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111b291906136de565b90505f808473ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa1580156111ff573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112239190613785565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff1691505f8373ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611292573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112b691906137ff565b600a6112c29190613959565b836112cd919061359e565b90506112d7610c21565b82828a6112e4919061359e565b6112ee919061360c565b6112f8919061359e565b965050505050505092915050565b60115481565b600c60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611391611dee565b73ffffffffffffffffffffffffffffffffffffffff166113af61167b565b73ffffffffffffffffffffffffffffffffffffffff1614611405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fc906134c5565b60405180910390fd5b61140e5f6129d7565b565b611418611dee565b73ffffffffffffffffffffffffffffffffffffffff1661143661167b565b73ffffffffffffffffffffffffffffffffffffffff161461148c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611483906134c5565b60405180910390fd5b670de0b6b3a76400006103e860016114a2610c21565b6114ac919061359e565b6114b6919061360c565b6114c0919061360c565b811015611502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f990613a13565b60405180910390fd5b670de0b6b3a764000081611516919061359e565b60098190555050565b5f611528611dee565b73ffffffffffffffffffffffffffffffffffffffff1661154661167b565b73ffffffffffffffffffffffffffffffffffffffff161461159c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611593906134c5565b60405180910390fd5b5f600c5f6101000a81548160ff0219169083151502179055506001905090565b6115c4611dee565b73ffffffffffffffffffffffffffffffffffffffff166115e261167b565b73ffffffffffffffffffffffffffffffffffffffff1614611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f906134c5565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6116d0611dee565b73ffffffffffffffffffffffffffffffffffffffff166116ee61167b565b73ffffffffffffffffffffffffffffffffffffffff1614611744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173b906134c5565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b6060600480546117709061344b565b80601f016020809104026020016040519081016040528092919081815260200182805461179c9061344b565b80156117e75780601f106117be576101008083540402835291602001916117e7565b820191905f5260205f20905b8154815290600101906020018083116117ca57829003601f168201915b5050505050905090565b600e5481565b60125481565b5f611810611809611dee565b8484611fb8565b6001905092915050565b60145481565b600c60019054906101000a900460ff1681565b61183b611dee565b73ffffffffffffffffffffffffffffffffffffffff1661185961167b565b73ffffffffffffffffffffffffffffffffffffffff16146118af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a6906134c5565b60405180910390fd5b85600e8190555084600f8190555083601081905550826012819055508160138190555080601481905550601054600f54600e546118ec9190613a31565b6118f69190613a31565b600d819055508060135460125461190d9190613a31565b6119179190613a31565b6011819055506014600d541115611963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195a90613aae565b60405180910390fd5b601460115411156119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a090613aae565b60405180910390fd5b505050505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60095481565b5f6119e5611dee565b73ffffffffffffffffffffffffffffffffffffffff16611a0361167b565b73ffffffffffffffffffffffffffffffffffffffff1614611a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a50906134c5565b60405180910390fd5b620186a06001611a67610c21565b611a71919061359e565b611a7b919061360c565b821015611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab490613b3c565b60405180910390fd5b6103e86005611aca610c21565b611ad4919061359e565b611ade919061360c565b821115611b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1790613bca565b60405180910390fd5b81600a8190555060019050919050565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600a5481565b60105481565b600f5481565b611bd2611dee565b73ffffffffffffffffffffffffffffffffffffffff16611bf061167b565b73ffffffffffffffffffffffffffffffffffffffff1614611c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3d906134c5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cab90613c58565b60405180910390fd5b611cbd816129d7565b50565b60135481565b600b5481565b611cd4611dee565b73ffffffffffffffffffffffffffffffffffffffff16611cf261167b565b73ffffffffffffffffffffffffffffffffffffffff1614611d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3f906134c5565b60405180910390fd5b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611de2919061310d565b60405180910390a25050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90613ce6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec890613d74565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611fab91906131d4565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201d90613e02565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208b90613e90565b60405180910390fd5b5f81036120ab576120a683835f612a9a565b6129d2565b600c5f9054906101000a900460ff16156124a7576120c761167b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612135575061210561167b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561216d57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121a7575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121c05750600760149054906101000a900460ff16155b156124a657600c60019054906101000a900460ff166122b45760155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612274575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6122b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122aa90613ef8565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015612356575060165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156123fd576009548111156123a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239790613f86565b60405180910390fd5b600b546123ac8361131f565b826123b79190613a31565b11156123f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ef90613fee565b60405180910390fd5b6124a5565b60165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166124a457600b546124578361131f565b826124629190613a31565b11156124a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249a90613fee565b60405180910390fd5b5b5b5b5b5f6124b13061131f565b90505f600a5482101590508080156124d55750600c60029054906101000a900460ff165b80156124ee5750600760149054906101000a900460ff16155b801561254557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b8015612598575060155f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156125eb575060155f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156126a6576001600760146101000a81548160ff0219169083151502179055505f6126377f000000000000000000000000000000000000000000000000000000000000000060016110cf565b905069152d02c7e14af68000008111156126605760016014819055506009601281905550612682565b6934f086f3b33b68400000811115612681575f6011819055505f600d819055505b5b61268a612d0f565b5f600760146101000a81548160ff021916908315150217905550505b5f600760149054906101000a900460ff1615905060155f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612755575060155f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561275e575f90505b5f805f8084156129bf577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161480156127c457505f601154115b1561284f576127f160646127e36011548b612d5d90919063ffffffff16565b612d7290919063ffffffff16565b935060115460135485612804919061359e565b61280e919061360c565b925060115460125485612821919061359e565b61282b919061360c565b91506011546014548561283e919061359e565b612848919061360c565b9050612933565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff161480156128ab57505f600d54115b15612932576128d860646128ca600d548b612d5d90919063ffffffff16565b612d7290919063ffffffff16565b9350600d54600f54856128eb919061359e565b6128f5919061360c565b9250600d54600e5485612908919061359e565b612912919061360c565b9150600d5460105485612925919061359e565b61292f919061360c565b90505b5b5f841115612947576129468a3086612a9a565b5b5f83111561297b5761297a307f000000000000000000000000000000000000000000000000000000000000000085612a9a565b5b5f8111156129b0576129af3060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612a9a565b5b83886129bc919061400c565b97505b6129ca8a8a8a612a9a565b505050505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aff90613e02565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6d90613e90565b60405180910390fd5b612b81838383612d87565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfb906140af565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254612c929190613a31565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612cf691906131d4565b60405180910390a3612d09848484612d8c565b50505050565b5f612d193061131f565b90505f8103612d285750612d5b565b6014600a54612d37919061359e565b811115612d50576014600a54612d4d919061359e565b90505b612d5981612d91565b505b565b5f8183612d6a919061359e565b905092915050565b5f8183612d7f919061360c565b905092915050565b505050565b505050565b5f600267ffffffffffffffff811115612dad57612dac6140cd565b5b604051908082528060200260200182016040528015612ddb5781602001602082028036833780820191505090505b50905030815f81518110612df257612df16140fa565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612e6257612e616140fa565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612ec7307f000000000000000000000000000000000000000000000000000000000000000084611df5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635c11d795835f8460085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612f49959493929190614217565b5f604051808303815f87803b158015612f60575f80fd5b505af1158015612f72573d5f803e3d5ffd5b505050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612fb1578082015181840152602081019050612f96565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612fd682612f7a565b612fe08185612f84565b9350612ff0818560208601612f94565b612ff981612fbc565b840191505092915050565b5f6020820190508181035f83015261301c8184612fcc565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61305182613028565b9050919050565b61306181613047565b811461306b575f80fd5b50565b5f8135905061307c81613058565b92915050565b5f819050919050565b61309481613082565b811461309e575f80fd5b50565b5f813590506130af8161308b565b92915050565b5f80604083850312156130cb576130ca613024565b5b5f6130d88582860161306e565b92505060206130e9858286016130a1565b9150509250929050565b5f8115159050919050565b613107816130f3565b82525050565b5f6020820190506131205f8301846130fe565b92915050565b5f6020828403121561313b5761313a613024565b5b5f6131488482850161306e565b91505092915050565b5f819050919050565b5f61317461316f61316a84613028565b613151565b613028565b9050919050565b5f6131858261315a565b9050919050565b5f6131968261317b565b9050919050565b6131a68161318c565b82525050565b5f6020820190506131bf5f83018461319d565b92915050565b6131ce81613082565b82525050565b5f6020820190506131e75f8301846131c5565b92915050565b5f805f6060848603121561320457613203613024565b5b5f6132118682870161306e565b93505060206132228682870161306e565b9250506040613233868287016130a1565b9150509250925092565b5f6020828403121561325257613251613024565b5b5f61325f848285016130a1565b91505092915050565b61327181613047565b82525050565b5f60208201905061328a5f830184613268565b92915050565b613299816130f3565b81146132a3575f80fd5b50565b5f813590506132b481613290565b92915050565b5f80604083850312156132d0576132cf613024565b5b5f6132dd8582860161306e565b92505060206132ee858286016132a6565b9150509250929050565b5f60ff82169050919050565b61330d816132f8565b82525050565b5f6020820190506133265f830184613304565b92915050565b5f6020828403121561334157613340613024565b5b5f61334e848285016132a6565b91505092915050565b5f805f805f8060c0878903121561337157613370613024565b5b5f61337e89828a016130a1565b965050602061338f89828a016130a1565b95505060406133a089828a016130a1565b94505060606133b189828a016130a1565b93505060806133c289828a016130a1565b92505060a06133d389828a016130a1565b9150509295509295509295565b5f80604083850312156133f6576133f5613024565b5b5f6134038582860161306e565b92505060206134148582860161306e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061346257607f821691505b6020821081036134755761347461341e565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6134af602083612f84565b91506134ba8261347b565b602082019050919050565b5f6020820190508181035f8301526134dc816134a3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f61353d602883612f84565b9150613548826134e3565b604082019050919050565b5f6020820190508181035f83015261356a81613531565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6135a882613082565b91506135b383613082565b92508282026135c181613082565b915082820484148315176135d8576135d7613571565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61361682613082565b915061362183613082565b925082613631576136306135df565b5b828204905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b5f613696602483612f84565b91506136a18261363c565b604082019050919050565b5f6020820190508181035f8301526136c38161368a565b9050919050565b5f815190506136d881613058565b92915050565b5f602082840312156136f3576136f2613024565b5b5f613700848285016136ca565b91505092915050565b5f6dffffffffffffffffffffffffffff82169050919050565b61372b81613709565b8114613735575f80fd5b50565b5f8151905061374681613722565b92915050565b5f63ffffffff82169050919050565b6137648161374c565b811461376e575f80fd5b50565b5f8151905061377f8161375b565b92915050565b5f805f6060848603121561379c5761379b613024565b5b5f6137a986828701613738565b93505060206137ba86828701613738565b92505060406137cb86828701613771565b9150509250925092565b6137de816132f8565b81146137e8575f80fd5b50565b5f815190506137f9816137d5565b92915050565b5f6020828403121561381457613813613024565b5b5f613821848285016137eb565b91505092915050565b5f8160011c9050919050565b5f808291508390505b600185111561387f5780860481111561385b5761385a613571565b5b600185161561386a5780820291505b80810290506138788561382a565b945061383f565b94509492505050565b5f826138975760019050613952565b816138a4575f9050613952565b81600181146138ba57600281146138c4576138f3565b6001915050613952565b60ff8411156138d6576138d5613571565b5b8360020a9150848211156138ed576138ec613571565b5b50613952565b5060208310610133831016604e8410600b84101617156139285782820a90508381111561392357613922613571565b5b613952565b6139358484846001613836565b9250905081840481111561394c5761394b613571565b5b81810290505b9392505050565b5f61396382613082565b915061396e836132f8565b925061399b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613888565b905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b5f6139fd602f83612f84565b9150613a08826139a3565b604082019050919050565b5f6020820190508181035f830152613a2a816139f1565b9050919050565b5f613a3b82613082565b9150613a4683613082565b9250828201905080821115613a5e57613a5d613571565b5b92915050565b7f4d757374206b656570206665657320617420323025206f72206c6573730000005f82015250565b5f613a98601d83612f84565b9150613aa382613a64565b602082019050919050565b5f6020820190508181035f830152613ac581613a8c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f613b26603583612f84565b9150613b3182613acc565b604082019050919050565b5f6020820190508181035f830152613b5381613b1a565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f613bb4603483612f84565b9150613bbf82613b5a565b604082019050919050565b5f6020820190508181035f830152613be181613ba8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613c42602683612f84565b9150613c4d82613be8565b604082019050919050565b5f6020820190508181035f830152613c6f81613c36565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613cd0602483612f84565b9150613cdb82613c76565b604082019050919050565b5f6020820190508181035f830152613cfd81613cc4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613d5e602283612f84565b9150613d6982613d04565b604082019050919050565b5f6020820190508181035f830152613d8b81613d52565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613dec602583612f84565b9150613df782613d92565b604082019050919050565b5f6020820190508181035f830152613e1981613de0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613e7a602383612f84565b9150613e8582613e20565b604082019050919050565b5f6020820190508181035f830152613ea781613e6e565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613ee2601683612f84565b9150613eed82613eae565b602082019050919050565b5f6020820190508181035f830152613f0f81613ed6565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f613f70603583612f84565b9150613f7b82613f16565b604082019050919050565b5f6020820190508181035f830152613f9d81613f64565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f613fd8601383612f84565b9150613fe382613fa4565b602082019050919050565b5f6020820190508181035f83015261400581613fcc565b9050919050565b5f61401682613082565b915061402183613082565b925082820390508181111561403957614038613571565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f614099602683612f84565b91506140a48261403f565b604082019050919050565b5f6020820190508181035f8301526140c68161408d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f61414a61414561414084614127565b613151565b613082565b9050919050565b61415a81614130565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61419281613047565b82525050565b5f6141a38383614189565b60208301905092915050565b5f602082019050919050565b5f6141c582614160565b6141cf818561416a565b93506141da8361417a565b805f5b8381101561420a5781516141f18882614198565b97506141fc836141af565b9250506001810190506141dd565b5085935050505092915050565b5f60a08201905061422a5f8301886131c5565b6142376020830187614151565b818103604083015261424981866141bb565b90506142586060830185613268565b61426560808301846131c5565b969550505050505056fea264697066735822122060ab1d31b0afe9638297f3f5f21ed2bc69abc90135e4604d43ce27739c1f06a264736f6c63430008140033e2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9f09f9fa9e2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88f0ae2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9e2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88f0ae2ac9cefb88fe2ac9cefb88fe2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9e2ac9cefb88fe2ac9cefb88fe2ac9cefb88f0ae2ac9cefb88fe2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9e2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9e2ac9cefb88fe2ac9cefb88f0ae2ac9cefb88fe2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9e2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9e2ac9cefb88fe2ac9cefb88f0ae2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9e2ac9cefb88fe2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9e2ac9cefb88f0ae2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9e2ac9cefb88fe2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9e2ac9cefb88f0af09f9fa9f09f9fa9f09f9fa9e2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9f09f9fa9e2ac9cefb88fe2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9f09f9fa9e2ac9cefb88ff09f9fa9f09f9fa9f09f9fa90af09f9fa9f09f9fa9f09f9fa9f09f9fa9e2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9e2ac9cefb88fe2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9e2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9f09f9fa90af09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9e2ac9cefb88fe2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa90ae2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9e2ac9cefb88fe2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9e2ac9cefb88f0ae2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9e2ac9cefb88fe2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9e2ac9c0ae2ac9cefb88fe2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9e2ac9cefb88fe2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9e2ac9cefb88f0ae2ac9cefb88fe2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9e2ac9cefb88fe2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9e2ac9cefb88fe2ac9cefb88f0ae2ac9cefb88fe2ac9cefb88fe2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9e2ac9cefb88fe2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9e2ac9cefb88fe2ac9cefb88fe2ac9cefb88f0ae2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9f09f9fa9e2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88f0ae2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88ff09f9fa9f09f9fa9f09f9fa9f09f9fa9e2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88fe2ac9cefb88f
Deployed Bytecode
0x608060405260043610610280575f3560e01c806377975e0b1161014e578063c54e44eb116100c0578063e71dc3f511610079578063e71dc3f514610987578063f11a24d3146109b1578063f2fde38b146109db578063f637434214610a03578063f8b45b0514610a2d578063fecd37ae14610a5757610287565b8063c54e44eb14610867578063c8c8ebe414610891578063d257b34f146108bb578063d85ba063146108f7578063dd62ed3e14610921578063e2f456051461095d57610287565b80639c3b4fdc116101125780639c3b4fdc1461075b578063a0d82dc514610785578063a9059cbb146107af578063adb873bd146107eb578063bbc0c74214610815578063bd9a3b6d1461083f57610287565b806377975e0b1461068d5780638da5cb5b146106b55780638ea5220f146106df578063924de9b71461070957806395d89b411461073157610287565b80632e469139116101f25780636ddd1713116101ab5780636ddd17131461059557806370a08231146105bf57806370d5ae05146105fb578063715018a61461062557806374010ece1461063b578063751039fc1461066357610287565b80632e46913914610477578063313ce5671461049f57806349bd5a5e146104c95780634fbee193146104f35780635a12fd411461052f5780636a486a8e1461056b57610287565b806318160ddd1161024457806318160ddd1461036d5780631816467f146103975780631cce34ee146103bf57806323b872dd146103e957806327a14fc21461042557806327c8f8351461044d57610287565b806306fdde031461028b578063095ea7b3146102b55780630bd05b69146102f157806310d5de53146103075780631694505e1461034357610287565b3661028757005b5f80fd5b348015610296575f80fd5b5061029f610a7f565b6040516102ac9190613004565b60405180910390f35b3480156102c0575f80fd5b506102db60048036038101906102d691906130b5565b610b0f565b6040516102e8919061310d565b60405180910390f35b3480156102fc575f80fd5b50610305610b2c565b005b348015610312575f80fd5b5061032d60048036038101906103289190613126565b610be0565b60405161033a919061310d565b60405180910390f35b34801561034e575f80fd5b50610357610bfd565b60405161036491906131ac565b60405180910390f35b348015610378575f80fd5b50610381610c21565b60405161038e91906131d4565b60405180910390f35b3480156103a2575f80fd5b506103bd60048036038101906103b89190613126565b610c2a565b005b3480156103ca575f80fd5b506103d3610d64565b6040516103e0919061310d565b60405180910390f35b3480156103f4575f80fd5b5061040f600480360381019061040a91906131ed565b610d76565b60405161041c919061310d565b60405180910390f35b348015610430575f80fd5b5061044b6004803603810190610446919061323d565b610e68565b005b348015610458575f80fd5b50610461610f77565b60405161046e9190613277565b60405180910390f35b348015610482575f80fd5b5061049d600480360381019061049891906132ba565b610f7d565b005b3480156104aa575f80fd5b506104b3611051565b6040516104c09190613313565b60405180910390f35b3480156104d4575f80fd5b506104dd611059565b6040516104ea9190613277565b60405180910390f35b3480156104fe575f80fd5b5061051960048036038101906105149190613126565b61107d565b604051610526919061310d565b60405180910390f35b34801561053a575f80fd5b50610555600480360381019061055091906130b5565b6110cf565b60405161056291906131d4565b60405180910390f35b348015610576575f80fd5b5061057f611306565b60405161058c91906131d4565b60405180910390f35b3480156105a0575f80fd5b506105a961130c565b6040516105b6919061310d565b60405180910390f35b3480156105ca575f80fd5b506105e560048036038101906105e09190613126565b61131f565b6040516105f291906131d4565b60405180910390f35b348015610606575f80fd5b5061060f611364565b60405161061c9190613277565b60405180910390f35b348015610630575f80fd5b50610639611389565b005b348015610646575f80fd5b50610661600480360381019061065c919061323d565b611410565b005b34801561066e575f80fd5b5061067761151f565b604051610684919061310d565b60405180910390f35b348015610698575f80fd5b506106b360048036038101906106ae9190613126565b6115bc565b005b3480156106c0575f80fd5b506106c961167b565b6040516106d69190613277565b60405180910390f35b3480156106ea575f80fd5b506106f36116a3565b6040516107009190613277565b60405180910390f35b348015610714575f80fd5b5061072f600480360381019061072a919061332c565b6116c8565b005b34801561073c575f80fd5b50610745611761565b6040516107529190613004565b60405180910390f35b348015610766575f80fd5b5061076f6117f1565b60405161077c91906131d4565b60405180910390f35b348015610790575f80fd5b506107996117f7565b6040516107a691906131d4565b60405180910390f35b3480156107ba575f80fd5b506107d560048036038101906107d091906130b5565b6117fd565b6040516107e2919061310d565b60405180910390f35b3480156107f6575f80fd5b506107ff61181a565b60405161080c91906131d4565b60405180910390f35b348015610820575f80fd5b50610829611820565b604051610836919061310d565b60405180910390f35b34801561084a575f80fd5b5061086560048036038101906108609190613357565b611833565b005b348015610872575f80fd5b5061087b6119b1565b6040516108889190613277565b60405180910390f35b34801561089c575f80fd5b506108a56119d6565b6040516108b291906131d4565b60405180910390f35b3480156108c6575f80fd5b506108e160048036038101906108dc919061323d565b6119dc565b6040516108ee919061310d565b60405180910390f35b348015610902575f80fd5b5061090b611b30565b60405161091891906131d4565b60405180910390f35b34801561092c575f80fd5b50610947600480360381019061094291906133e0565b611b36565b60405161095491906131d4565b60405180910390f35b348015610968575f80fd5b50610971611bb8565b60405161097e91906131d4565b60405180910390f35b348015610992575f80fd5b5061099b611bbe565b6040516109a891906131d4565b60405180910390f35b3480156109bc575f80fd5b506109c5611bc4565b6040516109d291906131d4565b60405180910390f35b3480156109e6575f80fd5b50610a0160048036038101906109fc9190613126565b611bca565b005b348015610a0e575f80fd5b50610a17611cc0565b604051610a2491906131d4565b60405180910390f35b348015610a38575f80fd5b50610a41611cc6565b604051610a4e91906131d4565b60405180910390f35b348015610a62575f80fd5b50610a7d6004803603810190610a7891906132ba565b611ccc565b005b606060038054610a8e9061344b565b80601f0160208091040260200160405190810160405280929190818152602001828054610aba9061344b565b8015610b055780601f10610adc57610100808354040283529160200191610b05565b820191905f5260205f20905b815481529060010190602001808311610ae857829003601f168201915b5050505050905090565b5f610b22610b1b611dee565b8484611df5565b6001905092915050565b610b34611dee565b73ffffffffffffffffffffffffffffffffffffffff16610b5261167b565b73ffffffffffffffffffffffffffffffffffffffff1614610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f906134c5565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6016602052805f5260405f205f915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b610c32611dee565b73ffffffffffffffffffffffffffffffffffffffff16610c5061167b565b73ffffffffffffffffffffffffffffffffffffffff1614610ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9d906134c5565b60405180910390fd5b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a38060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c5f9054906101000a900460ff1681565b5f610d82848484611fb8565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610dc9611dee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90613553565b60405180910390fd5b610e5c85610e54611dee565b858403611df5565b60019150509392505050565b610e70611dee565b73ffffffffffffffffffffffffffffffffffffffff16610e8e61167b565b73ffffffffffffffffffffffffffffffffffffffff1614610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb906134c5565b60405180910390fd5b670de0b6b3a76400006103e86005610efa610c21565b610f04919061359e565b610f0e919061360c565b610f18919061360c565b811015610f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f51906136ac565b60405180910390fd5b670de0b6b3a764000081610f6e919061359e565b600b8190555050565b61dead81565b610f85611dee565b73ffffffffffffffffffffffffffffffffffffffff16610fa361167b565b73ffffffffffffffffffffffffffffffffffffffff1614610ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff0906134c5565b60405180910390fd5b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f6012905090565b7f00000000000000000000000035689c41fbf282efaa5dda3e712d5e6ff5acc93581565b5f60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f808390505f8173ffffffffffffffffffffffffffffffffffffffff1663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561111e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061114291906136de565b90505f8273ffffffffffffffffffffffffffffffffffffffff1663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561118e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111b291906136de565b90505f808473ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa1580156111ff573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112239190613785565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff1691505f8373ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611292573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112b691906137ff565b600a6112c29190613959565b836112cd919061359e565b90506112d7610c21565b82828a6112e4919061359e565b6112ee919061360c565b6112f8919061359e565b965050505050505092915050565b60115481565b600c60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611391611dee565b73ffffffffffffffffffffffffffffffffffffffff166113af61167b565b73ffffffffffffffffffffffffffffffffffffffff1614611405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fc906134c5565b60405180910390fd5b61140e5f6129d7565b565b611418611dee565b73ffffffffffffffffffffffffffffffffffffffff1661143661167b565b73ffffffffffffffffffffffffffffffffffffffff161461148c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611483906134c5565b60405180910390fd5b670de0b6b3a76400006103e860016114a2610c21565b6114ac919061359e565b6114b6919061360c565b6114c0919061360c565b811015611502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f990613a13565b60405180910390fd5b670de0b6b3a764000081611516919061359e565b60098190555050565b5f611528611dee565b73ffffffffffffffffffffffffffffffffffffffff1661154661167b565b73ffffffffffffffffffffffffffffffffffffffff161461159c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611593906134c5565b60405180910390fd5b5f600c5f6101000a81548160ff0219169083151502179055506001905090565b6115c4611dee565b73ffffffffffffffffffffffffffffffffffffffff166115e261167b565b73ffffffffffffffffffffffffffffffffffffffff1614611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f906134c5565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6116d0611dee565b73ffffffffffffffffffffffffffffffffffffffff166116ee61167b565b73ffffffffffffffffffffffffffffffffffffffff1614611744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173b906134c5565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b6060600480546117709061344b565b80601f016020809104026020016040519081016040528092919081815260200182805461179c9061344b565b80156117e75780601f106117be576101008083540402835291602001916117e7565b820191905f5260205f20905b8154815290600101906020018083116117ca57829003601f168201915b5050505050905090565b600e5481565b60125481565b5f611810611809611dee565b8484611fb8565b6001905092915050565b60145481565b600c60019054906101000a900460ff1681565b61183b611dee565b73ffffffffffffffffffffffffffffffffffffffff1661185961167b565b73ffffffffffffffffffffffffffffffffffffffff16146118af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a6906134c5565b60405180910390fd5b85600e8190555084600f8190555083601081905550826012819055508160138190555080601481905550601054600f54600e546118ec9190613a31565b6118f69190613a31565b600d819055508060135460125461190d9190613a31565b6119179190613a31565b6011819055506014600d541115611963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195a90613aae565b60405180910390fd5b601460115411156119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a090613aae565b60405180910390fd5b505050505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60095481565b5f6119e5611dee565b73ffffffffffffffffffffffffffffffffffffffff16611a0361167b565b73ffffffffffffffffffffffffffffffffffffffff1614611a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a50906134c5565b60405180910390fd5b620186a06001611a67610c21565b611a71919061359e565b611a7b919061360c565b821015611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab490613b3c565b60405180910390fd5b6103e86005611aca610c21565b611ad4919061359e565b611ade919061360c565b821115611b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1790613bca565b60405180910390fd5b81600a8190555060019050919050565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600a5481565b60105481565b600f5481565b611bd2611dee565b73ffffffffffffffffffffffffffffffffffffffff16611bf061167b565b73ffffffffffffffffffffffffffffffffffffffff1614611c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3d906134c5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cab90613c58565b60405180910390fd5b611cbd816129d7565b50565b60135481565b600b5481565b611cd4611dee565b73ffffffffffffffffffffffffffffffffffffffff16611cf261167b565b73ffffffffffffffffffffffffffffffffffffffff1614611d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3f906134c5565b60405180910390fd5b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611de2919061310d565b60405180910390a25050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90613ce6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec890613d74565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611fab91906131d4565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201d90613e02565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208b90613e90565b60405180910390fd5b5f81036120ab576120a683835f612a9a565b6129d2565b600c5f9054906101000a900460ff16156124a7576120c761167b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612135575061210561167b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561216d57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121a7575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121c05750600760149054906101000a900460ff16155b156124a657600c60019054906101000a900460ff166122b45760155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612274575060155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6122b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122aa90613ef8565b60405180910390fd5b5b7f00000000000000000000000035689c41fbf282efaa5dda3e712d5e6ff5acc93573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015612356575060165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156123fd576009548111156123a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239790613f86565b60405180910390fd5b600b546123ac8361131f565b826123b79190613a31565b11156123f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ef90613fee565b60405180910390fd5b6124a5565b60165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166124a457600b546124578361131f565b826124629190613a31565b11156124a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249a90613fee565b60405180910390fd5b5b5b5b5b5f6124b13061131f565b90505f600a5482101590508080156124d55750600c60029054906101000a900460ff165b80156124ee5750600760149054906101000a900460ff16155b801561254557507f00000000000000000000000035689c41fbf282efaa5dda3e712d5e6ff5acc93573ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b8015612598575060155f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156125eb575060155f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156126a6576001600760146101000a81548160ff0219169083151502179055505f6126377f00000000000000000000000035689c41fbf282efaa5dda3e712d5e6ff5acc93560016110cf565b905069152d02c7e14af68000008111156126605760016014819055506009601281905550612682565b6934f086f3b33b68400000811115612681575f6011819055505f600d819055505b5b61268a612d0f565b5f600760146101000a81548160ff021916908315150217905550505b5f600760149054906101000a900460ff1615905060155f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612755575060155f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561275e575f90505b5f805f8084156129bf577f00000000000000000000000035689c41fbf282efaa5dda3e712d5e6ff5acc93573ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161480156127c457505f601154115b1561284f576127f160646127e36011548b612d5d90919063ffffffff16565b612d7290919063ffffffff16565b935060115460135485612804919061359e565b61280e919061360c565b925060115460125485612821919061359e565b61282b919061360c565b91506011546014548561283e919061359e565b612848919061360c565b9050612933565b7f00000000000000000000000035689c41fbf282efaa5dda3e712d5e6ff5acc93573ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff161480156128ab57505f600d54115b15612932576128d860646128ca600d548b612d5d90919063ffffffff16565b612d7290919063ffffffff16565b9350600d54600f54856128eb919061359e565b6128f5919061360c565b9250600d54600e5485612908919061359e565b612912919061360c565b9150600d5460105485612925919061359e565b61292f919061360c565b90505b5b5f841115612947576129468a3086612a9a565b5b5f83111561297b5761297a307f00000000000000000000000035689c41fbf282efaa5dda3e712d5e6ff5acc93585612a9a565b5b5f8111156129b0576129af3060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612a9a565b5b83886129bc919061400c565b97505b6129ca8a8a8a612a9a565b505050505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aff90613e02565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6d90613e90565b60405180910390fd5b612b81838383612d87565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfb906140af565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254612c929190613a31565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612cf691906131d4565b60405180910390a3612d09848484612d8c565b50505050565b5f612d193061131f565b90505f8103612d285750612d5b565b6014600a54612d37919061359e565b811115612d50576014600a54612d4d919061359e565b90505b612d5981612d91565b505b565b5f8183612d6a919061359e565b905092915050565b5f8183612d7f919061360c565b905092915050565b505050565b505050565b5f600267ffffffffffffffff811115612dad57612dac6140cd565b5b604051908082528060200260200182016040528015612ddb5781602001602082028036833780820191505090505b50905030815f81518110612df257612df16140fa565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612e6257612e616140fa565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612ec7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611df5565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d795835f8460085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612f49959493929190614217565b5f604051808303815f87803b158015612f60575f80fd5b505af1158015612f72573d5f803e3d5ffd5b505050505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612fb1578082015181840152602081019050612f96565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612fd682612f7a565b612fe08185612f84565b9350612ff0818560208601612f94565b612ff981612fbc565b840191505092915050565b5f6020820190508181035f83015261301c8184612fcc565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61305182613028565b9050919050565b61306181613047565b811461306b575f80fd5b50565b5f8135905061307c81613058565b92915050565b5f819050919050565b61309481613082565b811461309e575f80fd5b50565b5f813590506130af8161308b565b92915050565b5f80604083850312156130cb576130ca613024565b5b5f6130d88582860161306e565b92505060206130e9858286016130a1565b9150509250929050565b5f8115159050919050565b613107816130f3565b82525050565b5f6020820190506131205f8301846130fe565b92915050565b5f6020828403121561313b5761313a613024565b5b5f6131488482850161306e565b91505092915050565b5f819050919050565b5f61317461316f61316a84613028565b613151565b613028565b9050919050565b5f6131858261315a565b9050919050565b5f6131968261317b565b9050919050565b6131a68161318c565b82525050565b5f6020820190506131bf5f83018461319d565b92915050565b6131ce81613082565b82525050565b5f6020820190506131e75f8301846131c5565b92915050565b5f805f6060848603121561320457613203613024565b5b5f6132118682870161306e565b93505060206132228682870161306e565b9250506040613233868287016130a1565b9150509250925092565b5f6020828403121561325257613251613024565b5b5f61325f848285016130a1565b91505092915050565b61327181613047565b82525050565b5f60208201905061328a5f830184613268565b92915050565b613299816130f3565b81146132a3575f80fd5b50565b5f813590506132b481613290565b92915050565b5f80604083850312156132d0576132cf613024565b5b5f6132dd8582860161306e565b92505060206132ee858286016132a6565b9150509250929050565b5f60ff82169050919050565b61330d816132f8565b82525050565b5f6020820190506133265f830184613304565b92915050565b5f6020828403121561334157613340613024565b5b5f61334e848285016132a6565b91505092915050565b5f805f805f8060c0878903121561337157613370613024565b5b5f61337e89828a016130a1565b965050602061338f89828a016130a1565b95505060406133a089828a016130a1565b94505060606133b189828a016130a1565b93505060806133c289828a016130a1565b92505060a06133d389828a016130a1565b9150509295509295509295565b5f80604083850312156133f6576133f5613024565b5b5f6134038582860161306e565b92505060206134148582860161306e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061346257607f821691505b6020821081036134755761347461341e565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6134af602083612f84565b91506134ba8261347b565b602082019050919050565b5f6020820190508181035f8301526134dc816134a3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f61353d602883612f84565b9150613548826134e3565b604082019050919050565b5f6020820190508181035f83015261356a81613531565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6135a882613082565b91506135b383613082565b92508282026135c181613082565b915082820484148315176135d8576135d7613571565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61361682613082565b915061362183613082565b925082613631576136306135df565b5b828204905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e205f8201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b5f613696602483612f84565b91506136a18261363c565b604082019050919050565b5f6020820190508181035f8301526136c38161368a565b9050919050565b5f815190506136d881613058565b92915050565b5f602082840312156136f3576136f2613024565b5b5f613700848285016136ca565b91505092915050565b5f6dffffffffffffffffffffffffffff82169050919050565b61372b81613709565b8114613735575f80fd5b50565b5f8151905061374681613722565b92915050565b5f63ffffffff82169050919050565b6137648161374c565b811461376e575f80fd5b50565b5f8151905061377f8161375b565b92915050565b5f805f6060848603121561379c5761379b613024565b5b5f6137a986828701613738565b93505060206137ba86828701613738565b92505060406137cb86828701613771565b9150509250925092565b6137de816132f8565b81146137e8575f80fd5b50565b5f815190506137f9816137d5565b92915050565b5f6020828403121561381457613813613024565b5b5f613821848285016137eb565b91505092915050565b5f8160011c9050919050565b5f808291508390505b600185111561387f5780860481111561385b5761385a613571565b5b600185161561386a5780820291505b80810290506138788561382a565b945061383f565b94509492505050565b5f826138975760019050613952565b816138a4575f9050613952565b81600181146138ba57600281146138c4576138f3565b6001915050613952565b60ff8411156138d6576138d5613571565b5b8360020a9150848211156138ed576138ec613571565b5b50613952565b5060208310610133831016604e8410600b84101617156139285782820a90508381111561392357613922613571565b5b613952565b6139358484846001613836565b9250905081840481111561394c5761394b613571565b5b81810290505b9392505050565b5f61396382613082565b915061396e836132f8565b925061399b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613888565b905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b5f6139fd602f83612f84565b9150613a08826139a3565b604082019050919050565b5f6020820190508181035f830152613a2a816139f1565b9050919050565b5f613a3b82613082565b9150613a4683613082565b9250828201905080821115613a5e57613a5d613571565b5b92915050565b7f4d757374206b656570206665657320617420323025206f72206c6573730000005f82015250565b5f613a98601d83612f84565b9150613aa382613a64565b602082019050919050565b5f6020820190508181035f830152613ac581613a8c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f613b26603583612f84565b9150613b3182613acc565b604082019050919050565b5f6020820190508181035f830152613b5381613b1a565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f613bb4603483612f84565b9150613bbf82613b5a565b604082019050919050565b5f6020820190508181035f830152613be181613ba8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613c42602683612f84565b9150613c4d82613be8565b604082019050919050565b5f6020820190508181035f830152613c6f81613c36565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613cd0602483612f84565b9150613cdb82613c76565b604082019050919050565b5f6020820190508181035f830152613cfd81613cc4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613d5e602283612f84565b9150613d6982613d04565b604082019050919050565b5f6020820190508181035f830152613d8b81613d52565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613dec602583612f84565b9150613df782613d92565b604082019050919050565b5f6020820190508181035f830152613e1981613de0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613e7a602383612f84565b9150613e8582613e20565b604082019050919050565b5f6020820190508181035f830152613ea781613e6e565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613ee2601683612f84565b9150613eed82613eae565b602082019050919050565b5f6020820190508181035f830152613f0f81613ed6565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f613f70603583612f84565b9150613f7b82613f16565b604082019050919050565b5f6020820190508181035f830152613f9d81613f64565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f613fd8601383612f84565b9150613fe382613fa4565b602082019050919050565b5f6020820190508181035f83015261400581613fcc565b9050919050565b5f61401682613082565b915061402183613082565b925082820390508181111561403957614038613571565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f614099602683612f84565b91506140a48261403f565b604082019050919050565b5f6020820190508181035f8301526140c68161408d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f61414a61414561414084614127565b613151565b613082565b9050919050565b61415a81614130565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61419281613047565b82525050565b5f6141a38383614189565b60208301905092915050565b5f602082019050919050565b5f6141c582614160565b6141cf818561416a565b93506141da8361417a565b805f5b8381101561420a5781516141f18882614198565b97506141fc836141af565b9250506001810190506141dd565b5085935050505092915050565b5f60a08201905061422a5f8301886131c5565b6142376020830187614151565b818103604083015261424981866141bb565b90506142586060830185613268565b61426560808301846131c5565b969550505050505056fea264697066735822122060ab1d31b0afe9638297f3f5f21ed2bc69abc90135e4604d43ce27739c1f06a264736f6c63430008140033
Deployed Bytecode Sourcemap
24788:13780:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10174:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12341:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29655:114;;;;;;;;;;;;;:::i;:::-;;25860:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24862:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11294:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32479:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25323:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12992:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30898:253;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24965:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31159:154;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11136:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24920:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32678:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37786:427;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25578:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25401:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11465:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25096:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5486:103;;;;;;;;;;;;;:::i;:::-;;30618:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29821:119;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29948:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4835:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25175:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31409:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10393:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25474:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25613:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11805:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25683:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25361:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31517:753;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25025:64;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25208:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30113:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25440:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12043:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25250:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25542:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25505:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5744:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25645:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25290:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32294:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10174:100;10228:13;10261:5;10254:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10174:100;:::o;12341:169::-;12424:4;12441:39;12450:12;:10;:12::i;:::-;12464:7;12473:6;12441:8;:39::i;:::-;12498:4;12491:11;;12341:169;;;;:::o;29655:114::-;5066:12;:10;:12::i;:::-;5055:23;;:7;:5;:7::i;:::-;:23;;;5047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29728:4:::1;29712:13;;:20;;;;;;;;;;;;;;;;;;29757:4;29743:11;;:18;;;;;;;;;;;;;;;;;;29655:114::o:0;25860:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;24862:51::-;;;:::o;11294:108::-;11355:7;11382:12;;11375:19;;11294:108;:::o;32479:189::-;5066:12;:10;:12::i;:::-;5055:23;;:7;:5;:7::i;:::-;:23;;;5047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32615:9:::1;;;;;;;;;;;32584:41;;32601:12;32584:41;;;;;;;;;;;;32648:12;32636:9;;:24;;;;;;;;;;;;;;;;;;32479:189:::0;:::o;25323:31::-;;;;;;;;;;;;;:::o;12992:492::-;13132:4;13149:36;13159:6;13167:9;13178:6;13149:9;:36::i;:::-;13198:24;13225:11;:19;13237:6;13225:19;;;;;;;;;;;;;;;:33;13245:12;:10;:12::i;:::-;13225:33;;;;;;;;;;;;;;;;13198:60;;13297:6;13277:16;:26;;13269:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;13384:57;13393:6;13401:12;:10;:12::i;:::-;13434:6;13415:16;:25;13384:8;:57::i;:::-;13472:4;13465:11;;;12992:492;;;;;:::o;30898:253::-;5066:12;:10;:12::i;:::-;5055:23;;:7;:5;:7::i;:::-;:23;;;5047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31035:4:::1;31027;31022:1;31006:13;:11;:13::i;:::-;:17;;;;:::i;:::-;31005:26;;;;:::i;:::-;31004:35;;;;:::i;:::-;30994:6;:45;;30972:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;31136:6;31126;:17;;;;:::i;:::-;31114:9;:29;;;;30898:253:::0;:::o;24965:53::-;25011:6;24965:53;:::o;31159:154::-;5066:12;:10;:12::i;:::-;5055:23;;:7;:5;:7::i;:::-;:23;;;5047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31301:4:::1;31259:31;:39;31291:6;31259:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;31159:154:::0;;:::o;11136:93::-;11194:5;11219:2;11212:9;;11136:93;:::o;24920:38::-;;;:::o;32678:126::-;32744:4;32768:19;:28;32788:7;32768:28;;;;;;;;;;;;;;;;;;;;;;;;;32761:35;;32678:126;;;:::o;37786:427::-;37862:4;37879:19;37916:11;37879:49;;37935:13;37958:4;:11;;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37935:37;;37979:20;38017:4;:11;;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37979:52;;38041:9;38052;38066:4;:16;;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38040:44;;;;;;;;;38114:9;38136:5;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38132:2;:20;;;;:::i;:::-;38126:4;:27;;;;:::i;:::-;38114:39;;38189:13;:11;:13::i;:::-;38181:4;38175;38168:6;:11;;;;:::i;:::-;38167:18;;;;:::i;:::-;38166:36;;;;:::i;:::-;38160:42;;;;;;;;37786:427;;;;:::o;25578:28::-;;;;:::o;25401:30::-;;;;;;;;;;;;;:::o;11465:127::-;11539:7;11566:9;:18;11576:7;11566:18;;;;;;;;;;;;;;;;11559:25;;11465:127;;;:::o;25096:40::-;;;;;;;;;;;;;:::o;5486:103::-;5066:12;:10;:12::i;:::-;5055:23;;:7;:5;:7::i;:::-;:23;;;5047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5551:30:::1;5578:1;5551:18;:30::i;:::-;5486:103::o:0;30618:272::-;5066:12;:10;:12::i;:::-;5055:23;;:7;:5;:7::i;:::-;:23;;;5047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30752:4:::1;30744;30739:1;30723:13;:11;:13::i;:::-;:17;;;;:::i;:::-;30722:26;;;;:::i;:::-;30721:35;;;;:::i;:::-;30711:6;:45;;30689:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;30875:6;30865;:17;;;;:::i;:::-;30842:20;:40;;;;30618:272:::0;:::o;29821:119::-;29873:4;5066:12;:10;:12::i;:::-;5055:23;;:7;:5;:7::i;:::-;:23;;;5047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29905:5:::1;29890:12;;:20;;;;;;;;;;;;;;;;;;29928:4;29921:11;;29821:119:::0;:::o;29948:95::-;5066:12;:10;:12::i;:::-;5055:23;;:7;:5;:7::i;:::-;:23;;;5047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30031:4:::1;30017:11;;:18;;;;;;;;;;;;;;;;;;29948:95:::0;:::o;4835:87::-;4881:7;4908:6;;;;;;;;;;;4901:13;;4835:87;:::o;25175:24::-;;;;;;;;;;;;;:::o;31409:100::-;5066:12;:10;:12::i;:::-;5055:23;;:7;:5;:7::i;:::-;:23;;;5047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31494:7:::1;31480:11;;:21;;;;;;;;;;;;;;;;;;31409:100:::0;:::o;10393:104::-;10449:13;10482:7;10475:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10393:104;:::o;25474:24::-;;;;:::o;25613:25::-;;;;:::o;11805:175::-;11891:4;11908:42;11918:12;:10;:12::i;:::-;11932:9;11943:6;11908:9;:42::i;:::-;11968:4;11961:11;;11805:175;;;;:::o;25683:26::-;;;;:::o;25361:33::-;;;;;;;;;;;;;:::o;31517:753::-;5066:12;:10;:12::i;:::-;5055:23;;:7;:5;:7::i;:::-;:23;;;5047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31773:10:::1;31761:9;:22;;;;31812:16;31794:15;:34;;;;31852:11;31839:10;:24;;;;31887:11;31874:10;:24;;;;31928:17;31909:16;:36;;;;31970:12;31956:11;:26;;;;32038:10;;32020:15;;32008:9;;:27;;;;:::i;:::-;:40;;;;:::i;:::-;31993:12;:55;;;;32107:12;32088:16;;32075:10;;:29;;;;:::i;:::-;:44;;;;:::i;:::-;32059:13;:60;;;;32154:2;32138:12;;:18;;32130:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;32226:2;32209:13;;:19;;32201:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31517:753:::0;;;;;;:::o;25025:64::-;;;;;;;;;;;;;:::o;25208:35::-;;;;:::o;30113:497::-;30221:4;5066:12;:10;:12::i;:::-;5055:23;;:7;:5;:7::i;:::-;:23;;;5047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30300:6:::1;30295:1;30279:13;:11;:13::i;:::-;:17;;;;:::i;:::-;30278:28;;;;:::i;:::-;30265:9;:41;;30243:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;30455:4;30450:1;30434:13;:11;:13::i;:::-;:17;;;;:::i;:::-;30433:26;;;;:::i;:::-;30420:9;:39;;30398:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;30571:9;30550:18;:30;;;;30598:4;30591:11;;30113:497:::0;;;:::o;25440:27::-;;;;:::o;12043:151::-;12132:7;12159:11;:18;12171:5;12159:18;;;;;;;;;;;;;;;:27;12178:7;12159:27;;;;;;;;;;;;;;;;12152:34;;12043:151;;;;:::o;25250:33::-;;;;:::o;25542:25::-;;;;:::o;25505:30::-;;;;:::o;5744:201::-;5066:12;:10;:12::i;:::-;5055:23;;:7;:5;:7::i;:::-;:23;;;5047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5853:1:::1;5833:22;;:8;:22;;::::0;5825:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5909:28;5928:8;5909:18;:28::i;:::-;5744:201:::0;:::o;25645:31::-;;;;:::o;25290:24::-;;;;:::o;32294:177::-;5066:12;:10;:12::i;:::-;5055:23;;:7;:5;:7::i;:::-;:23;;;5047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32405:8:::1;32374:19;:28;32394:7;32374:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;32445:7;32429:34;;;32454:8;32429:34;;;;;;:::i;:::-;;;;;;;;32294:177:::0;;:::o;4211:98::-;4264:7;4291:10;4284:17;;4211:98;:::o;15833:380::-;15986:1;15969:19;;:5;:19;;;15961:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16067:1;16048:21;;:7;:21;;;16040:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16151:6;16121:11;:18;16133:5;16121:18;;;;;;;;;;;;;;;:27;16140:7;16121:27;;;;;;;;;;;;;;;:36;;;;16189:7;16173:32;;16182:5;16173:32;;;16198:6;16173:32;;;;;;:::i;:::-;;;;;;;;15833:380;;;:::o;32812:4338::-;32960:1;32944:18;;:4;:18;;;32936:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33037:1;33023:16;;:2;:16;;;33015:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33106:1;33096:6;:11;33092:93;;33124:28;33140:4;33146:2;33150:1;33124:15;:28::i;:::-;33167:7;;33092:93;33201:12;;;;;;;;;;;33197:1442;;;33274:7;:5;:7::i;:::-;33266:15;;:4;:15;;;;:49;;;;;33308:7;:5;:7::i;:::-;33302:13;;:2;:13;;;;33266:49;:86;;;;;33350:1;33336:16;;:2;:16;;;;33266:86;:128;;;;;33387:6;33373:21;;:2;:21;;;;33266:128;:158;;;;;33416:8;;;;;;;;;;;33415:9;33266:158;33244:1384;;;33464:13;;;;;;;;;;;33459:223;;33536:19;:25;33556:4;33536:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;33565:19;:23;33585:2;33565:23;;;;;;;;;;;;;;;;;;;;;;;;;33536:52;33502:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;33459:223;33896:13;33888:21;;:4;:21;;;:82;;;;;33935:31;:35;33967:2;33935:35;;;;;;;;;;;;;;;;;;;;;;;;;33934:36;33888:82;33862:751;;;34057:20;;34047:6;:30;;34013:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;34265:9;;34248:13;34258:2;34248:9;:13::i;:::-;34239:6;:22;;;;:::i;:::-;:35;;34205:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;33862:751;;;34393:31;:35;34425:2;34393:35;;;;;;;;;;;;;;;;;;;;;;;;;34388:225;;34513:9;;34496:13;34506:2;34496:9;:13::i;:::-;34487:6;:22;;;;:::i;:::-;:35;;34453:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;34388:225;33862:751;33244:1384;33197:1442;34651:28;34682:24;34700:4;34682:9;:24::i;:::-;34651:55;;34719:12;34758:18;;34734:20;:42;;34719:57;;34807:7;:35;;;;;34831:11;;;;;;;;;;;34807:35;:61;;;;;34860:8;;;;;;;;;;;34859:9;34807:61;:97;;;;;34891:13;34885:19;;:2;:19;;;34807:97;:140;;;;;34922:19;:25;34942:4;34922:25;;;;;;;;;;;;;;;;;;;;;;;;;34921:26;34807:140;:181;;;;;34965:19;:23;34985:2;34965:23;;;;;;;;;;;;;;;;;;;;;;;;;34964:24;34807:181;34789:650;;;35026:4;35015:8;;:15;;;;;;;;;;;;;;;;;;35047:20;35070:30;35083:13;35098:1;35070:12;:30::i;:::-;35047:53;;35133:13;35118:12;:28;35115:255;;;35184:1;35170:11;:15;;;;35221:1;35208:10;:14;;;;35115:255;;;35261:13;35246:12;:28;35243:127;;;35314:1;35298:13;:17;;;;35353:1;35338:12;:16;;;;35243:127;35115:255;35384:10;:8;:10::i;:::-;35422:5;35411:8;;:16;;;;;;;;;;;;;;;;;;35000:439;34789:650;35451:12;35467:8;;;;;;;;;;;35466:9;35451:24;;35577:19;:25;35597:4;35577:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;35606:19;:23;35626:2;35606:23;;;;;;;;;;;;;;;;;;;;;;;;;35577:52;35573:100;;;35656:5;35646:15;;35573:100;35685:12;35712:26;35753:20;35788:21;35902:7;35898:1199;;;35960:13;35954:19;;:2;:19;;;:40;;;;;35993:1;35977:13;;:17;35954:40;35950:727;;;36022:34;36052:3;36022:25;36033:13;;36022:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;36015:41;;36124:13;;36104:16;;36097:4;:23;;;;:::i;:::-;36096:41;;;;:::i;:::-;36075:62;;36193:13;;36179:10;;36172:4;:17;;;;:::i;:::-;36171:35;;;;:::i;:::-;36156:50;;36264:13;;36249:11;;36242:4;:18;;;;:::i;:::-;36241:36;;;;:::i;:::-;36225:52;;35950:727;;;36349:13;36341:21;;:4;:21;;;:41;;;;;36381:1;36366:12;;:16;36341:41;36337:340;;;36410:33;36439:3;36410:24;36421:12;;36410:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;36403:40;;36510:12;;36491:15;;36484:4;:22;;;;:::i;:::-;36483:39;;;;:::i;:::-;36462:60;;36578:12;;36565:9;;36558:4;:16;;;;:::i;:::-;36557:33;;;;:::i;:::-;36542:48;;36647:12;;36633:10;;36626:4;:17;;;;:::i;:::-;36625:34;;;;:::i;:::-;36609:50;;36337:340;35950:727;36703:1;36697:4;:7;36693:90;;;36725:42;36741:4;36755;36762;36725:15;:42::i;:::-;36693:90;36822:1;36801:18;:22;36797:128;;;36844:65;36868:4;36875:13;36890:18;36844:15;:65::i;:::-;36797:128;36960:1;36944:13;:17;36941:114;;;36981:58;37005:4;37012:11;;;;;;;;;;;37025:13;36981:15;:58::i;:::-;36941:114;37081:4;37071:14;;;;;:::i;:::-;;;35898:1199;37109:33;37125:4;37131:2;37135:6;37109:15;:33::i;:::-;32925:4225;;;;;;;32812:4338;;;;:::o;6105:191::-;6179:16;6198:6;;;;;;;;;;;6179:25;;6224:8;6215:6;;:17;;;;;;;;;;;;;;;;;;6279:8;6248:40;;6269:8;6248:40;;;;;;;;;;;;6168:128;6105:191;:::o;13974:733::-;14132:1;14114:20;;:6;:20;;;14106:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14216:1;14195:23;;:9;:23;;;14187:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14271:47;14292:6;14300:9;14311:6;14271:20;:47::i;:::-;14331:21;14355:9;:17;14365:6;14355:17;;;;;;;;;;;;;;;;14331:41;;14408:6;14391:13;:23;;14383:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14529:6;14513:13;:22;14493:9;:17;14503:6;14493:17;;;;;;;;;;;;;;;:42;;;;14581:6;14557:9;:20;14567:9;14557:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14622:9;14605:35;;14614:6;14605:35;;;14633:6;14605:35;;;;;;:::i;:::-;;;;;;;;14653:46;14673:6;14681:9;14692:6;14653:19;:46::i;:::-;14095:612;13974:733;;;:::o;38223:340::-;38262:23;38288:24;38306:4;38288:9;:24::i;:::-;38262:50;;38346:1;38327:15;:20;38323:59;;38364:7;;;38323:59;38437:2;38416:18;;:23;;;;:::i;:::-;38398:15;:41;38394:115;;;38495:2;38474:18;;:23;;;;:::i;:::-;38456:41;;38394:115;38521:34;38539:15;38521:17;:34::i;:::-;38251:312;38223:340;:::o;20760:98::-;20818:7;20849:1;20845;:5;;;;:::i;:::-;20838:12;;20760:98;;;;:::o;21159:::-;21217:7;21248:1;21244;:5;;;;:::i;:::-;21237:12;;21159:98;;;;:::o;16813:125::-;;;;:::o;17542:124::-;;;;:::o;37158:572::-;37285:21;37323:1;37309:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37285:40;;37354:4;37336;37341:1;37336:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;37380:4;;;;;;;;;;;37370;37375:1;37370:7;;;;;;;;:::i;:::-;;;;;;;:14;;;;;;;;;;;37397:62;37414:4;37429:15;37447:11;37397:8;:62::i;:::-;37498:15;:69;;;37582:11;37608:1;37653:4;37672:9;;;;;;;;;;;37696:15;37498:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37214:516;37158:572;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:619::-;5188:6;5196;5204;5253:2;5241:9;5232:7;5228:23;5224:32;5221:119;;;5259:79;;:::i;:::-;5221:119;5379:1;5404:53;5449:7;5440:6;5429:9;5425:22;5404:53;:::i;:::-;5394:63;;5350:117;5506:2;5532:53;5577:7;5568:6;5557:9;5553:22;5532:53;:::i;:::-;5522:63;;5477:118;5634:2;5660:53;5705:7;5696:6;5685:9;5681:22;5660:53;:::i;:::-;5650:63;;5605:118;5111:619;;;;;:::o;5736:329::-;5795:6;5844:2;5832:9;5823:7;5819:23;5815:32;5812:119;;;5850:79;;:::i;:::-;5812:119;5970:1;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5941:117;5736:329;;;;:::o;6071:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:116::-;6493:21;6508:5;6493:21;:::i;:::-;6486:5;6483:32;6473:60;;6529:1;6526;6519:12;6473:60;6423:116;:::o;6545:133::-;6588:5;6626:6;6613:20;6604:29;;6642:30;6666:5;6642:30;:::i;:::-;6545:133;;;;:::o;6684:468::-;6749:6;6757;6806:2;6794:9;6785:7;6781:23;6777:32;6774:119;;;6812:79;;:::i;:::-;6774:119;6932:1;6957:53;7002:7;6993:6;6982:9;6978:22;6957:53;:::i;:::-;6947:63;;6903:117;7059:2;7085:50;7127:7;7118:6;7107:9;7103:22;7085:50;:::i;:::-;7075:60;;7030:115;6684:468;;;;;:::o;7158:86::-;7193:7;7233:4;7226:5;7222:16;7211:27;;7158:86;;;:::o;7250:112::-;7333:22;7349:5;7333:22;:::i;:::-;7328:3;7321:35;7250:112;;:::o;7368:214::-;7457:4;7495:2;7484:9;7480:18;7472:26;;7508:67;7572:1;7561:9;7557:17;7548:6;7508:67;:::i;:::-;7368:214;;;;:::o;7588:323::-;7644:6;7693:2;7681:9;7672:7;7668:23;7664:32;7661:119;;;7699:79;;:::i;:::-;7661:119;7819:1;7844:50;7886:7;7877:6;7866:9;7862:22;7844:50;:::i;:::-;7834:60;;7790:114;7588:323;;;;:::o;7917:1057::-;8021:6;8029;8037;8045;8053;8061;8110:3;8098:9;8089:7;8085:23;8081:33;8078:120;;;8117:79;;:::i;:::-;8078:120;8237:1;8262:53;8307:7;8298:6;8287:9;8283:22;8262:53;:::i;:::-;8252:63;;8208:117;8364:2;8390:53;8435:7;8426:6;8415:9;8411:22;8390:53;:::i;:::-;8380:63;;8335:118;8492:2;8518:53;8563:7;8554:6;8543:9;8539:22;8518:53;:::i;:::-;8508:63;;8463:118;8620:2;8646:53;8691:7;8682:6;8671:9;8667:22;8646:53;:::i;:::-;8636:63;;8591:118;8748:3;8775:53;8820:7;8811:6;8800:9;8796:22;8775:53;:::i;:::-;8765:63;;8719:119;8877:3;8904:53;8949:7;8940:6;8929:9;8925:22;8904:53;:::i;:::-;8894:63;;8848:119;7917:1057;;;;;;;;:::o;8980:474::-;9048:6;9056;9105:2;9093:9;9084:7;9080:23;9076:32;9073:119;;;9111:79;;:::i;:::-;9073:119;9231:1;9256:53;9301:7;9292:6;9281:9;9277:22;9256:53;:::i;:::-;9246:63;;9202:117;9358:2;9384:53;9429:7;9420:6;9409:9;9405:22;9384:53;:::i;:::-;9374:63;;9329:118;8980:474;;;;;:::o;9460:180::-;9508:77;9505:1;9498:88;9605:4;9602:1;9595:15;9629:4;9626:1;9619:15;9646:320;9690:6;9727:1;9721:4;9717:12;9707:22;;9774:1;9768:4;9764:12;9795:18;9785:81;;9851:4;9843:6;9839:17;9829:27;;9785:81;9913:2;9905:6;9902:14;9882:18;9879:38;9876:84;;9932:18;;:::i;:::-;9876:84;9697:269;9646:320;;;:::o;9972:182::-;10112:34;10108:1;10100:6;10096:14;10089:58;9972:182;:::o;10160:366::-;10302:3;10323:67;10387:2;10382:3;10323:67;:::i;:::-;10316:74;;10399:93;10488:3;10399:93;:::i;:::-;10517:2;10512:3;10508:12;10501:19;;10160:366;;;:::o;10532:419::-;10698:4;10736:2;10725:9;10721:18;10713:26;;10785:9;10779:4;10775:20;10771:1;10760:9;10756:17;10749:47;10813:131;10939:4;10813:131;:::i;:::-;10805:139;;10532:419;;;:::o;10957:227::-;11097:34;11093:1;11085:6;11081:14;11074:58;11166:10;11161:2;11153:6;11149:15;11142:35;10957:227;:::o;11190:366::-;11332:3;11353:67;11417:2;11412:3;11353:67;:::i;:::-;11346:74;;11429:93;11518:3;11429:93;:::i;:::-;11547:2;11542:3;11538:12;11531:19;;11190:366;;;:::o;11562:419::-;11728:4;11766:2;11755:9;11751:18;11743:26;;11815:9;11809:4;11805:20;11801:1;11790:9;11786:17;11779:47;11843:131;11969:4;11843:131;:::i;:::-;11835:139;;11562:419;;;:::o;11987:180::-;12035:77;12032:1;12025:88;12132:4;12129:1;12122:15;12156:4;12153:1;12146:15;12173:410;12213:7;12236:20;12254:1;12236:20;:::i;:::-;12231:25;;12270:20;12288:1;12270:20;:::i;:::-;12265:25;;12325:1;12322;12318:9;12347:30;12365:11;12347:30;:::i;:::-;12336:41;;12526:1;12517:7;12513:15;12510:1;12507:22;12487:1;12480:9;12460:83;12437:139;;12556:18;;:::i;:::-;12437:139;12221:362;12173:410;;;;:::o;12589:180::-;12637:77;12634:1;12627:88;12734:4;12731:1;12724:15;12758:4;12755:1;12748:15;12775:185;12815:1;12832:20;12850:1;12832:20;:::i;:::-;12827:25;;12866:20;12884:1;12866:20;:::i;:::-;12861:25;;12905:1;12895:35;;12910:18;;:::i;:::-;12895:35;12952:1;12949;12945:9;12940:14;;12775:185;;;;:::o;12966:223::-;13106:34;13102:1;13094:6;13090:14;13083:58;13175:6;13170:2;13162:6;13158:15;13151:31;12966:223;:::o;13195:366::-;13337:3;13358:67;13422:2;13417:3;13358:67;:::i;:::-;13351:74;;13434:93;13523:3;13434:93;:::i;:::-;13552:2;13547:3;13543:12;13536:19;;13195:366;;;:::o;13567:419::-;13733:4;13771:2;13760:9;13756:18;13748:26;;13820:9;13814:4;13810:20;13806:1;13795:9;13791:17;13784:47;13848:131;13974:4;13848:131;:::i;:::-;13840:139;;13567:419;;;:::o;13992:143::-;14049:5;14080:6;14074:13;14065:22;;14096:33;14123:5;14096:33;:::i;:::-;13992:143;;;;:::o;14141:351::-;14211:6;14260:2;14248:9;14239:7;14235:23;14231:32;14228:119;;;14266:79;;:::i;:::-;14228:119;14386:1;14411:64;14467:7;14458:6;14447:9;14443:22;14411:64;:::i;:::-;14401:74;;14357:128;14141:351;;;;:::o;14498:114::-;14535:7;14575:30;14568:5;14564:42;14553:53;;14498:114;;;:::o;14618:122::-;14691:24;14709:5;14691:24;:::i;:::-;14684:5;14681:35;14671:63;;14730:1;14727;14720:12;14671:63;14618:122;:::o;14746:143::-;14803:5;14834:6;14828:13;14819:22;;14850:33;14877:5;14850:33;:::i;:::-;14746:143;;;;:::o;14895:93::-;14931:7;14971:10;14964:5;14960:22;14949:33;;14895:93;;;:::o;14994:120::-;15066:23;15083:5;15066:23;:::i;:::-;15059:5;15056:34;15046:62;;15104:1;15101;15094:12;15046:62;14994:120;:::o;15120:141::-;15176:5;15207:6;15201:13;15192:22;;15223:32;15249:5;15223:32;:::i;:::-;15120:141;;;;:::o;15267:661::-;15354:6;15362;15370;15419:2;15407:9;15398:7;15394:23;15390:32;15387:119;;;15425:79;;:::i;:::-;15387:119;15545:1;15570:64;15626:7;15617:6;15606:9;15602:22;15570:64;:::i;:::-;15560:74;;15516:128;15683:2;15709:64;15765:7;15756:6;15745:9;15741:22;15709:64;:::i;:::-;15699:74;;15654:129;15822:2;15848:63;15903:7;15894:6;15883:9;15879:22;15848:63;:::i;:::-;15838:73;;15793:128;15267:661;;;;;:::o;15934:118::-;16005:22;16021:5;16005:22;:::i;:::-;15998:5;15995:33;15985:61;;16042:1;16039;16032:12;15985:61;15934:118;:::o;16058:139::-;16113:5;16144:6;16138:13;16129:22;;16160:31;16185:5;16160:31;:::i;:::-;16058:139;;;;:::o;16203:347::-;16271:6;16320:2;16308:9;16299:7;16295:23;16291:32;16288:119;;;16326:79;;:::i;:::-;16288:119;16446:1;16471:62;16525:7;16516:6;16505:9;16501:22;16471:62;:::i;:::-;16461:72;;16417:126;16203:347;;;;:::o;16556:102::-;16598:8;16645:5;16642:1;16638:13;16617:34;;16556:102;;;:::o;16664:848::-;16725:5;16732:4;16756:6;16747:15;;16780:5;16771:14;;16794:712;16815:1;16805:8;16802:15;16794:712;;;16910:4;16905:3;16901:14;16895:4;16892:24;16889:50;;;16919:18;;:::i;:::-;16889:50;16969:1;16959:8;16955:16;16952:451;;;17384:4;17377:5;17373:16;17364:25;;16952:451;17434:4;17428;17424:15;17416:23;;17464:32;17487:8;17464:32;:::i;:::-;17452:44;;16794:712;;;16664:848;;;;;;;:::o;17518:1073::-;17572:5;17763:8;17753:40;;17784:1;17775:10;;17786:5;;17753:40;17812:4;17802:36;;17829:1;17820:10;;17831:5;;17802:36;17898:4;17946:1;17941:27;;;;17982:1;17977:191;;;;17891:277;;17941:27;17959:1;17950:10;;17961:5;;;17977:191;18022:3;18012:8;18009:17;18006:43;;;18029:18;;:::i;:::-;18006:43;18078:8;18075:1;18071:16;18062:25;;18113:3;18106:5;18103:14;18100:40;;;18120:18;;:::i;:::-;18100:40;18153:5;;;17891:277;;18277:2;18267:8;18264:16;18258:3;18252:4;18249:13;18245:36;18227:2;18217:8;18214:16;18209:2;18203:4;18200:12;18196:35;18180:111;18177:246;;;18333:8;18327:4;18323:19;18314:28;;18368:3;18361:5;18358:14;18355:40;;;18375:18;;:::i;:::-;18355:40;18408:5;;18177:246;18448:42;18486:3;18476:8;18470:4;18467:1;18448:42;:::i;:::-;18433:57;;;;18522:4;18517:3;18513:14;18506:5;18503:25;18500:51;;;18531:18;;:::i;:::-;18500:51;18580:4;18573:5;18569:16;18560:25;;17518:1073;;;;;;:::o;18597:281::-;18655:5;18679:23;18697:4;18679:23;:::i;:::-;18671:31;;18723:25;18739:8;18723:25;:::i;:::-;18711:37;;18767:104;18804:66;18794:8;18788:4;18767:104;:::i;:::-;18758:113;;18597:281;;;;:::o;18884:234::-;19024:34;19020:1;19012:6;19008:14;19001:58;19093:17;19088:2;19080:6;19076:15;19069:42;18884:234;:::o;19124:366::-;19266:3;19287:67;19351:2;19346:3;19287:67;:::i;:::-;19280:74;;19363:93;19452:3;19363:93;:::i;:::-;19481:2;19476:3;19472:12;19465:19;;19124:366;;;:::o;19496:419::-;19662:4;19700:2;19689:9;19685:18;19677:26;;19749:9;19743:4;19739:20;19735:1;19724:9;19720:17;19713:47;19777:131;19903:4;19777:131;:::i;:::-;19769:139;;19496:419;;;:::o;19921:191::-;19961:3;19980:20;19998:1;19980:20;:::i;:::-;19975:25;;20014:20;20032:1;20014:20;:::i;:::-;20009:25;;20057:1;20054;20050:9;20043:16;;20078:3;20075:1;20072:10;20069:36;;;20085:18;;:::i;:::-;20069:36;19921:191;;;;:::o;20118:179::-;20258:31;20254:1;20246:6;20242:14;20235:55;20118:179;:::o;20303:366::-;20445:3;20466:67;20530:2;20525:3;20466:67;:::i;:::-;20459:74;;20542:93;20631:3;20542:93;:::i;:::-;20660:2;20655:3;20651:12;20644:19;;20303:366;;;:::o;20675:419::-;20841:4;20879:2;20868:9;20864:18;20856:26;;20928:9;20922:4;20918:20;20914:1;20903:9;20899:17;20892:47;20956:131;21082:4;20956:131;:::i;:::-;20948:139;;20675:419;;;:::o;21100:240::-;21240:34;21236:1;21228:6;21224:14;21217:58;21309:23;21304:2;21296:6;21292:15;21285:48;21100:240;:::o;21346:366::-;21488:3;21509:67;21573:2;21568:3;21509:67;:::i;:::-;21502:74;;21585:93;21674:3;21585:93;:::i;:::-;21703:2;21698:3;21694:12;21687:19;;21346:366;;;:::o;21718:419::-;21884:4;21922:2;21911:9;21907:18;21899:26;;21971:9;21965:4;21961:20;21957:1;21946:9;21942:17;21935:47;21999:131;22125:4;21999:131;:::i;:::-;21991:139;;21718:419;;;:::o;22143:239::-;22283:34;22279:1;22271:6;22267:14;22260:58;22352:22;22347:2;22339:6;22335:15;22328:47;22143:239;:::o;22388:366::-;22530:3;22551:67;22615:2;22610:3;22551:67;:::i;:::-;22544:74;;22627:93;22716:3;22627:93;:::i;:::-;22745:2;22740:3;22736:12;22729:19;;22388:366;;;:::o;22760:419::-;22926:4;22964:2;22953:9;22949:18;22941:26;;23013:9;23007:4;23003:20;22999:1;22988:9;22984:17;22977:47;23041:131;23167:4;23041:131;:::i;:::-;23033:139;;22760:419;;;:::o;23185:225::-;23325:34;23321:1;23313:6;23309:14;23302:58;23394:8;23389:2;23381:6;23377:15;23370:33;23185:225;:::o;23416:366::-;23558:3;23579:67;23643:2;23638:3;23579:67;:::i;:::-;23572:74;;23655:93;23744:3;23655:93;:::i;:::-;23773:2;23768:3;23764:12;23757:19;;23416:366;;;:::o;23788:419::-;23954:4;23992:2;23981:9;23977:18;23969:26;;24041:9;24035:4;24031:20;24027:1;24016:9;24012:17;24005:47;24069:131;24195:4;24069:131;:::i;:::-;24061:139;;23788:419;;;:::o;24213:223::-;24353:34;24349:1;24341:6;24337:14;24330:58;24422:6;24417:2;24409:6;24405:15;24398:31;24213:223;:::o;24442:366::-;24584:3;24605:67;24669:2;24664:3;24605:67;:::i;:::-;24598:74;;24681:93;24770:3;24681:93;:::i;:::-;24799:2;24794:3;24790:12;24783:19;;24442:366;;;:::o;24814:419::-;24980:4;25018:2;25007:9;25003:18;24995:26;;25067:9;25061:4;25057:20;25053:1;25042:9;25038:17;25031:47;25095:131;25221:4;25095:131;:::i;:::-;25087:139;;24814:419;;;:::o;25239:221::-;25379:34;25375:1;25367:6;25363:14;25356:58;25448:4;25443:2;25435:6;25431:15;25424:29;25239:221;:::o;25466:366::-;25608:3;25629:67;25693:2;25688:3;25629:67;:::i;:::-;25622:74;;25705:93;25794:3;25705:93;:::i;:::-;25823:2;25818:3;25814:12;25807:19;;25466:366;;;:::o;25838:419::-;26004:4;26042:2;26031:9;26027:18;26019:26;;26091:9;26085:4;26081:20;26077:1;26066:9;26062:17;26055:47;26119:131;26245:4;26119:131;:::i;:::-;26111:139;;25838:419;;;:::o;26263:224::-;26403:34;26399:1;26391:6;26387:14;26380:58;26472:7;26467:2;26459:6;26455:15;26448:32;26263:224;:::o;26493:366::-;26635:3;26656:67;26720:2;26715:3;26656:67;:::i;:::-;26649:74;;26732:93;26821:3;26732:93;:::i;:::-;26850:2;26845:3;26841:12;26834:19;;26493:366;;;:::o;26865:419::-;27031:4;27069:2;27058:9;27054:18;27046:26;;27118:9;27112:4;27108:20;27104:1;27093:9;27089:17;27082:47;27146:131;27272:4;27146:131;:::i;:::-;27138:139;;26865:419;;;:::o;27290:222::-;27430:34;27426:1;27418:6;27414:14;27407:58;27499:5;27494:2;27486:6;27482:15;27475:30;27290:222;:::o;27518:366::-;27660:3;27681:67;27745:2;27740:3;27681:67;:::i;:::-;27674:74;;27757:93;27846:3;27757:93;:::i;:::-;27875:2;27870:3;27866:12;27859:19;;27518:366;;;:::o;27890:419::-;28056:4;28094:2;28083:9;28079:18;28071:26;;28143:9;28137:4;28133:20;28129:1;28118:9;28114:17;28107:47;28171:131;28297:4;28171:131;:::i;:::-;28163:139;;27890:419;;;:::o;28315:172::-;28455:24;28451:1;28443:6;28439:14;28432:48;28315:172;:::o;28493:366::-;28635:3;28656:67;28720:2;28715:3;28656:67;:::i;:::-;28649:74;;28732:93;28821:3;28732:93;:::i;:::-;28850:2;28845:3;28841:12;28834:19;;28493:366;;;:::o;28865:419::-;29031:4;29069:2;29058:9;29054:18;29046:26;;29118:9;29112:4;29108:20;29104:1;29093:9;29089:17;29082:47;29146:131;29272:4;29146:131;:::i;:::-;29138:139;;28865:419;;;:::o;29290:240::-;29430:34;29426:1;29418:6;29414:14;29407:58;29499:23;29494:2;29486:6;29482:15;29475:48;29290:240;:::o;29536:366::-;29678:3;29699:67;29763:2;29758:3;29699:67;:::i;:::-;29692:74;;29775:93;29864:3;29775:93;:::i;:::-;29893:2;29888:3;29884:12;29877:19;;29536:366;;;:::o;29908:419::-;30074:4;30112:2;30101:9;30097:18;30089:26;;30161:9;30155:4;30151:20;30147:1;30136:9;30132:17;30125:47;30189:131;30315:4;30189:131;:::i;:::-;30181:139;;29908:419;;;:::o;30333:169::-;30473:21;30469:1;30461:6;30457:14;30450:45;30333:169;:::o;30508:366::-;30650:3;30671:67;30735:2;30730:3;30671:67;:::i;:::-;30664:74;;30747:93;30836:3;30747:93;:::i;:::-;30865:2;30860:3;30856:12;30849:19;;30508:366;;;:::o;30880:419::-;31046:4;31084:2;31073:9;31069:18;31061:26;;31133:9;31127:4;31123:20;31119:1;31108:9;31104:17;31097:47;31161:131;31287:4;31161:131;:::i;:::-;31153:139;;30880:419;;;:::o;31305:194::-;31345:4;31365:20;31383:1;31365:20;:::i;:::-;31360:25;;31399:20;31417:1;31399:20;:::i;:::-;31394:25;;31443:1;31440;31436:9;31428:17;;31467:1;31461:4;31458:11;31455:37;;;31472:18;;:::i;:::-;31455:37;31305:194;;;;:::o;31505:225::-;31645:34;31641:1;31633:6;31629:14;31622:58;31714:8;31709:2;31701:6;31697:15;31690:33;31505:225;:::o;31736:366::-;31878:3;31899:67;31963:2;31958:3;31899:67;:::i;:::-;31892:74;;31975:93;32064:3;31975:93;:::i;:::-;32093:2;32088:3;32084:12;32077:19;;31736:366;;;:::o;32108:419::-;32274:4;32312:2;32301:9;32297:18;32289:26;;32361:9;32355:4;32351:20;32347:1;32336:9;32332:17;32325:47;32389:131;32515:4;32389:131;:::i;:::-;32381:139;;32108:419;;;:::o;32533:180::-;32581:77;32578:1;32571:88;32678:4;32675:1;32668:15;32702:4;32699:1;32692:15;32719:180;32767:77;32764:1;32757:88;32864:4;32861:1;32854:15;32888:4;32885:1;32878:15;32905:85;32950:7;32979:5;32968:16;;32905:85;;;:::o;32996:158::-;33054:9;33087:61;33105:42;33114:32;33140:5;33114:32;:::i;:::-;33105:42;:::i;:::-;33087:61;:::i;:::-;33074:74;;32996:158;;;:::o;33160:147::-;33255:45;33294:5;33255:45;:::i;:::-;33250:3;33243:58;33160:147;;:::o;33313:114::-;33380:6;33414:5;33408:12;33398:22;;33313:114;;;:::o;33433:184::-;33532:11;33566:6;33561:3;33554:19;33606:4;33601:3;33597:14;33582:29;;33433:184;;;;:::o;33623:132::-;33690:4;33713:3;33705:11;;33743:4;33738:3;33734:14;33726:22;;33623:132;;;:::o;33761:108::-;33838:24;33856:5;33838:24;:::i;:::-;33833:3;33826:37;33761:108;;:::o;33875:179::-;33944:10;33965:46;34007:3;33999:6;33965:46;:::i;:::-;34043:4;34038:3;34034:14;34020:28;;33875:179;;;;:::o;34060:113::-;34130:4;34162;34157:3;34153:14;34145:22;;34060:113;;;:::o;34209:732::-;34328:3;34357:54;34405:5;34357:54;:::i;:::-;34427:86;34506:6;34501:3;34427:86;:::i;:::-;34420:93;;34537:56;34587:5;34537:56;:::i;:::-;34616:7;34647:1;34632:284;34657:6;34654:1;34651:13;34632:284;;;34733:6;34727:13;34760:63;34819:3;34804:13;34760:63;:::i;:::-;34753:70;;34846:60;34899:6;34846:60;:::i;:::-;34836:70;;34692:224;34679:1;34676;34672:9;34667:14;;34632:284;;;34636:14;34932:3;34925:10;;34333:608;;;34209:732;;;;:::o;34947:831::-;35210:4;35248:3;35237:9;35233:19;35225:27;;35262:71;35330:1;35319:9;35315:17;35306:6;35262:71;:::i;:::-;35343:80;35419:2;35408:9;35404:18;35395:6;35343:80;:::i;:::-;35470:9;35464:4;35460:20;35455:2;35444:9;35440:18;35433:48;35498:108;35601:4;35592:6;35498:108;:::i;:::-;35490:116;;35616:72;35684:2;35673:9;35669:18;35660:6;35616:72;:::i;:::-;35698:73;35766:3;35755:9;35751:19;35742:6;35698:73;:::i;:::-;34947:831;;;;;;;;:::o
Swarm Source
ipfs://60ab1d31b0afe9638297f3f5f21ed2bc69abc90135e4604d43ce27739c1f06a2
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.