ERC-20
Overview
Max Total Supply
100,000,000 GMr
Holders
71
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
3,312,830.192471364024869205 GMrValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GMr
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-27 */ /* Good Morning Reloaded! https://t.me/GMReloaded */ // SPDX-License-Identifier: Unlicensed 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 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract GMr is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool private swapping; address public marketingWallet; address public devWallet; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public tradingActive = false; bool public swapEnabled = false; uint256 public BuyInitialFees; uint256 public BuyTotalFees; uint256 public BuyLiquidityFee; uint256 public BuyTaxFee; uint256 public SellInitialFees; uint256 public SellTotalFees; uint256 public SellLiquidityFee; uint256 public SellTaxFee; uint256 public tokensForLiquidity; uint256 public tokensForTax; // block number of opened trading uint256 launchedAt; /******************/ // exclude from fees and max transaction amount mapping (address => bool) public _isExcludedFromFees; mapping (address => bool) public _isExcludedMaxBuyTransactionAmount; mapping (address => bool) public _isExcludedMaxSellTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping (address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("Good Morning Reloaded", "GMr") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _isExcludedMaxBuyTransactionAmount[address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D)] = true; _isExcludedMaxSellTransactionAmount[address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D)] = true; uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); _isExcludedMaxBuyTransactionAmount[uniswapV2Pair] = true; _isExcludedMaxSellTransactionAmount[uniswapV2Pair] = true; _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); // fees 4/4 uint256 _BuyLiquidityFee = 0; uint256 _BuyTaxFee = 4; uint256 _SellLiquidityFee = 1; uint256 _SellTaxFee = 3; uint256 totalSupply = 1 * 1e8 * 1e18; maxWallet = 1 * 1e6 * 1e18; // Max Wallet 1% swapTokensAtAmount = 1 * 1e5 * 1e18; // 0.1% swap threshold for the CA BuyLiquidityFee = _BuyLiquidityFee; BuyTaxFee = _BuyTaxFee; BuyTotalFees = BuyLiquidityFee + BuyTaxFee; BuyInitialFees = BuyTotalFees; SellLiquidityFee = _SellLiquidityFee; SellTaxFee = _SellTaxFee; SellTotalFees = SellLiquidityFee + SellTaxFee; SellInitialFees = SellTotalFees; marketingWallet = address(0xC4071dF0764dcd3A97e93671466880Da3576Fa71); // set as marketing wallet // exclude from paying fees or having max transaction amount _isExcludedFromFees[address(0xC4071dF0764dcd3A97e93671466880Da3576Fa71)] = true; _isExcludedFromFees[address(this)] = true; _isExcludedFromFees[address(0xdead)] = true; _isExcludedMaxBuyTransactionAmount[address(0xC4071dF0764dcd3A97e93671466880Da3576Fa71)] = true; _isExcludedMaxBuyTransactionAmount[address(this)] = true; _isExcludedMaxBuyTransactionAmount[address(0xdead)] = true; _isExcludedMaxSellTransactionAmount[address(0xC4071dF0764dcd3A97e93671466880Da3576Fa71)] = true; _isExcludedMaxSellTransactionAmount[address(this)] = true; _isExcludedMaxSellTransactionAmount[address(0xdead)] = true; /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable { } // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; launchedAt = block.number; } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } event BoughtEarly(address indexed sniper); 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 ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ){ if(!tradingActive){ require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } //when buy if (automatedMarketMakerPairs[from] && !_isExcludedMaxBuyTransactionAmount[to]) { require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; bool walletToWallet = !automatedMarketMakerPairs[to] && !automatedMarketMakerPairs[from]; // if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFees[from] || _isExcludedFromFees[to] || walletToWallet) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if(takeFee){ // buy if (automatedMarketMakerPairs[from] && BuyTotalFees > 0){ fees = amount.mul(BuyTotalFees).div(100); tokensForLiquidity += fees * BuyLiquidityFee / BuyTotalFees; tokensForTax += fees * BuyTaxFee / BuyTotalFees; } // sell else if(automatedMarketMakerPairs[to] && SellTotalFees > 0) { fees = amount.mul(SellTotalFees).div(100); tokensForLiquidity += fees * SellLiquidityFee / SellTotalFees; tokensForTax += fees * SellTaxFee / SellTotalFees; } if(fees > 0){ super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(marketingWallet), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForTax; bool success; if(contractBalance == 0 || totalTokensToSwap == 0) {return;} if(contractBalance > swapTokensAtAmount * 20){ contractBalance = swapTokensAtAmount * 20; } // Half the amount of liquidity tokens uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForTax = ethBalance.mul(tokensForTax).div(totalTokensToSwap-liquidityTokens); uint256 ethForLiquidity = ethBalance - ethForTax; tokensForLiquidity = 0; tokensForTax = 0; if(liquidityTokens > 0 && ethForLiquidity > 0){ addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity); } (success,) = address(marketingWallet).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":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[],"name":"BuyInitialFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BuyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BuyTaxFee","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":"SellInitialFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SellTaxFee","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":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxBuyTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxSellTransactionAmount","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526000600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055503480156200004757600080fd5b506040518060400160405280601581526020017f476f6f64204d6f726e696e672052656c6f6164656400000000000000000000008152506040518060400160405280600381526020017f474d7200000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000cc92919062000c7f565b508060049080519060200190620000e592919062000c7f565b5050506000620000fa620009bf60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050600160176000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160186000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200030557600080fd5b505afa1580156200031a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000340919062000d99565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003a357600080fd5b505afa158015620003b8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003de919062000d99565b6040518363ffffffff1660e01b8152600401620003fd92919062000ddc565b602060405180830381600087803b1580156200041857600080fd5b505af11580156200042d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000453919062000d99565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505060016017600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200054f60a0516001620009c760201b60201c565b6000806004905060006001905060006003905060006a52b7d2dcc80cd2e4000000905069d3c21bcecceda100000060098190555069152d02c7e14af680000060088190555084600d8190555083600e81905550600e54600d54620005b4919062000e42565b600c81905550600c54600b819055508260118190555081601281905550601254601154620005e3919062000e42565b601081905550601054600f8190555073c4071df0764dcd3a97e93671466880da3576fa71600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016016600073c4071df0764dcd3a97e93671466880da3576fa7173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016016600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016017600073c4071df0764dcd3a97e93671466880da3576fa7173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016017600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600073c4071df0764dcd3a97e93671466880da3576fa7173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620009b3338262000a6860201b60201c565b50505050505062001027565b600033905090565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000adb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ad29062000f00565b60405180910390fd5b62000aef6000838362000c1760201b60201c565b62000b0b8160025462000c1c60201b620013391790919060201c565b60028190555062000b69816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c1c60201b620013391790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c0b919062000f33565b60405180910390a35050565b505050565b600080828462000c2d919062000e42565b90508381101562000c75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c6c9062000fa0565b60405180910390fd5b8091505092915050565b82805462000c8d9062000ff1565b90600052602060002090601f01602090048101928262000cb1576000855562000cfd565b82601f1062000ccc57805160ff191683800117855562000cfd565b8280016001018555821562000cfd579182015b8281111562000cfc57825182559160200191906001019062000cdf565b5b50905062000d0c919062000d10565b5090565b5b8082111562000d2b57600081600090555060010162000d11565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d618262000d34565b9050919050565b62000d738162000d54565b811462000d7f57600080fd5b50565b60008151905062000d938162000d68565b92915050565b60006020828403121562000db25762000db162000d2f565b5b600062000dc28482850162000d82565b91505092915050565b62000dd68162000d54565b82525050565b600060408201905062000df3600083018562000dcb565b62000e02602083018462000dcb565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e4f8262000e09565b915062000e5c8362000e09565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e945762000e9362000e13565b5b828201905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ee8601f8362000e9f565b915062000ef58262000eb0565b602082019050919050565b6000602082019050818103600083015262000f1b8162000ed9565b9050919050565b62000f2d8162000e09565b82525050565b600060208201905062000f4a600083018462000f22565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062000f88601b8362000e9f565b915062000f958262000f50565b602082019050919050565b6000602082019050818103600083015262000fbb8162000f79565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200100a57607f821691505b6020821081141562001021576200102062000fc2565b5b50919050565b60805160a0516136ca620010706000396000610ba40152600081816109d50152818161254e0152818161263e0152818161266501528181612701015261272801526136ca6000f3fe60806040526004361061021e5760003560e01c806382f87d2211610123578063cdbf7455116100ab578063e194c2b21161006f578063e194c2b214610816578063e2f4560514610841578063f2fde38b1461086c578063f398d30414610895578063f8b45b05146108d257610225565b8063cdbf74551461071b578063d294393314610746578063d64dc9bd14610771578063dd62ed3e1461079c578063e0bf7fd1146107d957610225565b806395d89b41116100f257806395d89b411461060e578063a457c2d714610639578063a9059cbb14610676578063b62496f5146106b3578063bbc0c742146106f057610225565b806382f87d22146105765780638a8c523c146105a15780638da5cb5b146105b85780638ea5220f146105e357610225565b806339509351116101a65780636ddd1713116101755780636ddd1713146104a15780636fc61774146104cc57806370a08231146104f7578063715018a61461053457806375f0a8741461054b57610225565b806339509351146103e357806340f979131461042057806349bd5a5e1461044b5780636d7adcad1461047657610225565b80631694505e116101ed5780631694505e146102fa57806318160ddd146103255780631a8145bb1461035057806323b872dd1461037b578063313ce567146103b857610225565b806303c525731461022a57806306fdde03146102555780630855f25d14610280578063095ea7b3146102bd57610225565b3661022557005b600080fd5b34801561023657600080fd5b5061023f6108fd565b60405161024c9190612882565b60405180910390f35b34801561026157600080fd5b5061026a610903565b6040516102779190612936565b60405180910390f35b34801561028c57600080fd5b506102a760048036038101906102a291906129bb565b610995565b6040516102b49190612a03565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df9190612a4a565b6109b5565b6040516102f19190612a03565b60405180910390f35b34801561030657600080fd5b5061030f6109d3565b60405161031c9190612ae9565b60405180910390f35b34801561033157600080fd5b5061033a6109f7565b6040516103479190612882565b60405180910390f35b34801561035c57600080fd5b50610365610a01565b6040516103729190612882565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190612b04565b610a07565b6040516103af9190612a03565b60405180910390f35b3480156103c457600080fd5b506103cd610ae0565b6040516103da9190612b73565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190612a4a565b610ae9565b6040516104179190612a03565b60405180910390f35b34801561042c57600080fd5b50610435610b9c565b6040516104429190612882565b60405180910390f35b34801561045757600080fd5b50610460610ba2565b60405161046d9190612b9d565b60405180910390f35b34801561048257600080fd5b5061048b610bc6565b6040516104989190612882565b60405180910390f35b3480156104ad57600080fd5b506104b6610bcc565b6040516104c39190612a03565b60405180910390f35b3480156104d857600080fd5b506104e1610bdf565b6040516104ee9190612882565b60405180910390f35b34801561050357600080fd5b5061051e600480360381019061051991906129bb565b610be5565b60405161052b9190612882565b60405180910390f35b34801561054057600080fd5b50610549610c2d565b005b34801561055757600080fd5b50610560610d85565b60405161056d9190612b9d565b60405180910390f35b34801561058257600080fd5b5061058b610dab565b6040516105989190612882565b60405180910390f35b3480156105ad57600080fd5b506105b6610db1565b005b3480156105c457600080fd5b506105cd610e87565b6040516105da9190612b9d565b60405180910390f35b3480156105ef57600080fd5b506105f8610eb1565b6040516106059190612b9d565b60405180910390f35b34801561061a57600080fd5b50610623610ed7565b6040516106309190612936565b60405180910390f35b34801561064557600080fd5b50610660600480360381019061065b9190612a4a565b610f69565b60405161066d9190612a03565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190612a4a565b611036565b6040516106aa9190612a03565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d591906129bb565b611054565b6040516106e79190612a03565b60405180910390f35b3480156106fc57600080fd5b50610705611074565b6040516107129190612a03565b60405180910390f35b34801561072757600080fd5b50610730611087565b60405161073d9190612882565b60405180910390f35b34801561075257600080fd5b5061075b61108d565b6040516107689190612882565b60405180910390f35b34801561077d57600080fd5b50610786611093565b6040516107939190612882565b60405180910390f35b3480156107a857600080fd5b506107c360048036038101906107be9190612bb8565b611099565b6040516107d09190612882565b60405180910390f35b3480156107e557600080fd5b5061080060048036038101906107fb91906129bb565b611120565b60405161080d9190612a03565b60405180910390f35b34801561082257600080fd5b5061082b611140565b6040516108389190612882565b60405180910390f35b34801561084d57600080fd5b50610856611146565b6040516108639190612882565b60405180910390f35b34801561087857600080fd5b50610893600480360381019061088e91906129bb565b61114c565b005b3480156108a157600080fd5b506108bc60048036038101906108b791906129bb565b611313565b6040516108c99190612a03565b60405180910390f35b3480156108de57600080fd5b506108e7611333565b6040516108f49190612882565b60405180910390f35b600e5481565b60606003805461091290612c27565b80601f016020809104026020016040519081016040528092919081815260200182805461093e90612c27565b801561098b5780601f106109605761010080835404028352916020019161098b565b820191906000526020600020905b81548152906001019060200180831161096e57829003601f168201915b5050505050905090565b60186020528060005260406000206000915054906101000a900460ff1681565b60006109c96109c2611397565b848461139f565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60135481565b6000610a1484848461156a565b610ad584610a20611397565b610ad08560405180606001604052806028815260200161364860289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a86611397565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8a9092919063ffffffff16565b61139f565b600190509392505050565b60006012905090565b6000610b92610af6611397565b84610b8d8560016000610b07611397565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461133990919063ffffffff16565b61139f565b6001905092915050565b60105481565b7f000000000000000000000000000000000000000000000000000000000000000081565b60145481565b600a60019054906101000a900460ff1681565b600d5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c35611397565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb90612ca5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b610db9611397565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90612ca5565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055506001600a60016101000a81548160ff02191690831515021790555043601581905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054610ee690612c27565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1290612c27565b8015610f5f5780601f10610f3457610100808354040283529160200191610f5f565b820191906000526020600020905b815481529060010190602001808311610f4257829003601f168201915b5050505050905090565b600061102c610f76611397565b84611027856040518060600160405280602581526020016136706025913960016000610fa0611397565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8a9092919063ffffffff16565b61139f565b6001905092915050565b600061104a611043611397565b848461156a565b6001905092915050565b60196020528060005260406000206000915054906101000a900460ff1681565b600a60009054906101000a900460ff1681565b600f5481565b60115481565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b60125481565b60085481565b611154611397565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111da90612ca5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a90612d37565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60176020528060005260406000206000915054906101000a900460ff1681565b60095481565b60008082846113489190612d86565b90508381101561138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490612e28565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561140f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140690612eba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561147f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147690612f4c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161155d9190612882565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d190612fde565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561164a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164190613070565b60405180910390fd5b60008114156116645761165f83836000611eee565b611e85565b61166c610e87565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156116da57506116aa610e87565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156117135750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561174d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156117665750600560149054906101000a900460ff16155b1561196257600a60009054906101000a900460ff1661186057601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806118205750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61185f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611856906130dc565b60405180910390fd5b5b601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156119035750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156119615760095461191483610be5565b8261191f9190612d86565b1115611960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195790613148565b60405180910390fd5b5b5b600061196d30610be5565b9050600060085482101590508080156119925750600a60019054906101000a900460ff165b80156119ab5750600560149054906101000a900460ff16155b8015611a015750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611a575750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611aad5750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611af1576001600560146101000a81548160ff021916908315150217905550611ad5612183565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff161590506000601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611bac5750601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b9050601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611c4f5750601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80611c575750805b15611c6157600091505b60008215611e7457601960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611cc457506000600c54115b15611d5e57611cf16064611ce3600c548961239b90919063ffffffff16565b61241690919063ffffffff16565b9050600c54600d5482611d049190613168565b611d0e91906131f1565b60136000828254611d1f9190612d86565b92505081905550600c54600e5482611d379190613168565b611d4191906131f1565b60146000828254611d529190612d86565b92505081905550611e50565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611db957506000601054115b15611e4f57611de66064611dd86010548961239b90919063ffffffff16565b61241690919063ffffffff16565b905060105460115482611df99190613168565b611e0391906131f1565b60136000828254611e149190612d86565b9250508190555060105460125482611e2c9190613168565b611e3691906131f1565b60146000828254611e479190612d86565b925050819055505b5b6000811115611e6557611e64883083611eee565b5b8086611e719190613222565b95505b611e7f888888611eee565b50505050505b505050565b6000838311158290611ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec99190612936565b60405180910390fd5b5060008385611ee19190613222565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5590612fde565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc590613070565b60405180910390fd5b611fd9838383612460565b61204481604051806060016040528060268152602001613622602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8a9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506120d7816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461133990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121769190612882565b60405180910390a3505050565b600061218e30610be5565b905060006014546013546121a29190612d86565b90506000808314806121b45750600082145b156121c157505050612399565b60146008546121d09190613168565b8311156121e95760146008546121e69190613168565b92505b6000600283601354866121fc9190613168565b61220691906131f1565b61221091906131f1565b90506000612227828661246590919063ffffffff16565b90506000479050612237826124af565b600061224c824761246590919063ffffffff16565b90506000612282858861225f9190613222565b6122746014548561239b90919063ffffffff16565b61241690919063ffffffff16565b9050600081836122929190613222565b9050600060138190555060006014819055506000861180156122b45750600081115b15612301576122c386826126fb565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185826013546040516122f893929190613256565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612347906132be565b60006040518083038185875af1925050503d8060008114612384576040519150601f19603f3d011682016040523d82523d6000602084013e612389565b606091505b5050809750505050505050505050505b565b6000808314156123ae5760009050612410565b600082846123bc9190613168565b90508284826123cb91906131f1565b1461240b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240290613345565b60405180910390fd5b809150505b92915050565b600061245883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612806565b905092915050565b505050565b60006124a783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611e8a565b905092915050565b6000600267ffffffffffffffff8111156124cc576124cb613365565b5b6040519080825280602002602001820160405280156124fa5781602001602082028036833780820191505090505b509050308160008151811061251257612511613394565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156125b257600080fd5b505afa1580156125c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125ea91906133d8565b816001815181106125fe576125fd613394565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612663307f00000000000000000000000000000000000000000000000000000000000000008461139f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016126c59594939291906134fe565b600060405180830381600087803b1580156126df57600080fd5b505af11580156126f3573d6000803e3d6000fd5b505050505050565b612726307f00000000000000000000000000000000000000000000000000000000000000008461139f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016127ad96959493929190613558565b6060604051808303818588803b1580156127c657600080fd5b505af11580156127da573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906127ff91906135ce565b5050505050565b6000808311829061284d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128449190612936565b60405180910390fd5b506000838561285c91906131f1565b9050809150509392505050565b6000819050919050565b61287c81612869565b82525050565b60006020820190506128976000830184612873565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128d75780820151818401526020810190506128bc565b838111156128e6576000848401525b50505050565b6000601f19601f8301169050919050565b60006129088261289d565b61291281856128a8565b93506129228185602086016128b9565b61292b816128ec565b840191505092915050565b6000602082019050818103600083015261295081846128fd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129888261295d565b9050919050565b6129988161297d565b81146129a357600080fd5b50565b6000813590506129b58161298f565b92915050565b6000602082840312156129d1576129d0612958565b5b60006129df848285016129a6565b91505092915050565b60008115159050919050565b6129fd816129e8565b82525050565b6000602082019050612a1860008301846129f4565b92915050565b612a2781612869565b8114612a3257600080fd5b50565b600081359050612a4481612a1e565b92915050565b60008060408385031215612a6157612a60612958565b5b6000612a6f858286016129a6565b9250506020612a8085828601612a35565b9150509250929050565b6000819050919050565b6000612aaf612aaa612aa58461295d565b612a8a565b61295d565b9050919050565b6000612ac182612a94565b9050919050565b6000612ad382612ab6565b9050919050565b612ae381612ac8565b82525050565b6000602082019050612afe6000830184612ada565b92915050565b600080600060608486031215612b1d57612b1c612958565b5b6000612b2b868287016129a6565b9350506020612b3c868287016129a6565b9250506040612b4d86828701612a35565b9150509250925092565b600060ff82169050919050565b612b6d81612b57565b82525050565b6000602082019050612b886000830184612b64565b92915050565b612b978161297d565b82525050565b6000602082019050612bb26000830184612b8e565b92915050565b60008060408385031215612bcf57612bce612958565b5b6000612bdd858286016129a6565b9250506020612bee858286016129a6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c3f57607f821691505b60208210811415612c5357612c52612bf8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c8f6020836128a8565b9150612c9a82612c59565b602082019050919050565b60006020820190508181036000830152612cbe81612c82565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612d216026836128a8565b9150612d2c82612cc5565b604082019050919050565b60006020820190508181036000830152612d5081612d14565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d9182612869565b9150612d9c83612869565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612dd157612dd0612d57565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612e12601b836128a8565b9150612e1d82612ddc565b602082019050919050565b60006020820190508181036000830152612e4181612e05565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612ea46024836128a8565b9150612eaf82612e48565b604082019050919050565b60006020820190508181036000830152612ed381612e97565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f366022836128a8565b9150612f4182612eda565b604082019050919050565b60006020820190508181036000830152612f6581612f29565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612fc86025836128a8565b9150612fd382612f6c565b604082019050919050565b60006020820190508181036000830152612ff781612fbb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061305a6023836128a8565b915061306582612ffe565b604082019050919050565b600060208201905081810360008301526130898161304d565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006130c66016836128a8565b91506130d182613090565b602082019050919050565b600060208201905081810360008301526130f5816130b9565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006131326013836128a8565b915061313d826130fc565b602082019050919050565b6000602082019050818103600083015261316181613125565b9050919050565b600061317382612869565b915061317e83612869565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131b7576131b6612d57565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006131fc82612869565b915061320783612869565b925082613217576132166131c2565b5b828204905092915050565b600061322d82612869565b915061323883612869565b92508282101561324b5761324a612d57565b5b828203905092915050565b600060608201905061326b6000830186612873565b6132786020830185612873565b6132856040830184612873565b949350505050565b600081905092915050565b50565b60006132a860008361328d565b91506132b382613298565b600082019050919050565b60006132c98261329b565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b600061332f6021836128a8565b915061333a826132d3565b604082019050919050565b6000602082019050818103600083015261335e81613322565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506133d28161298f565b92915050565b6000602082840312156133ee576133ed612958565b5b60006133fc848285016133c3565b91505092915050565b6000819050919050565b600061342a61342561342084613405565b612a8a565b612869565b9050919050565b61343a8161340f565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6134758161297d565b82525050565b6000613487838361346c565b60208301905092915050565b6000602082019050919050565b60006134ab82613440565b6134b5818561344b565b93506134c08361345c565b8060005b838110156134f15781516134d8888261347b565b97506134e383613493565b9250506001810190506134c4565b5085935050505092915050565b600060a0820190506135136000830188612873565b6135206020830187613431565b818103604083015261353281866134a0565b90506135416060830185612b8e565b61354e6080830184612873565b9695505050505050565b600060c08201905061356d6000830189612b8e565b61357a6020830188612873565b6135876040830187613431565b6135946060830186613431565b6135a16080830185612b8e565b6135ae60a0830184612873565b979650505050505050565b6000815190506135c881612a1e565b92915050565b6000806000606084860312156135e7576135e6612958565b5b60006135f5868287016135b9565b9350506020613606868287016135b9565b9250506040613617868287016135b9565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b53a2a159b568865d4fa8a99c6197927ed21209dc0fb866c92277d68adcc578e64736f6c63430008090033
Deployed Bytecode
0x60806040526004361061021e5760003560e01c806382f87d2211610123578063cdbf7455116100ab578063e194c2b21161006f578063e194c2b214610816578063e2f4560514610841578063f2fde38b1461086c578063f398d30414610895578063f8b45b05146108d257610225565b8063cdbf74551461071b578063d294393314610746578063d64dc9bd14610771578063dd62ed3e1461079c578063e0bf7fd1146107d957610225565b806395d89b41116100f257806395d89b411461060e578063a457c2d714610639578063a9059cbb14610676578063b62496f5146106b3578063bbc0c742146106f057610225565b806382f87d22146105765780638a8c523c146105a15780638da5cb5b146105b85780638ea5220f146105e357610225565b806339509351116101a65780636ddd1713116101755780636ddd1713146104a15780636fc61774146104cc57806370a08231146104f7578063715018a61461053457806375f0a8741461054b57610225565b806339509351146103e357806340f979131461042057806349bd5a5e1461044b5780636d7adcad1461047657610225565b80631694505e116101ed5780631694505e146102fa57806318160ddd146103255780631a8145bb1461035057806323b872dd1461037b578063313ce567146103b857610225565b806303c525731461022a57806306fdde03146102555780630855f25d14610280578063095ea7b3146102bd57610225565b3661022557005b600080fd5b34801561023657600080fd5b5061023f6108fd565b60405161024c9190612882565b60405180910390f35b34801561026157600080fd5b5061026a610903565b6040516102779190612936565b60405180910390f35b34801561028c57600080fd5b506102a760048036038101906102a291906129bb565b610995565b6040516102b49190612a03565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df9190612a4a565b6109b5565b6040516102f19190612a03565b60405180910390f35b34801561030657600080fd5b5061030f6109d3565b60405161031c9190612ae9565b60405180910390f35b34801561033157600080fd5b5061033a6109f7565b6040516103479190612882565b60405180910390f35b34801561035c57600080fd5b50610365610a01565b6040516103729190612882565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d9190612b04565b610a07565b6040516103af9190612a03565b60405180910390f35b3480156103c457600080fd5b506103cd610ae0565b6040516103da9190612b73565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190612a4a565b610ae9565b6040516104179190612a03565b60405180910390f35b34801561042c57600080fd5b50610435610b9c565b6040516104429190612882565b60405180910390f35b34801561045757600080fd5b50610460610ba2565b60405161046d9190612b9d565b60405180910390f35b34801561048257600080fd5b5061048b610bc6565b6040516104989190612882565b60405180910390f35b3480156104ad57600080fd5b506104b6610bcc565b6040516104c39190612a03565b60405180910390f35b3480156104d857600080fd5b506104e1610bdf565b6040516104ee9190612882565b60405180910390f35b34801561050357600080fd5b5061051e600480360381019061051991906129bb565b610be5565b60405161052b9190612882565b60405180910390f35b34801561054057600080fd5b50610549610c2d565b005b34801561055757600080fd5b50610560610d85565b60405161056d9190612b9d565b60405180910390f35b34801561058257600080fd5b5061058b610dab565b6040516105989190612882565b60405180910390f35b3480156105ad57600080fd5b506105b6610db1565b005b3480156105c457600080fd5b506105cd610e87565b6040516105da9190612b9d565b60405180910390f35b3480156105ef57600080fd5b506105f8610eb1565b6040516106059190612b9d565b60405180910390f35b34801561061a57600080fd5b50610623610ed7565b6040516106309190612936565b60405180910390f35b34801561064557600080fd5b50610660600480360381019061065b9190612a4a565b610f69565b60405161066d9190612a03565b60405180910390f35b34801561068257600080fd5b5061069d60048036038101906106989190612a4a565b611036565b6040516106aa9190612a03565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d591906129bb565b611054565b6040516106e79190612a03565b60405180910390f35b3480156106fc57600080fd5b50610705611074565b6040516107129190612a03565b60405180910390f35b34801561072757600080fd5b50610730611087565b60405161073d9190612882565b60405180910390f35b34801561075257600080fd5b5061075b61108d565b6040516107689190612882565b60405180910390f35b34801561077d57600080fd5b50610786611093565b6040516107939190612882565b60405180910390f35b3480156107a857600080fd5b506107c360048036038101906107be9190612bb8565b611099565b6040516107d09190612882565b60405180910390f35b3480156107e557600080fd5b5061080060048036038101906107fb91906129bb565b611120565b60405161080d9190612a03565b60405180910390f35b34801561082257600080fd5b5061082b611140565b6040516108389190612882565b60405180910390f35b34801561084d57600080fd5b50610856611146565b6040516108639190612882565b60405180910390f35b34801561087857600080fd5b50610893600480360381019061088e91906129bb565b61114c565b005b3480156108a157600080fd5b506108bc60048036038101906108b791906129bb565b611313565b6040516108c99190612a03565b60405180910390f35b3480156108de57600080fd5b506108e7611333565b6040516108f49190612882565b60405180910390f35b600e5481565b60606003805461091290612c27565b80601f016020809104026020016040519081016040528092919081815260200182805461093e90612c27565b801561098b5780601f106109605761010080835404028352916020019161098b565b820191906000526020600020905b81548152906001019060200180831161096e57829003601f168201915b5050505050905090565b60186020528060005260406000206000915054906101000a900460ff1681565b60006109c96109c2611397565b848461139f565b6001905092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60135481565b6000610a1484848461156a565b610ad584610a20611397565b610ad08560405180606001604052806028815260200161364860289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a86611397565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8a9092919063ffffffff16565b61139f565b600190509392505050565b60006012905090565b6000610b92610af6611397565b84610b8d8560016000610b07611397565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461133990919063ffffffff16565b61139f565b6001905092915050565b60105481565b7f000000000000000000000000daa4d2d043b9791e74f55a1526218e7f9148227f81565b60145481565b600a60019054906101000a900460ff1681565b600d5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c35611397565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb90612ca5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b610db9611397565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90612ca5565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055506001600a60016101000a81548160ff02191690831515021790555043601581905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054610ee690612c27565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1290612c27565b8015610f5f5780601f10610f3457610100808354040283529160200191610f5f565b820191906000526020600020905b815481529060010190602001808311610f4257829003601f168201915b5050505050905090565b600061102c610f76611397565b84611027856040518060600160405280602581526020016136706025913960016000610fa0611397565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8a9092919063ffffffff16565b61139f565b6001905092915050565b600061104a611043611397565b848461156a565b6001905092915050565b60196020528060005260406000206000915054906101000a900460ff1681565b600a60009054906101000a900460ff1681565b600f5481565b60115481565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b60125481565b60085481565b611154611397565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111da90612ca5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a90612d37565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60176020528060005260406000206000915054906101000a900460ff1681565b60095481565b60008082846113489190612d86565b90508381101561138d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138490612e28565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561140f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140690612eba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561147f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147690612f4c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161155d9190612882565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d190612fde565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561164a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164190613070565b60405180910390fd5b60008114156116645761165f83836000611eee565b611e85565b61166c610e87565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156116da57506116aa610e87565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156117135750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561174d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156117665750600560149054906101000a900460ff16155b1561196257600a60009054906101000a900460ff1661186057601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806118205750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61185f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611856906130dc565b60405180910390fd5b5b601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156119035750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156119615760095461191483610be5565b8261191f9190612d86565b1115611960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195790613148565b60405180910390fd5b5b5b600061196d30610be5565b9050600060085482101590508080156119925750600a60019054906101000a900460ff165b80156119ab5750600560149054906101000a900460ff16155b8015611a015750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611a575750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611aad5750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611af1576001600560146101000a81548160ff021916908315150217905550611ad5612183565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff161590506000601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611bac5750601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b9050601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611c4f5750601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80611c575750805b15611c6157600091505b60008215611e7457601960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611cc457506000600c54115b15611d5e57611cf16064611ce3600c548961239b90919063ffffffff16565b61241690919063ffffffff16565b9050600c54600d5482611d049190613168565b611d0e91906131f1565b60136000828254611d1f9190612d86565b92505081905550600c54600e5482611d379190613168565b611d4191906131f1565b60146000828254611d529190612d86565b92505081905550611e50565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611db957506000601054115b15611e4f57611de66064611dd86010548961239b90919063ffffffff16565b61241690919063ffffffff16565b905060105460115482611df99190613168565b611e0391906131f1565b60136000828254611e149190612d86565b9250508190555060105460125482611e2c9190613168565b611e3691906131f1565b60146000828254611e479190612d86565b925050819055505b5b6000811115611e6557611e64883083611eee565b5b8086611e719190613222565b95505b611e7f888888611eee565b50505050505b505050565b6000838311158290611ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec99190612936565b60405180910390fd5b5060008385611ee19190613222565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5590612fde565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc590613070565b60405180910390fd5b611fd9838383612460565b61204481604051806060016040528060268152602001613622602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8a9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506120d7816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461133990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121769190612882565b60405180910390a3505050565b600061218e30610be5565b905060006014546013546121a29190612d86565b90506000808314806121b45750600082145b156121c157505050612399565b60146008546121d09190613168565b8311156121e95760146008546121e69190613168565b92505b6000600283601354866121fc9190613168565b61220691906131f1565b61221091906131f1565b90506000612227828661246590919063ffffffff16565b90506000479050612237826124af565b600061224c824761246590919063ffffffff16565b90506000612282858861225f9190613222565b6122746014548561239b90919063ffffffff16565b61241690919063ffffffff16565b9050600081836122929190613222565b9050600060138190555060006014819055506000861180156122b45750600081115b15612301576122c386826126fb565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185826013546040516122f893929190613256565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612347906132be565b60006040518083038185875af1925050503d8060008114612384576040519150601f19603f3d011682016040523d82523d6000602084013e612389565b606091505b5050809750505050505050505050505b565b6000808314156123ae5760009050612410565b600082846123bc9190613168565b90508284826123cb91906131f1565b1461240b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240290613345565b60405180910390fd5b809150505b92915050565b600061245883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612806565b905092915050565b505050565b60006124a783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611e8a565b905092915050565b6000600267ffffffffffffffff8111156124cc576124cb613365565b5b6040519080825280602002602001820160405280156124fa5781602001602082028036833780820191505090505b509050308160008151811061251257612511613394565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156125b257600080fd5b505afa1580156125c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125ea91906133d8565b816001815181106125fe576125fd613394565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612663307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461139f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016126c59594939291906134fe565b600060405180830381600087803b1580156126df57600080fd5b505af11580156126f3573d6000803e3d6000fd5b505050505050565b612726307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461139f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016127ad96959493929190613558565b6060604051808303818588803b1580156127c657600080fd5b505af11580156127da573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906127ff91906135ce565b5050505050565b6000808311829061284d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128449190612936565b60405180910390fd5b506000838561285c91906131f1565b9050809150509392505050565b6000819050919050565b61287c81612869565b82525050565b60006020820190506128976000830184612873565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128d75780820151818401526020810190506128bc565b838111156128e6576000848401525b50505050565b6000601f19601f8301169050919050565b60006129088261289d565b61291281856128a8565b93506129228185602086016128b9565b61292b816128ec565b840191505092915050565b6000602082019050818103600083015261295081846128fd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129888261295d565b9050919050565b6129988161297d565b81146129a357600080fd5b50565b6000813590506129b58161298f565b92915050565b6000602082840312156129d1576129d0612958565b5b60006129df848285016129a6565b91505092915050565b60008115159050919050565b6129fd816129e8565b82525050565b6000602082019050612a1860008301846129f4565b92915050565b612a2781612869565b8114612a3257600080fd5b50565b600081359050612a4481612a1e565b92915050565b60008060408385031215612a6157612a60612958565b5b6000612a6f858286016129a6565b9250506020612a8085828601612a35565b9150509250929050565b6000819050919050565b6000612aaf612aaa612aa58461295d565b612a8a565b61295d565b9050919050565b6000612ac182612a94565b9050919050565b6000612ad382612ab6565b9050919050565b612ae381612ac8565b82525050565b6000602082019050612afe6000830184612ada565b92915050565b600080600060608486031215612b1d57612b1c612958565b5b6000612b2b868287016129a6565b9350506020612b3c868287016129a6565b9250506040612b4d86828701612a35565b9150509250925092565b600060ff82169050919050565b612b6d81612b57565b82525050565b6000602082019050612b886000830184612b64565b92915050565b612b978161297d565b82525050565b6000602082019050612bb26000830184612b8e565b92915050565b60008060408385031215612bcf57612bce612958565b5b6000612bdd858286016129a6565b9250506020612bee858286016129a6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c3f57607f821691505b60208210811415612c5357612c52612bf8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c8f6020836128a8565b9150612c9a82612c59565b602082019050919050565b60006020820190508181036000830152612cbe81612c82565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612d216026836128a8565b9150612d2c82612cc5565b604082019050919050565b60006020820190508181036000830152612d5081612d14565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d9182612869565b9150612d9c83612869565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612dd157612dd0612d57565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612e12601b836128a8565b9150612e1d82612ddc565b602082019050919050565b60006020820190508181036000830152612e4181612e05565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612ea46024836128a8565b9150612eaf82612e48565b604082019050919050565b60006020820190508181036000830152612ed381612e97565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f366022836128a8565b9150612f4182612eda565b604082019050919050565b60006020820190508181036000830152612f6581612f29565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612fc86025836128a8565b9150612fd382612f6c565b604082019050919050565b60006020820190508181036000830152612ff781612fbb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061305a6023836128a8565b915061306582612ffe565b604082019050919050565b600060208201905081810360008301526130898161304d565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006130c66016836128a8565b91506130d182613090565b602082019050919050565b600060208201905081810360008301526130f5816130b9565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006131326013836128a8565b915061313d826130fc565b602082019050919050565b6000602082019050818103600083015261316181613125565b9050919050565b600061317382612869565b915061317e83612869565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156131b7576131b6612d57565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006131fc82612869565b915061320783612869565b925082613217576132166131c2565b5b828204905092915050565b600061322d82612869565b915061323883612869565b92508282101561324b5761324a612d57565b5b828203905092915050565b600060608201905061326b6000830186612873565b6132786020830185612873565b6132856040830184612873565b949350505050565b600081905092915050565b50565b60006132a860008361328d565b91506132b382613298565b600082019050919050565b60006132c98261329b565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b600061332f6021836128a8565b915061333a826132d3565b604082019050919050565b6000602082019050818103600083015261335e81613322565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506133d28161298f565b92915050565b6000602082840312156133ee576133ed612958565b5b60006133fc848285016133c3565b91505092915050565b6000819050919050565b600061342a61342561342084613405565b612a8a565b612869565b9050919050565b61343a8161340f565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6134758161297d565b82525050565b6000613487838361346c565b60208301905092915050565b6000602082019050919050565b60006134ab82613440565b6134b5818561344b565b93506134c08361345c565b8060005b838110156134f15781516134d8888261347b565b97506134e383613493565b9250506001810190506134c4565b5085935050505092915050565b600060a0820190506135136000830188612873565b6135206020830187613431565b818103604083015261353281866134a0565b90506135416060830185612b8e565b61354e6080830184612873565b9695505050505050565b600060c08201905061356d6000830189612b8e565b61357a6020830188612873565b6135876040830187613431565b6135946060830186613431565b6135a16080830185612b8e565b6135ae60a0830184612873565b979650505050505050565b6000815190506135c881612a1e565b92915050565b6000806000606084860312156135e7576135e6612958565b5b60006135f5868287016135b9565b9350506020613606868287016135b9565b9250506040613617868287016135b9565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b53a2a159b568865d4fa8a99c6197927ed21209dc0fb866c92277d68adcc578e64736f6c63430008090033
Deployed Bytecode Sourcemap
28796:9944:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29340:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7648:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29883:68;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9822:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28870:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8771:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29520:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10474:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8612:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11239:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29411:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28928:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29560:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29192:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29303:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8943:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21396:148;;;;;;;;;;;;;:::i;:::-;;29007:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29269:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33211:148;;;;;;;;;;;;;:::i;:::-;;20752:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29044:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7868:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11961:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9284:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30110:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29152:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29374:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29446:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29233:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9523:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29750:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29484:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29078:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21700:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29809:67;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29118:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29340;;;;:::o;7648:100::-;7702:13;7735:5;7728:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7648:100;:::o;29883:68::-;;;;;;;;;;;;;;;;;;;;;;:::o;9822:169::-;9905:4;9922:39;9931:12;:10;:12::i;:::-;9945:7;9954:6;9922:8;:39::i;:::-;9979:4;9972:11;;9822:169;;;;:::o;28870:51::-;;;:::o;8771:108::-;8832:7;8859:12;;8852:19;;8771:108;:::o;29520:33::-;;;;:::o;10474:355::-;10614:4;10631:36;10641:6;10649:9;10660:6;10631:9;:36::i;:::-;10678:121;10687:6;10695:12;:10;:12::i;:::-;10709:89;10747:6;10709:89;;;;;;;;;;;;;;;;;:11;:19;10721:6;10709:19;;;;;;;;;;;;;;;:33;10729:12;:10;:12::i;:::-;10709:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10678:8;:121::i;:::-;10817:4;10810:11;;10474:355;;;;;:::o;8612:93::-;8670:5;8695:2;8688:9;;8612:93;:::o;11239:218::-;11327:4;11344:83;11353:12;:10;:12::i;:::-;11367:7;11376:50;11415:10;11376:11;:25;11388:12;:10;:12::i;:::-;11376:25;;;;;;;;;;;;;;;:34;11402:7;11376:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11344:8;:83::i;:::-;11445:4;11438:11;;11239:218;;;;:::o;29411:28::-;;;;:::o;28928:38::-;;;:::o;29560:27::-;;;;:::o;29192:31::-;;;;;;;;;;;;;:::o;29303:30::-;;;;:::o;8943:127::-;9017:7;9044:9;:18;9054:7;9044:18;;;;;;;;;;;;;;;;9037:25;;8943:127;;;:::o;21396:148::-;20975:12;:10;:12::i;:::-;20965:22;;:6;;;;;;;;;;;:22;;;20957:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;21503:1:::1;21466:40;;21487:6;;;;;;;;;;;21466:40;;;;;;;;;;;;21534:1;21517:6;;:19;;;;;;;;;;;;;;;;;;21396:148::o:0;29007:30::-;;;;;;;;;;;;;:::o;29269:27::-;;;;:::o;33211:148::-;20975:12;:10;:12::i;:::-;20965:22;;:6;;;;;;;;;;;:22;;;20957:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33282:4:::1;33266:13;;:20;;;;;;;;;;;;;;;;;;33311:4;33297:11;;:18;;;;;;;;;;;;;;;;;;33339:12;33326:10;:25;;;;33211:148::o:0;20752:79::-;20790:7;20817:6;;;;;;;;;;;20810:13;;20752:79;:::o;29044:24::-;;;;;;;;;;;;;:::o;7868:104::-;7924:13;7957:7;7950:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7868:104;:::o;11961:269::-;12054:4;12071:129;12080:12;:10;:12::i;:::-;12094:7;12103:96;12142:15;12103:96;;;;;;;;;;;;;;;;;:11;:25;12115:12;:10;:12::i;:::-;12103:25;;;;;;;;;;;;;;;:34;12129:7;12103:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;12071:8;:129::i;:::-;12218:4;12211:11;;11961:269;;;;:::o;9284:175::-;9370:4;9387:42;9397:12;:10;:12::i;:::-;9411:9;9422:6;9387:9;:42::i;:::-;9447:4;9440:11;;9284:175;;;;:::o;30110:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;29152:33::-;;;;;;;;;;;;;:::o;29374:30::-;;;;:::o;29446:31::-;;;;:::o;29233:29::-;;;;:::o;9523:151::-;9612:7;9639:11;:18;9651:5;9639:18;;;;;;;;;;;;;;;:27;9658:7;9639:27;;;;;;;;;;;;;;;;9632:34;;9523:151;;;;:::o;29750:52::-;;;;;;;;;;;;;;;;;;;;;;:::o;29484:25::-;;;;:::o;29078:33::-;;;;:::o;21700:244::-;20975:12;:10;:12::i;:::-;20965:22;;:6;;;;;;;;;;;:22;;;20957:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;21809:1:::1;21789:22;;:8;:22;;;;21781:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21899:8;21870:38;;21891:6;;;;;;;;;;;21870:38;;;;;;;;;;;;21928:8;21919:6;;:17;;;;;;;;;;;;;;;;;;21700:244:::0;:::o;29809:67::-;;;;;;;;;;;;;;;;;;;;;;:::o;29118:24::-;;;;:::o;15784:182::-;15842:7;15862:9;15878:1;15874;:5;;;;:::i;:::-;15862:17;;15903:1;15898;:6;;15890:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;15957:1;15950:8;;;15784:182;;;;:::o;250:98::-;303:7;330:10;323:17;;250:98;:::o;14403:381::-;14556:1;14539:19;;:5;:19;;;;14531:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14637:1;14618:21;;:7;:21;;;;14610:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14722:6;14692:11;:18;14704:5;14692:18;;;;;;;;;;;;;;;:27;14711:7;14692:27;;;;;;;;;;;;;;;:36;;;;14760:7;14744:32;;14753:5;14744:32;;;14769:6;14744:32;;;;;;:::i;:::-;;;;;;;;14403:381;;;:::o;33617:2624::-;33765:1;33749:18;;:4;:18;;;;33741:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33842:1;33828:16;;:2;:16;;;;33820:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33908:1;33898:6;:11;33895:92;;;33926:28;33942:4;33948:2;33952:1;33926:15;:28::i;:::-;33969:7;;33895:92;34026:7;:5;:7::i;:::-;34018:15;;:4;:15;;;;:45;;;;;34056:7;:5;:7::i;:::-;34050:13;;:2;:13;;;;34018:45;:78;;;;;34094:1;34080:16;;:2;:16;;;;34018:78;:116;;;;;34127:6;34113:21;;:2;:21;;;;34018:116;:142;;;;;34152:8;;;;;;;;;;;34151:9;34018:142;34000:564;;;34190:13;;;;;;;;;;;34186:140;;34231:19;:25;34251:4;34231:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;34260:19;:23;34280:2;34260:23;;;;;;;;;;;;;;;;;;;;;;;;;34231:52;34223:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;34186:140;34371:25;:31;34397:4;34371:31;;;;;;;;;;;;;;;;;;;;;;;;;:74;;;;;34407:34;:38;34442:2;34407:38;;;;;;;;;;;;;;;;;;;;;;;;;34406:39;34371:74;34367:186;;;34504:9;;34487:13;34497:2;34487:9;:13::i;:::-;34478:6;:22;;;;:::i;:::-;:35;;34470:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34367:186;34000:564;34577:28;34608:24;34626:4;34608:9;:24::i;:::-;34577:55;;34646:12;34685:18;;34661:20;:42;;34646:57;;34735:7;:35;;;;;34759:11;;;;;;;;;;;34735:35;:61;;;;;34788:8;;;;;;;;;;;34787:9;34735:61;:110;;;;;34814:25;:31;34840:4;34814:31;;;;;;;;;;;;;;;;;;;;;;;;;34813:32;34735:110;:153;;;;;34863:19;:25;34883:4;34863:25;;;;;;;;;;;;;;;;;;;;;;;;;34862:26;34735:153;:194;;;;;34906:19;:23;34926:2;34906:23;;;;;;;;;;;;;;;;;;;;;;;;;34905:24;34735:194;34717:328;;;34967:4;34956:8;;:15;;;;;;;;;;;;;;;;;;34989:10;:8;:10::i;:::-;35028:5;35017:8;;:16;;;;;;;;;;;;;;;;;;34717:328;35058:12;35074:8;;;;;;;;;;;35073:9;35058:24;;35095:19;35118:25;:29;35144:2;35118:29;;;;;;;;;;;;;;;;;;;;;;;;;35117:30;:66;;;;;35152:25;:31;35178:4;35152:31;;;;;;;;;;;;;;;;;;;;;;;;;35151:32;35117:66;35095:88;;35282:19;:25;35302:4;35282:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;35311:19;:23;35331:2;35311:23;;;;;;;;;;;;;;;;;;;;;;;;;35282:52;:70;;;;35338:14;35282:70;35279:117;;;35379:5;35369:15;;35279:117;35409:12;35513:7;35510:677;;;35542:25;:31;35568:4;35542:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;35592:1;35577:12;;:16;35542:51;35538:494;;;35611:33;35640:3;35611:24;35622:12;;35611:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;35604:40;;35698:12;;35680:15;;35673:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;35651:18;;:59;;;;;;;:::i;:::-;;;;;;;;35752:12;;35740:9;;35733:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;35717:12;;:47;;;;;;;:::i;:::-;;;;;;;;35538:494;;;35796:25;:29;35822:2;35796:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;35845:1;35829:13;;:17;35796:50;35793:239;;;35866:34;35896:3;35866:25;35877:13;;35866:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;35859:41;;35955:13;;35936:16;;35929:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;35907:18;;:61;;;;;;;:::i;:::-;;;;;;;;36011:13;;35998:10;;35991:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;35975:12;;:49;;;;;;;:::i;:::-;;;;;;;;35793:239;35538:494;36061:1;36054:4;:8;36051:93;;;36086:42;36102:4;36116;36123;36086:15;:42::i;:::-;36051:93;36171:4;36161:14;;;;;:::i;:::-;;;35510:677;36200:33;36216:4;36222:2;36226:6;36200:15;:33::i;:::-;33730:2511;;;;;33617:2624;;;;:::o;16690:193::-;16776:7;16809:1;16804;:6;;16812:12;16796:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;16836:9;16852:1;16848;:5;;;;:::i;:::-;16836:17;;16874:1;16867:8;;;16690:193;;;;;:::o;12721:575::-;12879:1;12861:20;;:6;:20;;;;12853:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12963:1;12942:23;;:9;:23;;;;12934:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13019:47;13040:6;13048:9;13059:6;13019:20;:47::i;:::-;13100:71;13122:6;13100:71;;;;;;;;;;;;;;;;;:9;:17;13110:6;13100:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13080:9;:17;13090:6;13080:17;;;;;;;;;;;;;;;:91;;;;13205:32;13230:6;13205:9;:20;13215:9;13205:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13182:9;:20;13192:9;13182:20;;;;;;;;;;;;;;;:55;;;;13270:9;13253:35;;13262:6;13253:35;;;13281:6;13253:35;;;;;;:::i;:::-;;;;;;;;12721:575;;;:::o;37396:1338::-;37435:23;37461:24;37479:4;37461:9;:24::i;:::-;37435:50;;37496:25;37545:12;;37524:18;;:33;;;;:::i;:::-;37496:61;;37568:12;37616:1;37597:15;:20;:46;;;;37642:1;37621:17;:22;37597:46;37594:60;;;37646:7;;;;;37594:60;37709:2;37688:18;;:23;;;;:::i;:::-;37670:15;:41;37667:111;;;37764:2;37743:18;;:23;;;;:::i;:::-;37725:41;;37667:111;37839:23;37924:1;37904:17;37883:18;;37865:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;37839:86;;37936:26;37965:36;37985:15;37965;:19;;:36;;;;:::i;:::-;37936:65;;38015:25;38043:21;38015:49;;38078:36;38095:18;38078:16;:36::i;:::-;38129:18;38150:44;38176:17;38150:21;:25;;:44;;;;:::i;:::-;38129:65;;38208:17;38228:67;38279:15;38261:17;:33;;;;:::i;:::-;38228:28;38243:12;;38228:10;:14;;:28;;;;:::i;:::-;:32;;:67;;;;:::i;:::-;38208:87;;38306:23;38345:9;38332:10;:22;;;;:::i;:::-;38306:48;;38391:1;38370:18;:22;;;;38418:1;38403:12;:16;;;;38456:1;38438:15;:19;:42;;;;;38479:1;38461:15;:19;38438:42;38435:210;;;38496:46;38509:15;38526;38496:12;:46::i;:::-;38562:71;38577:18;38597:15;38614:18;;38562:71;;;;;;;;:::i;:::-;;;;;;;;38435:210;38674:15;;;;;;;;;;;38666:29;;38703:21;38666:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38653:76;;;;;37424:1310;;;;;;;;;37396:1338;:::o;17143:473::-;17201:7;17451:1;17446;:6;17442:47;;;17476:1;17469:8;;;;17442:47;17502:9;17518:1;17514;:5;;;;:::i;:::-;17502:17;;17547:1;17542;17538;:5;;;;:::i;:::-;:10;17530:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;17607:1;17600:8;;;17143:473;;;;;:::o;18093:132::-;18151:7;18178:39;18182:1;18185;18178:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18171:46;;18093:132;;;;:::o;15388:125::-;;;;:::o;16250:136::-;16308:7;16335:43;16339:1;16342;16335:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;16328:50;;16250:136;;;;:::o;36250:597::-;36379:21;36417:1;36403:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36379:40;;36448:4;36430;36435:1;36430:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;36474:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36464:4;36469:1;36464:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;36510:62;36527:4;36542:15;36560:11;36510:8;:62::i;:::-;36612:15;:66;;;36693:11;36719:1;36763:4;36790;36810:15;36612:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36305:542;36250:597;:::o;36856:531::-;37004:62;37021:4;37036:15;37054:11;37004:8;:62::i;:::-;37110:15;:31;;;37149:9;37182:4;37202:11;37228:1;37271;37322:15;;;;;;;;;;;37353;37110:269;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;36856:531;;:::o;18722:279::-;18808:7;18840:1;18836;:5;18843:12;18828:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;18867:9;18883:1;18879;:5;;;;:::i;:::-;18867:17;;18992:1;18985:8;;;18722:279;;;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:99::-;494:6;528:5;522:12;512:22;;442:99;;;:::o;547:169::-;631:11;665:6;660:3;653:19;705:4;700:3;696:14;681:29;;547:169;;;;:::o;722:307::-;790:1;800:113;814:6;811:1;808:13;800:113;;;899:1;894:3;890:11;884:18;880:1;875:3;871:11;864:39;836:2;833:1;829:10;824:15;;800:113;;;931:6;928:1;925:13;922:101;;;1011:1;1002:6;997:3;993:16;986:27;922:101;771:258;722:307;;;:::o;1035:102::-;1076:6;1127:2;1123:7;1118:2;1111:5;1107:14;1103:28;1093:38;;1035:102;;;:::o;1143:364::-;1231:3;1259:39;1292:5;1259:39;:::i;:::-;1314:71;1378:6;1373:3;1314:71;:::i;:::-;1307:78;;1394:52;1439:6;1434:3;1427:4;1420:5;1416:16;1394:52;:::i;:::-;1471:29;1493:6;1471:29;:::i;:::-;1466:3;1462:39;1455:46;;1235:272;1143:364;;;;:::o;1513:313::-;1626:4;1664:2;1653:9;1649:18;1641:26;;1713:9;1707:4;1703:20;1699:1;1688:9;1684:17;1677:47;1741:78;1814:4;1805:6;1741:78;:::i;:::-;1733:86;;1513:313;;;;:::o;1913:117::-;2022:1;2019;2012:12;2159:126;2196:7;2236:42;2229:5;2225:54;2214:65;;2159:126;;;:::o;2291:96::-;2328:7;2357:24;2375:5;2357:24;:::i;:::-;2346:35;;2291:96;;;:::o;2393:122::-;2466:24;2484:5;2466:24;:::i;:::-;2459:5;2456:35;2446:63;;2505:1;2502;2495:12;2446:63;2393:122;:::o;2521:139::-;2567:5;2605:6;2592:20;2583:29;;2621:33;2648:5;2621:33;:::i;:::-;2521:139;;;;:::o;2666:329::-;2725:6;2774:2;2762:9;2753:7;2749:23;2745:32;2742:119;;;2780:79;;:::i;:::-;2742:119;2900:1;2925:53;2970:7;2961:6;2950:9;2946:22;2925:53;:::i;:::-;2915:63;;2871:117;2666:329;;;;:::o;3001:90::-;3035:7;3078:5;3071:13;3064:21;3053:32;;3001:90;;;:::o;3097:109::-;3178:21;3193:5;3178:21;:::i;:::-;3173:3;3166:34;3097:109;;:::o;3212:210::-;3299:4;3337:2;3326:9;3322:18;3314:26;;3350:65;3412:1;3401:9;3397:17;3388:6;3350:65;:::i;:::-;3212:210;;;;:::o;3428:122::-;3501:24;3519:5;3501:24;:::i;:::-;3494:5;3491:35;3481:63;;3540:1;3537;3530:12;3481:63;3428:122;:::o;3556:139::-;3602:5;3640:6;3627:20;3618:29;;3656:33;3683:5;3656:33;:::i;:::-;3556:139;;;;:::o;3701:474::-;3769:6;3777;3826:2;3814:9;3805:7;3801:23;3797:32;3794:119;;;3832:79;;:::i;:::-;3794:119;3952:1;3977:53;4022:7;4013:6;4002:9;3998:22;3977:53;:::i;:::-;3967:63;;3923:117;4079:2;4105:53;4150:7;4141:6;4130:9;4126:22;4105:53;:::i;:::-;4095:63;;4050:118;3701:474;;;;;:::o;4181:60::-;4209:3;4230:5;4223:12;;4181:60;;;:::o;4247:142::-;4297:9;4330:53;4348:34;4357:24;4375:5;4357:24;:::i;:::-;4348:34;:::i;:::-;4330:53;:::i;:::-;4317:66;;4247:142;;;:::o;4395:126::-;4445:9;4478:37;4509:5;4478:37;:::i;:::-;4465:50;;4395:126;;;:::o;4527:153::-;4604:9;4637:37;4668:5;4637:37;:::i;:::-;4624:50;;4527:153;;;:::o;4686:185::-;4800:64;4858:5;4800:64;:::i;:::-;4795:3;4788:77;4686:185;;:::o;4877:276::-;4997:4;5035:2;5024:9;5020:18;5012:26;;5048:98;5143:1;5132:9;5128:17;5119:6;5048:98;:::i;:::-;4877:276;;;;:::o;5159:619::-;5236:6;5244;5252;5301:2;5289:9;5280:7;5276:23;5272:32;5269:119;;;5307:79;;:::i;:::-;5269:119;5427:1;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5398:117;5554:2;5580:53;5625:7;5616:6;5605:9;5601:22;5580:53;:::i;:::-;5570:63;;5525:118;5682:2;5708:53;5753:7;5744:6;5733:9;5729:22;5708:53;:::i;:::-;5698:63;;5653:118;5159:619;;;;;:::o;5784:86::-;5819:7;5859:4;5852:5;5848:16;5837:27;;5784:86;;;:::o;5876:112::-;5959:22;5975:5;5959:22;:::i;:::-;5954:3;5947:35;5876:112;;:::o;5994:214::-;6083:4;6121:2;6110:9;6106:18;6098:26;;6134:67;6198:1;6187:9;6183:17;6174:6;6134:67;:::i;:::-;5994:214;;;;:::o;6214:118::-;6301:24;6319:5;6301:24;:::i;:::-;6296:3;6289:37;6214:118;;:::o;6338:222::-;6431:4;6469:2;6458:9;6454:18;6446:26;;6482:71;6550:1;6539:9;6535:17;6526:6;6482:71;:::i;:::-;6338:222;;;;:::o;6566:474::-;6634:6;6642;6691:2;6679:9;6670:7;6666:23;6662:32;6659:119;;;6697:79;;:::i;:::-;6659:119;6817:1;6842:53;6887:7;6878:6;6867:9;6863:22;6842:53;:::i;:::-;6832:63;;6788:117;6944:2;6970:53;7015:7;7006:6;6995:9;6991:22;6970:53;:::i;:::-;6960:63;;6915:118;6566:474;;;;;:::o;7046:180::-;7094:77;7091:1;7084:88;7191:4;7188:1;7181:15;7215:4;7212:1;7205:15;7232:320;7276:6;7313:1;7307:4;7303:12;7293:22;;7360:1;7354:4;7350:12;7381:18;7371:81;;7437:4;7429:6;7425:17;7415:27;;7371:81;7499:2;7491:6;7488:14;7468:18;7465:38;7462:84;;;7518:18;;:::i;:::-;7462:84;7283:269;7232:320;;;:::o;7558:182::-;7698:34;7694:1;7686:6;7682:14;7675:58;7558:182;:::o;7746:366::-;7888:3;7909:67;7973:2;7968:3;7909:67;:::i;:::-;7902:74;;7985:93;8074:3;7985:93;:::i;:::-;8103:2;8098:3;8094:12;8087:19;;7746:366;;;:::o;8118:419::-;8284:4;8322:2;8311:9;8307:18;8299:26;;8371:9;8365:4;8361:20;8357:1;8346:9;8342:17;8335:47;8399:131;8525:4;8399:131;:::i;:::-;8391:139;;8118:419;;;:::o;8543:225::-;8683:34;8679:1;8671:6;8667:14;8660:58;8752:8;8747:2;8739:6;8735:15;8728:33;8543:225;:::o;8774:366::-;8916:3;8937:67;9001:2;8996:3;8937:67;:::i;:::-;8930:74;;9013:93;9102:3;9013:93;:::i;:::-;9131:2;9126:3;9122:12;9115:19;;8774:366;;;:::o;9146:419::-;9312:4;9350:2;9339:9;9335:18;9327:26;;9399:9;9393:4;9389:20;9385:1;9374:9;9370:17;9363:47;9427:131;9553:4;9427:131;:::i;:::-;9419:139;;9146:419;;;:::o;9571:180::-;9619:77;9616:1;9609:88;9716:4;9713:1;9706:15;9740:4;9737:1;9730:15;9757:305;9797:3;9816:20;9834:1;9816:20;:::i;:::-;9811:25;;9850:20;9868:1;9850:20;:::i;:::-;9845:25;;10004:1;9936:66;9932:74;9929:1;9926:81;9923:107;;;10010:18;;:::i;:::-;9923:107;10054:1;10051;10047:9;10040:16;;9757:305;;;;:::o;10068:177::-;10208:29;10204:1;10196:6;10192:14;10185:53;10068:177;:::o;10251:366::-;10393:3;10414:67;10478:2;10473:3;10414:67;:::i;:::-;10407:74;;10490:93;10579:3;10490:93;:::i;:::-;10608:2;10603:3;10599:12;10592:19;;10251:366;;;:::o;10623:419::-;10789:4;10827:2;10816:9;10812:18;10804:26;;10876:9;10870:4;10866:20;10862:1;10851:9;10847:17;10840:47;10904:131;11030:4;10904:131;:::i;:::-;10896:139;;10623:419;;;:::o;11048:223::-;11188:34;11184:1;11176:6;11172:14;11165:58;11257:6;11252:2;11244:6;11240:15;11233:31;11048:223;:::o;11277:366::-;11419:3;11440:67;11504:2;11499:3;11440:67;:::i;:::-;11433:74;;11516:93;11605:3;11516:93;:::i;:::-;11634:2;11629:3;11625:12;11618:19;;11277:366;;;:::o;11649:419::-;11815:4;11853:2;11842:9;11838:18;11830:26;;11902:9;11896:4;11892:20;11888:1;11877:9;11873:17;11866:47;11930:131;12056:4;11930:131;:::i;:::-;11922:139;;11649:419;;;:::o;12074:221::-;12214:34;12210:1;12202:6;12198:14;12191:58;12283:4;12278:2;12270:6;12266:15;12259:29;12074:221;:::o;12301:366::-;12443:3;12464:67;12528:2;12523:3;12464:67;:::i;:::-;12457:74;;12540:93;12629:3;12540:93;:::i;:::-;12658:2;12653:3;12649:12;12642:19;;12301:366;;;:::o;12673:419::-;12839:4;12877:2;12866:9;12862:18;12854:26;;12926:9;12920:4;12916:20;12912:1;12901:9;12897:17;12890:47;12954:131;13080:4;12954:131;:::i;:::-;12946:139;;12673:419;;;:::o;13098:224::-;13238:34;13234:1;13226:6;13222:14;13215:58;13307:7;13302:2;13294:6;13290:15;13283:32;13098:224;:::o;13328:366::-;13470:3;13491:67;13555:2;13550:3;13491:67;:::i;:::-;13484:74;;13567:93;13656:3;13567:93;:::i;:::-;13685:2;13680:3;13676:12;13669:19;;13328:366;;;:::o;13700:419::-;13866:4;13904:2;13893:9;13889:18;13881:26;;13953:9;13947:4;13943:20;13939:1;13928:9;13924:17;13917:47;13981:131;14107:4;13981:131;:::i;:::-;13973:139;;13700:419;;;:::o;14125:222::-;14265:34;14261:1;14253:6;14249:14;14242:58;14334:5;14329:2;14321:6;14317:15;14310:30;14125:222;:::o;14353:366::-;14495:3;14516:67;14580:2;14575:3;14516:67;:::i;:::-;14509:74;;14592:93;14681:3;14592:93;:::i;:::-;14710:2;14705:3;14701:12;14694:19;;14353:366;;;:::o;14725:419::-;14891:4;14929:2;14918:9;14914:18;14906:26;;14978:9;14972:4;14968:20;14964:1;14953:9;14949:17;14942:47;15006:131;15132:4;15006:131;:::i;:::-;14998:139;;14725:419;;;:::o;15150:172::-;15290:24;15286:1;15278:6;15274:14;15267:48;15150:172;:::o;15328:366::-;15470:3;15491:67;15555:2;15550:3;15491:67;:::i;:::-;15484:74;;15567:93;15656:3;15567:93;:::i;:::-;15685:2;15680:3;15676:12;15669:19;;15328:366;;;:::o;15700:419::-;15866:4;15904:2;15893:9;15889:18;15881:26;;15953:9;15947:4;15943:20;15939:1;15928:9;15924:17;15917:47;15981:131;16107:4;15981:131;:::i;:::-;15973:139;;15700:419;;;:::o;16125:169::-;16265:21;16261:1;16253:6;16249:14;16242:45;16125:169;:::o;16300:366::-;16442:3;16463:67;16527:2;16522:3;16463:67;:::i;:::-;16456:74;;16539:93;16628:3;16539:93;:::i;:::-;16657:2;16652:3;16648:12;16641:19;;16300:366;;;:::o;16672:419::-;16838:4;16876:2;16865:9;16861:18;16853:26;;16925:9;16919:4;16915:20;16911:1;16900:9;16896:17;16889:47;16953:131;17079:4;16953:131;:::i;:::-;16945:139;;16672:419;;;:::o;17097:348::-;17137:7;17160:20;17178:1;17160:20;:::i;:::-;17155:25;;17194:20;17212:1;17194:20;:::i;:::-;17189:25;;17382:1;17314:66;17310:74;17307:1;17304:81;17299:1;17292:9;17285:17;17281:105;17278:131;;;17389:18;;:::i;:::-;17278:131;17437:1;17434;17430:9;17419:20;;17097:348;;;;:::o;17451:180::-;17499:77;17496:1;17489:88;17596:4;17593:1;17586:15;17620:4;17617:1;17610:15;17637:185;17677:1;17694:20;17712:1;17694:20;:::i;:::-;17689:25;;17728:20;17746:1;17728:20;:::i;:::-;17723:25;;17767:1;17757:35;;17772:18;;:::i;:::-;17757:35;17814:1;17811;17807:9;17802:14;;17637:185;;;;:::o;17828:191::-;17868:4;17888:20;17906:1;17888:20;:::i;:::-;17883:25;;17922:20;17940:1;17922:20;:::i;:::-;17917:25;;17961:1;17958;17955:8;17952:34;;;17966:18;;:::i;:::-;17952:34;18011:1;18008;18004:9;17996:17;;17828:191;;;;:::o;18025:442::-;18174:4;18212:2;18201:9;18197:18;18189:26;;18225:71;18293:1;18282:9;18278:17;18269:6;18225:71;:::i;:::-;18306:72;18374:2;18363:9;18359:18;18350:6;18306:72;:::i;:::-;18388;18456:2;18445:9;18441:18;18432:6;18388:72;:::i;:::-;18025:442;;;;;;:::o;18473:147::-;18574:11;18611:3;18596:18;;18473:147;;;;:::o;18626:114::-;;:::o;18746:398::-;18905:3;18926:83;19007:1;19002:3;18926:83;:::i;:::-;18919:90;;19018:93;19107:3;19018:93;:::i;:::-;19136:1;19131:3;19127:11;19120:18;;18746:398;;;:::o;19150:379::-;19334:3;19356:147;19499:3;19356:147;:::i;:::-;19349:154;;19520:3;19513:10;;19150:379;;;:::o;19535:220::-;19675:34;19671:1;19663:6;19659:14;19652:58;19744:3;19739:2;19731:6;19727:15;19720:28;19535:220;:::o;19761:366::-;19903:3;19924:67;19988:2;19983:3;19924:67;:::i;:::-;19917:74;;20000:93;20089:3;20000:93;:::i;:::-;20118:2;20113:3;20109:12;20102:19;;19761:366;;;:::o;20133:419::-;20299:4;20337:2;20326:9;20322:18;20314:26;;20386:9;20380:4;20376:20;20372:1;20361:9;20357:17;20350:47;20414:131;20540:4;20414:131;:::i;:::-;20406:139;;20133:419;;;:::o;20558:180::-;20606:77;20603:1;20596:88;20703:4;20700:1;20693:15;20727:4;20724:1;20717:15;20744:180;20792:77;20789:1;20782:88;20889:4;20886:1;20879:15;20913:4;20910:1;20903:15;20930:143;20987:5;21018:6;21012:13;21003:22;;21034:33;21061:5;21034:33;:::i;:::-;20930:143;;;;:::o;21079:351::-;21149:6;21198:2;21186:9;21177:7;21173:23;21169:32;21166:119;;;21204:79;;:::i;:::-;21166:119;21324:1;21349:64;21405:7;21396:6;21385:9;21381:22;21349:64;:::i;:::-;21339:74;;21295:128;21079:351;;;;:::o;21436:85::-;21481:7;21510:5;21499:16;;21436:85;;;:::o;21527:158::-;21585:9;21618:61;21636:42;21645:32;21671:5;21645:32;:::i;:::-;21636:42;:::i;:::-;21618:61;:::i;:::-;21605:74;;21527:158;;;:::o;21691:147::-;21786:45;21825:5;21786:45;:::i;:::-;21781:3;21774:58;21691:147;;:::o;21844:114::-;21911:6;21945:5;21939:12;21929:22;;21844:114;;;:::o;21964:184::-;22063:11;22097:6;22092:3;22085:19;22137:4;22132:3;22128:14;22113:29;;21964:184;;;;:::o;22154:132::-;22221:4;22244:3;22236:11;;22274:4;22269:3;22265:14;22257:22;;22154:132;;;:::o;22292:108::-;22369:24;22387:5;22369:24;:::i;:::-;22364:3;22357:37;22292:108;;:::o;22406:179::-;22475:10;22496:46;22538:3;22530:6;22496:46;:::i;:::-;22574:4;22569:3;22565:14;22551:28;;22406:179;;;;:::o;22591:113::-;22661:4;22693;22688:3;22684:14;22676:22;;22591:113;;;:::o;22740:732::-;22859:3;22888:54;22936:5;22888:54;:::i;:::-;22958:86;23037:6;23032:3;22958:86;:::i;:::-;22951:93;;23068:56;23118:5;23068:56;:::i;:::-;23147:7;23178:1;23163:284;23188:6;23185:1;23182:13;23163:284;;;23264:6;23258:13;23291:63;23350:3;23335:13;23291:63;:::i;:::-;23284:70;;23377:60;23430:6;23377:60;:::i;:::-;23367:70;;23223:224;23210:1;23207;23203:9;23198:14;;23163:284;;;23167:14;23463:3;23456:10;;22864:608;;;22740:732;;;;:::o;23478:831::-;23741:4;23779:3;23768:9;23764:19;23756:27;;23793:71;23861:1;23850:9;23846:17;23837:6;23793:71;:::i;:::-;23874:80;23950:2;23939:9;23935:18;23926:6;23874:80;:::i;:::-;24001:9;23995:4;23991:20;23986:2;23975:9;23971:18;23964:48;24029:108;24132:4;24123:6;24029:108;:::i;:::-;24021:116;;24147:72;24215:2;24204:9;24200:18;24191:6;24147:72;:::i;:::-;24229:73;24297:3;24286:9;24282:19;24273:6;24229:73;:::i;:::-;23478:831;;;;;;;;:::o;24315:807::-;24564:4;24602:3;24591:9;24587:19;24579:27;;24616:71;24684:1;24673:9;24669:17;24660:6;24616:71;:::i;:::-;24697:72;24765:2;24754:9;24750:18;24741:6;24697:72;:::i;:::-;24779:80;24855:2;24844:9;24840:18;24831:6;24779:80;:::i;:::-;24869;24945:2;24934:9;24930:18;24921:6;24869:80;:::i;:::-;24959:73;25027:3;25016:9;25012:19;25003:6;24959:73;:::i;:::-;25042;25110:3;25099:9;25095:19;25086:6;25042:73;:::i;:::-;24315:807;;;;;;;;;:::o;25128:143::-;25185:5;25216:6;25210:13;25201:22;;25232:33;25259:5;25232:33;:::i;:::-;25128:143;;;;:::o;25277:663::-;25365:6;25373;25381;25430:2;25418:9;25409:7;25405:23;25401:32;25398:119;;;25436:79;;:::i;:::-;25398:119;25556:1;25581:64;25637:7;25628:6;25617:9;25613:22;25581:64;:::i;:::-;25571:74;;25527:128;25694:2;25720:64;25776:7;25767:6;25756:9;25752:22;25720:64;:::i;:::-;25710:74;;25665:129;25833:2;25859:64;25915:7;25906:6;25895:9;25891:22;25859:64;:::i;:::-;25849:74;;25804:129;25277:663;;;;;:::o
Swarm Source
ipfs://b53a2a159b568865d4fa8a99c6197927ed21209dc0fb866c92277d68adcc578e
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.