Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
851,712.351914 MEGA
Holders
18
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 6 Decimals)
Balance
2,873.163532 MEGAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Token
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-29 */ // SPDX-License-Identifier: NOLICENSE /** MEGA - Mega Man https://megamantoken.co https://t.me/megamanburns https://twitter.com/MegaManBurns 🔥 The BEST hyper deflationary and burn token on the market. 🔥 Buy and Sell taxes are the following (post Trading Enabled): 5% Buy (burn) tax / 5% Sell (burn) tax, 2% Sell dev tax. 🔥 Burns $MEGA after EVERY transaction 🔥 The burn will be a true burn and actually remove the tokens from the total tokens, reducing the total supply with every transaction. 🔥 NOTE: We have a higher launch sell tax set in place to help kickstart the burning process while volume is high, and to help keep pesty bots out of the project. ░░░░░░░░▄▄█▀▀▄░░░░░░░ ░░░░░░▄█████▄▄█▄░░░░░ ░░░░░▄▀██████▄▄██░░░░ ░░░░░█░█▀░░▄▄▀█░█░░░░ ░░░░░▄██░░░▀▀░▀░█░░░░ ░░▄█▀░░▀█░▀▀▀▀▄▀▀█▄░░ ░▄███░▄░░▀▀▀▀▀▄░███▄░ ░██████░░░░░░░██████░ ░▀███▀█████████▀███▀░ ░░░░▄█▄░▀▀█▀░░░█▄░░░░ ░▄▄█████▄▀░▀▄█████▄▄░ █████████░░░█████████ */ pragma solidity 0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 6; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } pragma solidity 0.8.9; contract Token is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public supply; address public devWallet; bool public limitsInEffect = true; bool public tradingActive = true; bool public swapEnabled = true; mapping(address => uint256) private _holderLastTransferTimestamp; bool public transferDelayEnabled = true; uint256 public buyBurnFee; uint256 public buyDevFee; uint256 public buyTotalFees; uint256 public sellBurnFee; uint256 public sellDevFee; uint256 public sellTotalFees; uint256 public tokensForBurn; uint256 public tokensForDev; uint256 public walletDigit; uint256 public transDigit; uint256 public delayDigit; /******************/ // 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); constructor() ERC20("Mega Man", "MEGA") { 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 _buyBurnFee = 0; uint256 _buyDevFee = 5; uint256 _sellBurnFee = 6; uint256 _sellDevFee = 9; uint256 totalSupply = 1 * 1e6 * 1e6; supply += totalSupply; walletDigit = 1; transDigit = 1; delayDigit = 0; maxTransactionAmount = supply * transDigit / 100; swapTokensAtAmount = supply * 5 / 10000; // 0.05% swap wallet; maxWallet = supply * walletDigit / 100; buyBurnFee = _buyBurnFee; buyDevFee = _buyDevFee; buyTotalFees = buyBurnFee + buyDevFee; sellBurnFee = _sellBurnFee; sellDevFee = _sellDevFee; sellTotalFees = sellBurnFee + sellDevFee; devWallet = 0x6E67cAf35e1d276D3FD360D1E7782baCEe49aDCb; excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); _approve(owner(), address(uniswapV2Router), totalSupply); _mint(msg.sender, totalSupply); } receive() external payable { } function enableTrading() external onlyOwner { buyBurnFee = 5; buyDevFee = 0; buyTotalFees = buyBurnFee + buyDevFee; sellBurnFee = 5; sellDevFee = 2; sellTotalFees = sellBurnFee + sellDevFee; delayDigit = 5; } function updateTransDigit(uint256 newNum) external onlyOwner { require(newNum >= 1); transDigit = newNum; updateLimits(); } function updateWalletDigit(uint256 newNum) external onlyOwner { require(newNum >= 1); walletDigit = newNum; updateLimits(); } function updateDelayDigit(uint256 newNum) external onlyOwner{ delayDigit = newNum; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateBuyFees(uint256 _burnFee, uint256 _devFee) external onlyOwner { buyBurnFee = _burnFee; buyDevFee = _devFee; buyTotalFees = buyBurnFee + buyDevFee; require(buyTotalFees <= 15, "Must keep fees at 20% or less"); } function updateSellFees(uint256 _burnFee, uint256 _devFee) external onlyOwner { sellBurnFee = _burnFee; sellDevFee = _devFee; sellTotalFees = sellBurnFee + sellDevFee; require(sellTotalFees <= 15, "Must keep fees at 25% or less"); } function updateDevWallet(address newWallet) external onlyOwner { devWallet = newWallet; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function updateLimits() private { maxTransactionAmount = supply * transDigit / 100; swapTokensAtAmount = supply * 5 / 10000; // 0.05% swap wallet; maxWallet = supply * walletDigit / 100; } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if(amount == 0) { super._transfer(from, to, 0); return; } if(limitsInEffect){ if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ){ if(!tradingActive){ require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled){ if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){ require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed."); _holderLastTransferTimestamp[tx.origin] = block.number + delayDigit; } } //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 && !swapping && swapEnabled && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if(takeFee){ // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0){ fees = amount.mul(sellTotalFees).div(100); tokensForBurn += fees * sellBurnFee / sellTotalFees; tokensForDev += fees * sellDevFee / sellTotalFees; } // on buy else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForBurn += fees * buyBurnFee / buyTotalFees; tokensForDev += fees * buyDevFee / buyTotalFees; } if(fees > 0){ super._transfer(from, address(this), fees); if (tokensForBurn > 0) { _burn(address(this), tokensForBurn); supply = totalSupply(); updateLimits(); tokensForBurn = 0; } } 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)); bool success; if(contractBalance == 0) {return;} if(contractBalance > swapTokensAtAmount * 20){ contractBalance = swapTokensAtAmount * 20; } swapTokensForEth(contractBalance); tokensForDev = 0; (success,) = address(devWallet).call{value: address(this).balance}(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"delayDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"tokensForBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"transDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateDelayDigit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateTransDigit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateWalletDigit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletDigit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff0219169083151502179055506001600a60166101000a81548160ff0219169083151502179055506001600c60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600881526020017f4d656761204d616e0000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d4547410000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000d61565b5080600490805190602001906200011b92919062000d61565b5050506000620001306200065a60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001fb8160016200066260201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200027657600080fd5b505afa1580156200028b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b1919062000e7b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200031457600080fd5b505afa15801562000329573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034f919062000e7b565b6040518363ffffffff1660e01b81526004016200036e92919062000ebe565b602060405180830381600087803b1580156200038957600080fd5b505af11580156200039e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c4919062000e7b565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200040c60a05160016200066260201b60201c565b6200042160a05160016200075f60201b60201c565b60008060059050600060069050600060099050600064e8d4a510009050806009600082825462000452919062000f24565b92505081905550600160158190555060016016819055506000601781905550606460165460095462000485919062000f81565b62000491919062001011565b6006819055506127106005600954620004ab919062000f81565b620004b7919062001011565b6007819055506064601554600954620004d1919062000f81565b620004dd919062001011565b60088190555084600d8190555083600e81905550600e54600d5462000503919062000f24565b600f81905550826010819055508160118190555060115460105462000529919062000f24565b601281905550736e67caf35e1d276d3fd360d1e7782bacee49adcb600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005a6620005986200080060201b60201c565b60016200082a60201b60201c565b620005b93060016200082a60201b60201c565b620005ce61dead60016200082a60201b60201c565b620005f0620005e26200080060201b60201c565b60016200066260201b60201c565b620006033060016200066260201b60201c565b6200061861dead60016200066260201b60201c565b6200063c6200062c6200080060201b60201c565b608051836200097760201b60201c565b6200064e338262000b4a60201b60201c565b505050505050620013ad565b600033905090565b620006726200065a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000704576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006fb90620010aa565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200083a6200065a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620008cc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008c390620010aa565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200096b9190620010e9565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620009ea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009e1906200117c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a5d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a549062001214565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000b3d919062001247565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000bbd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000bb490620012b4565b60405180910390fd5b62000bd16000838362000cf960201b60201c565b62000bed8160025462000cfe60201b62001e911790919060201c565b60028190555062000c4b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000cfe60201b62001e911790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ced919062001247565b60405180910390a35050565b505050565b600080828462000d0f919062000f24565b90508381101562000d57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d4e9062001326565b60405180910390fd5b8091505092915050565b82805462000d6f9062001377565b90600052602060002090601f01602090048101928262000d93576000855562000ddf565b82601f1062000dae57805160ff191683800117855562000ddf565b8280016001018555821562000ddf579182015b8281111562000dde57825182559160200191906001019062000dc1565b5b50905062000dee919062000df2565b5090565b5b8082111562000e0d57600081600090555060010162000df3565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e438262000e16565b9050919050565b62000e558162000e36565b811462000e6157600080fd5b50565b60008151905062000e758162000e4a565b92915050565b60006020828403121562000e945762000e9362000e11565b5b600062000ea48482850162000e64565b91505092915050565b62000eb88162000e36565b82525050565b600060408201905062000ed5600083018562000ead565b62000ee4602083018462000ead565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f318262000eeb565b915062000f3e8362000eeb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000f765762000f7562000ef5565b5b828201905092915050565b600062000f8e8262000eeb565b915062000f9b8362000eeb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000fd75762000fd662000ef5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200101e8262000eeb565b91506200102b8362000eeb565b9250826200103e576200103d62000fe2565b5b828204905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200109260208362001049565b91506200109f826200105a565b602082019050919050565b60006020820190508181036000830152620010c58162001083565b9050919050565b60008115159050919050565b620010e381620010cc565b82525050565b6000602082019050620011006000830184620010d8565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200116460248362001049565b9150620011718262001106565b604082019050919050565b60006020820190508181036000830152620011978162001155565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620011fc60228362001049565b915062001209826200119e565b604082019050919050565b600060208201905081810360008301526200122f81620011ed565b9050919050565b620012418162000eeb565b82525050565b60006020820190506200125e600083018462001236565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200129c601f8362001049565b9150620012a98262001264565b602082019050919050565b60006020820190508181036000830152620012cf816200128d565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b60006200130e601b8362001049565b91506200131b82620012d6565b602082019050919050565b600060208201905081810360008301526200134181620012ff565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200139057607f821691505b60208210811415620013a757620013a662001348565b5b50919050565b60805160a0516149ca620013fd600039600081816111ac0152818161185a01526124e2015260008181610e4b0152818161248a0152818161353c0152818161362c015261365301526149ca6000f3fe6080604052600436106102cd5760003560e01c80638a8c523c11610175578063adb873bd116100dc578063d85ba06311610095578063e71dc3f51161006f578063e71dc3f514610b0d578063f203acb614610b38578063f2fde38b14610b63578063f8b45b0514610b8c576102d4565b8063d85ba06314610a7a578063dd62ed3e14610aa5578063e2f4560514610ae2576102d4565b8063adb873bd14610968578063b62496f514610993578063bbc0c742146109d0578063c0246668146109fb578063c876d0b914610a24578063c8c8ebe414610a4f576102d4565b80639c3b4fdc1161012e5780639c3b4fdc146108445780639fccce321461086f5780639fdc48241461089a578063a0d82dc5146108c3578063a457c2d7146108ee578063a9059cbb1461092b576102d4565b80638a8c523c146107585780638da5cb5b1461076f5780638ea5220f1461079a57806395d89b41146107c5578063975d71e2146107f05780639a7a23d61461081b576102d4565b806327c8f8351161023457806366ca9b83116101ed57806370a08231116101c757806370a08231146106b0578063715018a6146106ed5780637571336a146107045780637ab439831461072d576102d4565b806366ca9b83146106315780636a486a8e1461065a5780636ddd171314610685576102d4565b806327c8f8351461050b578063313ce56714610536578063395093511461056157806349bd5a5e1461059e5780634a62bb65146105c95780634fbee193146105f4576102d4565b80631694505e116102865780631694505e146103fb57806318160ddd146104265780631816467f146104515780631d7778561461047a5780631fa07da5146104a557806323b872dd146104ce576102d4565b806302dbd8f8146102d9578063047fc9aa1461030257806306fdde031461032d578063095ea7b31461035857806310d5de5314610395578063150de0bb146103d2576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b5061030060048036038101906102fb91906137d1565b610bb7565b005b34801561030e57600080fd5b50610317610cbc565b6040516103249190613820565b60405180910390f35b34801561033957600080fd5b50610342610cc2565b60405161034f91906138d4565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613954565b610d54565b60405161038c91906139af565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b791906139ca565b610d72565b6040516103c991906139af565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f491906139f7565b610d92565b005b34801561040757600080fd5b50610410610e49565b60405161041d9190613a83565b60405180910390f35b34801561043257600080fd5b5061043b610e6d565b6040516104489190613820565b60405180910390f35b34801561045d57600080fd5b50610478600480360381019061047391906139ca565b610e77565b005b34801561048657600080fd5b5061048f610f52565b60405161049c9190613820565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c791906139f7565b610f58565b005b3480156104da57600080fd5b506104f560048036038101906104f09190613a9e565b61100f565b60405161050291906139af565b60405180910390f35b34801561051757600080fd5b506105206110e8565b60405161052d9190613b00565b60405180910390f35b34801561054257600080fd5b5061054b6110ee565b6040516105589190613b37565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190613954565b6110f7565b60405161059591906139af565b60405180910390f35b3480156105aa57600080fd5b506105b36111aa565b6040516105c09190613b00565b60405180910390f35b3480156105d557600080fd5b506105de6111ce565b6040516105eb91906139af565b60405180910390f35b34801561060057600080fd5b5061061b600480360381019061061691906139ca565b6111e1565b60405161062891906139af565b60405180910390f35b34801561063d57600080fd5b50610658600480360381019061065391906137d1565b611237565b005b34801561066657600080fd5b5061066f61133b565b60405161067c9190613820565b60405180910390f35b34801561069157600080fd5b5061069a611341565b6040516106a791906139af565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d291906139ca565b611354565b6040516106e49190613820565b60405180910390f35b3480156106f957600080fd5b5061070261139c565b005b34801561071057600080fd5b5061072b60048036038101906107269190613b7e565b6114f4565b005b34801561073957600080fd5b506107426115e6565b60405161074f9190613820565b60405180910390f35b34801561076457600080fd5b5061076d6115ec565b005b34801561077b57600080fd5b506107846116d9565b6040516107919190613b00565b60405180910390f35b3480156107a657600080fd5b506107af611703565b6040516107bc9190613b00565b60405180910390f35b3480156107d157600080fd5b506107da611729565b6040516107e791906138d4565b60405180910390f35b3480156107fc57600080fd5b506108056117bb565b6040516108129190613820565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d9190613b7e565b6117c1565b005b34801561085057600080fd5b506108596118f5565b6040516108669190613820565b60405180910390f35b34801561087b57600080fd5b506108846118fb565b6040516108919190613820565b60405180910390f35b3480156108a657600080fd5b506108c160048036038101906108bc91906139f7565b611901565b005b3480156108cf57600080fd5b506108d86119a2565b6040516108e59190613820565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613954565b6119a8565b60405161092291906139af565b60405180910390f35b34801561093757600080fd5b50610952600480360381019061094d9190613954565b611a75565b60405161095f91906139af565b60405180910390f35b34801561097457600080fd5b5061097d611a93565b60405161098a9190613820565b60405180910390f35b34801561099f57600080fd5b506109ba60048036038101906109b591906139ca565b611a99565b6040516109c791906139af565b60405180910390f35b3480156109dc57600080fd5b506109e5611ab9565b6040516109f291906139af565b60405180910390f35b348015610a0757600080fd5b50610a226004803603810190610a1d9190613b7e565b611acc565b005b348015610a3057600080fd5b50610a39611c0c565b604051610a4691906139af565b60405180910390f35b348015610a5b57600080fd5b50610a64611c1f565b604051610a719190613820565b60405180910390f35b348015610a8657600080fd5b50610a8f611c25565b604051610a9c9190613820565b60405180910390f35b348015610ab157600080fd5b50610acc6004803603810190610ac79190613bbe565b611c2b565b604051610ad99190613820565b60405180910390f35b348015610aee57600080fd5b50610af7611cb2565b604051610b049190613820565b60405180910390f35b348015610b1957600080fd5b50610b22611cb8565b604051610b2f9190613820565b60405180910390f35b348015610b4457600080fd5b50610b4d611cbe565b604051610b5a9190613820565b60405180910390f35b348015610b6f57600080fd5b50610b8a6004803603810190610b8591906139ca565b611cc4565b005b348015610b9857600080fd5b50610ba1611e8b565b604051610bae9190613820565b60405180910390f35b610bbf611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4590613c4a565b60405180910390fd5b8160108190555080601181905550601154601054610c6c9190613c99565b601281905550600f6012541115610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf90613d3b565b60405180910390fd5b5050565b60095481565b606060038054610cd190613d8a565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfd90613d8a565b8015610d4a5780601f10610d1f57610100808354040283529160200191610d4a565b820191906000526020600020905b815481529060010190602001808311610d2d57829003601f168201915b5050505050905090565b6000610d68610d61611eef565b8484611ef7565b6001905092915050565b60196020528060005260406000206000915054906101000a900460ff1681565b610d9a611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2090613c4a565b60405180910390fd5b6001811015610e3757600080fd5b80601581905550610e466120c2565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610e7f611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590613c4a565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610f60611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe690613c4a565b60405180910390fd5b6001811015610ffd57600080fd5b8060168190555061100c6120c2565b50565b600061101c84848461212a565b6110dd84611028611eef565b6110d88560405180606001604052806028815260200161494860289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061108e611eef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da19092919063ffffffff16565b611ef7565b600190509392505050565b61dead81565b60006006905090565b60006111a0611104611eef565b8461119b8560016000611115611eef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e9190919063ffffffff16565b611ef7565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60149054906101000a900460ff1681565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61123f611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590613c4a565b60405180910390fd5b81600d8190555080600e81905550600e54600d546112ec9190613c99565b600f81905550600f80541115611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e90613e08565b60405180910390fd5b5050565b60125481565b600a60169054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113a4611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90613c4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6114fc611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461158b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158290613c4a565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60155481565b6115f4611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167a90613c4a565b60405180910390fd5b6005600d819055506000600e81905550600e54600d546116a39190613c99565b600f81905550600560108190555060026011819055506011546010546116c99190613c99565b6012819055506005601781905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461173890613d8a565b80601f016020809104026020016040519081016040528092919081815260200182805461176490613d8a565b80156117b15780601f10611786576101008083540402835291602001916117b1565b820191906000526020600020905b81548152906001019060200180831161179457829003601f168201915b5050505050905090565b60165481565b6117c9611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f90613c4a565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613e9a565b60405180910390fd5b6118f18282612e05565b5050565b600e5481565b60145481565b611909611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f90613c4a565b60405180910390fd5b8060178190555050565b60115481565b6000611a6b6119b5611eef565b84611a668560405180606001604052806025815260200161497060259139600160006119df611eef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da19092919063ffffffff16565b611ef7565b6001905092915050565b6000611a89611a82611eef565b848461212a565b6001905092915050565b60105481565b601a6020528060005260406000206000915054906101000a900460ff1681565b600a60159054906101000a900460ff1681565b611ad4611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a90613c4a565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611c0091906139af565b60405180910390a25050565b600c60009054906101000a900460ff1681565b60065481565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b600d5481565b60175481565b611ccc611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5290613c4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290613f2c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085481565b6000808284611ea09190613c99565b905083811015611ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edc90613f98565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5e9061402a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce906140bc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120b59190613820565b60405180910390a3505050565b60646016546009546120d491906140dc565b6120de9190614165565b60068190555061271060056009546120f691906140dc565b6121009190614165565b600781905550606460155460095461211891906140dc565b6121229190614165565b600881905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561219a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219190614208565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561220a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122019061429a565b60405180910390fd5b60008114156122245761221f83836000612ea6565b612d9c565b600a60149054906101000a900460ff16156128f4576122416116d9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122af575061227f6116d9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122e85750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612322575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561233b5750600560149054906101000a900460ff16155b156128f357600a60159054906101000a900460ff1661243557601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123f55750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242b90614306565b60405180910390fd5b5b600c60009054906101000a900460ff161561260a576124526116d9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156124d957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561253157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156126095743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106125b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ae906143be565b60405180910390fd5b601754436125c59190613c99565b600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126ad5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612754576006548111156126f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ee90614450565b60405180910390fd5b60085461270383611354565b8261270e9190613c99565b111561274f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612746906144bc565b60405180910390fd5b6128f2565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127f75750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561284657600654811115612841576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128389061454e565b60405180910390fd5b6128f1565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166128f0576008546128a383611354565b826128ae9190613c99565b11156128ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e6906144bc565b60405180910390fd5b5b5b5b5b5b60006128ff30611354565b9050600060075482101590508080156129255750600560149054906101000a900460ff16155b801561293d5750600a60169054906101000a900460ff165b80156129935750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129e95750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a3f5750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a83576001600560146101000a81548160ff021916908315150217905550612a6761313b565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b395750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612b4357600090505b60008115612d8c57601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ba657506000601254115b15612c4057612bd36064612bc56012548861322590919063ffffffff16565b6132a090919063ffffffff16565b905060125460105482612be691906140dc565b612bf09190614165565b60136000828254612c019190613c99565b9250508190555060125460115482612c1991906140dc565b612c239190614165565b60146000828254612c349190613c99565b92505081905550612d32565b601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c9b57506000600f54115b15612d3157612cc86064612cba600f548861322590919063ffffffff16565b6132a090919063ffffffff16565b9050600f54600d5482612cdb91906140dc565b612ce59190614165565b60136000828254612cf69190613c99565b92505081905550600f54600e5482612d0e91906140dc565b612d189190614165565b60146000828254612d299190613c99565b925050819055505b5b6000811115612d7d57612d46873083612ea6565b60006013541115612d7c57612d5d306013546132ea565b612d65610e6d565b600981905550612d736120c2565b60006013819055505b5b8085612d89919061456e565b94505b612d97878787612ea6565b505050505b505050565b6000838311158290612de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de091906138d4565b60405180910390fd5b5060008385612df8919061456e565b9050809150509392505050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0d90614208565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7d9061429a565b60405180910390fd5b612f91838383613498565b612ffc81604051806060016040528060268152602001614922602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da19092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061308f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e9190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161312e9190613820565b60405180910390a3505050565b600061314630611354565b9050600080821415613159575050613223565b601460075461316891906140dc565b82111561318157601460075461317e91906140dc565b91505b61318a8261349d565b6000601481905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516131d8906145d3565b60006040518083038185875af1925050503d8060008114613215576040519150601f19603f3d011682016040523d82523d6000602084013e61321a565b606091505b50508091505050505b565b600080831415613238576000905061329a565b6000828461324691906140dc565b90508284826132559190614165565b14613295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328c9061465a565b60405180910390fd5b809150505b92915050565b60006132e283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506136e9565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561335a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613351906146ec565b60405180910390fd5b61336682600083613498565b6133d181604051806060016040528060228152602001614900602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da19092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506134288160025461374c90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161348c9190613820565b60405180910390a35050565b505050565b6000600267ffffffffffffffff8111156134ba576134b961470c565b5b6040519080825280602002602001820160405280156134e85781602001602082028036833780820191505090505b5090503081600081518110613500576134ff61473b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156135a057600080fd5b505afa1580156135b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d8919061477f565b816001815181106135ec576135eb61473b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613651307f000000000000000000000000000000000000000000000000000000000000000084611ef7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136b39594939291906148a5565b600060405180830381600087803b1580156136cd57600080fd5b505af11580156136e1573d6000803e3d6000fd5b505050505050565b60008083118290613730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372791906138d4565b60405180910390fd5b506000838561373f9190614165565b9050809150509392505050565b600061378e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612da1565b905092915050565b600080fd5b6000819050919050565b6137ae8161379b565b81146137b957600080fd5b50565b6000813590506137cb816137a5565b92915050565b600080604083850312156137e8576137e7613796565b5b60006137f6858286016137bc565b9250506020613807858286016137bc565b9150509250929050565b61381a8161379b565b82525050565b60006020820190506138356000830184613811565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561387557808201518184015260208101905061385a565b83811115613884576000848401525b50505050565b6000601f19601f8301169050919050565b60006138a68261383b565b6138b08185613846565b93506138c0818560208601613857565b6138c98161388a565b840191505092915050565b600060208201905081810360008301526138ee818461389b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613921826138f6565b9050919050565b61393181613916565b811461393c57600080fd5b50565b60008135905061394e81613928565b92915050565b6000806040838503121561396b5761396a613796565b5b60006139798582860161393f565b925050602061398a858286016137bc565b9150509250929050565b60008115159050919050565b6139a981613994565b82525050565b60006020820190506139c460008301846139a0565b92915050565b6000602082840312156139e0576139df613796565b5b60006139ee8482850161393f565b91505092915050565b600060208284031215613a0d57613a0c613796565b5b6000613a1b848285016137bc565b91505092915050565b6000819050919050565b6000613a49613a44613a3f846138f6565b613a24565b6138f6565b9050919050565b6000613a5b82613a2e565b9050919050565b6000613a6d82613a50565b9050919050565b613a7d81613a62565b82525050565b6000602082019050613a986000830184613a74565b92915050565b600080600060608486031215613ab757613ab6613796565b5b6000613ac58682870161393f565b9350506020613ad68682870161393f565b9250506040613ae7868287016137bc565b9150509250925092565b613afa81613916565b82525050565b6000602082019050613b156000830184613af1565b92915050565b600060ff82169050919050565b613b3181613b1b565b82525050565b6000602082019050613b4c6000830184613b28565b92915050565b613b5b81613994565b8114613b6657600080fd5b50565b600081359050613b7881613b52565b92915050565b60008060408385031215613b9557613b94613796565b5b6000613ba38582860161393f565b9250506020613bb485828601613b69565b9150509250929050565b60008060408385031215613bd557613bd4613796565b5b6000613be38582860161393f565b9250506020613bf48582860161393f565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c34602083613846565b9150613c3f82613bfe565b602082019050919050565b60006020820190508181036000830152613c6381613c27565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ca48261379b565b9150613caf8361379b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ce457613ce3613c6a565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000613d25601d83613846565b9150613d3082613cef565b602082019050919050565b60006020820190508181036000830152613d5481613d18565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613da257607f821691505b60208210811415613db657613db5613d5b565b5b50919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000613df2601d83613846565b9150613dfd82613dbc565b602082019050919050565b60006020820190508181036000830152613e2181613de5565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613e84603983613846565b9150613e8f82613e28565b604082019050919050565b60006020820190508181036000830152613eb381613e77565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613f16602683613846565b9150613f2182613eba565b604082019050919050565b60006020820190508181036000830152613f4581613f09565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000613f82601b83613846565b9150613f8d82613f4c565b602082019050919050565b60006020820190508181036000830152613fb181613f75565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614014602483613846565b915061401f82613fb8565b604082019050919050565b6000602082019050818103600083015261404381614007565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006140a6602283613846565b91506140b18261404a565b604082019050919050565b600060208201905081810360008301526140d581614099565b9050919050565b60006140e78261379b565b91506140f28361379b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561412b5761412a613c6a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141708261379b565b915061417b8361379b565b92508261418b5761418a614136565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006141f2602583613846565b91506141fd82614196565b604082019050919050565b60006020820190508181036000830152614221816141e5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614284602383613846565b915061428f82614228565b604082019050919050565b600060208201905081810360008301526142b381614277565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006142f0601683613846565b91506142fb826142ba565b602082019050919050565b6000602082019050818103600083015261431f816142e3565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006143a8604983613846565b91506143b382614326565b606082019050919050565b600060208201905081810360008301526143d78161439b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061443a603583613846565b9150614445826143de565b604082019050919050565b600060208201905081810360008301526144698161442d565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006144a6601383613846565b91506144b182614470565b602082019050919050565b600060208201905081810360008301526144d581614499565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614538603683613846565b9150614543826144dc565b604082019050919050565b600060208201905081810360008301526145678161452b565b9050919050565b60006145798261379b565b91506145848361379b565b92508282101561459757614596613c6a565b5b828203905092915050565b600081905092915050565b50565b60006145bd6000836145a2565b91506145c8826145ad565b600082019050919050565b60006145de826145b0565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000614644602183613846565b915061464f826145e8565b604082019050919050565b6000602082019050818103600083015261467381614637565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006146d6602183613846565b91506146e18261467a565b604082019050919050565b60006020820190508181036000830152614705816146c9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061477981613928565b92915050565b60006020828403121561479557614794613796565b5b60006147a38482850161476a565b91505092915050565b6000819050919050565b60006147d16147cc6147c7846147ac565b613a24565b61379b565b9050919050565b6147e1816147b6565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61481c81613916565b82525050565b600061482e8383614813565b60208301905092915050565b6000602082019050919050565b6000614852826147e7565b61485c81856147f2565b935061486783614803565b8060005b8381101561489857815161487f8882614822565b975061488a8361483a565b92505060018101905061486b565b5085935050505092915050565b600060a0820190506148ba6000830188613811565b6148c760208301876147d8565b81810360408301526148d98186614847565b90506148e86060830185613af1565b6148f56080830184613811565b969550505050505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a69e020ab5a4ce88b521525955e27780900dd8ef50d012fd2a80d39bc8929f6b64736f6c63430008090033
Deployed Bytecode
0x6080604052600436106102cd5760003560e01c80638a8c523c11610175578063adb873bd116100dc578063d85ba06311610095578063e71dc3f51161006f578063e71dc3f514610b0d578063f203acb614610b38578063f2fde38b14610b63578063f8b45b0514610b8c576102d4565b8063d85ba06314610a7a578063dd62ed3e14610aa5578063e2f4560514610ae2576102d4565b8063adb873bd14610968578063b62496f514610993578063bbc0c742146109d0578063c0246668146109fb578063c876d0b914610a24578063c8c8ebe414610a4f576102d4565b80639c3b4fdc1161012e5780639c3b4fdc146108445780639fccce321461086f5780639fdc48241461089a578063a0d82dc5146108c3578063a457c2d7146108ee578063a9059cbb1461092b576102d4565b80638a8c523c146107585780638da5cb5b1461076f5780638ea5220f1461079a57806395d89b41146107c5578063975d71e2146107f05780639a7a23d61461081b576102d4565b806327c8f8351161023457806366ca9b83116101ed57806370a08231116101c757806370a08231146106b0578063715018a6146106ed5780637571336a146107045780637ab439831461072d576102d4565b806366ca9b83146106315780636a486a8e1461065a5780636ddd171314610685576102d4565b806327c8f8351461050b578063313ce56714610536578063395093511461056157806349bd5a5e1461059e5780634a62bb65146105c95780634fbee193146105f4576102d4565b80631694505e116102865780631694505e146103fb57806318160ddd146104265780631816467f146104515780631d7778561461047a5780631fa07da5146104a557806323b872dd146104ce576102d4565b806302dbd8f8146102d9578063047fc9aa1461030257806306fdde031461032d578063095ea7b31461035857806310d5de5314610395578063150de0bb146103d2576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b5061030060048036038101906102fb91906137d1565b610bb7565b005b34801561030e57600080fd5b50610317610cbc565b6040516103249190613820565b60405180910390f35b34801561033957600080fd5b50610342610cc2565b60405161034f91906138d4565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613954565b610d54565b60405161038c91906139af565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b791906139ca565b610d72565b6040516103c991906139af565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f491906139f7565b610d92565b005b34801561040757600080fd5b50610410610e49565b60405161041d9190613a83565b60405180910390f35b34801561043257600080fd5b5061043b610e6d565b6040516104489190613820565b60405180910390f35b34801561045d57600080fd5b50610478600480360381019061047391906139ca565b610e77565b005b34801561048657600080fd5b5061048f610f52565b60405161049c9190613820565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c791906139f7565b610f58565b005b3480156104da57600080fd5b506104f560048036038101906104f09190613a9e565b61100f565b60405161050291906139af565b60405180910390f35b34801561051757600080fd5b506105206110e8565b60405161052d9190613b00565b60405180910390f35b34801561054257600080fd5b5061054b6110ee565b6040516105589190613b37565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190613954565b6110f7565b60405161059591906139af565b60405180910390f35b3480156105aa57600080fd5b506105b36111aa565b6040516105c09190613b00565b60405180910390f35b3480156105d557600080fd5b506105de6111ce565b6040516105eb91906139af565b60405180910390f35b34801561060057600080fd5b5061061b600480360381019061061691906139ca565b6111e1565b60405161062891906139af565b60405180910390f35b34801561063d57600080fd5b50610658600480360381019061065391906137d1565b611237565b005b34801561066657600080fd5b5061066f61133b565b60405161067c9190613820565b60405180910390f35b34801561069157600080fd5b5061069a611341565b6040516106a791906139af565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d291906139ca565b611354565b6040516106e49190613820565b60405180910390f35b3480156106f957600080fd5b5061070261139c565b005b34801561071057600080fd5b5061072b60048036038101906107269190613b7e565b6114f4565b005b34801561073957600080fd5b506107426115e6565b60405161074f9190613820565b60405180910390f35b34801561076457600080fd5b5061076d6115ec565b005b34801561077b57600080fd5b506107846116d9565b6040516107919190613b00565b60405180910390f35b3480156107a657600080fd5b506107af611703565b6040516107bc9190613b00565b60405180910390f35b3480156107d157600080fd5b506107da611729565b6040516107e791906138d4565b60405180910390f35b3480156107fc57600080fd5b506108056117bb565b6040516108129190613820565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d9190613b7e565b6117c1565b005b34801561085057600080fd5b506108596118f5565b6040516108669190613820565b60405180910390f35b34801561087b57600080fd5b506108846118fb565b6040516108919190613820565b60405180910390f35b3480156108a657600080fd5b506108c160048036038101906108bc91906139f7565b611901565b005b3480156108cf57600080fd5b506108d86119a2565b6040516108e59190613820565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613954565b6119a8565b60405161092291906139af565b60405180910390f35b34801561093757600080fd5b50610952600480360381019061094d9190613954565b611a75565b60405161095f91906139af565b60405180910390f35b34801561097457600080fd5b5061097d611a93565b60405161098a9190613820565b60405180910390f35b34801561099f57600080fd5b506109ba60048036038101906109b591906139ca565b611a99565b6040516109c791906139af565b60405180910390f35b3480156109dc57600080fd5b506109e5611ab9565b6040516109f291906139af565b60405180910390f35b348015610a0757600080fd5b50610a226004803603810190610a1d9190613b7e565b611acc565b005b348015610a3057600080fd5b50610a39611c0c565b604051610a4691906139af565b60405180910390f35b348015610a5b57600080fd5b50610a64611c1f565b604051610a719190613820565b60405180910390f35b348015610a8657600080fd5b50610a8f611c25565b604051610a9c9190613820565b60405180910390f35b348015610ab157600080fd5b50610acc6004803603810190610ac79190613bbe565b611c2b565b604051610ad99190613820565b60405180910390f35b348015610aee57600080fd5b50610af7611cb2565b604051610b049190613820565b60405180910390f35b348015610b1957600080fd5b50610b22611cb8565b604051610b2f9190613820565b60405180910390f35b348015610b4457600080fd5b50610b4d611cbe565b604051610b5a9190613820565b60405180910390f35b348015610b6f57600080fd5b50610b8a6004803603810190610b8591906139ca565b611cc4565b005b348015610b9857600080fd5b50610ba1611e8b565b604051610bae9190613820565b60405180910390f35b610bbf611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4590613c4a565b60405180910390fd5b8160108190555080601181905550601154601054610c6c9190613c99565b601281905550600f6012541115610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf90613d3b565b60405180910390fd5b5050565b60095481565b606060038054610cd190613d8a565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfd90613d8a565b8015610d4a5780601f10610d1f57610100808354040283529160200191610d4a565b820191906000526020600020905b815481529060010190602001808311610d2d57829003601f168201915b5050505050905090565b6000610d68610d61611eef565b8484611ef7565b6001905092915050565b60196020528060005260406000206000915054906101000a900460ff1681565b610d9a611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2090613c4a565b60405180910390fd5b6001811015610e3757600080fd5b80601581905550610e466120c2565b50565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610e7f611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590613c4a565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610f60611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe690613c4a565b60405180910390fd5b6001811015610ffd57600080fd5b8060168190555061100c6120c2565b50565b600061101c84848461212a565b6110dd84611028611eef565b6110d88560405180606001604052806028815260200161494860289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061108e611eef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da19092919063ffffffff16565b611ef7565b600190509392505050565b61dead81565b60006006905090565b60006111a0611104611eef565b8461119b8560016000611115611eef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e9190919063ffffffff16565b611ef7565b6001905092915050565b7f0000000000000000000000008e82ef55a59914a1643436ece954df364b643edb81565b600a60149054906101000a900460ff1681565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61123f611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590613c4a565b60405180910390fd5b81600d8190555080600e81905550600e54600d546112ec9190613c99565b600f81905550600f80541115611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e90613e08565b60405180910390fd5b5050565b60125481565b600a60169054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113a4611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a90613c4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6114fc611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461158b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158290613c4a565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60155481565b6115f4611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167a90613c4a565b60405180910390fd5b6005600d819055506000600e81905550600e54600d546116a39190613c99565b600f81905550600560108190555060026011819055506011546010546116c99190613c99565b6012819055506005601781905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461173890613d8a565b80601f016020809104026020016040519081016040528092919081815260200182805461176490613d8a565b80156117b15780601f10611786576101008083540402835291602001916117b1565b820191906000526020600020905b81548152906001019060200180831161179457829003601f168201915b5050505050905090565b60165481565b6117c9611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184f90613c4a565b60405180910390fd5b7f0000000000000000000000008e82ef55a59914a1643436ece954df364b643edb73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613e9a565b60405180910390fd5b6118f18282612e05565b5050565b600e5481565b60145481565b611909611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f90613c4a565b60405180910390fd5b8060178190555050565b60115481565b6000611a6b6119b5611eef565b84611a668560405180606001604052806025815260200161497060259139600160006119df611eef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da19092919063ffffffff16565b611ef7565b6001905092915050565b6000611a89611a82611eef565b848461212a565b6001905092915050565b60105481565b601a6020528060005260406000206000915054906101000a900460ff1681565b600a60159054906101000a900460ff1681565b611ad4611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a90613c4a565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611c0091906139af565b60405180910390a25050565b600c60009054906101000a900460ff1681565b60065481565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b600d5481565b60175481565b611ccc611eef565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5290613c4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290613f2c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085481565b6000808284611ea09190613c99565b905083811015611ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edc90613f98565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5e9061402a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce906140bc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120b59190613820565b60405180910390a3505050565b60646016546009546120d491906140dc565b6120de9190614165565b60068190555061271060056009546120f691906140dc565b6121009190614165565b600781905550606460155460095461211891906140dc565b6121229190614165565b600881905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561219a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219190614208565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561220a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122019061429a565b60405180910390fd5b60008114156122245761221f83836000612ea6565b612d9c565b600a60149054906101000a900460ff16156128f4576122416116d9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122af575061227f6116d9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156122e85750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612322575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561233b5750600560149054906101000a900460ff16155b156128f357600a60159054906101000a900460ff1661243557601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123f55750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242b90614306565b60405180910390fd5b5b600c60009054906101000a900460ff161561260a576124526116d9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156124d957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561253157507f0000000000000000000000008e82ef55a59914a1643436ece954df364b643edb73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156126095743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106125b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ae906143be565b60405180910390fd5b601754436125c59190613c99565b600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126ad5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612754576006548111156126f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ee90614450565b60405180910390fd5b60085461270383611354565b8261270e9190613c99565b111561274f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612746906144bc565b60405180910390fd5b6128f2565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127f75750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561284657600654811115612841576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128389061454e565b60405180910390fd5b6128f1565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166128f0576008546128a383611354565b826128ae9190613c99565b11156128ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e6906144bc565b60405180910390fd5b5b5b5b5b5b60006128ff30611354565b9050600060075482101590508080156129255750600560149054906101000a900460ff16155b801561293d5750600a60169054906101000a900460ff165b80156129935750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156129e95750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a3f5750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a83576001600560146101000a81548160ff021916908315150217905550612a6761313b565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b395750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612b4357600090505b60008115612d8c57601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ba657506000601254115b15612c4057612bd36064612bc56012548861322590919063ffffffff16565b6132a090919063ffffffff16565b905060125460105482612be691906140dc565b612bf09190614165565b60136000828254612c019190613c99565b9250508190555060125460115482612c1991906140dc565b612c239190614165565b60146000828254612c349190613c99565b92505081905550612d32565b601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c9b57506000600f54115b15612d3157612cc86064612cba600f548861322590919063ffffffff16565b6132a090919063ffffffff16565b9050600f54600d5482612cdb91906140dc565b612ce59190614165565b60136000828254612cf69190613c99565b92505081905550600f54600e5482612d0e91906140dc565b612d189190614165565b60146000828254612d299190613c99565b925050819055505b5b6000811115612d7d57612d46873083612ea6565b60006013541115612d7c57612d5d306013546132ea565b612d65610e6d565b600981905550612d736120c2565b60006013819055505b5b8085612d89919061456e565b94505b612d97878787612ea6565b505050505b505050565b6000838311158290612de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de091906138d4565b60405180910390fd5b5060008385612df8919061456e565b9050809150509392505050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0d90614208565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7d9061429a565b60405180910390fd5b612f91838383613498565b612ffc81604051806060016040528060268152602001614922602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da19092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061308f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e9190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161312e9190613820565b60405180910390a3505050565b600061314630611354565b9050600080821415613159575050613223565b601460075461316891906140dc565b82111561318157601460075461317e91906140dc565b91505b61318a8261349d565b6000601481905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516131d8906145d3565b60006040518083038185875af1925050503d8060008114613215576040519150601f19603f3d011682016040523d82523d6000602084013e61321a565b606091505b50508091505050505b565b600080831415613238576000905061329a565b6000828461324691906140dc565b90508284826132559190614165565b14613295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328c9061465a565b60405180910390fd5b809150505b92915050565b60006132e283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506136e9565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561335a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613351906146ec565b60405180910390fd5b61336682600083613498565b6133d181604051806060016040528060228152602001614900602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612da19092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506134288160025461374c90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161348c9190613820565b60405180910390a35050565b505050565b6000600267ffffffffffffffff8111156134ba576134b961470c565b5b6040519080825280602002602001820160405280156134e85781602001602082028036833780820191505090505b5090503081600081518110613500576134ff61473b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156135a057600080fd5b505afa1580156135b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d8919061477f565b816001815181106135ec576135eb61473b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613651307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611ef7565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136b39594939291906148a5565b600060405180830381600087803b1580156136cd57600080fd5b505af11580156136e1573d6000803e3d6000fd5b505050505050565b60008083118290613730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372791906138d4565b60405180910390fd5b506000838561373f9190614165565b9050809150509392505050565b600061378e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612da1565b905092915050565b600080fd5b6000819050919050565b6137ae8161379b565b81146137b957600080fd5b50565b6000813590506137cb816137a5565b92915050565b600080604083850312156137e8576137e7613796565b5b60006137f6858286016137bc565b9250506020613807858286016137bc565b9150509250929050565b61381a8161379b565b82525050565b60006020820190506138356000830184613811565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561387557808201518184015260208101905061385a565b83811115613884576000848401525b50505050565b6000601f19601f8301169050919050565b60006138a68261383b565b6138b08185613846565b93506138c0818560208601613857565b6138c98161388a565b840191505092915050565b600060208201905081810360008301526138ee818461389b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613921826138f6565b9050919050565b61393181613916565b811461393c57600080fd5b50565b60008135905061394e81613928565b92915050565b6000806040838503121561396b5761396a613796565b5b60006139798582860161393f565b925050602061398a858286016137bc565b9150509250929050565b60008115159050919050565b6139a981613994565b82525050565b60006020820190506139c460008301846139a0565b92915050565b6000602082840312156139e0576139df613796565b5b60006139ee8482850161393f565b91505092915050565b600060208284031215613a0d57613a0c613796565b5b6000613a1b848285016137bc565b91505092915050565b6000819050919050565b6000613a49613a44613a3f846138f6565b613a24565b6138f6565b9050919050565b6000613a5b82613a2e565b9050919050565b6000613a6d82613a50565b9050919050565b613a7d81613a62565b82525050565b6000602082019050613a986000830184613a74565b92915050565b600080600060608486031215613ab757613ab6613796565b5b6000613ac58682870161393f565b9350506020613ad68682870161393f565b9250506040613ae7868287016137bc565b9150509250925092565b613afa81613916565b82525050565b6000602082019050613b156000830184613af1565b92915050565b600060ff82169050919050565b613b3181613b1b565b82525050565b6000602082019050613b4c6000830184613b28565b92915050565b613b5b81613994565b8114613b6657600080fd5b50565b600081359050613b7881613b52565b92915050565b60008060408385031215613b9557613b94613796565b5b6000613ba38582860161393f565b9250506020613bb485828601613b69565b9150509250929050565b60008060408385031215613bd557613bd4613796565b5b6000613be38582860161393f565b9250506020613bf48582860161393f565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c34602083613846565b9150613c3f82613bfe565b602082019050919050565b60006020820190508181036000830152613c6381613c27565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ca48261379b565b9150613caf8361379b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ce457613ce3613c6a565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000613d25601d83613846565b9150613d3082613cef565b602082019050919050565b60006020820190508181036000830152613d5481613d18565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613da257607f821691505b60208210811415613db657613db5613d5b565b5b50919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000613df2601d83613846565b9150613dfd82613dbc565b602082019050919050565b60006020820190508181036000830152613e2181613de5565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613e84603983613846565b9150613e8f82613e28565b604082019050919050565b60006020820190508181036000830152613eb381613e77565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613f16602683613846565b9150613f2182613eba565b604082019050919050565b60006020820190508181036000830152613f4581613f09565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000613f82601b83613846565b9150613f8d82613f4c565b602082019050919050565b60006020820190508181036000830152613fb181613f75565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614014602483613846565b915061401f82613fb8565b604082019050919050565b6000602082019050818103600083015261404381614007565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006140a6602283613846565b91506140b18261404a565b604082019050919050565b600060208201905081810360008301526140d581614099565b9050919050565b60006140e78261379b565b91506140f28361379b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561412b5761412a613c6a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141708261379b565b915061417b8361379b565b92508261418b5761418a614136565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006141f2602583613846565b91506141fd82614196565b604082019050919050565b60006020820190508181036000830152614221816141e5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614284602383613846565b915061428f82614228565b604082019050919050565b600060208201905081810360008301526142b381614277565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006142f0601683613846565b91506142fb826142ba565b602082019050919050565b6000602082019050818103600083015261431f816142e3565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006143a8604983613846565b91506143b382614326565b606082019050919050565b600060208201905081810360008301526143d78161439b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b600061443a603583613846565b9150614445826143de565b604082019050919050565b600060208201905081810360008301526144698161442d565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006144a6601383613846565b91506144b182614470565b602082019050919050565b600060208201905081810360008301526144d581614499565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614538603683613846565b9150614543826144dc565b604082019050919050565b600060208201905081810360008301526145678161452b565b9050919050565b60006145798261379b565b91506145848361379b565b92508282101561459757614596613c6a565b5b828203905092915050565b600081905092915050565b50565b60006145bd6000836145a2565b91506145c8826145ad565b600082019050919050565b60006145de826145b0565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000614644602183613846565b915061464f826145e8565b604082019050919050565b6000602082019050818103600083015261467381614637565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006146d6602183613846565b91506146e18261467a565b604082019050919050565b60006020820190508181036000830152614705816146c9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061477981613928565b92915050565b60006020828403121561479557614794613796565b5b60006147a38482850161476a565b91505092915050565b6000819050919050565b60006147d16147cc6147c7846147ac565b613a24565b61379b565b9050919050565b6147e1816147b6565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61481c81613916565b82525050565b600061482e8383614813565b60208301905092915050565b6000602082019050919050565b6000614852826147e7565b61485c81856147f2565b935061486783614803565b8060005b8381101561489857815161487f8882614822565b975061488a8361483a565b92505060018101905061486b565b5085935050505092915050565b600060a0820190506148ba6000830188613811565b6148c760208301876147d8565b81810360408301526148d98186614847565b90506148e86060830185613af1565b6148f56080830184613811565b969550505050505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a69e020ab5a4ce88b521525955e27780900dd8ef50d012fd2a80d39bc8929f6b64736f6c63430008090033
Deployed Bytecode Sourcemap
30788:11324:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35586:273;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31185:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8919:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11085:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32014:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34877:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30863:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10038:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35867:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31699:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34714:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11736:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30966:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9881:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12500:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30921:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31252:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36844:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35308:266;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31655:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31331:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10209:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23383:148;;;;;;;;;;;;;:::i;:::-;;35152:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31770:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34422:280;;;;;;;;;;;;;:::i;:::-;;22741:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31215:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9138:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31803:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36396:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31523:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31734:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35042:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31623:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13221:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10549:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31590:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32236:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31292:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35978:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31443:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31066:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31554:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10787:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31108:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31491:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31835;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23686:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31148:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35586:273;22963:12;:10;:12::i;:::-;22953:22;;:6;;;;;;;;;;;:22;;;22945:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35689:8:::1;35675:11;:22;;;;35721:7;35708:10;:20;;;;35769:10;;35755:11;;:24;;;;:::i;:::-;35739:13;:40;;;;35815:2;35798:13;;:19;;35790:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;35586:273:::0;;:::o;31185:21::-;;;;:::o;8919:100::-;8973:13;9006:5;8999:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8919:100;:::o;11085:169::-;11168:4;11185:39;11194:12;:10;:12::i;:::-;11208:7;11217:6;11185:8;:39::i;:::-;11242:4;11235:11;;11085:169;;;;:::o;32014:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;34877:157::-;22963:12;:10;:12::i;:::-;22953:22;;:6;;;;;;;;;;;:22;;;22945:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34968:1:::1;34958:6;:11;;34950:20;;;::::0;::::1;;34995:6;34981:11;:20;;;;35012:14;:12;:14::i;:::-;34877:157:::0;:::o;30863:51::-;;;:::o;10038:108::-;10099:7;10126:12;;10119:19;;10038:108;:::o;35867:103::-;22963:12;:10;:12::i;:::-;22953:22;;:6;;;;;;;;;;;:22;;;22945:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35953:9:::1;35941;;:21;;;;;;;;;;;;;;;;;;35867:103:::0;:::o;31699:28::-;;;;:::o;34714:155::-;22963:12;:10;:12::i;:::-;22953:22;;:6;;;;;;;;;;;:22;;;22945:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34804:1:::1;34794:6;:11;;34786:20;;;::::0;::::1;;34830:6;34817:10;:19;;;;34847:14;:12;:14::i;:::-;34714:155:::0;:::o;11736:355::-;11876:4;11893:36;11903:6;11911:9;11922:6;11893:9;:36::i;:::-;11940:121;11949:6;11957:12;:10;:12::i;:::-;11971:89;12009:6;11971:89;;;;;;;;;;;;;;;;;:11;:19;11983:6;11971:19;;;;;;;;;;;;;;;:33;11991:12;:10;:12::i;:::-;11971:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;11940:8;:121::i;:::-;12079:4;12072:11;;11736:355;;;;;:::o;30966:53::-;31012:6;30966:53;:::o;9881:92::-;9939:5;9964:1;9957:8;;9881:92;:::o;12500:218::-;12588:4;12605:83;12614:12;:10;:12::i;:::-;12628:7;12637:50;12676:10;12637:11;:25;12649:12;:10;:12::i;:::-;12637:25;;;;;;;;;;;;;;;:34;12663:7;12637:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;12605:8;:83::i;:::-;12706:4;12699:11;;12500:218;;;;:::o;30921:38::-;;;:::o;31252:33::-;;;;;;;;;;;;;:::o;36844:125::-;36909:4;36933:19;:28;36953:7;36933:28;;;;;;;;;;;;;;;;;;;;;;;;;36926:35;;36844:125;;;:::o;35308:266::-;22963:12;:10;:12::i;:::-;22953:22;;:6;;;;;;;;;;;:22;;;22945:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35409:8:::1;35396:10;:21;;;;35440:7;35428:9;:19;;;;35486:9;;35473:10;;:22;;;;:::i;:::-;35458:12;:37;;;;35530:2;35514:12:::0;::::1;:18;;35506:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;35308:266:::0;;:::o;31655:28::-;;;;:::o;31331:30::-;;;;;;;;;;;;;:::o;10209:127::-;10283:7;10310:9;:18;10320:7;10310:18;;;;;;;;;;;;;;;;10303:25;;10209:127;;;:::o;23383:148::-;22963:12;:10;:12::i;:::-;22953:22;;:6;;;;;;;;;;;:22;;;22945:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;23490:1:::1;23453:40;;23474:6;;;;;;;;;;;23453:40;;;;;;;;;;;;23521:1;23504:6;;:19;;;;;;;;;;;;;;;;;;23383:148::o:0;35152:144::-;22963:12;:10;:12::i;:::-;22953:22;;:6;;;;;;;;;;;:22;;;22945:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35284:4:::1;35242:31;:39;35274:6;35242:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35152:144:::0;;:::o;31770:26::-;;;;:::o;34422:280::-;22963:12;:10;:12::i;:::-;22953:22;;:6;;;;;;;;;;;:22;;;22945:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34490:1:::1;34477:10;:14;;;;34514:1;34502:9;:13;;;;34554:9;;34541:10;;:22;;;;:::i;:::-;34526:12;:37;;;;34590:1;34576:11;:15;;;;34615:1;34602:10;:14;;;;34657:10;;34643:11;;:24;;;;:::i;:::-;34627:13;:40;;;;34693:1;34680:10;:14;;;;34422:280::o:0;22741:79::-;22779:7;22806:6;;;;;;;;;;;22799:13;;22741:79;:::o;31215:24::-;;;;;;;;;;;;;:::o;9138:104::-;9194:13;9227:7;9220:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9138:104;:::o;31803:25::-;;;;:::o;36396:244::-;22963:12;:10;:12::i;:::-;22953:22;;:6;;;;;;;;;;;:22;;;22945:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36503:13:::1;36495:21;;:4;:21;;;;36487:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;36591:41;36620:4;36626:5;36591:28;:41::i;:::-;36396:244:::0;;:::o;31523:24::-;;;;:::o;31734:27::-;;;;:::o;35042:98::-;22963:12;:10;:12::i;:::-;22953:22;;:6;;;;;;;;;;;:22;;;22945:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35126:6:::1;35113:10;:19;;;;35042:98:::0;:::o;31623:25::-;;;;:::o;13221:269::-;13314:4;13331:129;13340:12;:10;:12::i;:::-;13354:7;13363:96;13402:15;13363:96;;;;;;;;;;;;;;;;;:11;:25;13375:12;:10;:12::i;:::-;13363:25;;;;;;;;;;;;;;;:34;13389:7;13363:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;13331:8;:129::i;:::-;13478:4;13471:11;;13221:269;;;;:::o;10549:175::-;10635:4;10652:42;10662:12;:10;:12::i;:::-;10676:9;10687:6;10652:9;:42::i;:::-;10712:4;10705:11;;10549:175;;;;:::o;31590:26::-;;;;:::o;32236:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;31292:32::-;;;;;;;;;;;;;:::o;35978:182::-;22963:12;:10;:12::i;:::-;22953:22;;:6;;;;;;;;;;;:22;;;22945:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36094:8:::1;36063:19;:28;36083:7;36063:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36134:7;36118:34;;;36143:8;36118:34;;;;;;:::i;:::-;;;;;;;;35978:182:::0;;:::o;31443:39::-;;;;;;;;;;;;;:::o;31066:35::-;;;;:::o;31554:27::-;;;;:::o;10787:151::-;10876:7;10903:11;:18;10915:5;10903:18;;;;;;;;;;;;;;;:27;10922:7;10903:27;;;;;;;;;;;;;;;;10896:34;;10787:151;;;;:::o;31108:33::-;;;;:::o;31491:25::-;;;;:::o;31835:::-;;;;:::o;23686:244::-;22963:12;:10;:12::i;:::-;22953:22;;:6;;;;;;;;;;;:22;;;22945:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;23795:1:::1;23775:22;;:8;:22;;;;23767:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23885:8;23856:38;;23877:6;;;;;;;;;;;23856:38;;;;;;;;;;;;23914:8;23905:6;;:17;;;;;;;;;;;;;;;;;;23686:244:::0;:::o;31148:24::-;;;;:::o;17785:181::-;17843:7;17863:9;17879:1;17875;:5;;;;:::i;:::-;17863:17;;17904:1;17899;:6;;17891:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;17957:1;17950:8;;;17785:181;;;;:::o;1555:98::-;1608:7;1635:10;1628:17;;1555:98;:::o;16407:380::-;16560:1;16543:19;;:5;:19;;;;16535:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16641:1;16622:21;;:7;:21;;;;16614:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16725:6;16695:11;:18;16707:5;16695:18;;;;;;;;;;;;;;;:27;16714:7;16695:27;;;;;;;;;;;;;;;:36;;;;16763:7;16747:32;;16756:5;16747:32;;;16772:6;16747:32;;;;;;:::i;:::-;;;;;;;;16407:380;;;:::o;36168:220::-;36256:3;36243:10;;36234:6;;:19;;;;:::i;:::-;:25;;;;:::i;:::-;36211:20;:48;;;;36304:5;36300:1;36291:6;;:10;;;;:::i;:::-;:18;;;;:::i;:::-;36270;:39;;;;36377:3;36363:11;;36354:6;;:20;;;;:::i;:::-;:26;;;;:::i;:::-;36342:9;:38;;;;36168:220::o;36981:4041::-;37129:1;37113:18;;:4;:18;;;;37105:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37206:1;37192:16;;:2;:16;;;;37184:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37283:1;37273:6;:11;37270:92;;;37301:28;37317:4;37323:2;37327:1;37301:15;:28::i;:::-;37344:7;;37270:92;37385:14;;;;;;;;;;;37382:1854;;;37445:7;:5;:7::i;:::-;37437:15;;:4;:15;;;;:49;;;;;37479:7;:5;:7::i;:::-;37473:13;;:2;:13;;;;37437:49;:86;;;;;37521:1;37507:16;;:2;:16;;;;37437:86;:128;;;;;37558:6;37544:21;;:2;:21;;;;37437:128;:158;;;;;37587:8;;;;;;;;;;;37586:9;37437:158;37415:1810;;;37633:13;;;;;;;;;;;37629:148;;37678:19;:25;37698:4;37678:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;37707:19;:23;37727:2;37707:23;;;;;;;;;;;;;;;;;;;;;;;;;37678:52;37670:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37629:148;37935:20;;;;;;;;;;;37931:436;;;37989:7;:5;:7::i;:::-;37983:13;;:2;:13;;;;:47;;;;;38014:15;38000:30;;:2;:30;;;;37983:47;:79;;;;;38048:13;38034:28;;:2;:28;;;;37983:79;37979:369;;;38140:12;38098:28;:39;38127:9;38098:39;;;;;;;;;;;;;;;;:54;38090:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;38314:10;;38299:12;:25;;;;:::i;:::-;38257:28;:39;38286:9;38257:39;;;;;;;;;;;;;;;:67;;;;37979:369;37931:436;38436:25;:31;38462:4;38436:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;38472:31;:35;38504:2;38472:35;;;;;;;;;;;;;;;;;;;;;;;;;38471:36;38436:71;38432:778;;;38554:20;;38544:6;:30;;38536:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;38693:9;;38676:13;38686:2;38676:9;:13::i;:::-;38667:6;:22;;;;:::i;:::-;:35;;38659:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38432:778;;;38820:25;:29;38846:2;38820:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;38854:31;:37;38886:4;38854:37;;;;;;;;;;;;;;;;;;;;;;;;;38853:38;38820:71;38816:394;;;38938:20;;38928:6;:30;;38920:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;38816:394;;;39064:31;:35;39096:2;39064:35;;;;;;;;;;;;;;;;;;;;;;;;;39060:150;;39157:9;;39140:13;39150:2;39140:9;:13::i;:::-;39131:6;:22;;;;:::i;:::-;:35;;39123:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;39060:150;38816:394;38432:778;37415:1810;37382:1854;39246:28;39277:24;39295:4;39277:9;:24::i;:::-;39246:55;;39322:12;39361:18;;39337:20;:42;;39322:57;;39410:7;:33;;;;;39435:8;;;;;;;;;;;39434:9;39410:33;:61;;;;;39460:11;;;;;;;;;;;39410:61;:110;;;;;39489:25;:31;39515:4;39489:31;;;;;;;;;;;;;;;;;;;;;;;;;39488:32;39410:110;:153;;;;;39538:19;:25;39558:4;39538:25;;;;;;;;;;;;;;;;;;;;;;;;;39537:26;39410:153;:194;;;;;39581:19;:23;39601:2;39581:23;;;;;;;;;;;;;;;;;;;;;;;;;39580:24;39410:194;39392:338;;;39642:4;39631:8;;:15;;;;;;;;;;;;;;;;;;39675:10;:8;:10::i;:::-;39713:5;39702:8;;:16;;;;;;;;;;;;;;;;;;39392:338;39750:12;39766:8;;;;;;;;;;;39765:9;39750:24;;39790:19;:25;39810:4;39790:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;39819:19;:23;39839:2;39819:23;;;;;;;;;;;;;;;;;;;;;;;;;39790:52;39787:99;;;39869:5;39859:15;;39787:99;39906:12;39938:7;39935:1034;;;39989:25;:29;40015:2;39989:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;40038:1;40022:13;;:17;39989:50;39985:574;;;40066:34;40096:3;40066:25;40077:13;;40066:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;40059:41;;40157:13;;40143:11;;40136:4;:18;;;;:::i;:::-;:34;;;;:::i;:::-;40119:13;;:51;;;;;;;:::i;:::-;;;;;;;;40225:13;;40212:10;;40205:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;40189:12;;:49;;;;;;;:::i;:::-;;;;;;;;39985:574;;;40301:25;:31;40327:4;40301:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;40351:1;40336:12;;:16;40301:51;40298:261;;;40379:33;40408:3;40379:24;40390:12;;40379:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;40372:40;;40465:12;;40452:10;;40445:4;:17;;;;:::i;:::-;:32;;;;:::i;:::-;40428:13;;:49;;;;;;;:::i;:::-;;;;;;;;40531:12;;40519:9;;40512:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;40496:12;;:47;;;;;;;:::i;:::-;;;;;;;;40298:261;39985:574;40597:1;40590:4;:8;40587:334;;;40622:42;40638:4;40652;40659;40622:15;:42::i;:::-;40703:1;40687:13;;:17;40683:223;;;40729:35;40743:4;40750:13;;40729:5;:35::i;:::-;40796:13;:11;:13::i;:::-;40787:6;:22;;;;40832:14;:12;:14::i;:::-;40885:1;40869:13;:17;;;;40683:223;40587:334;40953:4;40943:14;;;;;:::i;:::-;;;39935:1034;40981:33;40997:4;41003:2;41007:6;40981:15;:33::i;:::-;37094:3928;;;;36981:4041;;;;:::o;18688:192::-;18774:7;18807:1;18802;:6;;18810:12;18794:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;18834:9;18850:1;18846;:5;;;;:::i;:::-;18834:17;;18871:1;18864:8;;;18688:192;;;;;:::o;36648:188::-;36765:5;36731:25;:31;36757:4;36731:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36822:5;36788:40;;36816:4;36788:40;;;;;;;;;;;;36648:188;;:::o;13980:573::-;14138:1;14120:20;;:6;:20;;;;14112:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14222:1;14201:23;;:9;:23;;;;14193:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14277:47;14298:6;14306:9;14317:6;14277:20;:47::i;:::-;14357:71;14379:6;14357:71;;;;;;;;;;;;;;;;;:9;:17;14367:6;14357:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;14337:9;:17;14347:6;14337:17;;;;;;;;;;;;;;;:91;;;;14462:32;14487:6;14462:9;:20;14472:9;14462:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;14439:9;:20;14449:9;14439:20;;;;;;;;;;;;;;;:55;;;;14527:9;14510:35;;14519:6;14510:35;;;14538:6;14510:35;;;;;;:::i;:::-;;;;;;;;13980:573;;;:::o;41643:464::-;41682:23;41708:24;41726:4;41708:9;:24::i;:::-;41682:50;;41743:12;41798:1;41779:15;:20;41776:34;;;41802:7;;;;41776:34;41864:2;41843:18;;:23;;;;:::i;:::-;41825:15;:41;41822:111;;;41919:2;41898:18;;:23;;;;:::i;:::-;41880:41;;41822:111;41945:33;41962:15;41945:16;:33::i;:::-;42015:1;42000:12;:16;;;;42050:9;;;;;;;;;;;42042:23;;42073:21;42042:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42029:70;;;;;41671:436;;41643:464;:::o;19139:471::-;19197:7;19447:1;19442;:6;19438:47;;;19472:1;19465:8;;;;19438:47;19497:9;19513:1;19509;:5;;;;:::i;:::-;19497:17;;19542:1;19537;19533;:5;;;;:::i;:::-;:10;19525:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;19601:1;19594:8;;;19139:471;;;;;:::o;20086:132::-;20144:7;20171:39;20175:1;20178;20171:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;20164:46;;20086:132;;;;:::o;15551:418::-;15654:1;15635:21;;:7;:21;;;;15627:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;15707:49;15728:7;15745:1;15749:6;15707:20;:49::i;:::-;15790:68;15813:6;15790:68;;;;;;;;;;;;;;;;;:9;:18;15800:7;15790:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;15769:9;:18;15779:7;15769:18;;;;;;;;;;;;;;;:89;;;;15884:24;15901:6;15884:12;;:16;;:24;;;;:::i;:::-;15869:12;:39;;;;15950:1;15924:37;;15933:7;15924:37;;;15954:6;15924:37;;;;;;:::i;:::-;;;;;;;;15551:418;;:::o;17390:125::-;;;;:::o;41030:601::-;41158:21;41196:1;41182:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41158:40;;41227:4;41209;41214:1;41209:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;41253:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41243:4;41248:1;41243:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;41288:62;41305:4;41320:15;41338:11;41288:8;:62::i;:::-;41389:15;:66;;;41470:11;41496:1;41540:4;41567;41587:15;41389:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41085:546;41030:601;:::o;20714:278::-;20800:7;20832:1;20828;:5;20835:12;20820:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;20859:9;20875:1;20871;:5;;;;:::i;:::-;20859:17;;20983:1;20976:8;;;20714:278;;;;;:::o;18249:136::-;18307:7;18334:43;18338:1;18341;18334:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;18327:50;;18249:136;;;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:118::-;1257:24;1275:5;1257:24;:::i;:::-;1252:3;1245:37;1170:118;;:::o;1294:222::-;1387:4;1425:2;1414:9;1410:18;1402:26;;1438:71;1506:1;1495:9;1491:17;1482:6;1438:71;:::i;:::-;1294:222;;;;:::o;1522:99::-;1574:6;1608:5;1602:12;1592:22;;1522:99;;;:::o;1627:169::-;1711:11;1745:6;1740:3;1733:19;1785:4;1780:3;1776:14;1761:29;;1627:169;;;;:::o;1802:307::-;1870:1;1880:113;1894:6;1891:1;1888:13;1880:113;;;1979:1;1974:3;1970:11;1964:18;1960:1;1955:3;1951:11;1944:39;1916:2;1913:1;1909:10;1904:15;;1880:113;;;2011:6;2008:1;2005:13;2002:101;;;2091:1;2082:6;2077:3;2073:16;2066:27;2002:101;1851:258;1802:307;;;:::o;2115:102::-;2156:6;2207:2;2203:7;2198:2;2191:5;2187:14;2183:28;2173:38;;2115:102;;;:::o;2223:364::-;2311:3;2339:39;2372:5;2339:39;:::i;:::-;2394:71;2458:6;2453:3;2394:71;:::i;:::-;2387:78;;2474:52;2519:6;2514:3;2507:4;2500:5;2496:16;2474:52;:::i;:::-;2551:29;2573:6;2551:29;:::i;:::-;2546:3;2542:39;2535:46;;2315:272;2223:364;;;;:::o;2593:313::-;2706:4;2744:2;2733:9;2729:18;2721:26;;2793:9;2787:4;2783:20;2779:1;2768:9;2764:17;2757:47;2821:78;2894:4;2885:6;2821:78;:::i;:::-;2813:86;;2593:313;;;;:::o;2912:126::-;2949:7;2989:42;2982:5;2978:54;2967:65;;2912:126;;;:::o;3044:96::-;3081:7;3110:24;3128:5;3110:24;:::i;:::-;3099:35;;3044:96;;;:::o;3146:122::-;3219:24;3237:5;3219:24;:::i;:::-;3212:5;3209:35;3199:63;;3258:1;3255;3248:12;3199:63;3146:122;:::o;3274:139::-;3320:5;3358:6;3345:20;3336:29;;3374:33;3401:5;3374:33;:::i;:::-;3274:139;;;;:::o;3419:474::-;3487:6;3495;3544:2;3532:9;3523:7;3519:23;3515:32;3512:119;;;3550:79;;:::i;:::-;3512:119;3670:1;3695:53;3740:7;3731:6;3720:9;3716:22;3695:53;:::i;:::-;3685:63;;3641:117;3797:2;3823:53;3868:7;3859:6;3848:9;3844:22;3823:53;:::i;:::-;3813:63;;3768:118;3419:474;;;;;:::o;3899:90::-;3933:7;3976:5;3969:13;3962:21;3951:32;;3899:90;;;:::o;3995:109::-;4076:21;4091:5;4076:21;:::i;:::-;4071:3;4064:34;3995:109;;:::o;4110:210::-;4197:4;4235:2;4224:9;4220:18;4212:26;;4248:65;4310:1;4299:9;4295:17;4286:6;4248:65;:::i;:::-;4110:210;;;;:::o;4326:329::-;4385:6;4434:2;4422:9;4413:7;4409:23;4405:32;4402:119;;;4440:79;;:::i;:::-;4402:119;4560:1;4585:53;4630:7;4621:6;4610:9;4606:22;4585:53;:::i;:::-;4575:63;;4531:117;4326:329;;;;:::o;4661:::-;4720:6;4769:2;4757:9;4748:7;4744:23;4740:32;4737:119;;;4775:79;;:::i;:::-;4737:119;4895:1;4920:53;4965:7;4956:6;4945:9;4941:22;4920:53;:::i;:::-;4910:63;;4866:117;4661:329;;;;:::o;4996:60::-;5024:3;5045:5;5038:12;;4996:60;;;:::o;5062:142::-;5112:9;5145:53;5163:34;5172:24;5190:5;5172:24;:::i;:::-;5163:34;:::i;:::-;5145:53;:::i;:::-;5132:66;;5062:142;;;:::o;5210:126::-;5260:9;5293:37;5324:5;5293:37;:::i;:::-;5280:50;;5210:126;;;:::o;5342:153::-;5419:9;5452:37;5483:5;5452:37;:::i;:::-;5439:50;;5342:153;;;:::o;5501:185::-;5615:64;5673:5;5615:64;:::i;:::-;5610:3;5603:77;5501:185;;:::o;5692:276::-;5812:4;5850:2;5839:9;5835:18;5827:26;;5863:98;5958:1;5947:9;5943:17;5934:6;5863:98;:::i;:::-;5692:276;;;;:::o;5974:619::-;6051:6;6059;6067;6116:2;6104:9;6095:7;6091:23;6087:32;6084:119;;;6122:79;;:::i;:::-;6084:119;6242:1;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6213:117;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;6497:2;6523:53;6568:7;6559:6;6548:9;6544:22;6523:53;:::i;:::-;6513:63;;6468:118;5974:619;;;;;:::o;6599:118::-;6686:24;6704:5;6686:24;:::i;:::-;6681:3;6674:37;6599:118;;:::o;6723:222::-;6816:4;6854:2;6843:9;6839:18;6831:26;;6867:71;6935:1;6924:9;6920:17;6911:6;6867:71;:::i;:::-;6723:222;;;;:::o;6951:86::-;6986:7;7026:4;7019:5;7015:16;7004:27;;6951:86;;;:::o;7043:112::-;7126:22;7142:5;7126:22;:::i;:::-;7121:3;7114:35;7043:112;;:::o;7161:214::-;7250:4;7288:2;7277:9;7273:18;7265:26;;7301:67;7365:1;7354:9;7350:17;7341:6;7301:67;:::i;:::-;7161:214;;;;:::o;7381:116::-;7451:21;7466:5;7451:21;:::i;:::-;7444:5;7441:32;7431:60;;7487:1;7484;7477:12;7431:60;7381:116;:::o;7503:133::-;7546:5;7584:6;7571:20;7562:29;;7600:30;7624:5;7600:30;:::i;:::-;7503:133;;;;:::o;7642:468::-;7707:6;7715;7764:2;7752:9;7743:7;7739:23;7735:32;7732:119;;;7770:79;;:::i;:::-;7732:119;7890:1;7915:53;7960:7;7951:6;7940:9;7936:22;7915:53;:::i;:::-;7905:63;;7861:117;8017:2;8043:50;8085:7;8076:6;8065:9;8061:22;8043:50;:::i;:::-;8033:60;;7988:115;7642:468;;;;;:::o;8116:474::-;8184:6;8192;8241:2;8229:9;8220:7;8216:23;8212:32;8209:119;;;8247:79;;:::i;:::-;8209:119;8367:1;8392:53;8437:7;8428:6;8417:9;8413:22;8392:53;:::i;:::-;8382:63;;8338:117;8494:2;8520:53;8565:7;8556:6;8545:9;8541:22;8520:53;:::i;:::-;8510:63;;8465:118;8116:474;;;;;:::o;8596:182::-;8736:34;8732:1;8724:6;8720:14;8713:58;8596:182;:::o;8784:366::-;8926:3;8947:67;9011:2;9006:3;8947:67;:::i;:::-;8940:74;;9023:93;9112:3;9023:93;:::i;:::-;9141:2;9136:3;9132:12;9125:19;;8784:366;;;:::o;9156:419::-;9322:4;9360:2;9349:9;9345:18;9337:26;;9409:9;9403:4;9399:20;9395:1;9384:9;9380:17;9373:47;9437:131;9563:4;9437:131;:::i;:::-;9429:139;;9156:419;;;:::o;9581:180::-;9629:77;9626:1;9619:88;9726:4;9723:1;9716:15;9750:4;9747:1;9740:15;9767:305;9807:3;9826:20;9844:1;9826:20;:::i;:::-;9821:25;;9860:20;9878:1;9860:20;:::i;:::-;9855:25;;10014:1;9946:66;9942:74;9939:1;9936:81;9933:107;;;10020:18;;:::i;:::-;9933:107;10064:1;10061;10057:9;10050:16;;9767:305;;;;:::o;10078:179::-;10218:31;10214:1;10206:6;10202:14;10195:55;10078:179;:::o;10263:366::-;10405:3;10426:67;10490:2;10485:3;10426:67;:::i;:::-;10419:74;;10502:93;10591:3;10502:93;:::i;:::-;10620:2;10615:3;10611:12;10604:19;;10263:366;;;:::o;10635:419::-;10801:4;10839:2;10828:9;10824:18;10816:26;;10888:9;10882:4;10878:20;10874:1;10863:9;10859:17;10852:47;10916:131;11042:4;10916:131;:::i;:::-;10908:139;;10635:419;;;:::o;11060:180::-;11108:77;11105:1;11098:88;11205:4;11202:1;11195:15;11229:4;11226:1;11219:15;11246:320;11290:6;11327:1;11321:4;11317:12;11307:22;;11374:1;11368:4;11364:12;11395:18;11385:81;;11451:4;11443:6;11439:17;11429:27;;11385:81;11513:2;11505:6;11502:14;11482:18;11479:38;11476:84;;;11532:18;;:::i;:::-;11476:84;11297:269;11246:320;;;:::o;11572:179::-;11712:31;11708:1;11700:6;11696:14;11689:55;11572:179;:::o;11757:366::-;11899:3;11920:67;11984:2;11979:3;11920:67;:::i;:::-;11913:74;;11996:93;12085:3;11996:93;:::i;:::-;12114:2;12109:3;12105:12;12098:19;;11757:366;;;:::o;12129:419::-;12295:4;12333:2;12322:9;12318:18;12310:26;;12382:9;12376:4;12372:20;12368:1;12357:9;12353:17;12346:47;12410:131;12536:4;12410:131;:::i;:::-;12402:139;;12129:419;;;:::o;12554:244::-;12694:34;12690:1;12682:6;12678:14;12671:58;12763:27;12758:2;12750:6;12746:15;12739:52;12554:244;:::o;12804:366::-;12946:3;12967:67;13031:2;13026:3;12967:67;:::i;:::-;12960:74;;13043:93;13132:3;13043:93;:::i;:::-;13161:2;13156:3;13152:12;13145:19;;12804:366;;;:::o;13176:419::-;13342:4;13380:2;13369:9;13365:18;13357:26;;13429:9;13423:4;13419:20;13415:1;13404:9;13400:17;13393:47;13457:131;13583:4;13457:131;:::i;:::-;13449:139;;13176:419;;;:::o;13601:225::-;13741:34;13737:1;13729:6;13725:14;13718:58;13810:8;13805:2;13797:6;13793:15;13786:33;13601:225;:::o;13832:366::-;13974:3;13995:67;14059:2;14054:3;13995:67;:::i;:::-;13988:74;;14071:93;14160:3;14071:93;:::i;:::-;14189:2;14184:3;14180:12;14173:19;;13832:366;;;:::o;14204:419::-;14370:4;14408:2;14397:9;14393:18;14385:26;;14457:9;14451:4;14447:20;14443:1;14432:9;14428:17;14421:47;14485:131;14611:4;14485:131;:::i;:::-;14477:139;;14204:419;;;:::o;14629:177::-;14769:29;14765:1;14757:6;14753:14;14746:53;14629:177;:::o;14812:366::-;14954:3;14975:67;15039:2;15034:3;14975:67;:::i;:::-;14968:74;;15051:93;15140:3;15051:93;:::i;:::-;15169:2;15164:3;15160:12;15153:19;;14812:366;;;:::o;15184:419::-;15350:4;15388:2;15377:9;15373:18;15365:26;;15437:9;15431:4;15427:20;15423:1;15412:9;15408:17;15401:47;15465:131;15591:4;15465:131;:::i;:::-;15457:139;;15184:419;;;:::o;15609:223::-;15749:34;15745:1;15737:6;15733:14;15726:58;15818:6;15813:2;15805:6;15801:15;15794:31;15609:223;:::o;15838:366::-;15980:3;16001:67;16065:2;16060:3;16001:67;:::i;:::-;15994:74;;16077:93;16166:3;16077:93;:::i;:::-;16195:2;16190:3;16186:12;16179:19;;15838:366;;;:::o;16210:419::-;16376:4;16414:2;16403:9;16399:18;16391:26;;16463:9;16457:4;16453:20;16449:1;16438:9;16434:17;16427:47;16491:131;16617:4;16491:131;:::i;:::-;16483:139;;16210:419;;;:::o;16635:221::-;16775:34;16771:1;16763:6;16759:14;16752:58;16844:4;16839:2;16831:6;16827:15;16820:29;16635:221;:::o;16862:366::-;17004:3;17025:67;17089:2;17084:3;17025:67;:::i;:::-;17018:74;;17101:93;17190:3;17101:93;:::i;:::-;17219:2;17214:3;17210:12;17203:19;;16862:366;;;:::o;17234:419::-;17400:4;17438:2;17427:9;17423:18;17415:26;;17487:9;17481:4;17477:20;17473:1;17462:9;17458:17;17451:47;17515:131;17641:4;17515:131;:::i;:::-;17507:139;;17234:419;;;:::o;17659:348::-;17699:7;17722:20;17740:1;17722:20;:::i;:::-;17717:25;;17756:20;17774:1;17756:20;:::i;:::-;17751:25;;17944:1;17876:66;17872:74;17869:1;17866:81;17861:1;17854:9;17847:17;17843:105;17840:131;;;17951:18;;:::i;:::-;17840:131;17999:1;17996;17992:9;17981:20;;17659:348;;;;:::o;18013:180::-;18061:77;18058:1;18051:88;18158:4;18155:1;18148:15;18182:4;18179:1;18172:15;18199:185;18239:1;18256:20;18274:1;18256:20;:::i;:::-;18251:25;;18290:20;18308:1;18290:20;:::i;:::-;18285:25;;18329:1;18319:35;;18334:18;;:::i;:::-;18319:35;18376:1;18373;18369:9;18364:14;;18199:185;;;;:::o;18390:224::-;18530:34;18526:1;18518:6;18514:14;18507:58;18599:7;18594:2;18586:6;18582:15;18575:32;18390:224;:::o;18620:366::-;18762:3;18783:67;18847:2;18842:3;18783:67;:::i;:::-;18776:74;;18859:93;18948:3;18859:93;:::i;:::-;18977:2;18972:3;18968:12;18961:19;;18620:366;;;:::o;18992:419::-;19158:4;19196:2;19185:9;19181:18;19173:26;;19245:9;19239:4;19235:20;19231:1;19220:9;19216:17;19209:47;19273:131;19399:4;19273:131;:::i;:::-;19265:139;;18992:419;;;:::o;19417:222::-;19557:34;19553:1;19545:6;19541:14;19534:58;19626:5;19621:2;19613:6;19609:15;19602:30;19417:222;:::o;19645:366::-;19787:3;19808:67;19872:2;19867:3;19808:67;:::i;:::-;19801:74;;19884:93;19973:3;19884:93;:::i;:::-;20002:2;19997:3;19993:12;19986:19;;19645:366;;;:::o;20017:419::-;20183:4;20221:2;20210:9;20206:18;20198:26;;20270:9;20264:4;20260:20;20256:1;20245:9;20241:17;20234:47;20298:131;20424:4;20298:131;:::i;:::-;20290:139;;20017:419;;;:::o;20442:172::-;20582:24;20578:1;20570:6;20566:14;20559:48;20442:172;:::o;20620:366::-;20762:3;20783:67;20847:2;20842:3;20783:67;:::i;:::-;20776:74;;20859:93;20948:3;20859:93;:::i;:::-;20977:2;20972:3;20968:12;20961:19;;20620:366;;;:::o;20992:419::-;21158:4;21196:2;21185:9;21181:18;21173:26;;21245:9;21239:4;21235:20;21231:1;21220:9;21216:17;21209:47;21273:131;21399:4;21273:131;:::i;:::-;21265:139;;20992:419;;;:::o;21417:297::-;21557:34;21553:1;21545:6;21541:14;21534:58;21626:34;21621:2;21613:6;21609:15;21602:59;21695:11;21690:2;21682:6;21678:15;21671:36;21417:297;:::o;21720:366::-;21862:3;21883:67;21947:2;21942:3;21883:67;:::i;:::-;21876:74;;21959:93;22048:3;21959:93;:::i;:::-;22077:2;22072:3;22068:12;22061:19;;21720:366;;;:::o;22092:419::-;22258:4;22296:2;22285:9;22281:18;22273:26;;22345:9;22339:4;22335:20;22331:1;22320:9;22316:17;22309:47;22373:131;22499:4;22373:131;:::i;:::-;22365:139;;22092:419;;;:::o;22517:240::-;22657:34;22653:1;22645:6;22641:14;22634:58;22726:23;22721:2;22713:6;22709:15;22702:48;22517:240;:::o;22763:366::-;22905:3;22926:67;22990:2;22985:3;22926:67;:::i;:::-;22919:74;;23002:93;23091:3;23002:93;:::i;:::-;23120:2;23115:3;23111:12;23104:19;;22763:366;;;:::o;23135:419::-;23301:4;23339:2;23328:9;23324:18;23316:26;;23388:9;23382:4;23378:20;23374:1;23363:9;23359:17;23352:47;23416:131;23542:4;23416:131;:::i;:::-;23408:139;;23135:419;;;:::o;23560:169::-;23700:21;23696:1;23688:6;23684:14;23677:45;23560:169;:::o;23735:366::-;23877:3;23898:67;23962:2;23957:3;23898:67;:::i;:::-;23891:74;;23974:93;24063:3;23974:93;:::i;:::-;24092:2;24087:3;24083:12;24076:19;;23735:366;;;:::o;24107:419::-;24273:4;24311:2;24300:9;24296:18;24288:26;;24360:9;24354:4;24350:20;24346:1;24335:9;24331:17;24324:47;24388:131;24514:4;24388:131;:::i;:::-;24380:139;;24107:419;;;:::o;24532:241::-;24672:34;24668:1;24660:6;24656:14;24649:58;24741:24;24736:2;24728:6;24724:15;24717:49;24532:241;:::o;24779:366::-;24921:3;24942:67;25006:2;25001:3;24942:67;:::i;:::-;24935:74;;25018:93;25107:3;25018:93;:::i;:::-;25136:2;25131:3;25127:12;25120:19;;24779:366;;;:::o;25151:419::-;25317:4;25355:2;25344:9;25340:18;25332:26;;25404:9;25398:4;25394:20;25390:1;25379:9;25375:17;25368:47;25432:131;25558:4;25432:131;:::i;:::-;25424:139;;25151:419;;;:::o;25576:191::-;25616:4;25636:20;25654:1;25636:20;:::i;:::-;25631:25;;25670:20;25688:1;25670:20;:::i;:::-;25665:25;;25709:1;25706;25703:8;25700:34;;;25714:18;;:::i;:::-;25700:34;25759:1;25756;25752:9;25744:17;;25576:191;;;;:::o;25773:147::-;25874:11;25911:3;25896:18;;25773:147;;;;:::o;25926:114::-;;:::o;26046:398::-;26205:3;26226:83;26307:1;26302:3;26226:83;:::i;:::-;26219:90;;26318:93;26407:3;26318:93;:::i;:::-;26436:1;26431:3;26427:11;26420:18;;26046:398;;;:::o;26450:379::-;26634:3;26656:147;26799:3;26656:147;:::i;:::-;26649:154;;26820:3;26813:10;;26450:379;;;:::o;26835:220::-;26975:34;26971:1;26963:6;26959:14;26952:58;27044:3;27039:2;27031:6;27027:15;27020:28;26835:220;:::o;27061:366::-;27203:3;27224:67;27288:2;27283:3;27224:67;:::i;:::-;27217:74;;27300:93;27389:3;27300:93;:::i;:::-;27418:2;27413:3;27409:12;27402:19;;27061:366;;;:::o;27433:419::-;27599:4;27637:2;27626:9;27622:18;27614:26;;27686:9;27680:4;27676:20;27672:1;27661:9;27657:17;27650:47;27714:131;27840:4;27714:131;:::i;:::-;27706:139;;27433:419;;;:::o;27858:220::-;27998:34;27994:1;27986:6;27982:14;27975:58;28067:3;28062:2;28054:6;28050:15;28043:28;27858:220;:::o;28084:366::-;28226:3;28247:67;28311:2;28306:3;28247:67;:::i;:::-;28240:74;;28323:93;28412:3;28323:93;:::i;:::-;28441:2;28436:3;28432:12;28425:19;;28084:366;;;:::o;28456:419::-;28622:4;28660:2;28649:9;28645:18;28637:26;;28709:9;28703:4;28699:20;28695:1;28684:9;28680:17;28673:47;28737:131;28863:4;28737:131;:::i;:::-;28729:139;;28456:419;;;:::o;28881:180::-;28929:77;28926:1;28919:88;29026:4;29023:1;29016:15;29050:4;29047:1;29040:15;29067:180;29115:77;29112:1;29105:88;29212:4;29209:1;29202:15;29236:4;29233:1;29226:15;29253:143;29310:5;29341:6;29335:13;29326:22;;29357:33;29384:5;29357:33;:::i;:::-;29253:143;;;;:::o;29402:351::-;29472:6;29521:2;29509:9;29500:7;29496:23;29492:32;29489:119;;;29527:79;;:::i;:::-;29489:119;29647:1;29672:64;29728:7;29719:6;29708:9;29704:22;29672:64;:::i;:::-;29662:74;;29618:128;29402:351;;;;:::o;29759:85::-;29804:7;29833:5;29822:16;;29759:85;;;:::o;29850:158::-;29908:9;29941:61;29959:42;29968:32;29994:5;29968:32;:::i;:::-;29959:42;:::i;:::-;29941:61;:::i;:::-;29928:74;;29850:158;;;:::o;30014:147::-;30109:45;30148:5;30109:45;:::i;:::-;30104:3;30097:58;30014:147;;:::o;30167:114::-;30234:6;30268:5;30262:12;30252:22;;30167:114;;;:::o;30287:184::-;30386:11;30420:6;30415:3;30408:19;30460:4;30455:3;30451:14;30436:29;;30287:184;;;;:::o;30477:132::-;30544:4;30567:3;30559:11;;30597:4;30592:3;30588:14;30580:22;;30477:132;;;:::o;30615:108::-;30692:24;30710:5;30692:24;:::i;:::-;30687:3;30680:37;30615:108;;:::o;30729:179::-;30798:10;30819:46;30861:3;30853:6;30819:46;:::i;:::-;30897:4;30892:3;30888:14;30874:28;;30729:179;;;;:::o;30914:113::-;30984:4;31016;31011:3;31007:14;30999:22;;30914:113;;;:::o;31063:732::-;31182:3;31211:54;31259:5;31211:54;:::i;:::-;31281:86;31360:6;31355:3;31281:86;:::i;:::-;31274:93;;31391:56;31441:5;31391:56;:::i;:::-;31470:7;31501:1;31486:284;31511:6;31508:1;31505:13;31486:284;;;31587:6;31581:13;31614:63;31673:3;31658:13;31614:63;:::i;:::-;31607:70;;31700:60;31753:6;31700:60;:::i;:::-;31690:70;;31546:224;31533:1;31530;31526:9;31521:14;;31486:284;;;31490:14;31786:3;31779:10;;31187:608;;;31063:732;;;;:::o;31801:831::-;32064:4;32102:3;32091:9;32087:19;32079:27;;32116:71;32184:1;32173:9;32169:17;32160:6;32116:71;:::i;:::-;32197:80;32273:2;32262:9;32258:18;32249:6;32197:80;:::i;:::-;32324:9;32318:4;32314:20;32309:2;32298:9;32294:18;32287:48;32352:108;32455:4;32446:6;32352:108;:::i;:::-;32344:116;;32470:72;32538:2;32527:9;32523:18;32514:6;32470:72;:::i;:::-;32552:73;32620:3;32609:9;32605:19;32596:6;32552:73;:::i;:::-;31801:831;;;;;;;;:::o
Swarm Source
ipfs://a69e020ab5a4ce88b521525955e27780900dd8ef50d012fd2a80d39bc8929f6b
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.