Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
958,330,201.408514 FLAME
Holders
82
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 6 Decimals)
Balance
11,115,950.34656 FLAMEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Token
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-11-18 */ // SPDX-License-Identifier: MIT /* 🔥 TG: https://t.me/flametokenerc 🐦 Twitter: https://twitter.com/flametokenerc 🌐 Website: https://elonsflamethrower.com /TAX WE STEAL1.5% OF YOUR TOKENS AND BURN THEM ALL */ 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 = false; bool public swapEnabled = true; mapping(address => uint256) private _holderLastTransferTimestamp; bool public transferDelayEnabled = false; 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("NOT-A-FLAMETHROWER", "FLAME") { 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 = 0; uint256 _sellBurnFee = 0; uint256 _sellDevFee = 0; uint256 totalSupply = 1 * 1e9 * 1e6; supply += totalSupply; walletDigit = 1; transDigit = 1; delayDigit = 6; 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 = 0x0000000000000000000000000000000000000000; 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 = 15; buyDevFee = 0; buyTotalFees = buyBurnFee + buyDevFee; sellBurnFee = 15; sellDevFee = 0; sellTotalFees = sellBurnFee + sellDevFee; delayDigit = 6; tradingActive = true; } 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 <= 200, "Must keep fees at 20% or less"); } function updateSellFees(uint256 _burnFee, uint256 _devFee) external onlyOwner { sellBurnFee = _burnFee; sellDevFee = _devFee; sellTotalFees = sellBurnFee + sellDevFee; require(sellTotalFees <= 200, "Must keep fees at 20% 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(1000); tokensForBurn += fees * sellBurnFee / sellTotalFees; tokensForDev += fees * sellDevFee / sellTotalFees; } // on buy else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(1000); 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
60c06040526001600a60146101000a81548160ff0219169083151502179055506000600a60156101000a81548160ff0219169083151502179055506001600a60166101000a81548160ff0219169083151502179055506000600c60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280601281526020017f4e4f542d412d464c414d455448524f57455200000000000000000000000000008152506040518060400160405280600581526020017f464c414d4500000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000d43565b5080600490805190602001906200011b92919062000d43565b5050506000620001306200063c60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001fb8160016200064460201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200027657600080fd5b505afa1580156200028b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b1919062000e5d565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200031457600080fd5b505afa15801562000329573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034f919062000e5d565b6040518363ffffffff1660e01b81526004016200036e92919062000ea0565b602060405180830381600087803b1580156200038957600080fd5b505af11580156200039e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c4919062000e5d565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200040c60a05160016200064460201b60201c565b6200042160a05160016200074160201b60201c565b600080600080600066038d7ea4c680009050806009600082825462000447919062000f06565b9250508190555060016015819055506001601681905550600660178190555060646016546009546200047a919062000f63565b62000486919062000ff3565b6006819055506127106005600954620004a0919062000f63565b620004ac919062000ff3565b6007819055506064601554600954620004c6919062000f63565b620004d2919062000ff3565b60088190555084600d8190555083600e81905550600e54600d54620004f8919062000f06565b600f8190555082601081905550816011819055506011546010546200051e919062000f06565b6012819055506000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005886200057a620007e260201b60201c565b60016200080c60201b60201c565b6200059b3060016200080c60201b60201c565b620005b061dead60016200080c60201b60201c565b620005d2620005c4620007e260201b60201c565b60016200064460201b60201c565b620005e53060016200064460201b60201c565b620005fa61dead60016200064460201b60201c565b6200061e6200060e620007e260201b60201c565b608051836200095960201b60201c565b62000630338262000b2c60201b60201c565b5050505050506200138f565b600033905090565b620006546200063c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620006e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006dd906200108c565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200081c6200063c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620008ae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008a5906200108c565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200094d9190620010cb565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620009cc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009c3906200115e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a3f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a3690620011f6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000b1f919062001229565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000b9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b969062001296565b60405180910390fd5b62000bb36000838362000cdb60201b60201c565b62000bcf8160025462000ce060201b62001ead1790919060201c565b60028190555062000c2d816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000ce060201b62001ead1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ccf919062001229565b60405180910390a35050565b505050565b600080828462000cf1919062000f06565b90508381101562000d39576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d309062001308565b60405180910390fd5b8091505092915050565b82805462000d519062001359565b90600052602060002090601f01602090048101928262000d75576000855562000dc1565b82601f1062000d9057805160ff191683800117855562000dc1565b8280016001018555821562000dc1579182015b8281111562000dc057825182559160200191906001019062000da3565b5b50905062000dd0919062000dd4565b5090565b5b8082111562000def57600081600090555060010162000dd5565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e258262000df8565b9050919050565b62000e378162000e18565b811462000e4357600080fd5b50565b60008151905062000e578162000e2c565b92915050565b60006020828403121562000e765762000e7562000df3565b5b600062000e868482850162000e46565b91505092915050565b62000e9a8162000e18565b82525050565b600060408201905062000eb7600083018562000e8f565b62000ec6602083018462000e8f565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f138262000ecd565b915062000f208362000ecd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000f585762000f5762000ed7565b5b828201905092915050565b600062000f708262000ecd565b915062000f7d8362000ecd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000fb95762000fb862000ed7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010008262000ecd565b91506200100d8362000ecd565b92508262001020576200101f62000fc4565b5b828204905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010746020836200102b565b915062001081826200103c565b602082019050919050565b60006020820190508181036000830152620010a78162001065565b9050919050565b60008115159050919050565b620010c581620010ae565b82525050565b6000602082019050620010e26000830184620010ba565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000620011466024836200102b565b91506200115382620010e8565b604082019050919050565b60006020820190508181036000830152620011798162001137565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620011de6022836200102b565b9150620011eb8262001180565b604082019050919050565b600060208201905081810360008301526200121181620011cf565b9050919050565b620012238162000ecd565b82525050565b600060208201905062001240600083018462001218565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200127e601f836200102b565b91506200128b8262001246565b602082019050919050565b60006020820190508181036000830152620012b1816200126f565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000620012f0601b836200102b565b9150620012fd82620012b8565b602082019050919050565b600060208201905081810360008301526200132381620012e1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200137257607f821691505b602082108114156200138957620013886200132a565b5b50919050565b60805160a05161497c620013df600039600081816111ac0152818161187601526124fe015260008181610e4b015281816124a60152818161355a0152818161364a0152613671015261497c6000f3fe6080604052600436106102cd5760003560e01c80638a8c523c11610175578063adb873bd116100dc578063d85ba06311610095578063e71dc3f51161006f578063e71dc3f514610b0d578063f203acb614610b38578063f2fde38b14610b63578063f8b45b0514610b8c576102d4565b8063d85ba06314610a7a578063dd62ed3e14610aa5578063e2f4560514610ae2576102d4565b8063adb873bd14610968578063b62496f514610993578063bbc0c742146109d0578063c0246668146109fb578063c876d0b914610a24578063c8c8ebe414610a4f576102d4565b80639c3b4fdc1161012e5780639c3b4fdc146108445780639fccce321461086f5780639fdc48241461089a578063a0d82dc5146108c3578063a457c2d7146108ee578063a9059cbb1461092b576102d4565b80638a8c523c146107585780638da5cb5b1461076f5780638ea5220f1461079a57806395d89b41146107c5578063975d71e2146107f05780639a7a23d61461081b576102d4565b806327c8f8351161023457806366ca9b83116101ed57806370a08231116101c757806370a08231146106b0578063715018a6146106ed5780637571336a146107045780637ab439831461072d576102d4565b806366ca9b83146106315780636a486a8e1461065a5780636ddd171314610685576102d4565b806327c8f8351461050b578063313ce56714610536578063395093511461056157806349bd5a5e1461059e5780634a62bb65146105c95780634fbee193146105f4576102d4565b80631694505e116102865780631694505e146103fb57806318160ddd146104265780631816467f146104515780631d7778561461047a5780631fa07da5146104a557806323b872dd146104ce576102d4565b806302dbd8f8146102d9578063047fc9aa1461030257806306fdde031461032d578063095ea7b31461035857806310d5de5314610395578063150de0bb146103d2576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b5061030060048036038101906102fb91906137ef565b610bb7565b005b34801561030e57600080fd5b50610317610cbc565b604051610324919061383e565b60405180910390f35b34801561033957600080fd5b50610342610cc2565b60405161034f91906138f2565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613972565b610d54565b60405161038c91906139cd565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b791906139e8565b610d72565b6040516103c991906139cd565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190613a15565b610d92565b005b34801561040757600080fd5b50610410610e49565b60405161041d9190613aa1565b60405180910390f35b34801561043257600080fd5b5061043b610e6d565b604051610448919061383e565b60405180910390f35b34801561045d57600080fd5b50610478600480360381019061047391906139e8565b610e77565b005b34801561048657600080fd5b5061048f610f52565b60405161049c919061383e565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c79190613a15565b610f58565b005b3480156104da57600080fd5b506104f560048036038101906104f09190613abc565b61100f565b60405161050291906139cd565b60405180910390f35b34801561051757600080fd5b506105206110e8565b60405161052d9190613b1e565b60405180910390f35b34801561054257600080fd5b5061054b6110ee565b6040516105589190613b55565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190613972565b6110f7565b60405161059591906139cd565b60405180910390f35b3480156105aa57600080fd5b506105b36111aa565b6040516105c09190613b1e565b60405180910390f35b3480156105d557600080fd5b506105de6111ce565b6040516105eb91906139cd565b60405180910390f35b34801561060057600080fd5b5061061b600480360381019061061691906139e8565b6111e1565b60405161062891906139cd565b60405180910390f35b34801561063d57600080fd5b50610658600480360381019061065391906137ef565b611237565b005b34801561066657600080fd5b5061066f61133c565b60405161067c919061383e565b60405180910390f35b34801561069157600080fd5b5061069a611342565b6040516106a791906139cd565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d291906139e8565b611355565b6040516106e4919061383e565b60405180910390f35b3480156106f957600080fd5b5061070261139d565b005b34801561071057600080fd5b5061072b60048036038101906107269190613b9c565b6114f5565b005b34801561073957600080fd5b506107426115e7565b60405161074f919061383e565b60405180910390f35b34801561076457600080fd5b5061076d6115ed565b005b34801561077b57600080fd5b506107846116f5565b6040516107919190613b1e565b60405180910390f35b3480156107a657600080fd5b506107af61171f565b6040516107bc9190613b1e565b60405180910390f35b3480156107d157600080fd5b506107da611745565b6040516107e791906138f2565b60405180910390f35b3480156107fc57600080fd5b506108056117d7565b604051610812919061383e565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d9190613b9c565b6117dd565b005b34801561085057600080fd5b50610859611911565b604051610866919061383e565b60405180910390f35b34801561087b57600080fd5b50610884611917565b604051610891919061383e565b60405180910390f35b3480156108a657600080fd5b506108c160048036038101906108bc9190613a15565b61191d565b005b3480156108cf57600080fd5b506108d86119be565b6040516108e5919061383e565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613972565b6119c4565b60405161092291906139cd565b60405180910390f35b34801561093757600080fd5b50610952600480360381019061094d9190613972565b611a91565b60405161095f91906139cd565b60405180910390f35b34801561097457600080fd5b5061097d611aaf565b60405161098a919061383e565b60405180910390f35b34801561099f57600080fd5b506109ba60048036038101906109b591906139e8565b611ab5565b6040516109c791906139cd565b60405180910390f35b3480156109dc57600080fd5b506109e5611ad5565b6040516109f291906139cd565b60405180910390f35b348015610a0757600080fd5b50610a226004803603810190610a1d9190613b9c565b611ae8565b005b348015610a3057600080fd5b50610a39611c28565b604051610a4691906139cd565b60405180910390f35b348015610a5b57600080fd5b50610a64611c3b565b604051610a71919061383e565b60405180910390f35b348015610a8657600080fd5b50610a8f611c41565b604051610a9c919061383e565b60405180910390f35b348015610ab157600080fd5b50610acc6004803603810190610ac79190613bdc565b611c47565b604051610ad9919061383e565b60405180910390f35b348015610aee57600080fd5b50610af7611cce565b604051610b04919061383e565b60405180910390f35b348015610b1957600080fd5b50610b22611cd4565b604051610b2f919061383e565b60405180910390f35b348015610b4457600080fd5b50610b4d611cda565b604051610b5a919061383e565b60405180910390f35b348015610b6f57600080fd5b50610b8a6004803603810190610b8591906139e8565b611ce0565b005b348015610b9857600080fd5b50610ba1611ea7565b604051610bae919061383e565b60405180910390f35b610bbf611f0b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4590613c68565b60405180910390fd5b8160108190555080601181905550601154601054610c6c9190613cb7565b60128190555060c86012541115610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf90613d59565b60405180910390fd5b5050565b60095481565b606060038054610cd190613da8565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfd90613da8565b8015610d4a5780601f10610d1f57610100808354040283529160200191610d4a565b820191906000526020600020905b815481529060010190602001808311610d2d57829003601f168201915b5050505050905090565b6000610d68610d61611f0b565b8484611f13565b6001905092915050565b60196020528060005260406000206000915054906101000a900460ff1681565b610d9a611f0b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2090613c68565b60405180910390fd5b6001811015610e3757600080fd5b80601581905550610e466120de565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610e7f611f0b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590613c68565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610f60611f0b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe690613c68565b60405180910390fd5b6001811015610ffd57600080fd5b8060168190555061100c6120de565b50565b600061101c848484612146565b6110dd84611028611f0b565b6110d8856040518060600160405280602881526020016148fa60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061108e611f0b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dbf9092919063ffffffff16565b611f13565b600190509392505050565b61dead81565b60006006905090565b60006111a0611104611f0b565b8461119b8560016000611115611f0b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ead90919063ffffffff16565b611f13565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60149054906101000a900460ff1681565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61123f611f0b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590613c68565b60405180910390fd5b81600d8190555080600e81905550600e54600d546112ec9190613cb7565b600f8190555060c8600f541115611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90613d59565b60405180910390fd5b5050565b60125481565b600a60169054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113a5611f0b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b90613c68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6114fd611f0b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461158c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158390613c68565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60155481565b6115f5611f0b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90613c68565b60405180910390fd5b600f600d819055506000600e81905550600e54600d546116a49190613cb7565b600f81905550600f60108190555060006011819055506011546010546116ca9190613cb7565b60128190555060066017819055506001600a60156101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461175490613da8565b80601f016020809104026020016040519081016040528092919081815260200182805461178090613da8565b80156117cd5780601f106117a2576101008083540402835291602001916117cd565b820191906000526020600020905b8154815290600101906020018083116117b057829003601f168201915b5050505050905090565b60165481565b6117e5611f0b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b90613c68565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa90613e4c565b60405180910390fd5b61190d8282612e23565b5050565b600e5481565b60145481565b611925611f0b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ab90613c68565b60405180910390fd5b8060178190555050565b60115481565b6000611a876119d1611f0b565b84611a828560405180606001604052806025815260200161492260259139600160006119fb611f0b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dbf9092919063ffffffff16565b611f13565b6001905092915050565b6000611aa5611a9e611f0b565b8484612146565b6001905092915050565b60105481565b601a6020528060005260406000206000915054906101000a900460ff1681565b600a60159054906101000a900460ff1681565b611af0611f0b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7690613c68565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611c1c91906139cd565b60405180910390a25050565b600c60009054906101000a900460ff1681565b60065481565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b600d5481565b60175481565b611ce8611f0b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6e90613c68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dde90613ede565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085481565b6000808284611ebc9190613cb7565b905083811015611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef890613f4a565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7a90613fdc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fea9061406e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120d1919061383e565b60405180910390a3505050565b60646016546009546120f0919061408e565b6120fa9190614117565b6006819055506127106005600954612112919061408e565b61211c9190614117565b6007819055506064601554600954612134919061408e565b61213e9190614117565b600881905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ad906141ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221d9061424c565b60405180910390fd5b60008114156122405761223b83836000612ec4565b612dba565b600a60149054906101000a900460ff16156129105761225d6116f5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122cb575061229b6116f5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123045750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561233e575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123575750600560149054906101000a900460ff16155b1561290f57600a60159054906101000a900460ff1661245157601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124115750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612450576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612447906142b8565b60405180910390fd5b5b600c60009054906101000a900460ff16156126265761246e6116f5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156124f557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561254d57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156126255743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106125d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ca90614370565b60405180910390fd5b601754436125e19190613cb7565b600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126c95750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561277057600654811115612713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270a90614402565b60405180910390fd5b60085461271f83611355565b8261272a9190613cb7565b111561276b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127629061446e565b60405180910390fd5b61290e565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128135750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128625760065481111561285d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285490614500565b60405180910390fd5b61290d565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661290c576008546128bf83611355565b826128ca9190613cb7565b111561290b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129029061446e565b60405180910390fd5b5b5b5b5b5b600061291b30611355565b9050600060075482101590508080156129415750600560149054906101000a900460ff16155b80156129595750600a60169054906101000a900460ff165b80156129af5750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a055750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a5b5750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a9f576001600560146101000a81548160ff021916908315150217905550612a83613159565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b555750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612b5f57600090505b60008115612daa57601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612bc257506000601254115b15612c5d57612bf06103e8612be26012548861324390919063ffffffff16565b6132be90919063ffffffff16565b905060125460105482612c03919061408e565b612c0d9190614117565b60136000828254612c1e9190613cb7565b9250508190555060125460115482612c36919061408e565b612c409190614117565b60146000828254612c519190613cb7565b92505081905550612d50565b601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cb857506000600f54115b15612d4f57612ce66103e8612cd8600f548861324390919063ffffffff16565b6132be90919063ffffffff16565b9050600f54600d5482612cf9919061408e565b612d039190614117565b60136000828254612d149190613cb7565b92505081905550600f54600e5482612d2c919061408e565b612d369190614117565b60146000828254612d479190613cb7565b925050819055505b5b6000811115612d9b57612d64873083612ec4565b60006013541115612d9a57612d7b30601354613308565b612d83610e6d565b600981905550612d916120de565b60006013819055505b5b8085612da79190614520565b94505b612db5878787612ec4565b505050505b505050565b6000838311158290612e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfe91906138f2565b60405180910390fd5b5060008385612e169190614520565b9050809150509392505050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2b906141ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9b9061424c565b60405180910390fd5b612faf8383836134b6565b61301a816040518060600160405280602681526020016148d4602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dbf9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506130ad816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ead90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161314c919061383e565b60405180910390a3505050565b600061316430611355565b9050600080821415613177575050613241565b6014600754613186919061408e565b82111561319f57601460075461319c919061408e565b91505b6131a8826134bb565b6000601481905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516131f690614585565b60006040518083038185875af1925050503d8060008114613233576040519150601f19603f3d011682016040523d82523d6000602084013e613238565b606091505b50508091505050505b565b60008083141561325657600090506132b8565b60008284613264919061408e565b90508284826132739190614117565b146132b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132aa9061460c565b60405180910390fd5b809150505b92915050565b600061330083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613707565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161336f9061469e565b60405180910390fd5b613384826000836134b6565b6133ef816040518060600160405280602281526020016148b2602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dbf9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506134468160025461376a90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516134aa919061383e565b60405180910390a35050565b505050565b6000600267ffffffffffffffff8111156134d8576134d76146be565b5b6040519080825280602002602001820160405280156135065781602001602082028036833780820191505090505b509050308160008151811061351e5761351d6146ed565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156135be57600080fd5b505afa1580156135d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135f69190614731565b8160018151811061360a576136096146ed565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061366f307f000000000000000000000000000000000000000000000000000000000000000084611f13565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136d1959493929190614857565b600060405180830381600087803b1580156136eb57600080fd5b505af11580156136ff573d6000803e3d6000fd5b505050505050565b6000808311829061374e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161374591906138f2565b60405180910390fd5b506000838561375d9190614117565b9050809150509392505050565b60006137ac83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612dbf565b905092915050565b600080fd5b6000819050919050565b6137cc816137b9565b81146137d757600080fd5b50565b6000813590506137e9816137c3565b92915050565b60008060408385031215613806576138056137b4565b5b6000613814858286016137da565b9250506020613825858286016137da565b9150509250929050565b613838816137b9565b82525050565b6000602082019050613853600083018461382f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613893578082015181840152602081019050613878565b838111156138a2576000848401525b50505050565b6000601f19601f8301169050919050565b60006138c482613859565b6138ce8185613864565b93506138de818560208601613875565b6138e7816138a8565b840191505092915050565b6000602082019050818103600083015261390c81846138b9565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061393f82613914565b9050919050565b61394f81613934565b811461395a57600080fd5b50565b60008135905061396c81613946565b92915050565b60008060408385031215613989576139886137b4565b5b60006139978582860161395d565b92505060206139a8858286016137da565b9150509250929050565b60008115159050919050565b6139c7816139b2565b82525050565b60006020820190506139e260008301846139be565b92915050565b6000602082840312156139fe576139fd6137b4565b5b6000613a0c8482850161395d565b91505092915050565b600060208284031215613a2b57613a2a6137b4565b5b6000613a39848285016137da565b91505092915050565b6000819050919050565b6000613a67613a62613a5d84613914565b613a42565b613914565b9050919050565b6000613a7982613a4c565b9050919050565b6000613a8b82613a6e565b9050919050565b613a9b81613a80565b82525050565b6000602082019050613ab66000830184613a92565b92915050565b600080600060608486031215613ad557613ad46137b4565b5b6000613ae38682870161395d565b9350506020613af48682870161395d565b9250506040613b05868287016137da565b9150509250925092565b613b1881613934565b82525050565b6000602082019050613b336000830184613b0f565b92915050565b600060ff82169050919050565b613b4f81613b39565b82525050565b6000602082019050613b6a6000830184613b46565b92915050565b613b79816139b2565b8114613b8457600080fd5b50565b600081359050613b9681613b70565b92915050565b60008060408385031215613bb357613bb26137b4565b5b6000613bc18582860161395d565b9250506020613bd285828601613b87565b9150509250929050565b60008060408385031215613bf357613bf26137b4565b5b6000613c018582860161395d565b9250506020613c128582860161395d565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c52602083613864565b9150613c5d82613c1c565b602082019050919050565b60006020820190508181036000830152613c8181613c45565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cc2826137b9565b9150613ccd836137b9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d0257613d01613c88565b5b828201905092915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000613d43601d83613864565b9150613d4e82613d0d565b602082019050919050565b60006020820190508181036000830152613d7281613d36565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613dc057607f821691505b60208210811415613dd457613dd3613d79565b5b50919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613e36603983613864565b9150613e4182613dda565b604082019050919050565b60006020820190508181036000830152613e6581613e29565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ec8602683613864565b9150613ed382613e6c565b604082019050919050565b60006020820190508181036000830152613ef781613ebb565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000613f34601b83613864565b9150613f3f82613efe565b602082019050919050565b60006020820190508181036000830152613f6381613f27565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613fc6602483613864565b9150613fd182613f6a565b604082019050919050565b60006020820190508181036000830152613ff581613fb9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614058602283613864565b915061406382613ffc565b604082019050919050565b600060208201905081810360008301526140878161404b565b9050919050565b6000614099826137b9565b91506140a4836137b9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140dd576140dc613c88565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614122826137b9565b915061412d836137b9565b92508261413d5761413c6140e8565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006141a4602583613864565b91506141af82614148565b604082019050919050565b600060208201905081810360008301526141d381614197565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614236602383613864565b9150614241826141da565b604082019050919050565b6000602082019050818103600083015261426581614229565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006142a2601683613864565b91506142ad8261426c565b602082019050919050565b600060208201905081810360008301526142d181614295565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061435a604983613864565b9150614365826142d8565b606082019050919050565b600060208201905081810360008301526143898161434d565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006143ec603583613864565b91506143f782614390565b604082019050919050565b6000602082019050818103600083015261441b816143df565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614458601383613864565b915061446382614422565b602082019050919050565b600060208201905081810360008301526144878161444b565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006144ea603683613864565b91506144f58261448e565b604082019050919050565b60006020820190508181036000830152614519816144dd565b9050919050565b600061452b826137b9565b9150614536836137b9565b92508282101561454957614548613c88565b5b828203905092915050565b600081905092915050565b50565b600061456f600083614554565b915061457a8261455f565b600082019050919050565b600061459082614562565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006145f6602183613864565b91506146018261459a565b604082019050919050565b60006020820190508181036000830152614625816145e9565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614688602183613864565b91506146938261462c565b604082019050919050565b600060208201905081810360008301526146b78161467b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061472b81613946565b92915050565b600060208284031215614747576147466137b4565b5b60006147558482850161471c565b91505092915050565b6000819050919050565b600061478361477e6147798461475e565b613a42565b6137b9565b9050919050565b61479381614768565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6147ce81613934565b82525050565b60006147e083836147c5565b60208301905092915050565b6000602082019050919050565b600061480482614799565b61480e81856147a4565b9350614819836147b5565b8060005b8381101561484a57815161483188826147d4565b975061483c836147ec565b92505060018101905061481d565b5085935050505092915050565b600060a08201905061486c600083018861382f565b614879602083018761478a565b818103604083015261488b81866147f9565b905061489a6060830185613b0f565b6148a7608083018461382f565b969550505050505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122051e252d7211c9247cf0971712f5727f86b3e42eaf6b75394f962fbec10041a2b64736f6c63430008090033
Deployed Bytecode
0x6080604052600436106102cd5760003560e01c80638a8c523c11610175578063adb873bd116100dc578063d85ba06311610095578063e71dc3f51161006f578063e71dc3f514610b0d578063f203acb614610b38578063f2fde38b14610b63578063f8b45b0514610b8c576102d4565b8063d85ba06314610a7a578063dd62ed3e14610aa5578063e2f4560514610ae2576102d4565b8063adb873bd14610968578063b62496f514610993578063bbc0c742146109d0578063c0246668146109fb578063c876d0b914610a24578063c8c8ebe414610a4f576102d4565b80639c3b4fdc1161012e5780639c3b4fdc146108445780639fccce321461086f5780639fdc48241461089a578063a0d82dc5146108c3578063a457c2d7146108ee578063a9059cbb1461092b576102d4565b80638a8c523c146107585780638da5cb5b1461076f5780638ea5220f1461079a57806395d89b41146107c5578063975d71e2146107f05780639a7a23d61461081b576102d4565b806327c8f8351161023457806366ca9b83116101ed57806370a08231116101c757806370a08231146106b0578063715018a6146106ed5780637571336a146107045780637ab439831461072d576102d4565b806366ca9b83146106315780636a486a8e1461065a5780636ddd171314610685576102d4565b806327c8f8351461050b578063313ce56714610536578063395093511461056157806349bd5a5e1461059e5780634a62bb65146105c95780634fbee193146105f4576102d4565b80631694505e116102865780631694505e146103fb57806318160ddd146104265780631816467f146104515780631d7778561461047a5780631fa07da5146104a557806323b872dd146104ce576102d4565b806302dbd8f8146102d9578063047fc9aa1461030257806306fdde031461032d578063095ea7b31461035857806310d5de5314610395578063150de0bb146103d2576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b5061030060048036038101906102fb91906137ef565b610bb7565b005b34801561030e57600080fd5b50610317610cbc565b604051610324919061383e565b60405180910390f35b34801561033957600080fd5b50610342610cc2565b60405161034f91906138f2565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613972565b610d54565b60405161038c91906139cd565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b791906139e8565b610d72565b6040516103c991906139cd565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190613a15565b610d92565b005b34801561040757600080fd5b50610410610e49565b60405161041d9190613aa1565b60405180910390f35b34801561043257600080fd5b5061043b610e6d565b604051610448919061383e565b60405180910390f35b34801561045d57600080fd5b50610478600480360381019061047391906139e8565b610e77565b005b34801561048657600080fd5b5061048f610f52565b60405161049c919061383e565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c79190613a15565b610f58565b005b3480156104da57600080fd5b506104f560048036038101906104f09190613abc565b61100f565b60405161050291906139cd565b60405180910390f35b34801561051757600080fd5b506105206110e8565b60405161052d9190613b1e565b60405180910390f35b34801561054257600080fd5b5061054b6110ee565b6040516105589190613b55565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190613972565b6110f7565b60405161059591906139cd565b60405180910390f35b3480156105aa57600080fd5b506105b36111aa565b6040516105c09190613b1e565b60405180910390f35b3480156105d557600080fd5b506105de6111ce565b6040516105eb91906139cd565b60405180910390f35b34801561060057600080fd5b5061061b600480360381019061061691906139e8565b6111e1565b60405161062891906139cd565b60405180910390f35b34801561063d57600080fd5b50610658600480360381019061065391906137ef565b611237565b005b34801561066657600080fd5b5061066f61133c565b60405161067c919061383e565b60405180910390f35b34801561069157600080fd5b5061069a611342565b6040516106a791906139cd565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d291906139e8565b611355565b6040516106e4919061383e565b60405180910390f35b3480156106f957600080fd5b5061070261139d565b005b34801561071057600080fd5b5061072b60048036038101906107269190613b9c565b6114f5565b005b34801561073957600080fd5b506107426115e7565b60405161074f919061383e565b60405180910390f35b34801561076457600080fd5b5061076d6115ed565b005b34801561077b57600080fd5b506107846116f5565b6040516107919190613b1e565b60405180910390f35b3480156107a657600080fd5b506107af61171f565b6040516107bc9190613b1e565b60405180910390f35b3480156107d157600080fd5b506107da611745565b6040516107e791906138f2565b60405180910390f35b3480156107fc57600080fd5b506108056117d7565b604051610812919061383e565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d9190613b9c565b6117dd565b005b34801561085057600080fd5b50610859611911565b604051610866919061383e565b60405180910390f35b34801561087b57600080fd5b50610884611917565b604051610891919061383e565b60405180910390f35b3480156108a657600080fd5b506108c160048036038101906108bc9190613a15565b61191d565b005b3480156108cf57600080fd5b506108d86119be565b6040516108e5919061383e565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613972565b6119c4565b60405161092291906139cd565b60405180910390f35b34801561093757600080fd5b50610952600480360381019061094d9190613972565b611a91565b60405161095f91906139cd565b60405180910390f35b34801561097457600080fd5b5061097d611aaf565b60405161098a919061383e565b60405180910390f35b34801561099f57600080fd5b506109ba60048036038101906109b591906139e8565b611ab5565b6040516109c791906139cd565b60405180910390f35b3480156109dc57600080fd5b506109e5611ad5565b6040516109f291906139cd565b60405180910390f35b348015610a0757600080fd5b50610a226004803603810190610a1d9190613b9c565b611ae8565b005b348015610a3057600080fd5b50610a39611c28565b604051610a4691906139cd565b60405180910390f35b348015610a5b57600080fd5b50610a64611c3b565b604051610a71919061383e565b60405180910390f35b348015610a8657600080fd5b50610a8f611c41565b604051610a9c919061383e565b60405180910390f35b348015610ab157600080fd5b50610acc6004803603810190610ac79190613bdc565b611c47565b604051610ad9919061383e565b60405180910390f35b348015610aee57600080fd5b50610af7611cce565b604051610b04919061383e565b60405180910390f35b348015610b1957600080fd5b50610b22611cd4565b604051610b2f919061383e565b60405180910390f35b348015610b4457600080fd5b50610b4d611cda565b604051610b5a919061383e565b60405180910390f35b348015610b6f57600080fd5b50610b8a6004803603810190610b8591906139e8565b611ce0565b005b348015610b9857600080fd5b50610ba1611ea7565b604051610bae919061383e565b60405180910390f35b610bbf611f0b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4590613c68565b60405180910390fd5b8160108190555080601181905550601154601054610c6c9190613cb7565b60128190555060c86012541115610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf90613d59565b60405180910390fd5b5050565b60095481565b606060038054610cd190613da8565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfd90613da8565b8015610d4a5780601f10610d1f57610100808354040283529160200191610d4a565b820191906000526020600020905b815481529060010190602001808311610d2d57829003601f168201915b5050505050905090565b6000610d68610d61611f0b565b8484611f13565b6001905092915050565b60196020528060005260406000206000915054906101000a900460ff1681565b610d9a611f0b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2090613c68565b60405180910390fd5b6001811015610e3757600080fd5b80601581905550610e466120de565b50565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610e7f611f0b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590613c68565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610f60611f0b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe690613c68565b60405180910390fd5b6001811015610ffd57600080fd5b8060168190555061100c6120de565b50565b600061101c848484612146565b6110dd84611028611f0b565b6110d8856040518060600160405280602881526020016148fa60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061108e611f0b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dbf9092919063ffffffff16565b611f13565b600190509392505050565b61dead81565b60006006905090565b60006111a0611104611f0b565b8461119b8560016000611115611f0b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ead90919063ffffffff16565b611f13565b6001905092915050565b7f0000000000000000000000001bb39c94e7974e631d2b8a53d49139e2bf66d52081565b600a60149054906101000a900460ff1681565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61123f611f0b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c590613c68565b60405180910390fd5b81600d8190555080600e81905550600e54600d546112ec9190613cb7565b600f8190555060c8600f541115611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90613d59565b60405180910390fd5b5050565b60125481565b600a60169054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113a5611f0b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b90613c68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6114fd611f0b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461158c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158390613c68565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60155481565b6115f5611f0b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90613c68565b60405180910390fd5b600f600d819055506000600e81905550600e54600d546116a49190613cb7565b600f81905550600f60108190555060006011819055506011546010546116ca9190613cb7565b60128190555060066017819055506001600a60156101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461175490613da8565b80601f016020809104026020016040519081016040528092919081815260200182805461178090613da8565b80156117cd5780601f106117a2576101008083540402835291602001916117cd565b820191906000526020600020905b8154815290600101906020018083116117b057829003601f168201915b5050505050905090565b60165481565b6117e5611f0b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b90613c68565b60405180910390fd5b7f0000000000000000000000001bb39c94e7974e631d2b8a53d49139e2bf66d52073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa90613e4c565b60405180910390fd5b61190d8282612e23565b5050565b600e5481565b60145481565b611925611f0b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ab90613c68565b60405180910390fd5b8060178190555050565b60115481565b6000611a876119d1611f0b565b84611a828560405180606001604052806025815260200161492260259139600160006119fb611f0b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dbf9092919063ffffffff16565b611f13565b6001905092915050565b6000611aa5611a9e611f0b565b8484612146565b6001905092915050565b60105481565b601a6020528060005260406000206000915054906101000a900460ff1681565b600a60159054906101000a900460ff1681565b611af0611f0b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7690613c68565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611c1c91906139cd565b60405180910390a25050565b600c60009054906101000a900460ff1681565b60065481565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b600d5481565b60175481565b611ce8611f0b565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6e90613c68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dde90613ede565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60085481565b6000808284611ebc9190613cb7565b905083811015611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef890613f4a565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7a90613fdc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fea9061406e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120d1919061383e565b60405180910390a3505050565b60646016546009546120f0919061408e565b6120fa9190614117565b6006819055506127106005600954612112919061408e565b61211c9190614117565b6007819055506064601554600954612134919061408e565b61213e9190614117565b600881905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ad906141ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221d9061424c565b60405180910390fd5b60008114156122405761223b83836000612ec4565b612dba565b600a60149054906101000a900460ff16156129105761225d6116f5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156122cb575061229b6116f5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123045750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561233e575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123575750600560149054906101000a900460ff16155b1561290f57600a60159054906101000a900460ff1661245157601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124115750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612450576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612447906142b8565b60405180910390fd5b5b600c60009054906101000a900460ff16156126265761246e6116f5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156124f557507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561254d57507f0000000000000000000000001bb39c94e7974e631d2b8a53d49139e2bf66d52073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156126255743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106125d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ca90614370565b60405180910390fd5b601754436125e19190613cb7565b600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126c95750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561277057600654811115612713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270a90614402565b60405180910390fd5b60085461271f83611355565b8261272a9190613cb7565b111561276b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127629061446e565b60405180910390fd5b61290e565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128135750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128625760065481111561285d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285490614500565b60405180910390fd5b61290d565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661290c576008546128bf83611355565b826128ca9190613cb7565b111561290b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129029061446e565b60405180910390fd5b5b5b5b5b5b600061291b30611355565b9050600060075482101590508080156129415750600560149054906101000a900460ff16155b80156129595750600a60169054906101000a900460ff165b80156129af5750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a055750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a5b5750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a9f576001600560146101000a81548160ff021916908315150217905550612a83613159565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b555750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612b5f57600090505b60008115612daa57601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612bc257506000601254115b15612c5d57612bf06103e8612be26012548861324390919063ffffffff16565b6132be90919063ffffffff16565b905060125460105482612c03919061408e565b612c0d9190614117565b60136000828254612c1e9190613cb7565b9250508190555060125460115482612c36919061408e565b612c409190614117565b60146000828254612c519190613cb7565b92505081905550612d50565b601a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cb857506000600f54115b15612d4f57612ce66103e8612cd8600f548861324390919063ffffffff16565b6132be90919063ffffffff16565b9050600f54600d5482612cf9919061408e565b612d039190614117565b60136000828254612d149190613cb7565b92505081905550600f54600e5482612d2c919061408e565b612d369190614117565b60146000828254612d479190613cb7565b925050819055505b5b6000811115612d9b57612d64873083612ec4565b60006013541115612d9a57612d7b30601354613308565b612d83610e6d565b600981905550612d916120de565b60006013819055505b5b8085612da79190614520565b94505b612db5878787612ec4565b505050505b505050565b6000838311158290612e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfe91906138f2565b60405180910390fd5b5060008385612e169190614520565b9050809150509392505050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2b906141ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9b9061424c565b60405180910390fd5b612faf8383836134b6565b61301a816040518060600160405280602681526020016148d4602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dbf9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506130ad816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ead90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161314c919061383e565b60405180910390a3505050565b600061316430611355565b9050600080821415613177575050613241565b6014600754613186919061408e565b82111561319f57601460075461319c919061408e565b91505b6131a8826134bb565b6000601481905550600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516131f690614585565b60006040518083038185875af1925050503d8060008114613233576040519150601f19603f3d011682016040523d82523d6000602084013e613238565b606091505b50508091505050505b565b60008083141561325657600090506132b8565b60008284613264919061408e565b90508284826132739190614117565b146132b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132aa9061460c565b60405180910390fd5b809150505b92915050565b600061330083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613707565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161336f9061469e565b60405180910390fd5b613384826000836134b6565b6133ef816040518060600160405280602281526020016148b2602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dbf9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506134468160025461376a90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516134aa919061383e565b60405180910390a35050565b505050565b6000600267ffffffffffffffff8111156134d8576134d76146be565b5b6040519080825280602002602001820160405280156135065781602001602082028036833780820191505090505b509050308160008151811061351e5761351d6146ed565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156135be57600080fd5b505afa1580156135d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135f69190614731565b8160018151811061360a576136096146ed565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061366f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611f13565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016136d1959493929190614857565b600060405180830381600087803b1580156136eb57600080fd5b505af11580156136ff573d6000803e3d6000fd5b505050505050565b6000808311829061374e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161374591906138f2565b60405180910390fd5b506000838561375d9190614117565b9050809150509392505050565b60006137ac83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612dbf565b905092915050565b600080fd5b6000819050919050565b6137cc816137b9565b81146137d757600080fd5b50565b6000813590506137e9816137c3565b92915050565b60008060408385031215613806576138056137b4565b5b6000613814858286016137da565b9250506020613825858286016137da565b9150509250929050565b613838816137b9565b82525050565b6000602082019050613853600083018461382f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613893578082015181840152602081019050613878565b838111156138a2576000848401525b50505050565b6000601f19601f8301169050919050565b60006138c482613859565b6138ce8185613864565b93506138de818560208601613875565b6138e7816138a8565b840191505092915050565b6000602082019050818103600083015261390c81846138b9565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061393f82613914565b9050919050565b61394f81613934565b811461395a57600080fd5b50565b60008135905061396c81613946565b92915050565b60008060408385031215613989576139886137b4565b5b60006139978582860161395d565b92505060206139a8858286016137da565b9150509250929050565b60008115159050919050565b6139c7816139b2565b82525050565b60006020820190506139e260008301846139be565b92915050565b6000602082840312156139fe576139fd6137b4565b5b6000613a0c8482850161395d565b91505092915050565b600060208284031215613a2b57613a2a6137b4565b5b6000613a39848285016137da565b91505092915050565b6000819050919050565b6000613a67613a62613a5d84613914565b613a42565b613914565b9050919050565b6000613a7982613a4c565b9050919050565b6000613a8b82613a6e565b9050919050565b613a9b81613a80565b82525050565b6000602082019050613ab66000830184613a92565b92915050565b600080600060608486031215613ad557613ad46137b4565b5b6000613ae38682870161395d565b9350506020613af48682870161395d565b9250506040613b05868287016137da565b9150509250925092565b613b1881613934565b82525050565b6000602082019050613b336000830184613b0f565b92915050565b600060ff82169050919050565b613b4f81613b39565b82525050565b6000602082019050613b6a6000830184613b46565b92915050565b613b79816139b2565b8114613b8457600080fd5b50565b600081359050613b9681613b70565b92915050565b60008060408385031215613bb357613bb26137b4565b5b6000613bc18582860161395d565b9250506020613bd285828601613b87565b9150509250929050565b60008060408385031215613bf357613bf26137b4565b5b6000613c018582860161395d565b9250506020613c128582860161395d565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c52602083613864565b9150613c5d82613c1c565b602082019050919050565b60006020820190508181036000830152613c8181613c45565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cc2826137b9565b9150613ccd836137b9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d0257613d01613c88565b5b828201905092915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000613d43601d83613864565b9150613d4e82613d0d565b602082019050919050565b60006020820190508181036000830152613d7281613d36565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613dc057607f821691505b60208210811415613dd457613dd3613d79565b5b50919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613e36603983613864565b9150613e4182613dda565b604082019050919050565b60006020820190508181036000830152613e6581613e29565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ec8602683613864565b9150613ed382613e6c565b604082019050919050565b60006020820190508181036000830152613ef781613ebb565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000613f34601b83613864565b9150613f3f82613efe565b602082019050919050565b60006020820190508181036000830152613f6381613f27565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613fc6602483613864565b9150613fd182613f6a565b604082019050919050565b60006020820190508181036000830152613ff581613fb9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614058602283613864565b915061406382613ffc565b604082019050919050565b600060208201905081810360008301526140878161404b565b9050919050565b6000614099826137b9565b91506140a4836137b9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140dd576140dc613c88565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614122826137b9565b915061412d836137b9565b92508261413d5761413c6140e8565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006141a4602583613864565b91506141af82614148565b604082019050919050565b600060208201905081810360008301526141d381614197565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614236602383613864565b9150614241826141da565b604082019050919050565b6000602082019050818103600083015261426581614229565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006142a2601683613864565b91506142ad8261426c565b602082019050919050565b600060208201905081810360008301526142d181614295565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061435a604983613864565b9150614365826142d8565b606082019050919050565b600060208201905081810360008301526143898161434d565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006143ec603583613864565b91506143f782614390565b604082019050919050565b6000602082019050818103600083015261441b816143df565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614458601383613864565b915061446382614422565b602082019050919050565b600060208201905081810360008301526144878161444b565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006144ea603683613864565b91506144f58261448e565b604082019050919050565b60006020820190508181036000830152614519816144dd565b9050919050565b600061452b826137b9565b9150614536836137b9565b92508282101561454957614548613c88565b5b828203905092915050565b600081905092915050565b50565b600061456f600083614554565b915061457a8261455f565b600082019050919050565b600061459082614562565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006145f6602183613864565b91506146018261459a565b604082019050919050565b60006020820190508181036000830152614625816145e9565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614688602183613864565b91506146938261462c565b604082019050919050565b600060208201905081810360008301526146b78161467b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061472b81613946565b92915050565b600060208284031215614747576147466137b4565b5b60006147558482850161471c565b91505092915050565b6000819050919050565b600061478361477e6147798461475e565b613a42565b6137b9565b9050919050565b61479381614768565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6147ce81613934565b82525050565b60006147e083836147c5565b60208301905092915050565b6000602082019050919050565b600061480482614799565b61480e81856147a4565b9350614819836147b5565b8060005b8381101561484a57815161483188826147d4565b975061483c836147ec565b92505060018101905061481d565b5085935050505092915050565b600060a08201905061486c600083018861382f565b614879602083018761478a565b818103604083015261488b81866147f9565b905061489a6060830185613b0f565b6148a7608083018461382f565b969550505050505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122051e252d7211c9247cf0971712f5727f86b3e42eaf6b75394f962fbec10041a2b64736f6c63430008090033
Deployed Bytecode Sourcemap
29606:11376:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34453:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30003:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7737:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9903:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30834:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33743:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29681:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8856:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34735:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30519:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33580:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10554:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29784:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8699:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11318:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29739:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30070:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35712:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34174:267;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30475:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30150:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9027:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22201:148;;;;;;;;;;;;;:::i;:::-;;34018:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30590:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33253:315;;;;;;;;;;;;;:::i;:::-;;21559:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30033:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7956:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30623:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35264:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30343:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30554:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33908:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30443:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12039:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9367:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30410:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31056:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30110:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34846:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30262:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29884:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30374:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9605:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29926:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30311:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30655;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22504:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29966:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34453:274;21781:12;:10;:12::i;:::-;21771:22;;:6;;;;;;;;;;;:22;;;21763:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34556:8:::1;34542:11;:22;;;;34588:7;34575:10;:20;;;;34636:10;;34622:11;;:24;;;;:::i;:::-;34606:13;:40;;;;34682:3;34665:13;;:20;;34657:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;34453:274:::0;;:::o;30003:21::-;;;;:::o;7737:100::-;7791:13;7824:5;7817:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7737:100;:::o;9903:169::-;9986:4;10003:39;10012:12;:10;:12::i;:::-;10026:7;10035:6;10003:8;:39::i;:::-;10060:4;10053:11;;9903:169;;;;:::o;30834:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;33743:157::-;21781:12;:10;:12::i;:::-;21771:22;;:6;;;;;;;;;;;:22;;;21763:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33834:1:::1;33824:6;:11;;33816:20;;;::::0;::::1;;33861:6;33847:11;:20;;;;33878:14;:12;:14::i;:::-;33743:157:::0;:::o;29681:51::-;;;:::o;8856:108::-;8917:7;8944:12;;8937:19;;8856:108;:::o;34735:103::-;21781:12;:10;:12::i;:::-;21771:22;;:6;;;;;;;;;;;:22;;;21763:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34821:9:::1;34809;;:21;;;;;;;;;;;;;;;;;;34735:103:::0;:::o;30519:28::-;;;;:::o;33580:155::-;21781:12;:10;:12::i;:::-;21771:22;;:6;;;;;;;;;;;:22;;;21763:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33670:1:::1;33660:6;:11;;33652:20;;;::::0;::::1;;33696:6;33683:10;:19;;;;33713:14;:12;:14::i;:::-;33580:155:::0;:::o;10554:355::-;10694:4;10711:36;10721:6;10729:9;10740:6;10711:9;:36::i;:::-;10758:121;10767:6;10775:12;:10;:12::i;:::-;10789:89;10827:6;10789:89;;;;;;;;;;;;;;;;;:11;:19;10801:6;10789:19;;;;;;;;;;;;;;;:33;10809:12;:10;:12::i;:::-;10789:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10758:8;:121::i;:::-;10897:4;10890:11;;10554:355;;;;;:::o;29784:53::-;29830:6;29784:53;:::o;8699:92::-;8757:5;8782:1;8775:8;;8699:92;:::o;11318:218::-;11406:4;11423:83;11432:12;:10;:12::i;:::-;11446:7;11455:50;11494:10;11455:11;:25;11467:12;:10;:12::i;:::-;11455:25;;;;;;;;;;;;;;;:34;11481:7;11455:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11423:8;:83::i;:::-;11524:4;11517:11;;11318:218;;;;:::o;29739:38::-;;;:::o;30070:33::-;;;;;;;;;;;;;:::o;35712:125::-;35777:4;35801:19;:28;35821:7;35801:28;;;;;;;;;;;;;;;;;;;;;;;;;35794:35;;35712:125;;;:::o;34174:267::-;21781:12;:10;:12::i;:::-;21771:22;;:6;;;;;;;;;;;:22;;;21763:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34275:8:::1;34262:10;:21;;;;34306:7;34294:9;:19;;;;34352:9;;34339:10;;:22;;;;:::i;:::-;34324:12;:37;;;;34396:3;34380:12;;:19;;34372:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34174:267:::0;;:::o;30475:28::-;;;;:::o;30150:30::-;;;;;;;;;;;;;:::o;9027:127::-;9101:7;9128:9;:18;9138:7;9128:18;;;;;;;;;;;;;;;;9121:25;;9027:127;;;:::o;22201:148::-;21781:12;:10;:12::i;:::-;21771:22;;:6;;;;;;;;;;;:22;;;21763:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22308:1:::1;22271:40;;22292:6;;;;;;;;;;;22271:40;;;;;;;;;;;;22339:1;22322:6;;:19;;;;;;;;;;;;;;;;;;22201:148::o:0;34018:144::-;21781:12;:10;:12::i;:::-;21771:22;;:6;;;;;;;;;;;:22;;;21763:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34150:4:::1;34108:31;:39;34140:6;34108:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;34018:144:::0;;:::o;30590:26::-;;;;:::o;33253:315::-;21781:12;:10;:12::i;:::-;21771:22;;:6;;;;;;;;;;;:22;;;21763:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33321:2:::1;33308:10;:15;;;;33346:1;33334:9;:13;;;;33386:9;;33373:10;;:22;;;;:::i;:::-;33358:12;:37;;;;33422:2;33408:11;:16;;;;33448:1;33435:10;:14;;;;33490:10;;33476:11;;:24;;;;:::i;:::-;33460:13;:40;;;;33526:1;33513:10;:14;;;;33556:4;33540:13;;:20;;;;;;;;;;;;;;;;;;33253:315::o:0;21559:79::-;21597:7;21624:6;;;;;;;;;;;21617:13;;21559:79;:::o;30033:24::-;;;;;;;;;;;;;:::o;7956:104::-;8012:13;8045:7;8038:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7956:104;:::o;30623:25::-;;;;:::o;35264:244::-;21781:12;:10;:12::i;:::-;21771:22;;:6;;;;;;;;;;;:22;;;21763:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35371:13:::1;35363:21;;:4;:21;;;;35355:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;35459:41;35488:4;35494:5;35459:28;:41::i;:::-;35264:244:::0;;:::o;30343:24::-;;;;:::o;30554:27::-;;;;:::o;33908:98::-;21781:12;:10;:12::i;:::-;21771:22;;:6;;;;;;;;;;;:22;;;21763:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33992:6:::1;33979:10;:19;;;;33908:98:::0;:::o;30443:25::-;;;;:::o;12039:269::-;12132:4;12149:129;12158:12;:10;:12::i;:::-;12172:7;12181:96;12220:15;12181:96;;;;;;;;;;;;;;;;;:11;:25;12193:12;:10;:12::i;:::-;12181:25;;;;;;;;;;;;;;;:34;12207:7;12181:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;12149:8;:129::i;:::-;12296:4;12289:11;;12039:269;;;;:::o;9367:175::-;9453:4;9470:42;9480:12;:10;:12::i;:::-;9494:9;9505:6;9470:9;:42::i;:::-;9530:4;9523:11;;9367:175;;;;:::o;30410:26::-;;;;:::o;31056:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;30110:33::-;;;;;;;;;;;;;:::o;34846:182::-;21781:12;:10;:12::i;:::-;21771:22;;:6;;;;;;;;;;;:22;;;21763:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34962:8:::1;34931:19;:28;34951:7;34931:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;35002:7;34986:34;;;35011:8;34986:34;;;;;;:::i;:::-;;;;;;;;34846:182:::0;;:::o;30262:40::-;;;;;;;;;;;;;:::o;29884:35::-;;;;:::o;30374:27::-;;;;:::o;9605:151::-;9694:7;9721:11;:18;9733:5;9721:18;;;;;;;;;;;;;;;:27;9740:7;9721:27;;;;;;;;;;;;;;;;9714:34;;9605:151;;;;:::o;29926:33::-;;;;:::o;30311:25::-;;;;:::o;30655:::-;;;;:::o;22504:244::-;21781:12;:10;:12::i;:::-;21771:22;;:6;;;;;;;;;;;:22;;;21763:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22613:1:::1;22593:22;;:8;:22;;;;22585:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22703:8;22674:38;;22695:6;;;;;;;;;;;22674:38;;;;;;;;;;;;22732:8;22723:6;;:17;;;;;;;;;;;;;;;;;;22504:244:::0;:::o;29966:24::-;;;;:::o;16603:181::-;16661:7;16681:9;16697:1;16693;:5;;;;:::i;:::-;16681:17;;16722:1;16717;:6;;16709:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16775:1;16768:8;;;16603:181;;;;:::o;373:98::-;426:7;453:10;446:17;;373:98;:::o;15225:380::-;15378:1;15361:19;;:5;:19;;;;15353:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15459:1;15440:21;;:7;:21;;;;15432:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15543:6;15513:11;:18;15525:5;15513:18;;;;;;;;;;;;;;;:27;15532:7;15513:27;;;;;;;;;;;;;;;:36;;;;15581:7;15565:32;;15574:5;15565:32;;;15590:6;15565:32;;;;;;:::i;:::-;;;;;;;;15225:380;;;:::o;35036:220::-;35124:3;35111:10;;35102:6;;:19;;;;:::i;:::-;:25;;;;:::i;:::-;35079:20;:48;;;;35172:5;35168:1;35159:6;;:10;;;;:::i;:::-;:18;;;;:::i;:::-;35138;:39;;;;35245:3;35231:11;;35222:6;;:20;;;;:::i;:::-;:26;;;;:::i;:::-;35210:9;:38;;;;35036:220::o;35849:4043::-;35997:1;35981:18;;:4;:18;;;;35973:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36074:1;36060:16;;:2;:16;;;;36052:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;36151:1;36141:6;:11;36138:92;;;36169:28;36185:4;36191:2;36195:1;36169:15;:28::i;:::-;36212:7;;36138:92;36253:14;;;;;;;;;;;36250:1854;;;36313:7;:5;:7::i;:::-;36305:15;;:4;:15;;;;:49;;;;;36347:7;:5;:7::i;:::-;36341:13;;:2;:13;;;;36305:49;:86;;;;;36389:1;36375:16;;:2;:16;;;;36305:86;:128;;;;;36426:6;36412:21;;:2;:21;;;;36305:128;:158;;;;;36455:8;;;;;;;;;;;36454:9;36305:158;36283:1810;;;36501:13;;;;;;;;;;;36497:148;;36546:19;:25;36566:4;36546:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;36575:19;:23;36595:2;36575:23;;;;;;;;;;;;;;;;;;;;;;;;;36546:52;36538:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;36497:148;36803:20;;;;;;;;;;;36799:436;;;36857:7;:5;:7::i;:::-;36851:13;;:2;:13;;;;:47;;;;;36882:15;36868:30;;:2;:30;;;;36851:47;:79;;;;;36916:13;36902:28;;:2;:28;;;;36851:79;36847:369;;;37008:12;36966:28;:39;36995:9;36966:39;;;;;;;;;;;;;;;;:54;36958:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;37182:10;;37167:12;:25;;;;:::i;:::-;37125:28;:39;37154:9;37125:39;;;;;;;;;;;;;;;:67;;;;36847:369;36799:436;37304:25;:31;37330:4;37304:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;37340:31;:35;37372:2;37340:35;;;;;;;;;;;;;;;;;;;;;;;;;37339:36;37304:71;37300:778;;;37422:20;;37412:6;:30;;37404:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;37561:9;;37544:13;37554:2;37544:9;:13::i;:::-;37535:6;:22;;;;:::i;:::-;:35;;37527:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37300:778;;;37688:25;:29;37714:2;37688:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;37722:31;:37;37754:4;37722:37;;;;;;;;;;;;;;;;;;;;;;;;;37721:38;37688:71;37684:394;;;37806:20;;37796:6;:30;;37788:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;37684:394;;;37932:31;:35;37964:2;37932:35;;;;;;;;;;;;;;;;;;;;;;;;;37928:150;;38025:9;;38008:13;38018:2;38008:9;:13::i;:::-;37999:6;:22;;;;:::i;:::-;:35;;37991:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37928:150;37684:394;37300:778;36283:1810;36250:1854;38114:28;38145:24;38163:4;38145:9;:24::i;:::-;38114:55;;38190:12;38229:18;;38205:20;:42;;38190:57;;38278:7;:33;;;;;38303:8;;;;;;;;;;;38302:9;38278:33;:61;;;;;38328:11;;;;;;;;;;;38278:61;:110;;;;;38357:25;:31;38383:4;38357:31;;;;;;;;;;;;;;;;;;;;;;;;;38356:32;38278:110;:153;;;;;38406:19;:25;38426:4;38406:25;;;;;;;;;;;;;;;;;;;;;;;;;38405:26;38278:153;:194;;;;;38449:19;:23;38469:2;38449:23;;;;;;;;;;;;;;;;;;;;;;;;;38448:24;38278:194;38260:338;;;38510:4;38499:8;;:15;;;;;;;;;;;;;;;;;;38543:10;:8;:10::i;:::-;38581:5;38570:8;;:16;;;;;;;;;;;;;;;;;;38260:338;38618:12;38634:8;;;;;;;;;;;38633:9;38618:24;;38658:19;:25;38678:4;38658:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38687:19;:23;38707:2;38687:23;;;;;;;;;;;;;;;;;;;;;;;;;38658:52;38655:99;;;38737:5;38727:15;;38655:99;38774:12;38806:7;38803:1036;;;38857:25;:29;38883:2;38857:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;38906:1;38890:13;;:17;38857:50;38853:576;;;38934:35;38964:4;38934:25;38945:13;;38934:6;:10;;:25;;;;:::i;:::-;:29;;:35;;;;:::i;:::-;38927:42;;39026:13;;39012:11;;39005:4;:18;;;;:::i;:::-;:34;;;;:::i;:::-;38988:13;;:51;;;;;;;:::i;:::-;;;;;;;;39094:13;;39081:10;;39074:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;39058:12;;:49;;;;;;;:::i;:::-;;;;;;;;38853:576;;;39170:25;:31;39196:4;39170:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;39220:1;39205:12;;:16;39170:51;39167:262;;;39248:34;39277:4;39248:24;39259:12;;39248:6;:10;;:24;;;;:::i;:::-;:28;;:34;;;;:::i;:::-;39241:41;;39335:12;;39322:10;;39315:4;:17;;;;:::i;:::-;:32;;;;:::i;:::-;39298:13;;:49;;;;;;;:::i;:::-;;;;;;;;39401:12;;39389:9;;39382:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;39366:12;;:47;;;;;;;:::i;:::-;;;;;;;;39167:262;38853:576;39467:1;39460:4;:8;39457:334;;;39492:42;39508:4;39522;39529;39492:15;:42::i;:::-;39573:1;39557:13;;:17;39553:223;;;39599:35;39613:4;39620:13;;39599:5;:35::i;:::-;39666:13;:11;:13::i;:::-;39657:6;:22;;;;39702:14;:12;:14::i;:::-;39755:1;39739:13;:17;;;;39553:223;39457:334;39823:4;39813:14;;;;;:::i;:::-;;;38803:1036;39851:33;39867:4;39873:2;39877:6;39851:15;:33::i;:::-;35962:3930;;;;35849:4043;;;;:::o;17506:192::-;17592:7;17625:1;17620;:6;;17628:12;17612:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17652:9;17668:1;17664;:5;;;;:::i;:::-;17652:17;;17689:1;17682:8;;;17506:192;;;;;:::o;35516:188::-;35633:5;35599:25;:31;35625:4;35599:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;35690:5;35656:40;;35684:4;35656:40;;;;;;;;;;;;35516:188;;:::o;12798:573::-;12956:1;12938:20;;:6;:20;;;;12930:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13040:1;13019:23;;:9;:23;;;;13011:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13095:47;13116:6;13124:9;13135:6;13095:20;:47::i;:::-;13175:71;13197:6;13175:71;;;;;;;;;;;;;;;;;:9;:17;13185:6;13175:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13155:9;:17;13165:6;13155:17;;;;;;;;;;;;;;;:91;;;;13280:32;13305:6;13280:9;:20;13290:9;13280:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13257:9;:20;13267:9;13257:20;;;;;;;;;;;;;;;:55;;;;13345:9;13328:35;;13337:6;13328:35;;;13356:6;13328:35;;;;;;:::i;:::-;;;;;;;;12798:573;;;:::o;40513:464::-;40552:23;40578:24;40596:4;40578:9;:24::i;:::-;40552:50;;40613:12;40668:1;40649:15;:20;40646:34;;;40672:7;;;;40646:34;40734:2;40713:18;;:23;;;;:::i;:::-;40695:15;:41;40692:111;;;40789:2;40768:18;;:23;;;;:::i;:::-;40750:41;;40692:111;40815:33;40832:15;40815:16;:33::i;:::-;40885:1;40870:12;:16;;;;40920:9;;;;;;;;;;;40912:23;;40943:21;40912:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40899:70;;;;;40541:436;;40513:464;:::o;17957:471::-;18015:7;18265:1;18260;:6;18256:47;;;18290:1;18283:8;;;;18256:47;18315:9;18331:1;18327;:5;;;;:::i;:::-;18315:17;;18360:1;18355;18351;:5;;;;:::i;:::-;:10;18343:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18419:1;18412:8;;;17957:471;;;;;:::o;18904:132::-;18962:7;18989:39;18993:1;18996;18989:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18982:46;;18904:132;;;;:::o;14369:418::-;14472:1;14453:21;;:7;:21;;;;14445:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14525:49;14546:7;14563:1;14567:6;14525:20;:49::i;:::-;14608:68;14631:6;14608:68;;;;;;;;;;;;;;;;;:9;:18;14618:7;14608:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;14587:9;:18;14597:7;14587:18;;;;;;;;;;;;;;;:89;;;;14702:24;14719:6;14702:12;;:16;;:24;;;;:::i;:::-;14687:12;:39;;;;14768:1;14742:37;;14751:7;14742:37;;;14772:6;14742:37;;;;;;:::i;:::-;;;;;;;;14369:418;;:::o;16208:125::-;;;;:::o;39900:601::-;40028:21;40066:1;40052:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40028:40;;40097:4;40079;40084:1;40079:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;40123:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40113:4;40118:1;40113:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;40158:62;40175:4;40190:15;40208:11;40158:8;:62::i;:::-;40259:15;:66;;;40340:11;40366:1;40410:4;40437;40457:15;40259:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39955:546;39900:601;:::o;19532:278::-;19618:7;19650:1;19646;:5;19653:12;19638:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19677:9;19693:1;19689;:5;;;;:::i;:::-;19677:17;;19801:1;19794:8;;;19532:278;;;;;:::o;17067:136::-;17125:7;17152:43;17156:1;17159;17152:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;17145:50;;17067: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:244::-;11712:34;11708:1;11700:6;11696:14;11689:58;11781:27;11776:2;11768:6;11764:15;11757:52;11572:244;:::o;11822:366::-;11964:3;11985:67;12049:2;12044:3;11985:67;:::i;:::-;11978:74;;12061:93;12150:3;12061:93;:::i;:::-;12179:2;12174:3;12170:12;12163:19;;11822:366;;;:::o;12194:419::-;12360:4;12398:2;12387:9;12383:18;12375:26;;12447:9;12441:4;12437:20;12433:1;12422:9;12418:17;12411:47;12475:131;12601:4;12475:131;:::i;:::-;12467:139;;12194:419;;;:::o;12619:225::-;12759:34;12755:1;12747:6;12743:14;12736:58;12828:8;12823:2;12815:6;12811:15;12804:33;12619:225;:::o;12850:366::-;12992:3;13013:67;13077:2;13072:3;13013:67;:::i;:::-;13006:74;;13089:93;13178:3;13089:93;:::i;:::-;13207:2;13202:3;13198:12;13191:19;;12850:366;;;:::o;13222:419::-;13388:4;13426:2;13415:9;13411:18;13403:26;;13475:9;13469:4;13465:20;13461:1;13450:9;13446:17;13439:47;13503:131;13629:4;13503:131;:::i;:::-;13495:139;;13222:419;;;:::o;13647:177::-;13787:29;13783:1;13775:6;13771:14;13764:53;13647:177;:::o;13830:366::-;13972:3;13993:67;14057:2;14052:3;13993:67;:::i;:::-;13986:74;;14069:93;14158:3;14069:93;:::i;:::-;14187:2;14182:3;14178:12;14171:19;;13830:366;;;:::o;14202:419::-;14368:4;14406:2;14395:9;14391:18;14383:26;;14455:9;14449:4;14445:20;14441:1;14430:9;14426:17;14419:47;14483:131;14609:4;14483:131;:::i;:::-;14475:139;;14202:419;;;:::o;14627:223::-;14767:34;14763:1;14755:6;14751:14;14744:58;14836:6;14831:2;14823:6;14819:15;14812:31;14627:223;:::o;14856:366::-;14998:3;15019:67;15083:2;15078:3;15019:67;:::i;:::-;15012:74;;15095:93;15184:3;15095:93;:::i;:::-;15213:2;15208:3;15204:12;15197:19;;14856:366;;;:::o;15228:419::-;15394:4;15432:2;15421:9;15417:18;15409:26;;15481:9;15475:4;15471:20;15467:1;15456:9;15452:17;15445:47;15509:131;15635:4;15509:131;:::i;:::-;15501:139;;15228:419;;;:::o;15653:221::-;15793:34;15789:1;15781:6;15777:14;15770:58;15862:4;15857:2;15849:6;15845:15;15838:29;15653:221;:::o;15880:366::-;16022:3;16043:67;16107:2;16102:3;16043:67;:::i;:::-;16036:74;;16119:93;16208:3;16119:93;:::i;:::-;16237:2;16232:3;16228:12;16221:19;;15880:366;;;:::o;16252:419::-;16418:4;16456:2;16445:9;16441:18;16433:26;;16505:9;16499:4;16495:20;16491:1;16480:9;16476:17;16469:47;16533:131;16659:4;16533:131;:::i;:::-;16525:139;;16252:419;;;:::o;16677:348::-;16717:7;16740:20;16758:1;16740:20;:::i;:::-;16735:25;;16774:20;16792:1;16774:20;:::i;:::-;16769:25;;16962:1;16894:66;16890:74;16887:1;16884:81;16879:1;16872:9;16865:17;16861:105;16858:131;;;16969:18;;:::i;:::-;16858:131;17017:1;17014;17010:9;16999:20;;16677:348;;;;:::o;17031:180::-;17079:77;17076:1;17069:88;17176:4;17173:1;17166:15;17200:4;17197:1;17190:15;17217:185;17257:1;17274:20;17292:1;17274:20;:::i;:::-;17269:25;;17308:20;17326:1;17308:20;:::i;:::-;17303:25;;17347:1;17337:35;;17352:18;;:::i;:::-;17337:35;17394:1;17391;17387:9;17382:14;;17217:185;;;;:::o;17408:224::-;17548:34;17544:1;17536:6;17532:14;17525:58;17617:7;17612:2;17604:6;17600:15;17593:32;17408:224;:::o;17638:366::-;17780:3;17801:67;17865:2;17860:3;17801:67;:::i;:::-;17794:74;;17877:93;17966:3;17877:93;:::i;:::-;17995:2;17990:3;17986:12;17979:19;;17638:366;;;:::o;18010:419::-;18176:4;18214:2;18203:9;18199:18;18191:26;;18263:9;18257:4;18253:20;18249:1;18238:9;18234:17;18227:47;18291:131;18417:4;18291:131;:::i;:::-;18283:139;;18010:419;;;:::o;18435:222::-;18575:34;18571:1;18563:6;18559:14;18552:58;18644:5;18639:2;18631:6;18627:15;18620:30;18435:222;:::o;18663:366::-;18805:3;18826:67;18890:2;18885:3;18826:67;:::i;:::-;18819:74;;18902:93;18991:3;18902:93;:::i;:::-;19020:2;19015:3;19011:12;19004:19;;18663:366;;;:::o;19035:419::-;19201:4;19239:2;19228:9;19224:18;19216:26;;19288:9;19282:4;19278:20;19274:1;19263:9;19259:17;19252:47;19316:131;19442:4;19316:131;:::i;:::-;19308:139;;19035:419;;;:::o;19460:172::-;19600:24;19596:1;19588:6;19584:14;19577:48;19460:172;:::o;19638:366::-;19780:3;19801:67;19865:2;19860:3;19801:67;:::i;:::-;19794:74;;19877:93;19966:3;19877:93;:::i;:::-;19995:2;19990:3;19986:12;19979:19;;19638:366;;;:::o;20010:419::-;20176:4;20214:2;20203:9;20199:18;20191:26;;20263:9;20257:4;20253:20;20249:1;20238:9;20234:17;20227:47;20291:131;20417:4;20291:131;:::i;:::-;20283:139;;20010:419;;;:::o;20435:297::-;20575:34;20571:1;20563:6;20559:14;20552:58;20644:34;20639:2;20631:6;20627:15;20620:59;20713:11;20708:2;20700:6;20696:15;20689:36;20435:297;:::o;20738:366::-;20880:3;20901:67;20965:2;20960:3;20901:67;:::i;:::-;20894:74;;20977:93;21066:3;20977:93;:::i;:::-;21095:2;21090:3;21086:12;21079:19;;20738:366;;;:::o;21110:419::-;21276:4;21314:2;21303:9;21299:18;21291:26;;21363:9;21357:4;21353:20;21349:1;21338:9;21334:17;21327:47;21391:131;21517:4;21391:131;:::i;:::-;21383:139;;21110:419;;;:::o;21535:240::-;21675:34;21671:1;21663:6;21659:14;21652:58;21744:23;21739:2;21731:6;21727:15;21720:48;21535:240;:::o;21781:366::-;21923:3;21944:67;22008:2;22003:3;21944:67;:::i;:::-;21937:74;;22020:93;22109:3;22020:93;:::i;:::-;22138:2;22133:3;22129:12;22122:19;;21781:366;;;:::o;22153:419::-;22319:4;22357:2;22346:9;22342:18;22334:26;;22406:9;22400:4;22396:20;22392:1;22381:9;22377:17;22370:47;22434:131;22560:4;22434:131;:::i;:::-;22426:139;;22153:419;;;:::o;22578:169::-;22718:21;22714:1;22706:6;22702:14;22695:45;22578:169;:::o;22753:366::-;22895:3;22916:67;22980:2;22975:3;22916:67;:::i;:::-;22909:74;;22992:93;23081:3;22992:93;:::i;:::-;23110:2;23105:3;23101:12;23094:19;;22753:366;;;:::o;23125:419::-;23291:4;23329:2;23318:9;23314:18;23306:26;;23378:9;23372:4;23368:20;23364:1;23353:9;23349:17;23342:47;23406:131;23532:4;23406:131;:::i;:::-;23398:139;;23125:419;;;:::o;23550:241::-;23690:34;23686:1;23678:6;23674:14;23667:58;23759:24;23754:2;23746:6;23742:15;23735:49;23550:241;:::o;23797:366::-;23939:3;23960:67;24024:2;24019:3;23960:67;:::i;:::-;23953:74;;24036:93;24125:3;24036:93;:::i;:::-;24154:2;24149:3;24145:12;24138:19;;23797:366;;;:::o;24169:419::-;24335:4;24373:2;24362:9;24358:18;24350:26;;24422:9;24416:4;24412:20;24408:1;24397:9;24393:17;24386:47;24450:131;24576:4;24450:131;:::i;:::-;24442:139;;24169:419;;;:::o;24594:191::-;24634:4;24654:20;24672:1;24654:20;:::i;:::-;24649:25;;24688:20;24706:1;24688:20;:::i;:::-;24683:25;;24727:1;24724;24721:8;24718:34;;;24732:18;;:::i;:::-;24718:34;24777:1;24774;24770:9;24762:17;;24594:191;;;;:::o;24791:147::-;24892:11;24929:3;24914:18;;24791:147;;;;:::o;24944:114::-;;:::o;25064:398::-;25223:3;25244:83;25325:1;25320:3;25244:83;:::i;:::-;25237:90;;25336:93;25425:3;25336:93;:::i;:::-;25454:1;25449:3;25445:11;25438:18;;25064:398;;;:::o;25468:379::-;25652:3;25674:147;25817:3;25674:147;:::i;:::-;25667:154;;25838:3;25831:10;;25468:379;;;:::o;25853:220::-;25993:34;25989:1;25981:6;25977:14;25970:58;26062:3;26057:2;26049:6;26045:15;26038:28;25853:220;:::o;26079:366::-;26221:3;26242:67;26306:2;26301:3;26242:67;:::i;:::-;26235:74;;26318:93;26407:3;26318:93;:::i;:::-;26436:2;26431:3;26427:12;26420:19;;26079:366;;;:::o;26451:419::-;26617:4;26655:2;26644:9;26640:18;26632:26;;26704:9;26698:4;26694:20;26690:1;26679:9;26675:17;26668:47;26732:131;26858:4;26732:131;:::i;:::-;26724:139;;26451:419;;;:::o;26876:220::-;27016:34;27012:1;27004:6;27000:14;26993:58;27085:3;27080:2;27072:6;27068:15;27061:28;26876:220;:::o;27102:366::-;27244:3;27265:67;27329:2;27324:3;27265:67;:::i;:::-;27258:74;;27341:93;27430:3;27341:93;:::i;:::-;27459:2;27454:3;27450:12;27443:19;;27102:366;;;:::o;27474:419::-;27640:4;27678:2;27667:9;27663:18;27655:26;;27727:9;27721:4;27717:20;27713:1;27702:9;27698:17;27691:47;27755:131;27881:4;27755:131;:::i;:::-;27747:139;;27474:419;;;:::o;27899:180::-;27947:77;27944:1;27937:88;28044:4;28041:1;28034:15;28068:4;28065:1;28058:15;28085:180;28133:77;28130:1;28123:88;28230:4;28227:1;28220:15;28254:4;28251:1;28244:15;28271:143;28328:5;28359:6;28353:13;28344:22;;28375:33;28402:5;28375:33;:::i;:::-;28271:143;;;;:::o;28420:351::-;28490:6;28539:2;28527:9;28518:7;28514:23;28510:32;28507:119;;;28545:79;;:::i;:::-;28507:119;28665:1;28690:64;28746:7;28737:6;28726:9;28722:22;28690:64;:::i;:::-;28680:74;;28636:128;28420:351;;;;:::o;28777:85::-;28822:7;28851:5;28840:16;;28777:85;;;:::o;28868:158::-;28926:9;28959:61;28977:42;28986:32;29012:5;28986:32;:::i;:::-;28977:42;:::i;:::-;28959:61;:::i;:::-;28946:74;;28868:158;;;:::o;29032:147::-;29127:45;29166:5;29127:45;:::i;:::-;29122:3;29115:58;29032:147;;:::o;29185:114::-;29252:6;29286:5;29280:12;29270:22;;29185:114;;;:::o;29305:184::-;29404:11;29438:6;29433:3;29426:19;29478:4;29473:3;29469:14;29454:29;;29305:184;;;;:::o;29495:132::-;29562:4;29585:3;29577:11;;29615:4;29610:3;29606:14;29598:22;;29495:132;;;:::o;29633:108::-;29710:24;29728:5;29710:24;:::i;:::-;29705:3;29698:37;29633:108;;:::o;29747:179::-;29816:10;29837:46;29879:3;29871:6;29837:46;:::i;:::-;29915:4;29910:3;29906:14;29892:28;;29747:179;;;;:::o;29932:113::-;30002:4;30034;30029:3;30025:14;30017:22;;29932:113;;;:::o;30081:732::-;30200:3;30229:54;30277:5;30229:54;:::i;:::-;30299:86;30378:6;30373:3;30299:86;:::i;:::-;30292:93;;30409:56;30459:5;30409:56;:::i;:::-;30488:7;30519:1;30504:284;30529:6;30526:1;30523:13;30504:284;;;30605:6;30599:13;30632:63;30691:3;30676:13;30632:63;:::i;:::-;30625:70;;30718:60;30771:6;30718:60;:::i;:::-;30708:70;;30564:224;30551:1;30548;30544:9;30539:14;;30504:284;;;30508:14;30804:3;30797:10;;30205:608;;;30081:732;;;;:::o;30819:831::-;31082:4;31120:3;31109:9;31105:19;31097:27;;31134:71;31202:1;31191:9;31187:17;31178:6;31134:71;:::i;:::-;31215:80;31291:2;31280:9;31276:18;31267:6;31215:80;:::i;:::-;31342:9;31336:4;31332:20;31327:2;31316:9;31312:18;31305:48;31370:108;31473:4;31464:6;31370:108;:::i;:::-;31362:116;;31488:72;31556:2;31545:9;31541:18;31532:6;31488:72;:::i;:::-;31570:73;31638:3;31627:9;31623:19;31614:6;31570:73;:::i;:::-;30819:831;;;;;;;;:::o
Swarm Source
ipfs://51e252d7211c9247cf0971712f5727f86b3e42eaf6b75394f962fbec10041a2b
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.