ERC-20
Overview
Max Total Supply
200,000,000 MERGY
Holders
78
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
13,212.376657044070033399 MERGYValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
MergyInu
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-15 */ /* mergy.dog */ // SPDX-License-Identifier: MIT pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* pragma solidity ^0.8.0; */ /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) /* pragma solidity ^0.8.0; */ /* import "../utils/Context.sol"; */ /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } ////// src/IUniswapV2Factory.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } ////// src/IUniswapV2Router02.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } ////// src/MarshallRoganInu.sol /* pragma solidity >=0.8.10; */ /* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */ /* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */ /* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */ /* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */ /* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */ /* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */ /* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */ contract MergyInu is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; 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 uint256 public buyTotalFees; uint256 private buyMarketingFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public tokensForMarketing; /******************/ // 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 SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor(address wallet1) ERC20("Mergy Inu", "MERGY") { 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 =50; uint256 _sellMarketingFee = 50; uint256 totalSupply = 200_000_000 * 1e18; maxTransactionAmount = 200_000_000 * 1e18; maxWallet = 200_000_000 * 1e18; swapTokensAtAmount = 20_000 * 1e18; buyMarketingFee = _buyMarketingFee; buyTotalFees = buyMarketingFee; sellMarketingFee = _sellMarketingFee; sellTotalFees = sellMarketingFee; marketingWallet = wallet1; // set as marketing wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { buyMarketingFee = 920; buyTotalFees = buyMarketingFee; tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = 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 onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } 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; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _marketingFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyTotalFees = buyMarketingFee; require(buyTotalFees <= 200, "Must keep fees at 20% or less"); } function updateSellFees( uint256 _marketingFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellTotalFees = sellMarketingFee; require(sellTotalFees <= 300, "Must keep fees at 30% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function manualswap(uint256 amount) external { require(amount <= balanceOf(address(this)) && amount > 0, "Wrong amount"); swapTokensForEth(amount); } function mergeEnabled() external onlyOwner { maxTransactionAmount = 5_000_000 * 1e18; maxWallet = 5_000_000 * 1e18; buyMarketingFee = 50; buyTotalFees = buyMarketingFee; sellMarketingFee = 50; sellTotalFees = sellMarketingFee; } function manualsend() external { bool success; (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } 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 _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." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(1000); tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(1000); 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 = tokensForMarketing; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 amountToSwapForETH = contractBalance; swapTokensForEth(amountToSwapForETH); tokensForMarketing = 0; (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"wallet1","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"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":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualsend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","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":"mergeEnabled","outputs":[],"stateMutability":"nonpayable","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":"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":"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":[{"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"}],"name":"updateBuyFees","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"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526001600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff0219169083151502179055503480156200006257600080fd5b506040516200543238038062005432833981810160405281019062000088919062000b27565b6040518060400160405280600981526020017f4d6572677920496e7500000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d4552475900000000000000000000000000000000000000000000000000000081525081600390805190602001906200010c92919062000a0d565b5080600490805190602001906200012592919062000a0d565b505050620001486200013c620004cd60201b60201c565b620004d560201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001748160016200059b60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021a919062000b27565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000282573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a8919062000b27565b6040518363ffffffff1660e01b8152600401620002c792919062000b6a565b6020604051808303816000875af1158015620002e7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200030d919062000b27565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200035560a05160016200059b60201b60201c565b6200036a60a05160016200068560201b60201c565b60006032905060006032905060006aa56fa5b99019a5c800000090506aa56fa5b99019a5c80000006007819055506aa56fa5b99019a5c800000060098190555069043c33c193756480000060088190555082600d81905550600d54600c8190555081600f81905550600f54600e8190555084600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200043e620004306200072660201b60201c565b60016200075060201b60201c565b620004513060016200075060201b60201c565b6200046661dead60016200075060201b60201c565b620004886200047a6200072660201b60201c565b60016200059b60201b60201c565b6200049b3060016200059b60201b60201c565b620004b061dead60016200059b60201b60201c565b620004c233826200088a60201b60201c565b505050505062000def565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005ab620004cd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005d16200072660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200062a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006219062000bf8565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000760620004cd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007866200072660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007d69062000bf8565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200087e919062000c37565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620008fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008f49062000ca4565b60405180910390fd5b620009116000838362000a0360201b60201c565b806002600082825462000925919062000cff565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200097c919062000cff565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009e3919062000d6d565b60405180910390a3620009ff6000838362000a0860201b60201c565b5050565b505050565b505050565b82805462000a1b9062000db9565b90600052602060002090601f01602090048101928262000a3f576000855562000a8b565b82601f1062000a5a57805160ff191683800117855562000a8b565b8280016001018555821562000a8b579182015b8281111562000a8a57825182559160200191906001019062000a6d565b5b50905062000a9a919062000a9e565b5090565b5b8082111562000ab957600081600090555060010162000a9f565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000aef8262000ac2565b9050919050565b62000b018162000ae2565b811462000b0d57600080fd5b50565b60008151905062000b218162000af6565b92915050565b60006020828403121562000b405762000b3f62000abd565b5b600062000b508482850162000b10565b91505092915050565b62000b648162000ae2565b82525050565b600060408201905062000b81600083018562000b59565b62000b90602083018462000b59565b9392505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000be060208362000b97565b915062000bed8262000ba8565b602082019050919050565b6000602082019050818103600083015262000c138162000bd1565b9050919050565b60008115159050919050565b62000c318162000c1a565b82525050565b600060208201905062000c4e600083018462000c26565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c8c601f8362000b97565b915062000c998262000c54565b602082019050919050565b6000602082019050818103600083015262000cbf8162000c7d565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d0c8262000cc6565b915062000d198362000cc6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d515762000d5062000cd0565b5b828201905092915050565b62000d678162000cc6565b82525050565b600060208201905062000d84600083018462000d5c565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000dd257607f821691505b6020821081141562000de95762000de862000d8a565b5b50919050565b60805160a05161460162000e3160003960008181610e27015261154c015260008181610b3101528181612c5901528181612d3a0152612d6101526146016000f3fe6080604052600436106102765760003560e01c8063881dce601161014f578063bbc0c742116100c1578063dd62ed3e1161007a578063dd62ed3e14610963578063e2f45605146109a0578063e33e4b49146109cb578063eba4c333146109e2578063f2fde38b14610a0b578063f8b45b0514610a345761027d565b8063bbc0c74214610853578063c02466681461087e578063c18bc195146108a7578063c8c8ebe4146108d0578063d257b34f146108fb578063d85ba063146109385761027d565b806395d89b411161011357806395d89b411461071f5780639a7a23d61461074a578063a457c2d714610773578063a9059cbb146107b0578063aacebbe3146107ed578063b62496f5146108165761027d565b8063881dce60146106605780638a8c523c146106895780638da5cb5b146106a057806392136913146106cb578063924de9b7146106f65761027d565b806349bd5a5e116101e857806370a08231116101ac57806370a0823114610564578063715018a6146105a157806371fc4688146105b8578063751039fc146105e15780637571336a1461060c57806375f0a874146106355761027d565b806349bd5a5e146104a15780634a62bb65146104cc5780636a486a8e146104f75780636ddd1713146105225780636fc3eaec1461054d5761027d565b80631f3fed8f1161023a5780631f3fed8f1461037d578063203e727e146103a857806323b872dd146103d157806327c8f8351461040e578063313ce5671461043957806339509351146104645761027d565b806306fdde0314610282578063095ea7b3146102ad57806310d5de53146102ea5780631694505e1461032757806318160ddd146103525761027d565b3661027d57005b600080fd5b34801561028e57600080fd5b50610297610a5f565b6040516102a491906132ec565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf91906133a7565b610af1565b6040516102e19190613402565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c919061341d565b610b0f565b60405161031e9190613402565b60405180910390f35b34801561033357600080fd5b5061033c610b2f565b60405161034991906134a9565b60405180910390f35b34801561035e57600080fd5b50610367610b53565b60405161037491906134d3565b60405180910390f35b34801561038957600080fd5b50610392610b5d565b60405161039f91906134d3565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca91906134ee565b610b63565b005b3480156103dd57600080fd5b506103f860048036038101906103f3919061351b565b610c72565b6040516104059190613402565b60405180910390f35b34801561041a57600080fd5b50610423610d6a565b604051610430919061357d565b60405180910390f35b34801561044557600080fd5b5061044e610d70565b60405161045b91906135b4565b60405180910390f35b34801561047057600080fd5b5061048b600480360381019061048691906133a7565b610d79565b6040516104989190613402565b60405180910390f35b3480156104ad57600080fd5b506104b6610e25565b6040516104c3919061357d565b60405180910390f35b3480156104d857600080fd5b506104e1610e49565b6040516104ee9190613402565b60405180910390f35b34801561050357600080fd5b5061050c610e5c565b60405161051991906134d3565b60405180910390f35b34801561052e57600080fd5b50610537610e62565b6040516105449190613402565b60405180910390f35b34801561055957600080fd5b50610562610e75565b005b34801561057057600080fd5b5061058b6004803603810190610586919061341d565b610f08565b60405161059891906134d3565b60405180910390f35b3480156105ad57600080fd5b506105b6610f50565b005b3480156105c457600080fd5b506105df60048036038101906105da91906134ee565b610fd8565b005b3480156105ed57600080fd5b506105f66110ad565b6040516106039190613402565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e91906135fb565b61114d565b005b34801561064157600080fd5b5061064a611224565b604051610657919061357d565b60405180910390f35b34801561066c57600080fd5b50610687600480360381019061068291906134ee565b61124a565b005b34801561069557600080fd5b5061069e6112ad565b005b3480156106ac57600080fd5b506106b5611373565b6040516106c2919061357d565b60405180910390f35b3480156106d757600080fd5b506106e061139d565b6040516106ed91906134d3565b60405180910390f35b34801561070257600080fd5b5061071d6004803603810190610718919061363b565b6113a3565b005b34801561072b57600080fd5b5061073461143c565b60405161074191906132ec565b60405180910390f35b34801561075657600080fd5b50610771600480360381019061076c91906135fb565b6114ce565b005b34801561077f57600080fd5b5061079a600480360381019061079591906133a7565b6115e7565b6040516107a79190613402565b60405180910390f35b3480156107bc57600080fd5b506107d760048036038101906107d291906133a7565b6116d2565b6040516107e49190613402565b60405180910390f35b3480156107f957600080fd5b50610814600480360381019061080f919061341d565b6116f0565b005b34801561082257600080fd5b5061083d6004803603810190610838919061341d565b61182c565b60405161084a9190613402565b60405180910390f35b34801561085f57600080fd5b5061086861184c565b6040516108759190613402565b60405180910390f35b34801561088a57600080fd5b506108a560048036038101906108a091906135fb565b61185f565b005b3480156108b357600080fd5b506108ce60048036038101906108c991906134ee565b611984565b005b3480156108dc57600080fd5b506108e5611a93565b6040516108f291906134d3565b60405180910390f35b34801561090757600080fd5b50610922600480360381019061091d91906134ee565b611a99565b60405161092f9190613402565b60405180910390f35b34801561094457600080fd5b5061094d611bee565b60405161095a91906134d3565b60405180910390f35b34801561096f57600080fd5b5061098a60048036038101906109859190613668565b611bf4565b60405161099791906134d3565b60405180910390f35b3480156109ac57600080fd5b506109b5611c7b565b6040516109c291906134d3565b60405180910390f35b3480156109d757600080fd5b506109e0611c81565b005b3480156109ee57600080fd5b50610a096004803603810190610a0491906134ee565b611d45565b005b348015610a1757600080fd5b50610a326004803603810190610a2d919061341d565b611e1b565b005b348015610a4057600080fd5b50610a49611f13565b604051610a5691906134d3565b60405180910390f35b606060038054610a6e906136d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9a906136d7565b8015610ae75780601f10610abc57610100808354040283529160200191610ae7565b820191906000526020600020905b815481529060010190602001808311610aca57829003601f168201915b5050505050905090565b6000610b05610afe611f19565b8484611f21565b6001905092915050565b60126020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60105481565b610b6b611f19565b73ffffffffffffffffffffffffffffffffffffffff16610b89611373565b73ffffffffffffffffffffffffffffffffffffffff1614610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690613755565b60405180910390fd5b670de0b6b3a76400006103e86001610bf5610b53565b610bff91906137a4565b610c09919061382d565b610c13919061382d565b811015610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c906138d0565b60405180910390fd5b670de0b6b3a764000081610c6991906137a4565b60078190555050565b6000610c7f8484846120ec565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610cca611f19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190613962565b60405180910390fd5b610d5e85610d56611f19565b858403611f21565b60019150509392505050565b61dead81565b60006012905090565b6000610e1b610d86611f19565b848460016000610d94611f19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e169190613982565b611f21565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60009054906101000a900460ff1681565b600e5481565b600a60029054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610ebd90613a09565b60006040518083038185875af1925050503d8060008114610efa576040519150601f19603f3d011682016040523d82523d6000602084013e610eff565b606091505b50508091505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f58611f19565b73ffffffffffffffffffffffffffffffffffffffff16610f76611373565b73ffffffffffffffffffffffffffffffffffffffff1614610fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc390613755565b60405180910390fd5b610fd66000612af4565b565b610fe0611f19565b73ffffffffffffffffffffffffffffffffffffffff16610ffe611373565b73ffffffffffffffffffffffffffffffffffffffff1614611054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104b90613755565b60405180910390fd5b80600d81905550600d54600c8190555060c8600c5411156110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a190613a6a565b60405180910390fd5b50565b60006110b7611f19565b73ffffffffffffffffffffffffffffffffffffffff166110d5611373565b73ffffffffffffffffffffffffffffffffffffffff161461112b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112290613755565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b611155611f19565b73ffffffffffffffffffffffffffffffffffffffff16611173611373565b73ffffffffffffffffffffffffffffffffffffffff16146111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c090613755565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61125330610f08565b81111580156112625750600081115b6112a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129890613ad6565b60405180910390fd5b6112aa81612bba565b50565b6112b5611f19565b73ffffffffffffffffffffffffffffffffffffffff166112d3611373565b73ffffffffffffffffffffffffffffffffffffffff1614611329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132090613755565b60405180910390fd5b610398600d81905550600d54600c819055506001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b6113ab611f19565b73ffffffffffffffffffffffffffffffffffffffff166113c9611373565b73ffffffffffffffffffffffffffffffffffffffff161461141f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141690613755565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b60606004805461144b906136d7565b80601f0160208091040260200160405190810160405280929190818152602001828054611477906136d7565b80156114c45780601f10611499576101008083540402835291602001916114c4565b820191906000526020600020905b8154815290600101906020018083116114a757829003601f168201915b5050505050905090565b6114d6611f19565b73ffffffffffffffffffffffffffffffffffffffff166114f4611373565b73ffffffffffffffffffffffffffffffffffffffff161461154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154190613755565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d090613b68565b60405180910390fd5b6115e38282612df7565b5050565b600080600160006115f6611f19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa90613bfa565b60405180910390fd5b6116c76116be611f19565b85858403611f21565b600191505092915050565b60006116e66116df611f19565b84846120ec565b6001905092915050565b6116f8611f19565b73ffffffffffffffffffffffffffffffffffffffff16611716611373565b73ffffffffffffffffffffffffffffffffffffffff161461176c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176390613755565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60136020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b611867611f19565b73ffffffffffffffffffffffffffffffffffffffff16611885611373565b73ffffffffffffffffffffffffffffffffffffffff16146118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d290613755565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516119789190613402565b60405180910390a25050565b61198c611f19565b73ffffffffffffffffffffffffffffffffffffffff166119aa611373565b73ffffffffffffffffffffffffffffffffffffffff1614611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f790613755565b60405180910390fd5b670de0b6b3a76400006103e86005611a16610b53565b611a2091906137a4565b611a2a919061382d565b611a34919061382d565b811015611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d90613c8c565b60405180910390fd5b670de0b6b3a764000081611a8a91906137a4565b60098190555050565b60075481565b6000611aa3611f19565b73ffffffffffffffffffffffffffffffffffffffff16611ac1611373565b73ffffffffffffffffffffffffffffffffffffffff1614611b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0e90613755565b60405180910390fd5b620186a06001611b25610b53565b611b2f91906137a4565b611b39919061382d565b821015611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7290613d1e565b60405180910390fd5b6103e86005611b88610b53565b611b9291906137a4565b611b9c919061382d565b821115611bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd590613db0565b60405180910390fd5b8160088190555060019050919050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b611c89611f19565b73ffffffffffffffffffffffffffffffffffffffff16611ca7611373565b73ffffffffffffffffffffffffffffffffffffffff1614611cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf490613755565b60405180910390fd5b6a0422ca8b0a00a4250000006007819055506a0422ca8b0a00a4250000006009819055506032600d81905550600d54600c819055506032600f81905550600f54600e81905550565b611d4d611f19565b73ffffffffffffffffffffffffffffffffffffffff16611d6b611373565b73ffffffffffffffffffffffffffffffffffffffff1614611dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db890613755565b60405180910390fd5b80600f81905550600f54600e8190555061012c600e541115611e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f90613e1c565b60405180910390fd5b50565b611e23611f19565b73ffffffffffffffffffffffffffffffffffffffff16611e41611373565b73ffffffffffffffffffffffffffffffffffffffff1614611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e90613755565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efe90613eae565b60405180910390fd5b611f1081612af4565b50565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8890613f40565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff890613fd2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120df91906134d3565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561215c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215390614064565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c3906140f6565b60405180910390fd5b60008114156121e6576121e183836000612e98565b612aef565b600a60009054906101000a900460ff16156126e157612203611373565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122715750612241611373565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122aa5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122e4575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122fd5750600560149054906101000a900460ff16155b156126e057600a60019054906101000a900460ff166123f757601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123b75750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6123f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ed90614162565b60405180910390fd5b5b601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561249a5750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612541576007548111156124e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124db906141f4565b60405180910390fd5b6009546124f083610f08565b826124fb9190613982565b111561253c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253390614260565b60405180910390fd5b6126df565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125e45750601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156126335760075481111561262e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612625906142f2565b60405180910390fd5b6126de565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166126dd5760095461269083610f08565b8261269b9190613982565b11156126dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d390614260565b60405180910390fd5b5b5b5b5b5b60006126ec30610f08565b9050600060085482101590508080156127115750600a60029054906101000a900460ff165b801561272a5750600560149054906101000a900460ff16155b80156127805750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156127d65750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561282c5750601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612870576001600560146101000a81548160ff021916908315150217905550612854613119565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806129265750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561293057600090505b60008115612adf57601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561299357506000600e54115b156129fb576129c16103e86129b3600e548861321d90919063ffffffff16565b61323390919063ffffffff16565b9050600e54600f54826129d491906137a4565b6129de919061382d565b601060008282546129ef9190613982565b92505081905550612abb565b601360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a5657506000600c54115b15612aba57612a846103e8612a76600c548861321d90919063ffffffff16565b61323390919063ffffffff16565b9050600c54600d5482612a9791906137a4565b612aa1919061382d565b60106000828254612ab29190613982565b925050819055505b5b6000811115612ad057612acf873083612e98565b5b8085612adc9190614312565b94505b612aea878787612e98565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff811115612bd757612bd6614346565b5b604051908082528060200260200182016040528015612c055781602001602082028036833780820191505090505b5090503081600081518110612c1d57612c1c614375565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612cc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ce691906143b9565b81600181518110612cfa57612cf9614375565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612d5f307f000000000000000000000000000000000000000000000000000000000000000084611f21565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612dc19594939291906144df565b600060405180830381600087803b158015612ddb57600080fd5b505af1158015612def573d6000803e3d6000fd5b505050505050565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eff90614064565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6f906140f6565b60405180910390fd5b612f83838383613249565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613009576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613000906145ab565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461309c9190613982565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161310091906134d3565b60405180910390a361311384848461324e565b50505050565b600061312430610f08565b90506000601054905060008083148061313d5750600082145b1561314a5750505061321b565b601460085461315991906137a4565b83111561317257601460085461316f91906137a4565b92505b600083905061318081612bba565b6000601081905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516131ce90613a09565b60006040518083038185875af1925050503d806000811461320b576040519150601f19603f3d011682016040523d82523d6000602084013e613210565b606091505b505080925050505050505b565b6000818361322b91906137a4565b905092915050565b60008183613241919061382d565b905092915050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561328d578082015181840152602081019050613272565b8381111561329c576000848401525b50505050565b6000601f19601f8301169050919050565b60006132be82613253565b6132c8818561325e565b93506132d881856020860161326f565b6132e1816132a2565b840191505092915050565b6000602082019050818103600083015261330681846132b3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061333e82613313565b9050919050565b61334e81613333565b811461335957600080fd5b50565b60008135905061336b81613345565b92915050565b6000819050919050565b61338481613371565b811461338f57600080fd5b50565b6000813590506133a18161337b565b92915050565b600080604083850312156133be576133bd61330e565b5b60006133cc8582860161335c565b92505060206133dd85828601613392565b9150509250929050565b60008115159050919050565b6133fc816133e7565b82525050565b600060208201905061341760008301846133f3565b92915050565b6000602082840312156134335761343261330e565b5b60006134418482850161335c565b91505092915050565b6000819050919050565b600061346f61346a61346584613313565b61344a565b613313565b9050919050565b600061348182613454565b9050919050565b600061349382613476565b9050919050565b6134a381613488565b82525050565b60006020820190506134be600083018461349a565b92915050565b6134cd81613371565b82525050565b60006020820190506134e860008301846134c4565b92915050565b6000602082840312156135045761350361330e565b5b600061351284828501613392565b91505092915050565b6000806000606084860312156135345761353361330e565b5b60006135428682870161335c565b93505060206135538682870161335c565b925050604061356486828701613392565b9150509250925092565b61357781613333565b82525050565b6000602082019050613592600083018461356e565b92915050565b600060ff82169050919050565b6135ae81613598565b82525050565b60006020820190506135c960008301846135a5565b92915050565b6135d8816133e7565b81146135e357600080fd5b50565b6000813590506135f5816135cf565b92915050565b600080604083850312156136125761361161330e565b5b60006136208582860161335c565b9250506020613631858286016135e6565b9150509250929050565b6000602082840312156136515761365061330e565b5b600061365f848285016135e6565b91505092915050565b6000806040838503121561367f5761367e61330e565b5b600061368d8582860161335c565b925050602061369e8582860161335c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136ef57607f821691505b60208210811415613703576137026136a8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061373f60208361325e565b915061374a82613709565b602082019050919050565b6000602082019050818103600083015261376e81613732565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137af82613371565b91506137ba83613371565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137f3576137f2613775565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061383882613371565b915061384383613371565b925082613853576138526137fe565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006138ba602f8361325e565b91506138c58261385e565b604082019050919050565b600060208201905081810360008301526138e9816138ad565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061394c60288361325e565b9150613957826138f0565b604082019050919050565b6000602082019050818103600083015261397b8161393f565b9050919050565b600061398d82613371565b915061399883613371565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139cd576139cc613775565b5b828201905092915050565b600081905092915050565b50565b60006139f36000836139d8565b91506139fe826139e3565b600082019050919050565b6000613a14826139e6565b9150819050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000613a54601d8361325e565b9150613a5f82613a1e565b602082019050919050565b60006020820190508181036000830152613a8381613a47565b9050919050565b7f57726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b6000613ac0600c8361325e565b9150613acb82613a8a565b602082019050919050565b60006020820190508181036000830152613aef81613ab3565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613b5260398361325e565b9150613b5d82613af6565b604082019050919050565b60006020820190508181036000830152613b8181613b45565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613be460258361325e565b9150613bef82613b88565b604082019050919050565b60006020820190508181036000830152613c1381613bd7565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613c7660248361325e565b9150613c8182613c1a565b604082019050919050565b60006020820190508181036000830152613ca581613c69565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613d0860358361325e565b9150613d1382613cac565b604082019050919050565b60006020820190508181036000830152613d3781613cfb565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613d9a60348361325e565b9150613da582613d3e565b604082019050919050565b60006020820190508181036000830152613dc981613d8d565b9050919050565b7f4d757374206b656570206665657320617420333025206f72206c657373000000600082015250565b6000613e06601d8361325e565b9150613e1182613dd0565b602082019050919050565b60006020820190508181036000830152613e3581613df9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e9860268361325e565b9150613ea382613e3c565b604082019050919050565b60006020820190508181036000830152613ec781613e8b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613f2a60248361325e565b9150613f3582613ece565b604082019050919050565b60006020820190508181036000830152613f5981613f1d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fbc60228361325e565b9150613fc782613f60565b604082019050919050565b60006020820190508181036000830152613feb81613faf565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061404e60258361325e565b915061405982613ff2565b604082019050919050565b6000602082019050818103600083015261407d81614041565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006140e060238361325e565b91506140eb82614084565b604082019050919050565b6000602082019050818103600083015261410f816140d3565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061414c60168361325e565b915061415782614116565b602082019050919050565b6000602082019050818103600083015261417b8161413f565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006141de60358361325e565b91506141e982614182565b604082019050919050565b6000602082019050818103600083015261420d816141d1565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061424a60138361325e565b915061425582614214565b602082019050919050565b600060208201905081810360008301526142798161423d565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006142dc60368361325e565b91506142e782614280565b604082019050919050565b6000602082019050818103600083015261430b816142cf565b9050919050565b600061431d82613371565b915061432883613371565b92508282101561433b5761433a613775565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506143b381613345565b92915050565b6000602082840312156143cf576143ce61330e565b5b60006143dd848285016143a4565b91505092915050565b6000819050919050565b600061440b614406614401846143e6565b61344a565b613371565b9050919050565b61441b816143f0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61445681613333565b82525050565b6000614468838361444d565b60208301905092915050565b6000602082019050919050565b600061448c82614421565b614496818561442c565b93506144a18361443d565b8060005b838110156144d25781516144b9888261445c565b97506144c483614474565b9250506001810190506144a5565b5085935050505092915050565b600060a0820190506144f460008301886134c4565b6145016020830187614412565b81810360408301526145138186614481565b9050614522606083018561356e565b61452f60808301846134c4565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061459560268361325e565b91506145a082614539565b604082019050919050565b600060208201905081810360008301526145c481614588565b905091905056fea264697066735822122001661974a0bdf6fd817f4d1b4f09f5d3ceddb9933d1526963ad630168ccb745264736f6c634300080a00330000000000000000000000008540b3a7f01415fc1636121a9fe21206ca692d4d
Deployed Bytecode
0x6080604052600436106102765760003560e01c8063881dce601161014f578063bbc0c742116100c1578063dd62ed3e1161007a578063dd62ed3e14610963578063e2f45605146109a0578063e33e4b49146109cb578063eba4c333146109e2578063f2fde38b14610a0b578063f8b45b0514610a345761027d565b8063bbc0c74214610853578063c02466681461087e578063c18bc195146108a7578063c8c8ebe4146108d0578063d257b34f146108fb578063d85ba063146109385761027d565b806395d89b411161011357806395d89b411461071f5780639a7a23d61461074a578063a457c2d714610773578063a9059cbb146107b0578063aacebbe3146107ed578063b62496f5146108165761027d565b8063881dce60146106605780638a8c523c146106895780638da5cb5b146106a057806392136913146106cb578063924de9b7146106f65761027d565b806349bd5a5e116101e857806370a08231116101ac57806370a0823114610564578063715018a6146105a157806371fc4688146105b8578063751039fc146105e15780637571336a1461060c57806375f0a874146106355761027d565b806349bd5a5e146104a15780634a62bb65146104cc5780636a486a8e146104f75780636ddd1713146105225780636fc3eaec1461054d5761027d565b80631f3fed8f1161023a5780631f3fed8f1461037d578063203e727e146103a857806323b872dd146103d157806327c8f8351461040e578063313ce5671461043957806339509351146104645761027d565b806306fdde0314610282578063095ea7b3146102ad57806310d5de53146102ea5780631694505e1461032757806318160ddd146103525761027d565b3661027d57005b600080fd5b34801561028e57600080fd5b50610297610a5f565b6040516102a491906132ec565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf91906133a7565b610af1565b6040516102e19190613402565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c919061341d565b610b0f565b60405161031e9190613402565b60405180910390f35b34801561033357600080fd5b5061033c610b2f565b60405161034991906134a9565b60405180910390f35b34801561035e57600080fd5b50610367610b53565b60405161037491906134d3565b60405180910390f35b34801561038957600080fd5b50610392610b5d565b60405161039f91906134d3565b60405180910390f35b3480156103b457600080fd5b506103cf60048036038101906103ca91906134ee565b610b63565b005b3480156103dd57600080fd5b506103f860048036038101906103f3919061351b565b610c72565b6040516104059190613402565b60405180910390f35b34801561041a57600080fd5b50610423610d6a565b604051610430919061357d565b60405180910390f35b34801561044557600080fd5b5061044e610d70565b60405161045b91906135b4565b60405180910390f35b34801561047057600080fd5b5061048b600480360381019061048691906133a7565b610d79565b6040516104989190613402565b60405180910390f35b3480156104ad57600080fd5b506104b6610e25565b6040516104c3919061357d565b60405180910390f35b3480156104d857600080fd5b506104e1610e49565b6040516104ee9190613402565b60405180910390f35b34801561050357600080fd5b5061050c610e5c565b60405161051991906134d3565b60405180910390f35b34801561052e57600080fd5b50610537610e62565b6040516105449190613402565b60405180910390f35b34801561055957600080fd5b50610562610e75565b005b34801561057057600080fd5b5061058b6004803603810190610586919061341d565b610f08565b60405161059891906134d3565b60405180910390f35b3480156105ad57600080fd5b506105b6610f50565b005b3480156105c457600080fd5b506105df60048036038101906105da91906134ee565b610fd8565b005b3480156105ed57600080fd5b506105f66110ad565b6040516106039190613402565b60405180910390f35b34801561061857600080fd5b50610633600480360381019061062e91906135fb565b61114d565b005b34801561064157600080fd5b5061064a611224565b604051610657919061357d565b60405180910390f35b34801561066c57600080fd5b50610687600480360381019061068291906134ee565b61124a565b005b34801561069557600080fd5b5061069e6112ad565b005b3480156106ac57600080fd5b506106b5611373565b6040516106c2919061357d565b60405180910390f35b3480156106d757600080fd5b506106e061139d565b6040516106ed91906134d3565b60405180910390f35b34801561070257600080fd5b5061071d6004803603810190610718919061363b565b6113a3565b005b34801561072b57600080fd5b5061073461143c565b60405161074191906132ec565b60405180910390f35b34801561075657600080fd5b50610771600480360381019061076c91906135fb565b6114ce565b005b34801561077f57600080fd5b5061079a600480360381019061079591906133a7565b6115e7565b6040516107a79190613402565b60405180910390f35b3480156107bc57600080fd5b506107d760048036038101906107d291906133a7565b6116d2565b6040516107e49190613402565b60405180910390f35b3480156107f957600080fd5b50610814600480360381019061080f919061341d565b6116f0565b005b34801561082257600080fd5b5061083d6004803603810190610838919061341d565b61182c565b60405161084a9190613402565b60405180910390f35b34801561085f57600080fd5b5061086861184c565b6040516108759190613402565b60405180910390f35b34801561088a57600080fd5b506108a560048036038101906108a091906135fb565b61185f565b005b3480156108b357600080fd5b506108ce60048036038101906108c991906134ee565b611984565b005b3480156108dc57600080fd5b506108e5611a93565b6040516108f291906134d3565b60405180910390f35b34801561090757600080fd5b50610922600480360381019061091d91906134ee565b611a99565b60405161092f9190613402565b60405180910390f35b34801561094457600080fd5b5061094d611bee565b60405161095a91906134d3565b60405180910390f35b34801561096f57600080fd5b5061098a60048036038101906109859190613668565b611bf4565b60405161099791906134d3565b60405180910390f35b3480156109ac57600080fd5b506109b5611c7b565b6040516109c291906134d3565b60405180910390f35b3480156109d757600080fd5b506109e0611c81565b005b3480156109ee57600080fd5b50610a096004803603810190610a0491906134ee565b611d45565b005b348015610a1757600080fd5b50610a326004803603810190610a2d919061341d565b611e1b565b005b348015610a4057600080fd5b50610a49611f13565b604051610a5691906134d3565b60405180910390f35b606060038054610a6e906136d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9a906136d7565b8015610ae75780601f10610abc57610100808354040283529160200191610ae7565b820191906000526020600020905b815481529060010190602001808311610aca57829003601f168201915b5050505050905090565b6000610b05610afe611f19565b8484611f21565b6001905092915050565b60126020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60105481565b610b6b611f19565b73ffffffffffffffffffffffffffffffffffffffff16610b89611373565b73ffffffffffffffffffffffffffffffffffffffff1614610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690613755565b60405180910390fd5b670de0b6b3a76400006103e86001610bf5610b53565b610bff91906137a4565b610c09919061382d565b610c13919061382d565b811015610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c906138d0565b60405180910390fd5b670de0b6b3a764000081610c6991906137a4565b60078190555050565b6000610c7f8484846120ec565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610cca611f19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190613962565b60405180910390fd5b610d5e85610d56611f19565b858403611f21565b60019150509392505050565b61dead81565b60006012905090565b6000610e1b610d86611f19565b848460016000610d94611f19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e169190613982565b611f21565b6001905092915050565b7f000000000000000000000000355a4f4a7c08cfcee1f4ccd0c3c0728b73bfd5b881565b600a60009054906101000a900460ff1681565b600e5481565b600a60029054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610ebd90613a09565b60006040518083038185875af1925050503d8060008114610efa576040519150601f19603f3d011682016040523d82523d6000602084013e610eff565b606091505b50508091505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f58611f19565b73ffffffffffffffffffffffffffffffffffffffff16610f76611373565b73ffffffffffffffffffffffffffffffffffffffff1614610fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc390613755565b60405180910390fd5b610fd66000612af4565b565b610fe0611f19565b73ffffffffffffffffffffffffffffffffffffffff16610ffe611373565b73ffffffffffffffffffffffffffffffffffffffff1614611054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104b90613755565b60405180910390fd5b80600d81905550600d54600c8190555060c8600c5411156110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a190613a6a565b60405180910390fd5b50565b60006110b7611f19565b73ffffffffffffffffffffffffffffffffffffffff166110d5611373565b73ffffffffffffffffffffffffffffffffffffffff161461112b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112290613755565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b611155611f19565b73ffffffffffffffffffffffffffffffffffffffff16611173611373565b73ffffffffffffffffffffffffffffffffffffffff16146111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c090613755565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61125330610f08565b81111580156112625750600081115b6112a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129890613ad6565b60405180910390fd5b6112aa81612bba565b50565b6112b5611f19565b73ffffffffffffffffffffffffffffffffffffffff166112d3611373565b73ffffffffffffffffffffffffffffffffffffffff1614611329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132090613755565b60405180910390fd5b610398600d81905550600d54600c819055506001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b6113ab611f19565b73ffffffffffffffffffffffffffffffffffffffff166113c9611373565b73ffffffffffffffffffffffffffffffffffffffff161461141f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141690613755565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b60606004805461144b906136d7565b80601f0160208091040260200160405190810160405280929190818152602001828054611477906136d7565b80156114c45780601f10611499576101008083540402835291602001916114c4565b820191906000526020600020905b8154815290600101906020018083116114a757829003601f168201915b5050505050905090565b6114d6611f19565b73ffffffffffffffffffffffffffffffffffffffff166114f4611373565b73ffffffffffffffffffffffffffffffffffffffff161461154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154190613755565b60405180910390fd5b7f000000000000000000000000355a4f4a7c08cfcee1f4ccd0c3c0728b73bfd5b873ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d090613b68565b60405180910390fd5b6115e38282612df7565b5050565b600080600160006115f6611f19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156116b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116aa90613bfa565b60405180910390fd5b6116c76116be611f19565b85858403611f21565b600191505092915050565b60006116e66116df611f19565b84846120ec565b6001905092915050565b6116f8611f19565b73ffffffffffffffffffffffffffffffffffffffff16611716611373565b73ffffffffffffffffffffffffffffffffffffffff161461176c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176390613755565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60136020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b611867611f19565b73ffffffffffffffffffffffffffffffffffffffff16611885611373565b73ffffffffffffffffffffffffffffffffffffffff16146118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d290613755565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516119789190613402565b60405180910390a25050565b61198c611f19565b73ffffffffffffffffffffffffffffffffffffffff166119aa611373565b73ffffffffffffffffffffffffffffffffffffffff1614611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f790613755565b60405180910390fd5b670de0b6b3a76400006103e86005611a16610b53565b611a2091906137a4565b611a2a919061382d565b611a34919061382d565b811015611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d90613c8c565b60405180910390fd5b670de0b6b3a764000081611a8a91906137a4565b60098190555050565b60075481565b6000611aa3611f19565b73ffffffffffffffffffffffffffffffffffffffff16611ac1611373565b73ffffffffffffffffffffffffffffffffffffffff1614611b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0e90613755565b60405180910390fd5b620186a06001611b25610b53565b611b2f91906137a4565b611b39919061382d565b821015611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7290613d1e565b60405180910390fd5b6103e86005611b88610b53565b611b9291906137a4565b611b9c919061382d565b821115611bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd590613db0565b60405180910390fd5b8160088190555060019050919050565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b611c89611f19565b73ffffffffffffffffffffffffffffffffffffffff16611ca7611373565b73ffffffffffffffffffffffffffffffffffffffff1614611cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf490613755565b60405180910390fd5b6a0422ca8b0a00a4250000006007819055506a0422ca8b0a00a4250000006009819055506032600d81905550600d54600c819055506032600f81905550600f54600e81905550565b611d4d611f19565b73ffffffffffffffffffffffffffffffffffffffff16611d6b611373565b73ffffffffffffffffffffffffffffffffffffffff1614611dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db890613755565b60405180910390fd5b80600f81905550600f54600e8190555061012c600e541115611e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f90613e1c565b60405180910390fd5b50565b611e23611f19565b73ffffffffffffffffffffffffffffffffffffffff16611e41611373565b73ffffffffffffffffffffffffffffffffffffffff1614611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e90613755565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efe90613eae565b60405180910390fd5b611f1081612af4565b50565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8890613f40565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff890613fd2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120df91906134d3565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561215c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215390614064565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c3906140f6565b60405180910390fd5b60008114156121e6576121e183836000612e98565b612aef565b600a60009054906101000a900460ff16156126e157612203611373565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122715750612241611373565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122aa5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122e4575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122fd5750600560149054906101000a900460ff16155b156126e057600a60019054906101000a900460ff166123f757601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123b75750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6123f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ed90614162565b60405180910390fd5b5b601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561249a5750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612541576007548111156124e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124db906141f4565b60405180910390fd5b6009546124f083610f08565b826124fb9190613982565b111561253c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253390614260565b60405180910390fd5b6126df565b601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125e45750601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156126335760075481111561262e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612625906142f2565b60405180910390fd5b6126de565b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166126dd5760095461269083610f08565b8261269b9190613982565b11156126dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d390614260565b60405180910390fd5b5b5b5b5b5b60006126ec30610f08565b9050600060085482101590508080156127115750600a60029054906101000a900460ff165b801561272a5750600560149054906101000a900460ff16155b80156127805750601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156127d65750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561282c5750601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612870576001600560146101000a81548160ff021916908315150217905550612854613119565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806129265750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561293057600090505b60008115612adf57601360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561299357506000600e54115b156129fb576129c16103e86129b3600e548861321d90919063ffffffff16565b61323390919063ffffffff16565b9050600e54600f54826129d491906137a4565b6129de919061382d565b601060008282546129ef9190613982565b92505081905550612abb565b601360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a5657506000600c54115b15612aba57612a846103e8612a76600c548861321d90919063ffffffff16565b61323390919063ffffffff16565b9050600c54600d5482612a9791906137a4565b612aa1919061382d565b60106000828254612ab29190613982565b925050819055505b5b6000811115612ad057612acf873083612e98565b5b8085612adc9190614312565b94505b612aea878787612e98565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff811115612bd757612bd6614346565b5b604051908082528060200260200182016040528015612c055781602001602082028036833780820191505090505b5090503081600081518110612c1d57612c1c614375565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612cc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ce691906143b9565b81600181518110612cfa57612cf9614375565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612d5f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611f21565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612dc19594939291906144df565b600060405180830381600087803b158015612ddb57600080fd5b505af1158015612def573d6000803e3d6000fd5b505050505050565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eff90614064565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6f906140f6565b60405180910390fd5b612f83838383613249565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613009576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613000906145ab565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461309c9190613982565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161310091906134d3565b60405180910390a361311384848461324e565b50505050565b600061312430610f08565b90506000601054905060008083148061313d5750600082145b1561314a5750505061321b565b601460085461315991906137a4565b83111561317257601460085461316f91906137a4565b92505b600083905061318081612bba565b6000601081905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516131ce90613a09565b60006040518083038185875af1925050503d806000811461320b576040519150601f19603f3d011682016040523d82523d6000602084013e613210565b606091505b505080925050505050505b565b6000818361322b91906137a4565b905092915050565b60008183613241919061382d565b905092915050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561328d578082015181840152602081019050613272565b8381111561329c576000848401525b50505050565b6000601f19601f8301169050919050565b60006132be82613253565b6132c8818561325e565b93506132d881856020860161326f565b6132e1816132a2565b840191505092915050565b6000602082019050818103600083015261330681846132b3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061333e82613313565b9050919050565b61334e81613333565b811461335957600080fd5b50565b60008135905061336b81613345565b92915050565b6000819050919050565b61338481613371565b811461338f57600080fd5b50565b6000813590506133a18161337b565b92915050565b600080604083850312156133be576133bd61330e565b5b60006133cc8582860161335c565b92505060206133dd85828601613392565b9150509250929050565b60008115159050919050565b6133fc816133e7565b82525050565b600060208201905061341760008301846133f3565b92915050565b6000602082840312156134335761343261330e565b5b60006134418482850161335c565b91505092915050565b6000819050919050565b600061346f61346a61346584613313565b61344a565b613313565b9050919050565b600061348182613454565b9050919050565b600061349382613476565b9050919050565b6134a381613488565b82525050565b60006020820190506134be600083018461349a565b92915050565b6134cd81613371565b82525050565b60006020820190506134e860008301846134c4565b92915050565b6000602082840312156135045761350361330e565b5b600061351284828501613392565b91505092915050565b6000806000606084860312156135345761353361330e565b5b60006135428682870161335c565b93505060206135538682870161335c565b925050604061356486828701613392565b9150509250925092565b61357781613333565b82525050565b6000602082019050613592600083018461356e565b92915050565b600060ff82169050919050565b6135ae81613598565b82525050565b60006020820190506135c960008301846135a5565b92915050565b6135d8816133e7565b81146135e357600080fd5b50565b6000813590506135f5816135cf565b92915050565b600080604083850312156136125761361161330e565b5b60006136208582860161335c565b9250506020613631858286016135e6565b9150509250929050565b6000602082840312156136515761365061330e565b5b600061365f848285016135e6565b91505092915050565b6000806040838503121561367f5761367e61330e565b5b600061368d8582860161335c565b925050602061369e8582860161335c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136ef57607f821691505b60208210811415613703576137026136a8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061373f60208361325e565b915061374a82613709565b602082019050919050565b6000602082019050818103600083015261376e81613732565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137af82613371565b91506137ba83613371565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137f3576137f2613775565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061383882613371565b915061384383613371565b925082613853576138526137fe565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006138ba602f8361325e565b91506138c58261385e565b604082019050919050565b600060208201905081810360008301526138e9816138ad565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061394c60288361325e565b9150613957826138f0565b604082019050919050565b6000602082019050818103600083015261397b8161393f565b9050919050565b600061398d82613371565b915061399883613371565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139cd576139cc613775565b5b828201905092915050565b600081905092915050565b50565b60006139f36000836139d8565b91506139fe826139e3565b600082019050919050565b6000613a14826139e6565b9150819050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000613a54601d8361325e565b9150613a5f82613a1e565b602082019050919050565b60006020820190508181036000830152613a8381613a47565b9050919050565b7f57726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b6000613ac0600c8361325e565b9150613acb82613a8a565b602082019050919050565b60006020820190508181036000830152613aef81613ab3565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613b5260398361325e565b9150613b5d82613af6565b604082019050919050565b60006020820190508181036000830152613b8181613b45565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613be460258361325e565b9150613bef82613b88565b604082019050919050565b60006020820190508181036000830152613c1381613bd7565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613c7660248361325e565b9150613c8182613c1a565b604082019050919050565b60006020820190508181036000830152613ca581613c69565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613d0860358361325e565b9150613d1382613cac565b604082019050919050565b60006020820190508181036000830152613d3781613cfb565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000613d9a60348361325e565b9150613da582613d3e565b604082019050919050565b60006020820190508181036000830152613dc981613d8d565b9050919050565b7f4d757374206b656570206665657320617420333025206f72206c657373000000600082015250565b6000613e06601d8361325e565b9150613e1182613dd0565b602082019050919050565b60006020820190508181036000830152613e3581613df9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e9860268361325e565b9150613ea382613e3c565b604082019050919050565b60006020820190508181036000830152613ec781613e8b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613f2a60248361325e565b9150613f3582613ece565b604082019050919050565b60006020820190508181036000830152613f5981613f1d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fbc60228361325e565b9150613fc782613f60565b604082019050919050565b60006020820190508181036000830152613feb81613faf565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061404e60258361325e565b915061405982613ff2565b604082019050919050565b6000602082019050818103600083015261407d81614041565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006140e060238361325e565b91506140eb82614084565b604082019050919050565b6000602082019050818103600083015261410f816140d3565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061414c60168361325e565b915061415782614116565b602082019050919050565b6000602082019050818103600083015261417b8161413f565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006141de60358361325e565b91506141e982614182565b604082019050919050565b6000602082019050818103600083015261420d816141d1565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061424a60138361325e565b915061425582614214565b602082019050919050565b600060208201905081810360008301526142798161423d565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006142dc60368361325e565b91506142e782614280565b604082019050919050565b6000602082019050818103600083015261430b816142cf565b9050919050565b600061431d82613371565b915061432883613371565b92508282101561433b5761433a613775565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506143b381613345565b92915050565b6000602082840312156143cf576143ce61330e565b5b60006143dd848285016143a4565b91505092915050565b6000819050919050565b600061440b614406614401846143e6565b61344a565b613371565b9050919050565b61441b816143f0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61445681613333565b82525050565b6000614468838361444d565b60208301905092915050565b6000602082019050919050565b600061448c82614421565b614496818561442c565b93506144a18361443d565b8060005b838110156144d25781516144b9888261445c565b97506144c483614474565b9250506001810190506144a5565b5085935050505092915050565b600060a0820190506144f460008301886134c4565b6145016020830187614412565b81810360408301526145138186614481565b9050614522606083018561356e565b61452f60808301846134c4565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061459560268361325e565b91506145a082614539565b604082019050919050565b600060208201905081810360008301526145c481614588565b905091905056fea264697066735822122001661974a0bdf6fd817f4d1b4f09f5d3ceddb9933d1526963ad630168ccb745264736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000008540b3a7f01415fc1636121a9fe21206ca692d4d
-----Decoded View---------------
Arg [0] : wallet1 (address): 0x8540b3A7f01415FC1636121A9fE21206Ca692d4d
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000008540b3a7f01415fc1636121a9fe21206ca692d4d
Deployed Bytecode Sourcemap
32787:12546:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9582:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11749:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33845:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32865:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10702:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33663:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37357:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12400:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32968:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10544:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13301:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32923:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33214:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33588:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33294:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39444:174;;;;;;;;;;;;;:::i;:::-;;10873:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2817:103;;;;;;;;;;;;;:::i;:::-;;38275:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36659:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37904:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33060:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38974:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36422:185;;;;;;;;;;;;;:::i;:::-;;2166:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33623:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38167:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9801:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39626:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14019:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11213:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40134:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34066:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33254:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38784:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37640:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33099:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36852:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33514:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11451:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33141:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39154:282;;;;;;;;;;;;;:::i;:::-;;38527:249;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3075:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33181:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9582:100;9636:13;9669:5;9662:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9582:100;:::o;11749:169::-;11832:4;11849:39;11858:12;:10;:12::i;:::-;11872:7;11881:6;11849:8;:39::i;:::-;11906:4;11899:11;;11749:169;;;;:::o;33845:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32865:51::-;;;:::o;10702:108::-;10763:7;10790:12;;10783:19;;10702:108;:::o;33663:33::-;;;;:::o;37357:275::-;2397:12;:10;:12::i;:::-;2386:23;;:7;:5;:7::i;:::-;:23;;;2378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37494:4:::1;37486;37481:1;37465:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37464:26;;;;:::i;:::-;37463:35;;;;:::i;:::-;37453:6;:45;;37431:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;37617:6;37607;:17;;;;:::i;:::-;37584:20;:40;;;;37357:275:::0;:::o;12400:492::-;12540:4;12557:36;12567:6;12575:9;12586:6;12557:9;:36::i;:::-;12606:24;12633:11;:19;12645:6;12633:19;;;;;;;;;;;;;;;:33;12653:12;:10;:12::i;:::-;12633:33;;;;;;;;;;;;;;;;12606:60;;12705:6;12685:16;:26;;12677:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12792:57;12801:6;12809:12;:10;:12::i;:::-;12842:6;12823:16;:25;12792:8;:57::i;:::-;12880:4;12873:11;;;12400:492;;;;;:::o;32968:53::-;33014:6;32968:53;:::o;10544:93::-;10602:5;10627:2;10620:9;;10544:93;:::o;13301:215::-;13389:4;13406:80;13415:12;:10;:12::i;:::-;13429:7;13475:10;13438:11;:25;13450:12;:10;:12::i;:::-;13438:25;;;;;;;;;;;;;;;:34;13464:7;13438:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13406:8;:80::i;:::-;13504:4;13497:11;;13301:215;;;;:::o;32923:38::-;;;:::o;33214:33::-;;;;;;;;;;;;;:::o;33588:28::-;;;;:::o;33294:31::-;;;;;;;;;;;;;:::o;39444:174::-;39486:12;39531:15;;;;;;;;;;;39523:29;;39574:21;39523:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39509:101;;;;;39475:143;39444:174::o;10873:127::-;10947:7;10974:9;:18;10984:7;10974:18;;;;;;;;;;;;;;;;10967:25;;10873:127;;;:::o;2817:103::-;2397:12;:10;:12::i;:::-;2386:23;;:7;:5;:7::i;:::-;:23;;;2378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2882:30:::1;2909:1;2882:18;:30::i;:::-;2817:103::o:0;38275:244::-;2397:12;:10;:12::i;:::-;2386:23;;:7;:5;:7::i;:::-;:23;;;2378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38385:13:::1;38367:15;:31;;;;38424:15;;38409:12;:30;;;;38474:3;38458:12;;:19;;38450:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38275:244:::0;:::o;36659:121::-;36711:4;2397:12;:10;:12::i;:::-;2386:23;;:7;:5;:7::i;:::-;:23;;;2378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36745:5:::1;36728:14;;:22;;;;;;;;;;;;;;;;;;36768:4;36761:11;;36659:121:::0;:::o;37904:167::-;2397:12;:10;:12::i;:::-;2386:23;;:7;:5;:7::i;:::-;:23;;;2378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38059:4:::1;38017:31;:39;38049:6;38017:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;37904:167:::0;;:::o;33060:30::-;;;;;;;;;;;;;:::o;38974:172::-;39048:24;39066:4;39048:9;:24::i;:::-;39038:6;:34;;:48;;;;;39085:1;39076:6;:10;39038:48;39030:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;39114:24;39131:6;39114:16;:24::i;:::-;38974:172;:::o;36422:185::-;2397:12;:10;:12::i;:::-;2386:23;;:7;:5;:7::i;:::-;:23;;;2378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36495:3:::1;36477:15;:21;;;;36524:15;;36509:12;:30;;;;36566:4;36550:13;;:20;;;;;;;;;;;;;;;;;;36595:4;36581:11;;:18;;;;;;;;;;;;;;;;;;36422:185::o:0;2166:87::-;2212:7;2239:6;;;;;;;;;;;2232:13;;2166:87;:::o;33623:31::-;;;;:::o;38167:100::-;2397:12;:10;:12::i;:::-;2386:23;;:7;:5;:7::i;:::-;:23;;;2378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38252:7:::1;38238:11;;:21;;;;;;;;;;;;;;;;;;38167:100:::0;:::o;9801:104::-;9857:13;9890:7;9883:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9801:104;:::o;39626:304::-;2397:12;:10;:12::i;:::-;2386:23;;:7;:5;:7::i;:::-;:23;;;2378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39770:13:::1;39762:21;;:4;:21;;;;39740:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;39881:41;39910:4;39916:5;39881:28;:41::i;:::-;39626:304:::0;;:::o;14019:413::-;14112:4;14129:24;14156:11;:25;14168:12;:10;:12::i;:::-;14156:25;;;;;;;;;;;;;;;:34;14182:7;14156:34;;;;;;;;;;;;;;;;14129:61;;14229:15;14209:16;:35;;14201:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14322:67;14331:12;:10;:12::i;:::-;14345:7;14373:15;14354:16;:34;14322:8;:67::i;:::-;14420:4;14413:11;;;14019:413;;;;:::o;11213:175::-;11299:4;11316:42;11326:12;:10;:12::i;:::-;11340:9;11351:6;11316:9;:42::i;:::-;11376:4;11369:11;;11213:175;;;;:::o;40134:231::-;2397:12;:10;:12::i;:::-;2386:23;;:7;:5;:7::i;:::-;:23;;;2378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40294:15:::1;;;;;;;;;;;40251:59;;40274:18;40251:59;;;;;;;;;;;;40339:18;40321:15;;:36;;;;;;;;;;;;;;;;;;40134:231:::0;:::o;34066:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33254:33::-;;;;;;;;;;;;;:::o;38784:182::-;2397:12;:10;:12::i;:::-;2386:23;;:7;:5;:7::i;:::-;:23;;;2378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38900:8:::1;38869:19;:28;38889:7;38869:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;38940:7;38924:34;;;38949:8;38924:34;;;;;;:::i;:::-;;;;;;;;38784:182:::0;;:::o;37640:256::-;2397:12;:10;:12::i;:::-;2386:23;;:7;:5;:7::i;:::-;:23;;;2378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37780:4:::1;37772;37767:1;37751:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37750:26;;;;:::i;:::-;37749:35;;;;:::i;:::-;37739:6;:45;;37717:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;37881:6;37871;:17;;;;:::i;:::-;37859:9;:29;;;;37640:256:::0;:::o;33099:35::-;;;;:::o;36852:497::-;36960:4;2397:12;:10;:12::i;:::-;2386:23;;:7;:5;:7::i;:::-;:23;;;2378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37039:6:::1;37034:1;37018:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37017:28;;;;:::i;:::-;37004:9;:41;;36982:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;37194:4;37189:1;37173:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37172:26;;;;:::i;:::-;37159:9;:39;;37137:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;37310:9;37289:18;:30;;;;37337:4;37330:11;;36852:497:::0;;;:::o;33514:27::-;;;;:::o;11451:151::-;11540:7;11567:11;:18;11579:5;11567:18;;;;;;;;;;;;;;;:27;11586:7;11567:27;;;;;;;;;;;;;;;;11560:34;;11451:151;;;;:::o;33141:33::-;;;;:::o;39154:282::-;2397:12;:10;:12::i;:::-;2386:23;;:7;:5;:7::i;:::-;:23;;;2378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39229:17:::1;39206:20;:40;;;;39267:16;39255:9;:28;;;;39312:2;39294:15;:20;;;;39338:15;;39323:12;:30;;;;39383:2;39364:16;:21;;;;39410:16;;39394:13;:32;;;;39154:282::o:0;38527:249::-;2397:12;:10;:12::i;:::-;2386:23;;:7;:5;:7::i;:::-;:23;;;2378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38639:13:::1;38620:16;:32;;;;38679:16;;38663:13;:32;;;;38731:3;38714:13;;:20;;38706:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;38527:249:::0;:::o;3075:201::-;2397:12;:10;:12::i;:::-;2386:23;;:7;:5;:7::i;:::-;:23;;;2378:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3184:1:::1;3164:22;;:8;:22;;;;3156:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3240:28;3259:8;3240:18;:28::i;:::-;3075:201:::0;:::o;33181:24::-;;;;:::o;839:98::-;892:7;919:10;912:17;;839:98;:::o;17703:380::-;17856:1;17839:19;;:5;:19;;;;17831:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17937:1;17918:21;;:7;:21;;;;17910:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18021:6;17991:11;:18;18003:5;17991:18;;;;;;;;;;;;;;;:27;18010:7;17991:27;;;;;;;;;;;;;;;:36;;;;18059:7;18043:32;;18052:5;18043:32;;;18068:6;18043:32;;;;;;:::i;:::-;;;;;;;;17703:380;;;:::o;40373:3626::-;40521:1;40505:18;;:4;:18;;;;40497:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40598:1;40584:16;;:2;:16;;;;40576:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40667:1;40657:6;:11;40653:93;;;40685:28;40701:4;40707:2;40711:1;40685:15;:28::i;:::-;40728:7;;40653:93;40762:14;;;;;;;;;;;40758:1694;;;40823:7;:5;:7::i;:::-;40815:15;;:4;:15;;;;:49;;;;;40857:7;:5;:7::i;:::-;40851:13;;:2;:13;;;;40815:49;:86;;;;;40899:1;40885:16;;:2;:16;;;;40815:86;:128;;;;;40936:6;40922:21;;:2;:21;;;;40815:128;:158;;;;;40965:8;;;;;;;;;;;40964:9;40815:158;40793:1648;;;41013:13;;;;;;;;;;;41008:223;;41085:19;:25;41105:4;41085:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41114:19;:23;41134:2;41114:23;;;;;;;;;;;;;;;;;;;;;;;;;41085:52;41051:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;41008:223;41305:25;:31;41331:4;41305:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;41362:31;:35;41394:2;41362:35;;;;;;;;;;;;;;;;;;;;;;;;;41361:36;41305:92;41279:1147;;;41484:20;;41474:6;:30;;41440:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;41692:9;;41675:13;41685:2;41675:9;:13::i;:::-;41666:6;:22;;;;:::i;:::-;:35;;41632:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;41279:1147;;;41870:25;:29;41896:2;41870:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;41925:31;:37;41957:4;41925:37;;;;;;;;;;;;;;;;;;;;;;;;;41924:38;41870:92;41844:582;;;42049:20;;42039:6;:30;;42005:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;41844:582;;;42206:31;:35;42238:2;42206:35;;;;;;;;;;;;;;;;;;;;;;;;;42201:225;;42326:9;;42309:13;42319:2;42309:9;:13::i;:::-;42300:6;:22;;;;:::i;:::-;:35;;42266:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42201:225;41844:582;41279:1147;40793:1648;40758:1694;42464:28;42495:24;42513:4;42495:9;:24::i;:::-;42464:55;;42532:12;42571:18;;42547:20;:42;;42532:57;;42620:7;:35;;;;;42644:11;;;;;;;;;;;42620:35;:61;;;;;42673:8;;;;;;;;;;;42672:9;42620:61;:110;;;;;42699:25;:31;42725:4;42699:31;;;;;;;;;;;;;;;;;;;;;;;;;42698:32;42620:110;:153;;;;;42748:19;:25;42768:4;42748:25;;;;;;;;;;;;;;;;;;;;;;;;;42747:26;42620:153;:194;;;;;42791:19;:23;42811:2;42791:23;;;;;;;;;;;;;;;;;;;;;;;;;42790:24;42620:194;42602:326;;;42852:4;42841:8;;:15;;;;;;;;;;;;;;;;;;42873:10;:8;:10::i;:::-;42911:5;42900:8;;:16;;;;;;;;;;;;;;;;;;42602:326;42940:12;42956:8;;;;;;;;;;;42955:9;42940:24;;43066:19;:25;43086:4;43066:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;43095:19;:23;43115:2;43095:23;;;;;;;;;;;;;;;;;;;;;;;;;43066:52;43062:100;;;43145:5;43135:15;;43062:100;43174:12;43279:7;43275:671;;;43331:25;:29;43357:2;43331:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;43380:1;43364:13;;:17;43331:50;43327:470;;;43409:35;43439:4;43409:25;43420:13;;43409:6;:10;;:25;;;;:::i;:::-;:29;;:35;;;;:::i;:::-;43402:42;;43513:13;;43493:16;;43486:4;:23;;;;:::i;:::-;43485:41;;;;:::i;:::-;43463:18;;:63;;;;;;;:::i;:::-;;;;;;;;43327:470;;;43588:25;:31;43614:4;43588:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;43638:1;43623:12;;:16;43588:51;43584:213;;;43667:34;43696:4;43667:24;43678:12;;43667:6;:10;;:24;;;;:::i;:::-;:28;;:34;;;;:::i;:::-;43660:41;;43769:12;;43750:15;;43743:4;:22;;;;:::i;:::-;43742:39;;;;:::i;:::-;43720:18;;:61;;;;;;;:::i;:::-;;;;;;;;43584:213;43327:470;43824:1;43817:4;:8;43813:91;;;43846:42;43862:4;43876;43883;43846:15;:42::i;:::-;43813:91;43930:4;43920:14;;;;;:::i;:::-;;;43275:671;43958:33;43974:4;43980:2;43984:6;43958:15;:33::i;:::-;40486:3513;;;;40373:3626;;;;:::o;3436:191::-;3510:16;3529:6;;;;;;;;;;;3510:25;;3555:8;3546:6;;:17;;;;;;;;;;;;;;;;;;3610:8;3579:40;;3600:8;3579:40;;;;;;;;;;;;3499:128;3436:191;:::o;44007:589::-;44133:21;44171:1;44157:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44133:40;;44202:4;44184;44189:1;44184:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;44228:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44218:4;44223:1;44218:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;44263:62;44280:4;44295:15;44313:11;44263:8;:62::i;:::-;44364:15;:66;;;44445:11;44471:1;44515:4;44542;44562:15;44364:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44062:534;44007:589;:::o;39938:188::-;40055:5;40021:25;:31;40047:4;40021:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40112:5;40078:40;;40106:4;40078:40;;;;;;;;;;;;39938:188;;:::o;14922:733::-;15080:1;15062:20;;:6;:20;;;;15054:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15164:1;15143:23;;:9;:23;;;;15135:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15219:47;15240:6;15248:9;15259:6;15219:20;:47::i;:::-;15279:21;15303:9;:17;15313:6;15303:17;;;;;;;;;;;;;;;;15279:41;;15356:6;15339:13;:23;;15331:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15477:6;15461:13;:22;15441:9;:17;15451:6;15441:17;;;;;;;;;;;;;;;:42;;;;15529:6;15505:9;:20;15515:9;15505:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15570:9;15553:35;;15562:6;15553:35;;;15581:6;15553:35;;;;;;:::i;:::-;;;;;;;;15601:46;15621:6;15629:9;15640:6;15601:19;:46::i;:::-;15043:612;14922:733;;;:::o;44606:722::-;44645:23;44671:24;44689:4;44671:9;:24::i;:::-;44645:50;;44706:25;44747:18;;44706:59;;44776:12;44824:1;44805:15;:20;:46;;;;44850:1;44829:17;:22;44805:46;44801:85;;;44868:7;;;;;44801:85;44941:2;44920:18;;:23;;;;:::i;:::-;44902:15;:41;44898:115;;;44999:2;44978:18;;:23;;;;:::i;:::-;44960:41;;44898:115;45076:26;45105:15;45076:44;;45133:36;45150:18;45133:16;:36::i;:::-;45203:1;45182:18;:22;;;;45241:15;;;;;;;;;;;45233:29;;45284:21;45233:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45219:101;;;;;44634:694;;;;44606:722;:::o;23156:98::-;23214:7;23245:1;23241;:5;;;;:::i;:::-;23234:12;;23156:98;;;;:::o;23555:::-;23613:7;23644:1;23640;:5;;;;:::i;:::-;23633:12;;23555:98;;;;:::o;18683:125::-;;;;:::o;19412:124::-;;;;:::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:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::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:323::-;7692:6;7741:2;7729:9;7720:7;7716:23;7712:32;7709:119;;;7747:79;;:::i;:::-;7709:119;7867:1;7892:50;7934:7;7925:6;7914:9;7910:22;7892:50;:::i;:::-;7882:60;;7838:114;7636:323;;;;:::o;7965:474::-;8033:6;8041;8090:2;8078:9;8069:7;8065:23;8061:32;8058:119;;;8096:79;;:::i;:::-;8058:119;8216:1;8241:53;8286:7;8277:6;8266:9;8262:22;8241:53;:::i;:::-;8231:63;;8187:117;8343:2;8369:53;8414:7;8405:6;8394:9;8390:22;8369:53;:::i;:::-;8359:63;;8314:118;7965:474;;;;;:::o;8445:180::-;8493:77;8490:1;8483:88;8590:4;8587:1;8580:15;8614:4;8611:1;8604:15;8631:320;8675:6;8712:1;8706:4;8702:12;8692:22;;8759:1;8753:4;8749:12;8780:18;8770:81;;8836:4;8828:6;8824:17;8814:27;;8770:81;8898:2;8890:6;8887:14;8867:18;8864:38;8861:84;;;8917:18;;:::i;:::-;8861:84;8682:269;8631:320;;;:::o;8957:182::-;9097:34;9093:1;9085:6;9081:14;9074:58;8957:182;:::o;9145:366::-;9287:3;9308:67;9372:2;9367:3;9308:67;:::i;:::-;9301:74;;9384:93;9473:3;9384:93;:::i;:::-;9502:2;9497:3;9493:12;9486:19;;9145:366;;;:::o;9517:419::-;9683:4;9721:2;9710:9;9706:18;9698:26;;9770:9;9764:4;9760:20;9756:1;9745:9;9741:17;9734:47;9798:131;9924:4;9798:131;:::i;:::-;9790:139;;9517:419;;;:::o;9942:180::-;9990:77;9987:1;9980:88;10087:4;10084:1;10077:15;10111:4;10108:1;10101:15;10128:348;10168:7;10191:20;10209:1;10191:20;:::i;:::-;10186:25;;10225:20;10243:1;10225:20;:::i;:::-;10220:25;;10413:1;10345:66;10341:74;10338:1;10335:81;10330:1;10323:9;10316:17;10312:105;10309:131;;;10420:18;;:::i;:::-;10309:131;10468:1;10465;10461:9;10450:20;;10128:348;;;;:::o;10482:180::-;10530:77;10527:1;10520:88;10627:4;10624:1;10617:15;10651:4;10648:1;10641:15;10668:185;10708:1;10725:20;10743:1;10725:20;:::i;:::-;10720:25;;10759:20;10777:1;10759:20;:::i;:::-;10754:25;;10798:1;10788:35;;10803:18;;:::i;:::-;10788:35;10845:1;10842;10838:9;10833:14;;10668:185;;;;:::o;10859:234::-;10999:34;10995:1;10987:6;10983:14;10976:58;11068:17;11063:2;11055:6;11051:15;11044:42;10859:234;:::o;11099:366::-;11241:3;11262:67;11326:2;11321:3;11262:67;:::i;:::-;11255:74;;11338:93;11427:3;11338:93;:::i;:::-;11456:2;11451:3;11447:12;11440:19;;11099:366;;;:::o;11471:419::-;11637:4;11675:2;11664:9;11660:18;11652:26;;11724:9;11718:4;11714:20;11710:1;11699:9;11695:17;11688:47;11752:131;11878:4;11752:131;:::i;:::-;11744:139;;11471:419;;;:::o;11896:227::-;12036:34;12032:1;12024:6;12020:14;12013:58;12105:10;12100:2;12092:6;12088:15;12081:35;11896:227;:::o;12129:366::-;12271:3;12292:67;12356:2;12351:3;12292:67;:::i;:::-;12285:74;;12368:93;12457:3;12368:93;:::i;:::-;12486:2;12481:3;12477:12;12470:19;;12129:366;;;:::o;12501:419::-;12667:4;12705:2;12694:9;12690:18;12682:26;;12754:9;12748:4;12744:20;12740:1;12729:9;12725:17;12718:47;12782:131;12908:4;12782:131;:::i;:::-;12774:139;;12501:419;;;:::o;12926:305::-;12966:3;12985:20;13003:1;12985:20;:::i;:::-;12980:25;;13019:20;13037:1;13019:20;:::i;:::-;13014:25;;13173:1;13105:66;13101:74;13098:1;13095:81;13092:107;;;13179:18;;:::i;:::-;13092:107;13223:1;13220;13216:9;13209:16;;12926:305;;;;:::o;13237:147::-;13338:11;13375:3;13360:18;;13237:147;;;;:::o;13390:114::-;;:::o;13510:398::-;13669:3;13690:83;13771:1;13766:3;13690:83;:::i;:::-;13683:90;;13782:93;13871:3;13782:93;:::i;:::-;13900:1;13895:3;13891:11;13884:18;;13510:398;;;:::o;13914:379::-;14098:3;14120:147;14263:3;14120:147;:::i;:::-;14113:154;;14284:3;14277:10;;13914:379;;;:::o;14299:179::-;14439:31;14435:1;14427:6;14423:14;14416:55;14299:179;:::o;14484:366::-;14626:3;14647:67;14711:2;14706:3;14647:67;:::i;:::-;14640:74;;14723:93;14812:3;14723:93;:::i;:::-;14841:2;14836:3;14832:12;14825:19;;14484:366;;;:::o;14856:419::-;15022:4;15060:2;15049:9;15045:18;15037:26;;15109:9;15103:4;15099:20;15095:1;15084:9;15080:17;15073:47;15137:131;15263:4;15137:131;:::i;:::-;15129:139;;14856:419;;;:::o;15281:162::-;15421:14;15417:1;15409:6;15405:14;15398:38;15281:162;:::o;15449:366::-;15591:3;15612:67;15676:2;15671:3;15612:67;:::i;:::-;15605:74;;15688:93;15777:3;15688:93;:::i;:::-;15806:2;15801:3;15797:12;15790:19;;15449:366;;;:::o;15821:419::-;15987:4;16025:2;16014:9;16010:18;16002:26;;16074:9;16068:4;16064:20;16060:1;16049:9;16045:17;16038:47;16102:131;16228:4;16102:131;:::i;:::-;16094:139;;15821:419;;;:::o;16246:244::-;16386:34;16382:1;16374:6;16370:14;16363:58;16455:27;16450:2;16442:6;16438:15;16431:52;16246:244;:::o;16496:366::-;16638:3;16659:67;16723:2;16718:3;16659:67;:::i;:::-;16652:74;;16735:93;16824:3;16735:93;:::i;:::-;16853:2;16848:3;16844:12;16837:19;;16496:366;;;:::o;16868:419::-;17034:4;17072:2;17061:9;17057:18;17049:26;;17121:9;17115:4;17111:20;17107:1;17096:9;17092:17;17085:47;17149:131;17275:4;17149:131;:::i;:::-;17141:139;;16868:419;;;:::o;17293:224::-;17433:34;17429:1;17421:6;17417:14;17410:58;17502:7;17497:2;17489:6;17485:15;17478:32;17293:224;:::o;17523:366::-;17665:3;17686:67;17750:2;17745:3;17686:67;:::i;:::-;17679:74;;17762:93;17851:3;17762:93;:::i;:::-;17880:2;17875:3;17871:12;17864:19;;17523:366;;;:::o;17895:419::-;18061:4;18099:2;18088:9;18084:18;18076:26;;18148:9;18142:4;18138:20;18134:1;18123:9;18119:17;18112:47;18176:131;18302:4;18176:131;:::i;:::-;18168:139;;17895:419;;;:::o;18320:223::-;18460:34;18456:1;18448:6;18444:14;18437:58;18529:6;18524:2;18516:6;18512:15;18505:31;18320:223;:::o;18549:366::-;18691:3;18712:67;18776:2;18771:3;18712:67;:::i;:::-;18705:74;;18788:93;18877:3;18788:93;:::i;:::-;18906:2;18901:3;18897:12;18890:19;;18549:366;;;:::o;18921:419::-;19087:4;19125:2;19114:9;19110:18;19102:26;;19174:9;19168:4;19164:20;19160:1;19149:9;19145:17;19138:47;19202:131;19328:4;19202:131;:::i;:::-;19194:139;;18921:419;;;:::o;19346:240::-;19486:34;19482:1;19474:6;19470:14;19463:58;19555:23;19550:2;19542:6;19538:15;19531:48;19346:240;:::o;19592:366::-;19734:3;19755:67;19819:2;19814:3;19755:67;:::i;:::-;19748:74;;19831:93;19920:3;19831:93;:::i;:::-;19949:2;19944:3;19940:12;19933:19;;19592:366;;;:::o;19964:419::-;20130:4;20168:2;20157:9;20153:18;20145:26;;20217:9;20211:4;20207:20;20203:1;20192:9;20188:17;20181:47;20245:131;20371:4;20245:131;:::i;:::-;20237:139;;19964:419;;;:::o;20389:239::-;20529:34;20525:1;20517:6;20513:14;20506:58;20598:22;20593:2;20585:6;20581:15;20574:47;20389:239;:::o;20634:366::-;20776:3;20797:67;20861:2;20856:3;20797:67;:::i;:::-;20790:74;;20873:93;20962:3;20873:93;:::i;:::-;20991:2;20986:3;20982:12;20975:19;;20634:366;;;:::o;21006:419::-;21172:4;21210:2;21199:9;21195:18;21187:26;;21259:9;21253:4;21249:20;21245:1;21234:9;21230:17;21223:47;21287:131;21413:4;21287:131;:::i;:::-;21279:139;;21006:419;;;:::o;21431:179::-;21571:31;21567:1;21559:6;21555:14;21548:55;21431:179;:::o;21616:366::-;21758:3;21779:67;21843:2;21838:3;21779:67;:::i;:::-;21772:74;;21855:93;21944:3;21855:93;:::i;:::-;21973:2;21968:3;21964:12;21957:19;;21616:366;;;:::o;21988:419::-;22154:4;22192:2;22181:9;22177:18;22169:26;;22241:9;22235:4;22231:20;22227:1;22216:9;22212:17;22205:47;22269:131;22395:4;22269:131;:::i;:::-;22261:139;;21988:419;;;:::o;22413:225::-;22553:34;22549:1;22541:6;22537:14;22530:58;22622:8;22617:2;22609:6;22605:15;22598:33;22413:225;:::o;22644:366::-;22786:3;22807:67;22871:2;22866:3;22807:67;:::i;:::-;22800:74;;22883:93;22972:3;22883:93;:::i;:::-;23001:2;22996:3;22992:12;22985:19;;22644:366;;;:::o;23016:419::-;23182:4;23220:2;23209:9;23205:18;23197:26;;23269:9;23263:4;23259:20;23255:1;23244:9;23240:17;23233:47;23297:131;23423:4;23297:131;:::i;:::-;23289:139;;23016:419;;;:::o;23441:223::-;23581:34;23577:1;23569:6;23565:14;23558:58;23650:6;23645:2;23637:6;23633:15;23626:31;23441:223;:::o;23670:366::-;23812:3;23833:67;23897:2;23892:3;23833:67;:::i;:::-;23826:74;;23909:93;23998:3;23909:93;:::i;:::-;24027:2;24022:3;24018:12;24011:19;;23670:366;;;:::o;24042:419::-;24208:4;24246:2;24235:9;24231:18;24223:26;;24295:9;24289:4;24285:20;24281:1;24270:9;24266:17;24259:47;24323:131;24449:4;24323:131;:::i;:::-;24315:139;;24042:419;;;:::o;24467:221::-;24607:34;24603:1;24595:6;24591:14;24584:58;24676:4;24671:2;24663:6;24659:15;24652:29;24467:221;:::o;24694:366::-;24836:3;24857:67;24921:2;24916:3;24857:67;:::i;:::-;24850:74;;24933:93;25022:3;24933:93;:::i;:::-;25051:2;25046:3;25042:12;25035:19;;24694:366;;;:::o;25066:419::-;25232:4;25270:2;25259:9;25255:18;25247:26;;25319:9;25313:4;25309:20;25305:1;25294:9;25290:17;25283:47;25347:131;25473:4;25347:131;:::i;:::-;25339:139;;25066:419;;;:::o;25491:224::-;25631:34;25627:1;25619:6;25615:14;25608:58;25700:7;25695:2;25687:6;25683:15;25676:32;25491:224;:::o;25721:366::-;25863:3;25884:67;25948:2;25943:3;25884:67;:::i;:::-;25877:74;;25960:93;26049:3;25960:93;:::i;:::-;26078:2;26073:3;26069:12;26062:19;;25721:366;;;:::o;26093:419::-;26259:4;26297:2;26286:9;26282:18;26274:26;;26346:9;26340:4;26336:20;26332:1;26321:9;26317:17;26310:47;26374:131;26500:4;26374:131;:::i;:::-;26366:139;;26093:419;;;:::o;26518:222::-;26658:34;26654:1;26646:6;26642:14;26635:58;26727:5;26722:2;26714:6;26710:15;26703:30;26518:222;:::o;26746:366::-;26888:3;26909:67;26973:2;26968:3;26909:67;:::i;:::-;26902:74;;26985:93;27074:3;26985:93;:::i;:::-;27103:2;27098:3;27094:12;27087:19;;26746:366;;;:::o;27118:419::-;27284:4;27322:2;27311:9;27307:18;27299:26;;27371:9;27365:4;27361:20;27357:1;27346:9;27342:17;27335:47;27399:131;27525:4;27399:131;:::i;:::-;27391:139;;27118:419;;;:::o;27543:172::-;27683:24;27679:1;27671:6;27667:14;27660:48;27543:172;:::o;27721:366::-;27863:3;27884:67;27948:2;27943:3;27884:67;:::i;:::-;27877:74;;27960:93;28049:3;27960:93;:::i;:::-;28078:2;28073:3;28069:12;28062:19;;27721:366;;;:::o;28093:419::-;28259:4;28297:2;28286:9;28282:18;28274:26;;28346:9;28340:4;28336:20;28332:1;28321:9;28317:17;28310:47;28374:131;28500:4;28374:131;:::i;:::-;28366:139;;28093:419;;;:::o;28518:240::-;28658:34;28654:1;28646:6;28642:14;28635:58;28727:23;28722:2;28714:6;28710:15;28703:48;28518:240;:::o;28764:366::-;28906:3;28927:67;28991:2;28986:3;28927:67;:::i;:::-;28920:74;;29003:93;29092:3;29003:93;:::i;:::-;29121:2;29116:3;29112:12;29105:19;;28764:366;;;:::o;29136:419::-;29302:4;29340:2;29329:9;29325:18;29317:26;;29389:9;29383:4;29379:20;29375:1;29364:9;29360:17;29353:47;29417:131;29543:4;29417:131;:::i;:::-;29409:139;;29136:419;;;:::o;29561:169::-;29701:21;29697:1;29689:6;29685:14;29678:45;29561:169;:::o;29736:366::-;29878:3;29899:67;29963:2;29958:3;29899:67;:::i;:::-;29892:74;;29975:93;30064:3;29975:93;:::i;:::-;30093:2;30088:3;30084:12;30077:19;;29736:366;;;:::o;30108:419::-;30274:4;30312:2;30301:9;30297:18;30289:26;;30361:9;30355:4;30351:20;30347:1;30336:9;30332:17;30325:47;30389:131;30515:4;30389:131;:::i;:::-;30381:139;;30108:419;;;:::o;30533:241::-;30673:34;30669:1;30661:6;30657:14;30650:58;30742:24;30737:2;30729:6;30725:15;30718:49;30533:241;:::o;30780:366::-;30922:3;30943:67;31007:2;31002:3;30943:67;:::i;:::-;30936:74;;31019:93;31108:3;31019:93;:::i;:::-;31137:2;31132:3;31128:12;31121:19;;30780:366;;;:::o;31152:419::-;31318:4;31356:2;31345:9;31341:18;31333:26;;31405:9;31399:4;31395:20;31391:1;31380:9;31376:17;31369:47;31433:131;31559:4;31433:131;:::i;:::-;31425:139;;31152:419;;;:::o;31577:191::-;31617:4;31637:20;31655:1;31637:20;:::i;:::-;31632:25;;31671:20;31689:1;31671:20;:::i;:::-;31666:25;;31710:1;31707;31704:8;31701:34;;;31715:18;;:::i;:::-;31701:34;31760:1;31757;31753:9;31745:17;;31577:191;;;;:::o;31774:180::-;31822:77;31819:1;31812:88;31919:4;31916:1;31909:15;31943:4;31940:1;31933:15;31960:180;32008:77;32005:1;31998:88;32105:4;32102:1;32095:15;32129:4;32126:1;32119:15;32146:143;32203:5;32234:6;32228:13;32219:22;;32250:33;32277:5;32250:33;:::i;:::-;32146:143;;;;:::o;32295:351::-;32365:6;32414:2;32402:9;32393:7;32389:23;32385:32;32382:119;;;32420:79;;:::i;:::-;32382:119;32540:1;32565:64;32621:7;32612:6;32601:9;32597:22;32565:64;:::i;:::-;32555:74;;32511:128;32295:351;;;;:::o;32652:85::-;32697:7;32726:5;32715:16;;32652:85;;;:::o;32743:158::-;32801:9;32834:61;32852:42;32861:32;32887:5;32861:32;:::i;:::-;32852:42;:::i;:::-;32834:61;:::i;:::-;32821:74;;32743:158;;;:::o;32907:147::-;33002:45;33041:5;33002:45;:::i;:::-;32997:3;32990:58;32907:147;;:::o;33060:114::-;33127:6;33161:5;33155:12;33145:22;;33060:114;;;:::o;33180:184::-;33279:11;33313:6;33308:3;33301:19;33353:4;33348:3;33344:14;33329:29;;33180:184;;;;:::o;33370:132::-;33437:4;33460:3;33452:11;;33490:4;33485:3;33481:14;33473:22;;33370:132;;;:::o;33508:108::-;33585:24;33603:5;33585:24;:::i;:::-;33580:3;33573:37;33508:108;;:::o;33622:179::-;33691:10;33712:46;33754:3;33746:6;33712:46;:::i;:::-;33790:4;33785:3;33781:14;33767:28;;33622:179;;;;:::o;33807:113::-;33877:4;33909;33904:3;33900:14;33892:22;;33807:113;;;:::o;33956:732::-;34075:3;34104:54;34152:5;34104:54;:::i;:::-;34174:86;34253:6;34248:3;34174:86;:::i;:::-;34167:93;;34284:56;34334:5;34284:56;:::i;:::-;34363:7;34394:1;34379:284;34404:6;34401:1;34398:13;34379:284;;;34480:6;34474:13;34507:63;34566:3;34551:13;34507:63;:::i;:::-;34500:70;;34593:60;34646:6;34593:60;:::i;:::-;34583:70;;34439:224;34426:1;34423;34419:9;34414:14;;34379:284;;;34383:14;34679:3;34672:10;;34080:608;;;33956:732;;;;:::o;34694:831::-;34957:4;34995:3;34984:9;34980:19;34972:27;;35009:71;35077:1;35066:9;35062:17;35053:6;35009:71;:::i;:::-;35090:80;35166:2;35155:9;35151:18;35142:6;35090:80;:::i;:::-;35217:9;35211:4;35207:20;35202:2;35191:9;35187:18;35180:48;35245:108;35348:4;35339:6;35245:108;:::i;:::-;35237:116;;35363:72;35431:2;35420:9;35416:18;35407:6;35363:72;:::i;:::-;35445:73;35513:3;35502:9;35498:19;35489:6;35445:73;:::i;:::-;34694:831;;;;;;;;:::o;35531:225::-;35671:34;35667:1;35659:6;35655:14;35648:58;35740:8;35735:2;35727:6;35723:15;35716:33;35531:225;:::o;35762:366::-;35904:3;35925:67;35989:2;35984:3;35925:67;:::i;:::-;35918:74;;36001:93;36090:3;36001:93;:::i;:::-;36119:2;36114:3;36110:12;36103:19;;35762:366;;;:::o;36134:419::-;36300:4;36338:2;36327:9;36323:18;36315:26;;36387:9;36381:4;36377:20;36373:1;36362:9;36358:17;36351:47;36415:131;36541:4;36415:131;:::i;:::-;36407:139;;36134:419;;;:::o
Swarm Source
ipfs://01661974a0bdf6fd817f4d1b4f09f5d3ceddb9933d1526963ad630168ccb7452
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.