Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Gaming
Overview
Max Total Supply
1,000,000,000 HRI
Holders
144 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
8,772,156.33718767551198925 HRIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HeroInfinityToken
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-21 */ // Sources flattened with hardhat v2.9.1 https://hardhat.org // File @openzeppelin/contracts/utils/math/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, 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); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, _allowances[owner][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File contracts/interfaces/IUniswapV2Pair.sol 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; } // File contracts/interfaces/IUniswapV2Factory.sol 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; } // File contracts/interfaces/IUniswapV2Router02.sol 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; } // File contracts/HRI.sol contract HeroInfinityToken is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; bool private swapping; uint256 public launchTime; address public marketingWallet; address public devWallet; address public liquidityWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; bool private gasLimitActive = true; uint256 private gasPriceLimit = 561 * 1 gwei; // do not allow over x gwei for launch // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch mapping(address => uint256) presaleAmount; // Presale vesting uint256 airdropThreshold; bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event MarketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event DevWalletUpdated(address indexed newWallet, address indexed oldWallet); event LiquidityWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event OwnerForcedSwapBack(uint256 timestamp); constructor() ERC20("HeroInfinity Token", "HRI") {} function airdropAndLaunch( address newOwner, address router, uint256 liquidityAmount, uint256 airdropAmount, uint256 dailyThreshold, address[] memory airdropUsers, uint256[] memory airdropAmounts ) external payable onlyOwner { require(!tradingActive, "Trading is already enabled"); require(airdropUsers.length == airdropAmounts.length, "Invalid arguments"); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair( address(this), _uniswapV2Router.WETH() ); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 6; uint256 _buyLiquidityFee = 4; uint256 _buyDevFee = 2; uint256 _sellMarketingFee = 8; uint256 _sellLiquidityFee = 14; uint256 _sellDevFee = 3; uint256 _totalSupply = 1 * 1e9 * 1e18; require(dailyThreshold * 1e18 > (_totalSupply * 5) / 10000); // at least 0.05% release to presalers per day airdropThreshold = dailyThreshold; maxTransactionAmount = (_totalSupply * 30) / 10000; // 0.3% maxTransactionAmountTxn maxWallet = (_totalSupply * 100) / 10000; // 1% maxWallet swapTokensAtAmount = (_totalSupply * 5) / 10000; // 0.05% swap wallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = newOwner; devWallet = newOwner; liquidityWallet = newOwner; // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(newOwner, true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(newOwner, true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); _mint(address(this), liquidityAmount * 1e18); _mint(newOwner, _totalSupply - liquidityAmount * 1e18); // Add liquidity addLiquidity(liquidityAmount * 1e18, msg.value); uint256 totalAirdrops; //For airdrop, exclude temporary excludeFromFees(address(uniswapV2Pair), true); limitsInEffect = false; for (uint256 i; i < airdropUsers.length; ++i) { uint256 amount = airdropAmounts[i] * 1e18; address to = airdropUsers[i]; require(presaleAmount[to] == 0, "airdrop duplicated"); totalAirdrops += amount; _transfer(uniswapV2Pair, to, amount); presaleAmount[to] = amount; } excludeFromFees(address(uniswapV2Pair), false); limitsInEffect = true; require(totalAirdrops == airdropAmount * 1e18, "Wrong airdrop amount"); IUniswapV2Pair pairInstance = IUniswapV2Pair(uniswapV2Pair); pairInstance.sync(); enableTrading(); } function name() public view virtual override returns (string memory) { require(tradingActive); return super.name(); } function symbol() public view virtual override returns (string memory) { require(tradingActive); return super.symbol(); } function decimals() public view virtual override returns (uint8) { return super.decimals(); } function totalSupply() public view virtual override returns (uint256) { return super.totalSupply(); } receive() external payable {} // once enabled, can never be turned off function enableTrading() private { require(!tradingActive, "Trading is already enabled"); tradingActive = true; swapEnabled = true; launchTime = block.timestamp; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; gasLimitActive = false; transferDelayEnabled = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.5%" ); maxTransactionAmount = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 25, "Cannot set buy fee more than 25%"); } function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 25, "Cannot set sell fee more than 25%"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit MarketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateDevWallet(address newDevWallet) external onlyOwner { emit DevWalletUpdated(newDevWallet, devWallet); devWallet = newDevWallet; } function updateliquidityWallet(address newWallet) external onlyOwner { emit LiquidityWalletUpdated(newWallet, liquidityWallet); liquidityWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function checkVesting(address from) private { if (presaleAmount[from] == 0) { return; } uint256 daysPassed = (block.timestamp - launchTime) / 1 days; uint256 unlockedAmount = daysPassed * airdropThreshold * 1e18; if (unlockedAmount > presaleAmount[from]) { presaleAmount[from] = 0; return; } require( balanceOf(from) >= presaleAmount[from] - unlockedAmount, "Vesting period is not ended yet" ); } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); checkVesting(from); } 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 liquidityWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } // Halve 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 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (bool success, ) = address(marketingWallet).call{ value: ethForMarketing }( "" ); (success, ) = address(devWallet).call{ value: ethForDev }(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } if (address(this).balance >= 1 ether) { (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } } // force Swap back if slippage above 49% for launch. fix router clog function forceSwapBack() external onlyOwner { uint256 contractBalance = balanceOf(address(this)); require( contractBalance >= totalSupply() / 100, "Can only swap back if more than 1% of tokens stuck on contract" ); swapBack(); emit OwnerForcedSwapBack(block.timestamp); } function withdrawDustToken(address _token, address _to) external onlyOwner returns (bool _sent) { uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); _sent = IERC20(_token).transfer(_to, _contractBalance); } function withdrawDustETH(address _recipient) external onlyOwner { uint256 contractETHBalance = address(this).balance; (bool success, ) = _recipient.call{ value: contractETHBalance }(""); require( success, "Address: unable to send value, recipient may have reverted" ); } }
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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"DevWalletUpdated","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"LiquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"OwnerForcedSwapBack","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":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"},{"internalType":"address","name":"router","type":"address"},{"internalType":"uint256","name":"liquidityAmount","type":"uint256"},{"internalType":"uint256","name":"airdropAmount","type":"uint256"},{"internalType":"uint256","name":"dailyThreshold","type":"uint256"},{"internalType":"address[]","name":"airdropUsers","type":"address[]"},{"internalType":"uint256[]","name":"airdropAmounts","type":"uint256[]"}],"name":"airdropAndLaunch","outputs":[],"stateMutability":"payable","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":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSwapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateliquidityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"withdrawDustETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawDustToken","outputs":[{"internalType":"bool","name":"_sent","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600f805463ffffffff1916630100000117905564829e34aa006010556014805460ff191660011790553480156200003a57600080fd5b50604051806040016040528060128152602001712432b937a4b73334b734ba3c902a37b5b2b760711b8152506040518060400160405280600381526020016248524960e81b81525081600390805190602001906200009a92919062000129565b508051620000b090600490602084019062000129565b505050620000cd620000c7620000d360201b60201c565b620000d7565b6200020c565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013790620001cf565b90600052602060002090601f0160209004810192826200015b5760008555620001a6565b82601f106200017657805160ff1916838001178555620001a6565b82800160010185558215620001a6579182015b82811115620001a657825182559160200191906001019062000189565b50620001b4929150620001b8565b5090565b5b80821115620001b45760008155600101620001b9565b600181811c90821680620001e457607f821691505b602082108114156200020657634e487b7160e01b600052602260045260246000fd5b50919050565b613872806200021c6000396000f3fe6080604052600436106103855760003560e01c806392136913116101d1578063c17b5b8c11610102578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610a0e578063f4a2c16f14610a2e578063f637434214610a4e578063f8b45b0514610a6457600080fd5b8063e2f45605146109ad578063e393c294146109c3578063e884f260146109e3578063f11a24d3146109f857600080fd5b8063d257b34f116100dc578063d257b34f14610911578063d469801614610931578063d85ba06314610951578063dd62ed3e1461096757600080fd5b8063c17b5b8c146108c1578063c876d0b9146108e1578063c8c8ebe4146108fb57600080fd5b8063a0d82dc51161016f578063aacebbe311610149578063aacebbe314610832578063b62496f514610852578063bbc0c74214610882578063c0246668146108a157600080fd5b8063a0d82dc5146107dc578063a457c2d7146107f2578063a9059cbb1461081257600080fd5b806395d89b41116101ab57806395d89b411461077b5780639a7a23d6146107905780639c3b4fdc146107b05780639fccce32146107c657600080fd5b80639213691314610725578063924de9b71461073b57806392aa37731461075b57600080fd5b80634fbee193116102b6578063751039fc116102545780637bce5a04116102235780637bce5a04146106b15780638095d564146106c75780638da5cb5b146106e75780638ea5220f1461070557600080fd5b8063751039fc146106465780637571336a1461065b57806375f0a8741461067b578063790ca4131461069b57600080fd5b80636d5e9b40116102905780636d5e9b40146105de5780636ddd1713146105f157806370a0823114610611578063715018a61461063157600080fd5b80634fbee1931461057b57806351f205e4146105b35780636a486a8e146105c857600080fd5b80631a8145bb11610323578063313ce567116102fd578063313ce56714610505578063395093511461052157806349bd5a5e146105415780634a62bb651461056157600080fd5b80631a8145bb146104b95780631f3fed8f146104cf57806323b872dd146104e557600080fd5b806310d5de531161035f57806310d5de531461040e5780631694505e1461043e57806318160ddd146104765780631816467f1461049957600080fd5b806306fdde0314610391578063095ea7b3146103bc578063106b5da1146103ec57600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610a7a565b6040516103b391906131f4565b60405180910390f35b3480156103c857600080fd5b506103dc6103d736600461325e565b610a9e565b60405190151581526020016103b3565b3480156103f857600080fd5b5061040c61040736600461328a565b610ab6565b005b34801561041a57600080fd5b506103dc6104293660046132a3565b60216020526000908152604090205460ff1681565b34801561044a57600080fd5b5060065461045e906001600160a01b031681565b6040516001600160a01b0390911681526020016103b3565b34801561048257600080fd5b5061048b610b9b565b6040519081526020016103b3565b3480156104a557600080fd5b5061040c6104b43660046132a3565b610ba6565b3480156104c557600080fd5b5061048b601e5481565b3480156104db57600080fd5b5061048b601d5481565b3480156104f157600080fd5b506103dc6105003660046132c0565b610c2d565b34801561051157600080fd5b50604051601281526020016103b3565b34801561052d57600080fd5b506103dc61053c36600461325e565b610c51565b34801561054d57600080fd5b5060075461045e906001600160a01b031681565b34801561056d57600080fd5b50600f546103dc9060ff1681565b34801561058757600080fd5b506103dc6105963660046132a3565b6001600160a01b0316600090815260208052604090205460ff1690565b3480156105bf57600080fd5b5061040c610c90565b3480156105d457600080fd5b5061048b60195481565b61040c6105ec3660046133d7565b610d8e565b3480156105fd57600080fd5b50600f546103dc9062010000900460ff1681565b34801561061d57600080fd5b5061048b61062c3660046132a3565b611499565b34801561063d57600080fd5b5061040c6114b4565b34801561065257600080fd5b506103dc6114ea565b34801561066757600080fd5b5061040c6106763660046134eb565b611534565b34801561068757600080fd5b5060095461045e906001600160a01b031681565b3480156106a757600080fd5b5061048b60085481565b3480156106bd57600080fd5b5061048b60165481565b3480156106d357600080fd5b5061040c6106e2366004613524565b611589565b3480156106f357600080fd5b506005546001600160a01b031661045e565b34801561071157600080fd5b50600a5461045e906001600160a01b031681565b34801561073157600080fd5b5061048b601a5481565b34801561074757600080fd5b5061040c610756366004613550565b611631565b34801561076757600080fd5b5061040c6107763660046132a3565b611677565b34801561078757600080fd5b506103a66116fe565b34801561079c57600080fd5b5061040c6107ab3660046134eb565b61171d565b3480156107bc57600080fd5b5061048b60185481565b3480156107d257600080fd5b5061048b601f5481565b3480156107e857600080fd5b5061048b601c5481565b3480156107fe57600080fd5b506103dc61080d36600461325e565b6117d9565b34801561081e57600080fd5b506103dc61082d36600461325e565b61186b565b34801561083e57600080fd5b5061040c61084d3660046132a3565b611879565b34801561085e57600080fd5b506103dc61086d3660046132a3565b60226020526000908152604090205460ff1681565b34801561088e57600080fd5b50600f546103dc90610100900460ff1681565b3480156108ad57600080fd5b5061040c6108bc3660046134eb565b611900565b3480156108cd57600080fd5b5061040c6108dc366004613524565b611987565b3480156108ed57600080fd5b506014546103dc9060ff1681565b34801561090757600080fd5b5061048b600c5481565b34801561091d57600080fd5b506103dc61092c36600461328a565b611a32565b34801561093d57600080fd5b50600b5461045e906001600160a01b031681565b34801561095d57600080fd5b5061048b60155481565b34801561097357600080fd5b5061048b61098236600461356d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109b957600080fd5b5061048b600d5481565b3480156109cf57600080fd5b5061040c6109de3660046132a3565b611b82565b3480156109ef57600080fd5b506103dc611c75565b348015610a0457600080fd5b5061048b60175481565b348015610a1a57600080fd5b5061040c610a293660046132a3565b611cb2565b348015610a3a57600080fd5b506103dc610a4936600461356d565b611d4d565b348015610a5a57600080fd5b5061048b601b5481565b348015610a7057600080fd5b5061048b600e5481565b600f54606090610100900460ff16610a9157600080fd5b610a99611e82565b905090565b600033610aac818585611f14565b5060019392505050565b6005546001600160a01b03163314610ae95760405162461bcd60e51b8152600401610ae09061359b565b60405180910390fd5b670de0b6b3a76400006103e8610afd610b9b565b610b089060056135e6565b610b129190613605565b610b1c9190613605565b811015610b835760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610ae0565b610b9581670de0b6b3a76400006135e6565b600c5550565b6000610a9960025490565b6005546001600160a01b03163314610bd05760405162461bcd60e51b8152600401610ae09061359b565b600a546040516001600160a01b03918216918316907f0db17895a9d092fb3ca24d626f2150dd80c185b0706b36f1040ee239f56cb87190600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600033610c3b858285612038565b610c468585856120ca565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190610aac9082908690610c8b908790613627565b611f14565b6005546001600160a01b03163314610cba5760405162461bcd60e51b8152600401610ae09061359b565b6000610cc530611499565b90506064610cd1610b9b565b610cdb9190613605565b811015610d505760405162461bcd60e51b815260206004820152603e60248201527f43616e206f6e6c792073776170206261636b206966206d6f7265207468616e2060448201527f3125206f6620746f6b656e7320737475636b206f6e20636f6e747261637400006064820152608401610ae0565b610d586128b2565b6040514281527f1b56c383f4f48fc992e45667ea4eabae777b9cca68b516a9562d8cda78f1bb329060200160405180910390a150565b6005546001600160a01b03163314610db85760405162461bcd60e51b8152600401610ae09061359b565b600f54610100900460ff1615610e105760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610ae0565b8051825114610e555760405162461bcd60e51b8152602060048201526011602482015270496e76616c696420617267756d656e747360781b6044820152606401610ae0565b85610e61816001611534565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b158015610eb557600080fd5b505afa158015610ec9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eed919061363f565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610f3557600080fd5b505afa158015610f49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6d919061363f565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015610fb557600080fd5b505af1158015610fc9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fed919061363f565b600780546001600160a01b0319166001600160a01b03929092169182179055611017906001611534565b60075461102e906001600160a01b03166001612b2a565b6006600460026008600e60036b033b2e3c9fd0803ce80000006127106110558260056135e6565b61105f9190613605565b6110718c670de0b6b3a76400006135e6565b1161107b57600080fd5b60138b905561271061108e82601e6135e6565b6110989190613605565b600c556127106110a98260646135e6565b6110b39190613605565b600e556127106110c48260056135e6565b6110ce9190613605565b600d55601687905560178690556018859055846110eb8789613627565b6110f59190613627565b601555601a849055601b839055601c829055816111128486613627565b61111c9190613627565b6019819055508e600960006101000a8154816001600160a01b0302191690836001600160a01b031602179055508e600a60006101000a8154816001600160a01b0302191690836001600160a01b031602179055508e600b60006101000a8154816001600160a01b0302191690836001600160a01b031602179055506111b36111ac6005546001600160a01b031690565b6001611900565b6111be8f6001611900565b6111c9306001611900565b6111d661dead6001611900565b6111f26111eb6005546001600160a01b031690565b6001611534565b6111fd8f6001611534565b611208306001611534565b61121561dead6001611534565b6112303061122b8f670de0b6b3a76400006135e6565b612b7e565b6112508f6112468f670de0b6b3a76400006135e6565b61122b908461365c565b61126b6112658e670de0b6b3a76400006135e6565b34612c5d565b600754600090611285906001600160a01b03166001611900565b600f805460ff1916905560005b8b518110156113a05760008b82815181106112af576112af613673565b6020026020010151670de0b6b3a76400006112ca91906135e6565b905060008d83815181106112e0576112e0613673565b6020026020010151905060126000826001600160a01b03166001600160a01b03168152602001908152602001600020546000146113545760405162461bcd60e51b8152602060048201526012602482015271185a5c991c9bdc08191d5c1b1a58d85d195960721b6044820152606401610ae0565b61135e8285613627565b600754909450611378906001600160a01b031682846120ca565b6001600160a01b031660009081526012602052604090205561139981613689565b9050611292565b506007546113b8906001600160a01b03166000611900565b600f805460ff191660011790556113d78d670de0b6b3a76400006135e6565b811461141c5760405162461bcd60e51b815260206004820152601460248201527315dc9bdb99c8185a5c991c9bdc08185b5bdd5b9d60621b6044820152606401610ae0565b6007546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561146657600080fd5b505af115801561147a573d6000803e3d6000fd5b50505050611486612d20565b5050505050505050505050505050505050565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b031633146114de5760405162461bcd60e51b8152600401610ae09061359b565b6114e86000612d8f565b565b6005546000906001600160a01b031633146115175760405162461bcd60e51b8152600401610ae09061359b565b50600f805463ff0000ff191690556014805460ff19169055600190565b6005546001600160a01b0316331461155e5760405162461bcd60e51b8152600401610ae09061359b565b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146115b35760405162461bcd60e51b8152600401610ae09061359b565b601683905560178290556018819055806115cd8385613627565b6115d79190613627565b60158190556019101561162c5760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f74207365742062757920666565206d6f7265207468616e203235256044820152606401610ae0565b505050565b6005546001600160a01b0316331461165b5760405162461bcd60e51b8152600401610ae09061359b565b600f8054911515620100000262ff000019909216919091179055565b6005546001600160a01b031633146116a15760405162461bcd60e51b8152600401610ae09061359b565b600b546040516001600160a01b03918216918316907f6080503d1da552ae8eb4b7b8a20245d9fabed014180510e7d1a05ea08fdb0f3e90600090a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600f54606090610100900460ff1661171557600080fd5b610a99612de1565b6005546001600160a01b031633146117475760405162461bcd60e51b8152600401610ae09061359b565b6007546001600160a01b03838116911614156117cb5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610ae0565b6117d58282612b2a565b5050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561185e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610ae0565b610c468286868403611f14565b600033610aac8185856120ca565b6005546001600160a01b031633146118a35760405162461bcd60e51b8152600401610ae09061359b565b6009546040516001600160a01b03918216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461192a5760405162461bcd60e51b8152600401610ae09061359b565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146119b15760405162461bcd60e51b8152600401610ae09061359b565b601a839055601b829055601c819055806119cb8385613627565b6119d59190613627565b6019818155101561162c5760405162461bcd60e51b815260206004820152602160248201527f43616e6e6f74207365742073656c6c20666565206d6f7265207468616e2032356044820152602560f81b6064820152608401610ae0565b6005546000906001600160a01b03163314611a5f5760405162461bcd60e51b8152600401610ae09061359b565b620186a0611a6b610b9b565b611a769060016135e6565b611a809190613605565b821015611aed5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610ae0565b6103e8611af8610b9b565b611b039060056135e6565b611b0d9190613605565b821115611b795760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610ae0565b50600d55600190565b6005546001600160a01b03163314611bac5760405162461bcd60e51b8152600401610ae09061359b565b60405147906000906001600160a01b0384169083908381818185875af1925050503d8060008114611bf9576040519150601f19603f3d011682016040523d82523d6000602084013e611bfe565b606091505b505090508061162c5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610ae0565b6005546000906001600160a01b03163314611ca25760405162461bcd60e51b8152600401610ae09061359b565b506014805460ff19169055600190565b6005546001600160a01b03163314611cdc5760405162461bcd60e51b8152600401610ae09061359b565b6001600160a01b038116611d415760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ae0565b611d4a81612d8f565b50565b6005546000906001600160a01b03163314611d7a5760405162461bcd60e51b8152600401610ae09061359b565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a082319060240160206040518083038186803b158015611dbc57600080fd5b505afa158015611dd0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611df491906136a4565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509085169063a9059cbb90604401602060405180830381600087803b158015611e4257600080fd5b505af1158015611e56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e7a91906136bd565b949350505050565b606060038054611e91906136da565b80601f0160208091040260200160405190810160405280929190818152602001828054611ebd906136da565b8015611f0a5780601f10611edf57610100808354040283529160200191611f0a565b820191906000526020600020905b815481529060010190602001808311611eed57829003601f168201915b5050505050905090565b6001600160a01b038316611f765760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ae0565b6001600160a01b038216611fd75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ae0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146120c457818110156120b75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610ae0565b6120c48484848403611f14565b50505050565b6001600160a01b0383166120f05760405162461bcd60e51b8152600401610ae090613715565b6001600160a01b0382166121165760405162461bcd60e51b8152600401610ae09061375a565b806121275761162c83836000612df0565b600f5460ff161561257a576005546001600160a01b0384811691161480159061215e57506005546001600160a01b03838116911614155b801561217257506001600160a01b03821615155b801561218957506001600160a01b03821661dead14155b801561219f5750600754600160a01b900460ff16155b1561257a57600f54610100900460ff16612235576001600160a01b038316600090815260208052604090205460ff16806121f057506001600160a01b038216600090815260208052604090205460ff165b6122355760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610ae0565b60145460ff1615612334576005546001600160a01b0383811691161480159061226c57506006546001600160a01b03838116911614155b801561228657506007546001600160a01b03838116911614155b15612334573260009081526011602052604090205443116123215760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610ae0565b3260009081526011602052604090204390555b6001600160a01b03831660009081526022602052604090205460ff16801561237557506001600160a01b03821660009081526021602052604090205460ff16155b1561244957600c548111156123ea5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610ae0565b600e546123f683611499565b6124009083613627565b11156124445760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610ae0565b61257a565b6001600160a01b03821660009081526022602052604090205460ff16801561248a57506001600160a01b03831660009081526021602052604090205460ff16155b1561250057600c548111156124445760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610ae0565b6001600160a01b03821660009081526021602052604090205460ff1661257a57600e5461252c83611499565b6125369083613627565b111561257a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610ae0565b600061258530611499565b600d54909150811080159081906125a45750600f5462010000900460ff165b80156125ba5750600754600160a01b900460ff16155b80156125df57506001600160a01b03851660009081526022602052604090205460ff16155b801561260357506001600160a01b038516600090815260208052604090205460ff16155b801561262757506001600160a01b038416600090815260208052604090205460ff16155b15612655576007805460ff60a01b1916600160a01b1790556126476128b2565b6007805460ff60a01b191690555b6007546001600160a01b038616600090815260208052604090205460ff600160a01b9092048216159116806126a157506001600160a01b038516600090815260208052604090205460ff165b156126aa575060005b60008115612895576001600160a01b03861660009081526022602052604090205460ff1680156126dc57506000601954115b1561279a5761270160646126fb60195488612f4490919063ffffffff16565b90612f57565b9050601954601b548261271491906135e6565b61271e9190613605565b601e600082825461272f9190613627565b9091555050601954601c5461274490836135e6565b61274e9190613605565b601f600082825461275f9190613627565b9091555050601954601a5461277490836135e6565b61277e9190613605565b601d600082825461278f9190613627565b909155506128779050565b6001600160a01b03871660009081526022602052604090205460ff1680156127c457506000601554115b15612877576127e360646126fb60155488612f4490919063ffffffff16565b9050601554601754826127f691906135e6565b6128009190613605565b601e60008282546128119190613627565b909155505060155460185461282690836135e6565b6128309190613605565b601f60008282546128419190613627565b909155505060155460165461285690836135e6565b6128609190613605565b601d60008282546128719190613627565b90915550505b801561288857612888873083612df0565b612892818661365c565b94505b6128a0878787612df0565b6128a987612f63565b50505050505050565b60006128bd30611499565b90506000601f54601d54601e546128d49190613627565b6128de9190613627565b90508115806128eb575080155b156128f4575050565b6000600282601e548561290791906135e6565b6129119190613605565b61291b9190613605565b90506000612929848361307f565b9050476129358261308b565b6000612941478361307f565b9050600061295e866126fb601d5485612f4490919063ffffffff16565b9050600061297b876126fb601f5486612f4490919063ffffffff16565b905060008161298a848661365c565b612994919061365c565b6000601e819055601d819055601f81905560095460405192935090916001600160a01b039091169085908381818185875af1925050503d80600081146129f6576040519150601f19603f3d011682016040523d82523d6000602084013e6129fb565b606091505b5050600a546040519192506001600160a01b0316908490600081818185875af1925050503d8060008114612a4b576040519150601f19603f3d011682016040523d82523d6000602084013e612a50565b606091505b50909150508715801590612a645750600082115b15612ab757612a738883612c5d565b601e54604080518981526020810185905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b670de0b6b3a76400004710612b1e576009546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612b13576040519150601f19603f3d011682016040523d82523d6000602084013e612b18565b606091505b50909150505b50505050505050505050565b6001600160a01b038216600081815260226020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038216612bd45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610ae0565b8060026000828254612be69190613627565b90915550506001600160a01b03821660009081526020819052604081208054839290612c13908490613627565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600654612c759030906001600160a01b031684611f14565b600654600b5460405163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c4016060604051808303818588803b158015612ce057600080fd5b505af1158015612cf4573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612d19919061379d565b5050505050565b600f54610100900460ff1615612d785760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610ae0565b600f805462ffff0019166201010017905542600855565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b606060048054611e91906136da565b6001600160a01b038316612e165760405162461bcd60e51b8152600401610ae090613715565b6001600160a01b038216612e3c5760405162461bcd60e51b8152600401610ae09061375a565b6001600160a01b03831660009081526020819052604090205481811015612eb45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610ae0565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612eeb908490613627565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612f3791815260200190565b60405180910390a36120c4565b6000612f5082846135e6565b9392505050565b6000612f508284613605565b6001600160a01b038116600090815260126020526040902054612f835750565b60006201518060085442612f97919061365c565b612fa19190613605565b9050600060135482612fb391906135e6565b612fc590670de0b6b3a76400006135e6565b6001600160a01b0384166000908152601260205260409020549091508111156130045750506001600160a01b0316600090815260126020526040812055565b6001600160a01b03831660009081526012602052604090205461302890829061365c565b61303184611499565b101561162c5760405162461bcd60e51b815260206004820152601f60248201527f56657374696e6720706572696f64206973206e6f7420656e64656420796574006044820152606401610ae0565b6000612f50828461365c565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106130c0576130c0613673565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561311457600080fd5b505afa158015613128573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061314c919061363f565b8160018151811061315f5761315f613673565b6001600160a01b0392831660209182029290920101526006546131859130911684611f14565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906131be9085906000908690309042906004016137cb565b600060405180830381600087803b1580156131d857600080fd5b505af11580156131ec573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b8181101561322157858101830151858201604001528201613205565b81811115613233576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114611d4a57600080fd5b6000806040838503121561327157600080fd5b823561327c81613249565b946020939093013593505050565b60006020828403121561329c57600080fd5b5035919050565b6000602082840312156132b557600080fd5b8135612f5081613249565b6000806000606084860312156132d557600080fd5b83356132e081613249565b925060208401356132f081613249565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561334057613340613301565b604052919050565b600067ffffffffffffffff82111561336257613362613301565b5060051b60200190565b600082601f83011261337d57600080fd5b8135602061339261338d83613348565b613317565b82815260059290921b840181019181810190868411156133b157600080fd5b8286015b848110156133cc57803583529183019183016133b5565b509695505050505050565b600080600080600080600060e0888a0312156133f257600080fd5b87356133fd81613249565b965060208881013561340e81613249565b965060408901359550606089013594506080890135935060a089013567ffffffffffffffff8082111561344057600080fd5b818b0191508b601f83011261345457600080fd5b813561346261338d82613348565b81815260059190911b8301840190848101908e83111561348157600080fd5b938501935b828510156134a857843561349981613249565b82529385019390850190613486565b9650505060c08b01359250808311156134c057600080fd5b50506134ce8a828b0161336c565b91505092959891949750929550565b8015158114611d4a57600080fd5b600080604083850312156134fe57600080fd5b823561350981613249565b91506020830135613519816134dd565b809150509250929050565b60008060006060848603121561353957600080fd5b505081359360208301359350604090920135919050565b60006020828403121561356257600080fd5b8135612f50816134dd565b6000806040838503121561358057600080fd5b823561358b81613249565b9150602083013561351981613249565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615613600576136006135d0565b500290565b60008261362257634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561363a5761363a6135d0565b500190565b60006020828403121561365157600080fd5b8151612f5081613249565b60008282101561366e5761366e6135d0565b500390565b634e487b7160e01b600052603260045260246000fd5b600060001982141561369d5761369d6135d0565b5060010190565b6000602082840312156136b657600080fd5b5051919050565b6000602082840312156136cf57600080fd5b8151612f50816134dd565b600181811c908216806136ee57607f821691505b6020821081141561370f57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000806000606084860312156137b257600080fd5b8351925060208401519150604084015190509250925092565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561381b5784516001600160a01b0316835293830193918301916001016137f6565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212205036e5dc4f25f9c454353513b7458c7293b369f37c06a7fddf9647688c27a8c764736f6c63430008090033
Deployed Bytecode
0x6080604052600436106103855760003560e01c806392136913116101d1578063c17b5b8c11610102578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610a0e578063f4a2c16f14610a2e578063f637434214610a4e578063f8b45b0514610a6457600080fd5b8063e2f45605146109ad578063e393c294146109c3578063e884f260146109e3578063f11a24d3146109f857600080fd5b8063d257b34f116100dc578063d257b34f14610911578063d469801614610931578063d85ba06314610951578063dd62ed3e1461096757600080fd5b8063c17b5b8c146108c1578063c876d0b9146108e1578063c8c8ebe4146108fb57600080fd5b8063a0d82dc51161016f578063aacebbe311610149578063aacebbe314610832578063b62496f514610852578063bbc0c74214610882578063c0246668146108a157600080fd5b8063a0d82dc5146107dc578063a457c2d7146107f2578063a9059cbb1461081257600080fd5b806395d89b41116101ab57806395d89b411461077b5780639a7a23d6146107905780639c3b4fdc146107b05780639fccce32146107c657600080fd5b80639213691314610725578063924de9b71461073b57806392aa37731461075b57600080fd5b80634fbee193116102b6578063751039fc116102545780637bce5a04116102235780637bce5a04146106b15780638095d564146106c75780638da5cb5b146106e75780638ea5220f1461070557600080fd5b8063751039fc146106465780637571336a1461065b57806375f0a8741461067b578063790ca4131461069b57600080fd5b80636d5e9b40116102905780636d5e9b40146105de5780636ddd1713146105f157806370a0823114610611578063715018a61461063157600080fd5b80634fbee1931461057b57806351f205e4146105b35780636a486a8e146105c857600080fd5b80631a8145bb11610323578063313ce567116102fd578063313ce56714610505578063395093511461052157806349bd5a5e146105415780634a62bb651461056157600080fd5b80631a8145bb146104b95780631f3fed8f146104cf57806323b872dd146104e557600080fd5b806310d5de531161035f57806310d5de531461040e5780631694505e1461043e57806318160ddd146104765780631816467f1461049957600080fd5b806306fdde0314610391578063095ea7b3146103bc578063106b5da1146103ec57600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610a7a565b6040516103b391906131f4565b60405180910390f35b3480156103c857600080fd5b506103dc6103d736600461325e565b610a9e565b60405190151581526020016103b3565b3480156103f857600080fd5b5061040c61040736600461328a565b610ab6565b005b34801561041a57600080fd5b506103dc6104293660046132a3565b60216020526000908152604090205460ff1681565b34801561044a57600080fd5b5060065461045e906001600160a01b031681565b6040516001600160a01b0390911681526020016103b3565b34801561048257600080fd5b5061048b610b9b565b6040519081526020016103b3565b3480156104a557600080fd5b5061040c6104b43660046132a3565b610ba6565b3480156104c557600080fd5b5061048b601e5481565b3480156104db57600080fd5b5061048b601d5481565b3480156104f157600080fd5b506103dc6105003660046132c0565b610c2d565b34801561051157600080fd5b50604051601281526020016103b3565b34801561052d57600080fd5b506103dc61053c36600461325e565b610c51565b34801561054d57600080fd5b5060075461045e906001600160a01b031681565b34801561056d57600080fd5b50600f546103dc9060ff1681565b34801561058757600080fd5b506103dc6105963660046132a3565b6001600160a01b0316600090815260208052604090205460ff1690565b3480156105bf57600080fd5b5061040c610c90565b3480156105d457600080fd5b5061048b60195481565b61040c6105ec3660046133d7565b610d8e565b3480156105fd57600080fd5b50600f546103dc9062010000900460ff1681565b34801561061d57600080fd5b5061048b61062c3660046132a3565b611499565b34801561063d57600080fd5b5061040c6114b4565b34801561065257600080fd5b506103dc6114ea565b34801561066757600080fd5b5061040c6106763660046134eb565b611534565b34801561068757600080fd5b5060095461045e906001600160a01b031681565b3480156106a757600080fd5b5061048b60085481565b3480156106bd57600080fd5b5061048b60165481565b3480156106d357600080fd5b5061040c6106e2366004613524565b611589565b3480156106f357600080fd5b506005546001600160a01b031661045e565b34801561071157600080fd5b50600a5461045e906001600160a01b031681565b34801561073157600080fd5b5061048b601a5481565b34801561074757600080fd5b5061040c610756366004613550565b611631565b34801561076757600080fd5b5061040c6107763660046132a3565b611677565b34801561078757600080fd5b506103a66116fe565b34801561079c57600080fd5b5061040c6107ab3660046134eb565b61171d565b3480156107bc57600080fd5b5061048b60185481565b3480156107d257600080fd5b5061048b601f5481565b3480156107e857600080fd5b5061048b601c5481565b3480156107fe57600080fd5b506103dc61080d36600461325e565b6117d9565b34801561081e57600080fd5b506103dc61082d36600461325e565b61186b565b34801561083e57600080fd5b5061040c61084d3660046132a3565b611879565b34801561085e57600080fd5b506103dc61086d3660046132a3565b60226020526000908152604090205460ff1681565b34801561088e57600080fd5b50600f546103dc90610100900460ff1681565b3480156108ad57600080fd5b5061040c6108bc3660046134eb565b611900565b3480156108cd57600080fd5b5061040c6108dc366004613524565b611987565b3480156108ed57600080fd5b506014546103dc9060ff1681565b34801561090757600080fd5b5061048b600c5481565b34801561091d57600080fd5b506103dc61092c36600461328a565b611a32565b34801561093d57600080fd5b50600b5461045e906001600160a01b031681565b34801561095d57600080fd5b5061048b60155481565b34801561097357600080fd5b5061048b61098236600461356d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109b957600080fd5b5061048b600d5481565b3480156109cf57600080fd5b5061040c6109de3660046132a3565b611b82565b3480156109ef57600080fd5b506103dc611c75565b348015610a0457600080fd5b5061048b60175481565b348015610a1a57600080fd5b5061040c610a293660046132a3565b611cb2565b348015610a3a57600080fd5b506103dc610a4936600461356d565b611d4d565b348015610a5a57600080fd5b5061048b601b5481565b348015610a7057600080fd5b5061048b600e5481565b600f54606090610100900460ff16610a9157600080fd5b610a99611e82565b905090565b600033610aac818585611f14565b5060019392505050565b6005546001600160a01b03163314610ae95760405162461bcd60e51b8152600401610ae09061359b565b60405180910390fd5b670de0b6b3a76400006103e8610afd610b9b565b610b089060056135e6565b610b129190613605565b610b1c9190613605565b811015610b835760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610ae0565b610b9581670de0b6b3a76400006135e6565b600c5550565b6000610a9960025490565b6005546001600160a01b03163314610bd05760405162461bcd60e51b8152600401610ae09061359b565b600a546040516001600160a01b03918216918316907f0db17895a9d092fb3ca24d626f2150dd80c185b0706b36f1040ee239f56cb87190600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600033610c3b858285612038565b610c468585856120ca565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190610aac9082908690610c8b908790613627565b611f14565b6005546001600160a01b03163314610cba5760405162461bcd60e51b8152600401610ae09061359b565b6000610cc530611499565b90506064610cd1610b9b565b610cdb9190613605565b811015610d505760405162461bcd60e51b815260206004820152603e60248201527f43616e206f6e6c792073776170206261636b206966206d6f7265207468616e2060448201527f3125206f6620746f6b656e7320737475636b206f6e20636f6e747261637400006064820152608401610ae0565b610d586128b2565b6040514281527f1b56c383f4f48fc992e45667ea4eabae777b9cca68b516a9562d8cda78f1bb329060200160405180910390a150565b6005546001600160a01b03163314610db85760405162461bcd60e51b8152600401610ae09061359b565b600f54610100900460ff1615610e105760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610ae0565b8051825114610e555760405162461bcd60e51b8152602060048201526011602482015270496e76616c696420617267756d656e747360781b6044820152606401610ae0565b85610e61816001611534565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b158015610eb557600080fd5b505afa158015610ec9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eed919061363f565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610f3557600080fd5b505afa158015610f49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6d919061363f565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015610fb557600080fd5b505af1158015610fc9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fed919061363f565b600780546001600160a01b0319166001600160a01b03929092169182179055611017906001611534565b60075461102e906001600160a01b03166001612b2a565b6006600460026008600e60036b033b2e3c9fd0803ce80000006127106110558260056135e6565b61105f9190613605565b6110718c670de0b6b3a76400006135e6565b1161107b57600080fd5b60138b905561271061108e82601e6135e6565b6110989190613605565b600c556127106110a98260646135e6565b6110b39190613605565b600e556127106110c48260056135e6565b6110ce9190613605565b600d55601687905560178690556018859055846110eb8789613627565b6110f59190613627565b601555601a849055601b839055601c829055816111128486613627565b61111c9190613627565b6019819055508e600960006101000a8154816001600160a01b0302191690836001600160a01b031602179055508e600a60006101000a8154816001600160a01b0302191690836001600160a01b031602179055508e600b60006101000a8154816001600160a01b0302191690836001600160a01b031602179055506111b36111ac6005546001600160a01b031690565b6001611900565b6111be8f6001611900565b6111c9306001611900565b6111d661dead6001611900565b6111f26111eb6005546001600160a01b031690565b6001611534565b6111fd8f6001611534565b611208306001611534565b61121561dead6001611534565b6112303061122b8f670de0b6b3a76400006135e6565b612b7e565b6112508f6112468f670de0b6b3a76400006135e6565b61122b908461365c565b61126b6112658e670de0b6b3a76400006135e6565b34612c5d565b600754600090611285906001600160a01b03166001611900565b600f805460ff1916905560005b8b518110156113a05760008b82815181106112af576112af613673565b6020026020010151670de0b6b3a76400006112ca91906135e6565b905060008d83815181106112e0576112e0613673565b6020026020010151905060126000826001600160a01b03166001600160a01b03168152602001908152602001600020546000146113545760405162461bcd60e51b8152602060048201526012602482015271185a5c991c9bdc08191d5c1b1a58d85d195960721b6044820152606401610ae0565b61135e8285613627565b600754909450611378906001600160a01b031682846120ca565b6001600160a01b031660009081526012602052604090205561139981613689565b9050611292565b506007546113b8906001600160a01b03166000611900565b600f805460ff191660011790556113d78d670de0b6b3a76400006135e6565b811461141c5760405162461bcd60e51b815260206004820152601460248201527315dc9bdb99c8185a5c991c9bdc08185b5bdd5b9d60621b6044820152606401610ae0565b6007546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561146657600080fd5b505af115801561147a573d6000803e3d6000fd5b50505050611486612d20565b5050505050505050505050505050505050565b6001600160a01b031660009081526020819052604090205490565b6005546001600160a01b031633146114de5760405162461bcd60e51b8152600401610ae09061359b565b6114e86000612d8f565b565b6005546000906001600160a01b031633146115175760405162461bcd60e51b8152600401610ae09061359b565b50600f805463ff0000ff191690556014805460ff19169055600190565b6005546001600160a01b0316331461155e5760405162461bcd60e51b8152600401610ae09061359b565b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146115b35760405162461bcd60e51b8152600401610ae09061359b565b601683905560178290556018819055806115cd8385613627565b6115d79190613627565b60158190556019101561162c5760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f74207365742062757920666565206d6f7265207468616e203235256044820152606401610ae0565b505050565b6005546001600160a01b0316331461165b5760405162461bcd60e51b8152600401610ae09061359b565b600f8054911515620100000262ff000019909216919091179055565b6005546001600160a01b031633146116a15760405162461bcd60e51b8152600401610ae09061359b565b600b546040516001600160a01b03918216918316907f6080503d1da552ae8eb4b7b8a20245d9fabed014180510e7d1a05ea08fdb0f3e90600090a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600f54606090610100900460ff1661171557600080fd5b610a99612de1565b6005546001600160a01b031633146117475760405162461bcd60e51b8152600401610ae09061359b565b6007546001600160a01b03838116911614156117cb5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610ae0565b6117d58282612b2a565b5050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561185e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610ae0565b610c468286868403611f14565b600033610aac8185856120ca565b6005546001600160a01b031633146118a35760405162461bcd60e51b8152600401610ae09061359b565b6009546040516001600160a01b03918216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461192a5760405162461bcd60e51b8152600401610ae09061359b565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146119b15760405162461bcd60e51b8152600401610ae09061359b565b601a839055601b829055601c819055806119cb8385613627565b6119d59190613627565b6019818155101561162c5760405162461bcd60e51b815260206004820152602160248201527f43616e6e6f74207365742073656c6c20666565206d6f7265207468616e2032356044820152602560f81b6064820152608401610ae0565b6005546000906001600160a01b03163314611a5f5760405162461bcd60e51b8152600401610ae09061359b565b620186a0611a6b610b9b565b611a769060016135e6565b611a809190613605565b821015611aed5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610ae0565b6103e8611af8610b9b565b611b039060056135e6565b611b0d9190613605565b821115611b795760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610ae0565b50600d55600190565b6005546001600160a01b03163314611bac5760405162461bcd60e51b8152600401610ae09061359b565b60405147906000906001600160a01b0384169083908381818185875af1925050503d8060008114611bf9576040519150601f19603f3d011682016040523d82523d6000602084013e611bfe565b606091505b505090508061162c5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610ae0565b6005546000906001600160a01b03163314611ca25760405162461bcd60e51b8152600401610ae09061359b565b506014805460ff19169055600190565b6005546001600160a01b03163314611cdc5760405162461bcd60e51b8152600401610ae09061359b565b6001600160a01b038116611d415760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ae0565b611d4a81612d8f565b50565b6005546000906001600160a01b03163314611d7a5760405162461bcd60e51b8152600401610ae09061359b565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a082319060240160206040518083038186803b158015611dbc57600080fd5b505afa158015611dd0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611df491906136a4565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509085169063a9059cbb90604401602060405180830381600087803b158015611e4257600080fd5b505af1158015611e56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e7a91906136bd565b949350505050565b606060038054611e91906136da565b80601f0160208091040260200160405190810160405280929190818152602001828054611ebd906136da565b8015611f0a5780601f10611edf57610100808354040283529160200191611f0a565b820191906000526020600020905b815481529060010190602001808311611eed57829003601f168201915b5050505050905090565b6001600160a01b038316611f765760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ae0565b6001600160a01b038216611fd75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ae0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146120c457818110156120b75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610ae0565b6120c48484848403611f14565b50505050565b6001600160a01b0383166120f05760405162461bcd60e51b8152600401610ae090613715565b6001600160a01b0382166121165760405162461bcd60e51b8152600401610ae09061375a565b806121275761162c83836000612df0565b600f5460ff161561257a576005546001600160a01b0384811691161480159061215e57506005546001600160a01b03838116911614155b801561217257506001600160a01b03821615155b801561218957506001600160a01b03821661dead14155b801561219f5750600754600160a01b900460ff16155b1561257a57600f54610100900460ff16612235576001600160a01b038316600090815260208052604090205460ff16806121f057506001600160a01b038216600090815260208052604090205460ff165b6122355760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610ae0565b60145460ff1615612334576005546001600160a01b0383811691161480159061226c57506006546001600160a01b03838116911614155b801561228657506007546001600160a01b03838116911614155b15612334573260009081526011602052604090205443116123215760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610ae0565b3260009081526011602052604090204390555b6001600160a01b03831660009081526022602052604090205460ff16801561237557506001600160a01b03821660009081526021602052604090205460ff16155b1561244957600c548111156123ea5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610ae0565b600e546123f683611499565b6124009083613627565b11156124445760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610ae0565b61257a565b6001600160a01b03821660009081526022602052604090205460ff16801561248a57506001600160a01b03831660009081526021602052604090205460ff16155b1561250057600c548111156124445760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610ae0565b6001600160a01b03821660009081526021602052604090205460ff1661257a57600e5461252c83611499565b6125369083613627565b111561257a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610ae0565b600061258530611499565b600d54909150811080159081906125a45750600f5462010000900460ff165b80156125ba5750600754600160a01b900460ff16155b80156125df57506001600160a01b03851660009081526022602052604090205460ff16155b801561260357506001600160a01b038516600090815260208052604090205460ff16155b801561262757506001600160a01b038416600090815260208052604090205460ff16155b15612655576007805460ff60a01b1916600160a01b1790556126476128b2565b6007805460ff60a01b191690555b6007546001600160a01b038616600090815260208052604090205460ff600160a01b9092048216159116806126a157506001600160a01b038516600090815260208052604090205460ff165b156126aa575060005b60008115612895576001600160a01b03861660009081526022602052604090205460ff1680156126dc57506000601954115b1561279a5761270160646126fb60195488612f4490919063ffffffff16565b90612f57565b9050601954601b548261271491906135e6565b61271e9190613605565b601e600082825461272f9190613627565b9091555050601954601c5461274490836135e6565b61274e9190613605565b601f600082825461275f9190613627565b9091555050601954601a5461277490836135e6565b61277e9190613605565b601d600082825461278f9190613627565b909155506128779050565b6001600160a01b03871660009081526022602052604090205460ff1680156127c457506000601554115b15612877576127e360646126fb60155488612f4490919063ffffffff16565b9050601554601754826127f691906135e6565b6128009190613605565b601e60008282546128119190613627565b909155505060155460185461282690836135e6565b6128309190613605565b601f60008282546128419190613627565b909155505060155460165461285690836135e6565b6128609190613605565b601d60008282546128719190613627565b90915550505b801561288857612888873083612df0565b612892818661365c565b94505b6128a0878787612df0565b6128a987612f63565b50505050505050565b60006128bd30611499565b90506000601f54601d54601e546128d49190613627565b6128de9190613627565b90508115806128eb575080155b156128f4575050565b6000600282601e548561290791906135e6565b6129119190613605565b61291b9190613605565b90506000612929848361307f565b9050476129358261308b565b6000612941478361307f565b9050600061295e866126fb601d5485612f4490919063ffffffff16565b9050600061297b876126fb601f5486612f4490919063ffffffff16565b905060008161298a848661365c565b612994919061365c565b6000601e819055601d819055601f81905560095460405192935090916001600160a01b039091169085908381818185875af1925050503d80600081146129f6576040519150601f19603f3d011682016040523d82523d6000602084013e6129fb565b606091505b5050600a546040519192506001600160a01b0316908490600081818185875af1925050503d8060008114612a4b576040519150601f19603f3d011682016040523d82523d6000602084013e612a50565b606091505b50909150508715801590612a645750600082115b15612ab757612a738883612c5d565b601e54604080518981526020810185905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b670de0b6b3a76400004710612b1e576009546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612b13576040519150601f19603f3d011682016040523d82523d6000602084013e612b18565b606091505b50909150505b50505050505050505050565b6001600160a01b038216600081815260226020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038216612bd45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610ae0565b8060026000828254612be69190613627565b90915550506001600160a01b03821660009081526020819052604081208054839290612c13908490613627565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600654612c759030906001600160a01b031684611f14565b600654600b5460405163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c4016060604051808303818588803b158015612ce057600080fd5b505af1158015612cf4573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612d19919061379d565b5050505050565b600f54610100900460ff1615612d785760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610ae0565b600f805462ffff0019166201010017905542600855565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b606060048054611e91906136da565b6001600160a01b038316612e165760405162461bcd60e51b8152600401610ae090613715565b6001600160a01b038216612e3c5760405162461bcd60e51b8152600401610ae09061375a565b6001600160a01b03831660009081526020819052604090205481811015612eb45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610ae0565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290612eeb908490613627565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612f3791815260200190565b60405180910390a36120c4565b6000612f5082846135e6565b9392505050565b6000612f508284613605565b6001600160a01b038116600090815260126020526040902054612f835750565b60006201518060085442612f97919061365c565b612fa19190613605565b9050600060135482612fb391906135e6565b612fc590670de0b6b3a76400006135e6565b6001600160a01b0384166000908152601260205260409020549091508111156130045750506001600160a01b0316600090815260126020526040812055565b6001600160a01b03831660009081526012602052604090205461302890829061365c565b61303184611499565b101561162c5760405162461bcd60e51b815260206004820152601f60248201527f56657374696e6720706572696f64206973206e6f7420656e64656420796574006044820152606401610ae0565b6000612f50828461365c565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106130c0576130c0613673565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561311457600080fd5b505afa158015613128573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061314c919061363f565b8160018151811061315f5761315f613673565b6001600160a01b0392831660209182029290920101526006546131859130911684611f14565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906131be9085906000908690309042906004016137cb565b600060405180830381600087803b1580156131d857600080fd5b505af11580156131ec573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b8181101561322157858101830151858201604001528201613205565b81811115613233576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114611d4a57600080fd5b6000806040838503121561327157600080fd5b823561327c81613249565b946020939093013593505050565b60006020828403121561329c57600080fd5b5035919050565b6000602082840312156132b557600080fd5b8135612f5081613249565b6000806000606084860312156132d557600080fd5b83356132e081613249565b925060208401356132f081613249565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561334057613340613301565b604052919050565b600067ffffffffffffffff82111561336257613362613301565b5060051b60200190565b600082601f83011261337d57600080fd5b8135602061339261338d83613348565b613317565b82815260059290921b840181019181810190868411156133b157600080fd5b8286015b848110156133cc57803583529183019183016133b5565b509695505050505050565b600080600080600080600060e0888a0312156133f257600080fd5b87356133fd81613249565b965060208881013561340e81613249565b965060408901359550606089013594506080890135935060a089013567ffffffffffffffff8082111561344057600080fd5b818b0191508b601f83011261345457600080fd5b813561346261338d82613348565b81815260059190911b8301840190848101908e83111561348157600080fd5b938501935b828510156134a857843561349981613249565b82529385019390850190613486565b9650505060c08b01359250808311156134c057600080fd5b50506134ce8a828b0161336c565b91505092959891949750929550565b8015158114611d4a57600080fd5b600080604083850312156134fe57600080fd5b823561350981613249565b91506020830135613519816134dd565b809150509250929050565b60008060006060848603121561353957600080fd5b505081359360208301359350604090920135919050565b60006020828403121561356257600080fd5b8135612f50816134dd565b6000806040838503121561358057600080fd5b823561358b81613249565b9150602083013561351981613249565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615613600576136006135d0565b500290565b60008261362257634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561363a5761363a6135d0565b500190565b60006020828403121561365157600080fd5b8151612f5081613249565b60008282101561366e5761366e6135d0565b500390565b634e487b7160e01b600052603260045260246000fd5b600060001982141561369d5761369d6135d0565b5060010190565b6000602082840312156136b657600080fd5b5051919050565b6000602082840312156136cf57600080fd5b8151612f50816134dd565b600181811c908216806136ee57607f821691505b6020821081141561370f57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000806000606084860312156137b257600080fd5b8351925060208401519150604084015190509250925092565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561381b5784516001600160a01b0316835293830193918301916001016137f6565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212205036e5dc4f25f9c454353513b7458c7293b369f37c06a7fddf9647688c27a8c764736f6c63430008090033
Deployed Bytecode Sourcemap
35292:18088:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41207:130;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18686:201;;;;;;;;;;-1:-1:-1;18686:201:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;18686:201:0;1072:187:1;42880:246:0;;;;;;;;;;-1:-1:-1;42880:246:0;;;;;:::i;:::-;;:::i;:::-;;36801:63;;;;;;;;;;-1:-1:-1;36801:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;35375:41;;;;;;;;;;-1:-1:-1;35375:41:0;;;;-1:-1:-1;;;;;35375:41:0;;;;;;-1:-1:-1;;;;;1892:32:1;;;1874:51;;1862:2;1847:18;35375:41:0;1701:230:1;41590:109:0;;;;;;;;;;;;;:::i;:::-;;;2082:25:1;;;2070:2;2055:18;41590:109:0;1936:177:1;45094:156:0;;;;;;;;;;-1:-1:-1;45094:156:0;;;;;:::i;:::-;;:::i;36595:33::-;;;;;;;;;;;;;;;;36557;;;;;;;;;;;;;;;;19467:295;;;;;;;;;;-1:-1:-1;19467:295:0;;;;;:::i;:::-;;:::i;41483:101::-;;;;;;;;;;-1:-1:-1;41483:101:0;;17380:2;2721:36:1;;2709:2;2694:18;41483:101:0;2579:184:1;20171:240:0;;;;;;;;;;-1:-1:-1;20171:240:0;;;;;:::i;:::-;;:::i;35421:28::-;;;;;;;;;;-1:-1:-1;35421:28:0;;;;-1:-1:-1;;;;;35421:28:0;;;35726:33;;;;;;;;;;-1:-1:-1;35726:33:0;;;;;;;;45433:120;;;;;;;;;;-1:-1:-1;45433:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;45519:28:0;45499:4;45519:28;;;:19;:28;;;;;;;;;45433:120;52491:313;;;;;;;;;;;;;:::i;36420:28::-;;;;;;;;;;;;;;;;37856:3345;;;;;;:::i;:::-;;:::i;35802:31::-;;;;;;;;;;-1:-1:-1;35802:31:0;;;;;;;;;;;17626:127;;;;;;;;;;-1:-1:-1;17626:127:0;;;;;:::i;:::-;;:::i;9744:103::-;;;;;;;;;;;;;:::i;42018:175::-;;;;;;;;;;;;;:::i;43132:151::-;;;;;;;;;;-1:-1:-1;43132:151:0;;;;;:::i;:::-;;:::i;35516:30::-;;;;;;;;;;-1:-1:-1;35516:30:0;;;;-1:-1:-1;;;;;35516:30:0;;;35484:25;;;;;;;;;;;;;;;;36319:30;;;;;;;;;;;;;;;;43475:372;;;;;;;;;;-1:-1:-1;43475:372:0;;;;;:::i;:::-;;:::i;9093:87::-;;;;;;;;;;-1:-1:-1;9166:6:0;;-1:-1:-1;;;;;9166:6:0;9093:87;;35551:24;;;;;;;;;;-1:-1:-1;35551:24:0;;;;-1:-1:-1;;;;;35551:24:0;;;36453:31;;;;;;;;;;;;;;;;43375:94;;;;;;;;;;-1:-1:-1;43375:94:0;;;;;:::i;:::-;;:::i;45256:171::-;;;;;;;;;;-1:-1:-1;45256:171:0;;;;;:::i;:::-;;:::i;41343:134::-;;;;;;;;;;;;;:::i;44419:268::-;;;;;;;;;;-1:-1:-1;44419:268:0;;;;;:::i;:::-;;:::i;36389:24::-;;;;;;;;;;;;;;;;36633:27;;;;;;;;;;;;;;;;36525:25;;;;;;;;;;;;;;;;20914:438;;;;;;;;;;-1:-1:-1;20914:438:0;;;;;:::i;:::-;;:::i;17959:193::-;;;;;;;;;;-1:-1:-1;17959:193:0;;;;;:::i;:::-;;:::i;44877:211::-;;;;;;;;;;-1:-1:-1;44877:211:0;;;;;:::i;:::-;;:::i;37016:57::-;;;;;;;;;;-1:-1:-1;37016:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;35764:33;;;;;;;;;;-1:-1:-1;35764:33:0;;;;;;;;;;;44241:172;;;;;;;;;;-1:-1:-1;44241:172:0;;;;;:::i;:::-;;:::i;43853:382::-;;;;;;;;;;-1:-1:-1;43853:382:0;;;;;:::i;:::-;;:::i;36241:39::-;;;;;;;;;;-1:-1:-1;36241:39:0;;;;;;;;35617:35;;;;;;;;;;;;;;;;42441:433;;;;;;;;;;-1:-1:-1;42441:433:0;;;;;:::i;:::-;;:::i;35580:30::-;;;;;;;;;;-1:-1:-1;35580:30:0;;;;-1:-1:-1;;;;;35580:30:0;;;36287:27;;;;;;;;;;;;;;;;18215:151;;;;;;;;;;-1:-1:-1;18215:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;18331:18:0;;;18304:7;18331:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18215:151;35657:33;;;;;;;;;;;;;;;;53070:307;;;;;;;;;;-1:-1:-1;53070:307:0;;;;;:::i;:::-;;:::i;42250:125::-;;;;;;;;;;;;;:::i;36354:30::-;;;;;;;;;;;;;;;;10002:201;;;;;;;;;;-1:-1:-1;10002:201:0;;;;;:::i;:::-;;:::i;52810:254::-;;;;;;;;;;-1:-1:-1;52810:254:0;;;;;:::i;:::-;;:::i;36489:31::-;;;;;;;;;;;;;;;;35695:24;;;;;;;;;;;;;;;;41207:130;41291:13;;41261;;41291;;;;;41283:22;;;;;;41319:12;:10;:12::i;:::-;41312:19;;41207:130;:::o;18686:201::-;18769:4;7893:10;18825:32;7893:10;18841:7;18850:6;18825:8;:32::i;:::-;-1:-1:-1;18875:4:0;;18686:201;-1:-1:-1;;;18686:201:0:o;42880:246::-;9166:6;;-1:-1:-1;;;;;9166:6:0;7893:10;9313:23;9305:68;;;;-1:-1:-1;;;9305:68:0;;;;;;;:::i;:::-;;;;;;;;;43004:4:::1;42996;42975:13;:11;:13::i;:::-;:17;::::0;42991:1:::1;42975:17;:::i;:::-;42974:26;;;;:::i;:::-;42973:35;;;;:::i;:::-;42963:6;:45;;42947:126;;;::::0;-1:-1:-1;;;42947:126:0;;8511:2:1;42947:126:0::1;::::0;::::1;8493:21:1::0;8550:2;8530:18;;;8523:30;8589:34;8569:18;;;8562:62;-1:-1:-1;;;8640:18:1;;;8633:45;8695:19;;42947:126:0::1;8309:411:1::0;42947:126:0::1;43103:17;:6:::0;43113::::1;43103:17;:::i;:::-;43080:20;:40:::0;-1:-1:-1;42880:246:0:o;41590:109::-;41651:7;41674:19;17543:12;;;17455:108;45094:156;9166:6;;-1:-1:-1;;;;;9166:6:0;7893:10;9313:23;9305:68;;;;-1:-1:-1;;;9305:68:0;;;;;;;:::i;:::-;45203:9:::1;::::0;45172:41:::1;::::0;-1:-1:-1;;;;;45203:9:0;;::::1;::::0;45172:41;::::1;::::0;::::1;::::0;45203:9:::1;::::0;45172:41:::1;45220:9;:24:::0;;-1:-1:-1;;;;;;45220:24:0::1;-1:-1:-1::0;;;;;45220:24:0;;;::::1;::::0;;;::::1;::::0;;45094:156::o;19467:295::-;19598:4;7893:10;19656:38;19672:4;7893:10;19687:6;19656:15;:38::i;:::-;19705:27;19715:4;19721:2;19725:6;19705:9;:27::i;:::-;-1:-1:-1;19750:4:0;;19467:295;-1:-1:-1;;;;19467:295:0:o;20171:240::-;7893:10;20259:4;20340:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;20340:27:0;;;;;;;;;;20259:4;;7893:10;20315:66;;7893:10;;20340:27;;:40;;20370:10;;20340:40;:::i;:::-;20315:8;:66::i;52491:313::-;9166:6;;-1:-1:-1;;;;;9166:6:0;7893:10;9313:23;9305:68;;;;-1:-1:-1;;;9305:68:0;;;;;;;:::i;:::-;52542:23:::1;52568:24;52586:4;52568:9;:24::i;:::-;52542:50;;52650:3;52634:13;:11;:13::i;:::-;:19;;;;:::i;:::-;52615:15;:38;;52599:134;;;::::0;-1:-1:-1;;;52599:134:0;;9060:2:1;52599:134:0::1;::::0;::::1;9042:21:1::0;9099:2;9079:18;;;9072:30;9138:34;9118:18;;;9111:62;9209:32;9189:18;;;9182:60;9259:19;;52599:134:0::1;8858:426:1::0;52599:134:0::1;52740:10;:8;:10::i;:::-;52762:36;::::0;52782:15:::1;2082:25:1::0;;52762:36:0::1;::::0;2070:2:1;2055:18;52762:36:0::1;;;;;;;52535:269;52491:313::o:0;37856:3345::-;9166:6;;-1:-1:-1;;;;;9166:6:0;7893:10;9313:23;9305:68;;;;-1:-1:-1;;;9305:68:0;;;;;;;:::i;:::-;38135:13:::1;::::0;::::1;::::0;::::1;;;38134:14;38126:53;;;::::0;-1:-1:-1;;;38126:53:0;;9491:2:1;38126:53:0::1;::::0;::::1;9473:21:1::0;9530:2;9510:18;;;9503:30;9569:28;9549:18;;;9542:56;9615:18;;38126:53:0::1;9289:350:1::0;38126:53:0::1;38217:14;:21;38194:12;:19;:44;38186:74;;;::::0;-1:-1:-1;;;38186:74:0;;9846:2:1;38186:74:0::1;::::0;::::1;9828:21:1::0;9885:2;9865:18;;;9858:30;-1:-1:-1;;;9904:18:1;;;9897:47;9961:18;;38186:74:0::1;9644:341:1::0;38186:74:0::1;38326:6:::0;38342:58:::1;38326:6:::0;38395:4:::1;38342:25;:58::i;:::-;38407:15;:34:::0;;-1:-1:-1;;;;;;38407:34:0::1;-1:-1:-1::0;;;;;38407:34:0;::::1;::::0;;::::1;::::0;;;38484:26:::1;::::0;;-1:-1:-1;;;38484:26:0;;;;:24:::1;::::0;:26:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;38407:34;38484:26;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;38466:56:0::1;;38539:4;38553:16;-1:-1:-1::0;;;;;38553:21:0::1;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38466:117;::::0;-1:-1:-1;;;;;;38466:117:0::1;::::0;;;;;;-1:-1:-1;;;;;10476:15:1;;;38466:117:0::1;::::0;::::1;10458:34:1::0;10528:15;;10508:18;;;10501:43;10393:18;;38466:117:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38450:13;:133:::0;;-1:-1:-1;;;;;;38450:133:0::1;-1:-1:-1::0;;;;;38450:133:0;;;::::1;::::0;;::::1;::::0;;38590:55:::1;::::0;-1:-1:-1;38590:25:0::1;:55::i;:::-;38689:13;::::0;38652:58:::1;::::0;-1:-1:-1;;;;;38689:13:0::1;::::0;38652:28:::1;:58::i;:::-;38746:1;38781;38810;38848;38884:2;38915:1;38948:14;39024:5;39004:16;38948:14:::0;39019:1:::1;39004:16;:::i;:::-;39003:26;;;;:::i;:::-;38979:21;:14:::0;38996:4:::1;38979:21;:::i;:::-;:50;38971:59;;;::::0;::::1;;39084:16;:33:::0;;;39171:5:::1;39150:17;:12:::0;39165:2:::1;39150:17;:::i;:::-;39149:27;;;;:::i;:::-;39126:20;:50:::0;39250:5:::1;39228:18;:12:::0;39243:3:::1;39228:18;:::i;:::-;39227:28;;;;:::i;:::-;39215:9;:40:::0;39320:5:::1;39300:16;:12:::0;39315:1:::1;39300:16;:::i;:::-;39299:26;;;;:::i;:::-;39278:18;:47:::0;39355:15:::1;:34:::0;;;39396:15:::1;:34:::0;;;39437:9:::1;:22:::0;;;39449:10;39481:33:::1;39414:16:::0;39373;39481:33:::1;:::i;:::-;:45;;;;:::i;:::-;39466:12;:60:::0;39535:16:::1;:36:::0;;;39578:16:::1;:36:::0;;;39621:10:::1;:24:::0;;;39634:11;39668:35:::1;39597:17:::0;39554;39668:35:::1;:::i;:::-;:48;;;;:::i;:::-;39652:13;:64;;;;39743:8;39725:15;;:26;;;;;-1:-1:-1::0;;;;;39725:26:0::1;;;;;-1:-1:-1::0;;;;;39725:26:0::1;;;;;;39770:8;39758:9;;:20;;;;;-1:-1:-1::0;;;;;39758:20:0::1;;;;;-1:-1:-1::0;;;;;39758:20:0::1;;;;;;39803:8;39785:15;;:26;;;;;-1:-1:-1::0;;;;;39785:26:0::1;;;;;-1:-1:-1::0;;;;;39785:26:0::1;;;;;;39886:30;39902:7;9166:6:::0;;-1:-1:-1;;;;;9166:6:0;;9093:87;39902:7:::1;39911:4;39886:15;:30::i;:::-;39923:31;39939:8;39949:4;39923:15;:31::i;:::-;39961:36;39985:4;39992;39961:15;:36::i;:::-;40004:38;40028:6;40037:4;40004:15;:38::i;:::-;40051:40;40077:7;9166:6:::0;;-1:-1:-1;;;;;9166:6:0;;9093:87;40077:7:::1;40086:4;40051:25;:40::i;:::-;40098:41;40124:8;40134:4;40098:25;:41::i;:::-;40146:46;40180:4;40187;40146:25;:46::i;:::-;40199:48;40233:6;40242:4;40199:25;:48::i;:::-;40256:44;40270:4;40277:22;:15:::0;40295:4:::1;40277:22;:::i;:::-;40256:5;:44::i;:::-;40307:54;40313:8:::0;40338:22:::1;:15:::0;40356:4:::1;40338:22;:::i;:::-;40323:37;::::0;:12;:37:::1;:::i;40307:54::-;40392:47;40405:22;:15:::0;40423:4:::1;40405:22;:::i;:::-;40429:9;40392:12;:47::i;:::-;40540:13;::::0;40448:21:::1;::::0;40516:45:::1;::::0;-1:-1:-1;;;;;40540:13:0::1;::::0;40516:15:::1;:45::i;:::-;40568:14;:22:::0;;-1:-1:-1;;40568:22:0::1;::::0;;40585:5:::1;40599:317;40619:12;:19;40615:1;:23;40599:317;;;40654:14;40671;40686:1;40671:17;;;;;;;;:::i;:::-;;;;;;;40691:4;40671:24;;;;:::i;:::-;40654:41;;40704:10;40717:12;40730:1;40717:15;;;;;;;;:::i;:::-;;;;;;;40704:28;;40749:13;:17;40763:2;-1:-1:-1::0;;;;;40749:17:0::1;-1:-1:-1::0;;;;;40749:17:0::1;;;;;;;;;;;;;40770:1;40749:22;40741:53;;;::::0;-1:-1:-1;;;40741:53:0;;11019:2:1;40741:53:0::1;::::0;::::1;11001:21:1::0;11058:2;11038:18;;;11031:30;-1:-1:-1;;;11077:18:1;;;11070:48;11135:18;;40741:53:0::1;10817:342:1::0;40741:53:0::1;40805:23;40822:6:::0;40805:23;::::1;:::i;:::-;40847:13;::::0;40805:23;;-1:-1:-1;40837:36:0::1;::::0;-1:-1:-1;;;;;40847:13:0::1;40862:2:::0;40866:6;40837:9:::1;:36::i;:::-;-1:-1:-1::0;;;;;40882:17:0::1;;::::0;;;:13:::1;:17;::::0;;;;:26;40640:3:::1;::::0;::::1;:::i;:::-;;;40599:317;;;-1:-1:-1::0;40948:13:0::1;::::0;40924:46:::1;::::0;-1:-1:-1;;;;;40948:13:0::1;;40924:15;:46::i;:::-;40977:14;:21:::0;;-1:-1:-1;;40977:21:0::1;40994:4;40977:21;::::0;;41032:20:::1;:13:::0;41048:4:::1;41032:20;:::i;:::-;41015:13;:37;41007:70;;;::::0;-1:-1:-1;;;41007:70:0;;11506:2:1;41007:70:0::1;::::0;::::1;11488:21:1::0;11545:2;11525:18;;;11518:30;-1:-1:-1;;;11564:18:1;;;11557:50;11624:18;;41007:70:0::1;11304:344:1::0;41007:70:0::1;41131:13;::::0;41152:19:::1;::::0;;-1:-1:-1;;;;;;41152:19:0;;;;-1:-1:-1;;;;;41131:13:0;;::::1;::::0;;;41152:17:::1;::::0;:19:::1;::::0;;::::1;::::0;41086:27:::1;::::0;41152:19;;;;;;;41086:27;41131:13;41152:19;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;41180:15;:13;:15::i;:::-;38119:3082;;;;;;;;;;37856:3345:::0;;;;;;;:::o;17626:127::-;-1:-1:-1;;;;;17727:18:0;17700:7;17727:18;;;;;;;;;;;;17626:127::o;9744:103::-;9166:6;;-1:-1:-1;;;;;9166:6:0;7893:10;9313:23;9305:68;;;;-1:-1:-1;;;9305:68:0;;;;;;;:::i;:::-;9809:30:::1;9836:1;9809:18;:30::i;:::-;9744:103::o:0;42018:175::-;9166:6;;42070:4;;-1:-1:-1;;;;;9166:6:0;7893:10;9313:23;9305:68;;;;-1:-1:-1;;;9305:68:0;;;;;;;:::i;:::-;-1:-1:-1;42083:14:0::1;:22:::0;;-1:-1:-1;;42112:22:0;;;42141:20:::1;:28:::0;;-1:-1:-1;;42141:28:0::1;::::0;;42083:22;42018:175;:::o;43132:151::-;9166:6;;-1:-1:-1;;;;;9166:6:0;7893:10;9313:23;9305:68;;;;-1:-1:-1;;;9305:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43231:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;43231:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43132:151::o;43475:372::-;9166:6;;-1:-1:-1;;;;;9166:6:0;7893:10;9313:23;9305:68;;;;-1:-1:-1;;;9305:68:0;;;;;;;:::i;:::-;43607:15:::1;:31:::0;;;43645:15:::1;:31:::0;;;43683:9:::1;:19:::0;;;43695:7;43724:33:::1;43663:13:::0;43625;43724:33:::1;:::i;:::-;:45;;;;:::i;:::-;43709:12;:60:::0;;;43802:2:::1;-1:-1:-1::0;43786:18:0::1;43778:63;;;::::0;-1:-1:-1;;;43778:63:0;;11855:2:1;43778:63:0::1;::::0;::::1;11837:21:1::0;;;11874:18;;;11867:30;11933:34;11913:18;;;11906:62;11985:18;;43778:63:0::1;11653:356:1::0;43778:63:0::1;43475:372:::0;;;:::o;43375:94::-;9166:6;;-1:-1:-1;;;;;9166:6:0;7893:10;9313:23;9305:68;;;;-1:-1:-1;;;9305:68:0;;;;;;;:::i;:::-;43442:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;43442:21:0;;::::1;::::0;;;::::1;::::0;;43375:94::o;45256:171::-;9166:6;;-1:-1:-1;;;;;9166:6:0;7893:10;9313:23;9305:68;;;;-1:-1:-1;;;9305:68:0;;;;;;;:::i;:::-;45371:15:::1;::::0;45337:50:::1;::::0;-1:-1:-1;;;;;45371:15:0;;::::1;::::0;45337:50;::::1;::::0;::::1;::::0;45371:15:::1;::::0;45337:50:::1;45394:15;:27:::0;;-1:-1:-1;;;;;;45394:27:0::1;-1:-1:-1::0;;;;;45394:27:0;;;::::1;::::0;;;::::1;::::0;;45256:171::o;41343:134::-;41429:13;;41399;;41429;;;;;41421:22;;;;;;41457:14;:12;:14::i;44419:268::-;9166:6;;-1:-1:-1;;;;;9166:6:0;7893:10;9313:23;9305:68;;;;-1:-1:-1;;;9305:68:0;;;;;;;:::i;:::-;44543:13:::1;::::0;-1:-1:-1;;;;;44535:21:0;;::::1;44543:13:::0;::::1;44535:21;;44519:112;;;::::0;-1:-1:-1;;;44519:112:0;;12216:2:1;44519:112:0::1;::::0;::::1;12198:21:1::0;12255:2;12235:18;;;12228:30;12294:34;12274:18;;;12267:62;12365:27;12345:18;;;12338:55;12410:19;;44519:112:0::1;12014:421:1::0;44519:112:0::1;44640:41;44669:4;44675:5;44640:28;:41::i;:::-;44419:268:::0;;:::o;20914:438::-;7893:10;21007:4;21090:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;21090:27:0;;;;;;;;;;21007:4;;7893:10;21136:35;;;;21128:85;;;;-1:-1:-1;;;21128:85:0;;12642:2:1;21128:85:0;;;12624:21:1;12681:2;12661:18;;;12654:30;12720:34;12700:18;;;12693:62;-1:-1:-1;;;12771:18:1;;;12764:35;12816:19;;21128:85:0;12440:401:1;21128:85:0;21249:60;21258:5;21265:7;21293:15;21274:16;:34;21249:8;:60::i;17959:193::-;18038:4;7893:10;18094:28;7893:10;18111:2;18115:6;18094:9;:28::i;44877:211::-;9166:6;;-1:-1:-1;;;;;9166:6:0;7893:10;9313:23;9305:68;;;;-1:-1:-1;;;9305:68:0;;;;;;;:::i;:::-;45023:15:::1;::::0;44980:59:::1;::::0;-1:-1:-1;;;;;45023:15:0;;::::1;::::0;44980:59;::::1;::::0;::::1;::::0;45023:15:::1;::::0;44980:59:::1;45046:15;:36:::0;;-1:-1:-1;;;;;;45046:36:0::1;-1:-1:-1::0;;;;;45046:36:0;;;::::1;::::0;;;::::1;::::0;;44877:211::o;44241:172::-;9166:6;;-1:-1:-1;;;;;9166:6:0;7893:10;9313:23;9305:68;;;;-1:-1:-1;;;9305:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44322:28:0;::::1;;::::0;;;:19:::1;:28:::0;;;;;;;;:39;;-1:-1:-1;;44322:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;44373:34;;1212:41:1;;;44373:34:0::1;::::0;1185:18:1;44373:34:0::1;;;;;;;44241:172:::0;;:::o;43853:382::-;9166:6;;-1:-1:-1;;;;;9166:6:0;7893:10;9313:23;9305:68;;;;-1:-1:-1;;;9305:68:0;;;;;;;:::i;:::-;43986:16:::1;:32:::0;;;44025:16:::1;:32:::0;;;44064:10:::1;:20:::0;;;44077:7;44107:35:::1;44044:13:::0;44005;44107:35:::1;:::i;:::-;:48;;;;:::i;:::-;44091:13;:64:::0;;;-1:-1:-1;44172:19:0::1;44164:65;;;::::0;-1:-1:-1;;;44164:65:0;;13048:2:1;44164:65:0::1;::::0;::::1;13030:21:1::0;13087:2;13067:18;;;13060:30;13126:34;13106:18;;;13099:62;-1:-1:-1;;;13177:18:1;;;13170:31;13218:19;;44164:65:0::1;12846:397:1::0;42441:433:0;9166:6;;42537:4;;-1:-1:-1;;;;;9166:6:0;7893:10;9313:23;9305:68;;;;-1:-1:-1;;;9305:68:0;;;;;;;:::i;:::-;42604:6:::1;42583:13;:11;:13::i;:::-;:17;::::0;42599:1:::1;42583:17;:::i;:::-;42582:28;;;;:::i;:::-;42569:9;:41;;42553:128;;;::::0;-1:-1:-1;;;42553:128:0;;13450:2:1;42553:128:0::1;::::0;::::1;13432:21:1::0;13489:2;13469:18;;;13462:30;13528:34;13508:18;;;13501:62;-1:-1:-1;;;13579:18:1;;;13572:51;13640:19;;42553:128:0::1;13248:417:1::0;42553:128:0::1;42739:4;42718:13;:11;:13::i;:::-;:17;::::0;42734:1:::1;42718:17;:::i;:::-;42717:26;;;;:::i;:::-;42704:9;:39;;42688:125;;;::::0;-1:-1:-1;;;42688:125:0;;13872:2:1;42688:125:0::1;::::0;::::1;13854:21:1::0;13911:2;13891:18;;;13884:30;13950:34;13930:18;;;13923:62;-1:-1:-1;;;14001:18:1;;;13994:50;14061:19;;42688:125:0::1;13670:416:1::0;42688:125:0::1;-1:-1:-1::0;42820:18:0::1;:30:::0;42864:4:::1;::::0;42441:433::o;53070:307::-;9166:6;;-1:-1:-1;;;;;9166:6:0;7893:10;9313:23;9305:68;;;;-1:-1:-1;;;9305:68:0;;;;;;;:::i;:::-;53217:48:::1;::::0;53170:21:::1;::::0;53141:26:::1;::::0;-1:-1:-1;;;;;53217:15:0;::::1;::::0;53170:21;;53141:26;53217:48;53141:26;53217:48;53170:21;53217:15;:48:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53198:67;;;53288:7;53272:99;;;::::0;-1:-1:-1;;;53272:99:0;;14503:2:1;53272:99:0::1;::::0;::::1;14485:21:1::0;14542:2;14522:18;;;14515:30;14581:34;14561:18;;;14554:62;14652:28;14632:18;;;14625:56;14698:19;;53272:99:0::1;14301:422:1::0;42250:125:0;9166:6;;42310:4;;-1:-1:-1;;;;;9166:6:0;7893:10;9313:23;9305:68;;;;-1:-1:-1;;;9305:68:0;;;;;;;:::i;:::-;-1:-1:-1;42323:20:0::1;:28:::0;;-1:-1:-1;;42323:28:0::1;::::0;;;42250:125;:::o;10002:201::-;9166:6;;-1:-1:-1;;;;;9166:6:0;7893:10;9313:23;9305:68;;;;-1:-1:-1;;;9305:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10091:22:0;::::1;10083:73;;;::::0;-1:-1:-1;;;10083:73:0;;14930:2:1;10083:73:0::1;::::0;::::1;14912:21:1::0;14969:2;14949:18;;;14942:30;15008:34;14988:18;;;14981:62;-1:-1:-1;;;15059:18:1;;;15052:36;15105:19;;10083:73:0::1;14728:402:1::0;10083:73:0::1;10167:28;10186:8;10167:18;:28::i;:::-;10002:201:::0;:::o;52810:254::-;9166:6;;52909:10;;-1:-1:-1;;;;;9166:6:0;7893:10;9313:23;9305:68;;;;-1:-1:-1;;;9305:68:0;;;;;;;:::i;:::-;52958:39:::1;::::0;-1:-1:-1;;;52958:39:0;;52991:4:::1;52958:39;::::0;::::1;1874:51:1::0;52931:24:0::1;::::0;-1:-1:-1;;;;;52958:24:0;::::1;::::0;::::1;::::0;1847:18:1;;52958:39:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53012:46;::::0;-1:-1:-1;;;53012:46:0;;-1:-1:-1;;;;;15516:32:1;;;53012:46:0::1;::::0;::::1;15498:51:1::0;15565:18;;;15558:34;;;52931:66:0;;-1:-1:-1;53012:23:0;;::::1;::::0;::::1;::::0;15471:18:1;;53012:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53004:54:::0;52810:254;-1:-1:-1;;;;52810:254:0:o;16335:100::-;16389:13;16422:5;16415:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16335:100;:::o;24550:380::-;-1:-1:-1;;;;;24686:19:0;;24678:68;;;;-1:-1:-1;;;24678:68:0;;16440:2:1;24678:68:0;;;16422:21:1;16479:2;16459:18;;;16452:30;16518:34;16498:18;;;16491:62;-1:-1:-1;;;16569:18:1;;;16562:34;16613:19;;24678:68:0;16238:400:1;24678:68:0;-1:-1:-1;;;;;24765:21:0;;24757:68;;;;-1:-1:-1;;;24757:68:0;;16845:2:1;24757:68:0;;;16827:21:1;16884:2;16864:18;;;16857:30;16923:34;16903:18;;;16896:62;-1:-1:-1;;;16974:18:1;;;16967:32;17016:19;;24757:68:0;16643:398:1;24757:68:0;-1:-1:-1;;;;;24838:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24890:32;;2082:25:1;;;24890:32:0;;2055:18:1;24890:32:0;;;;;;;24550:380;;;:::o;25217:453::-;-1:-1:-1;;;;;18331:18:0;;;25352:24;18331:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;25419:37:0;;25415:248;;25501:6;25481:16;:26;;25473:68;;;;-1:-1:-1;;;25473:68:0;;17248:2:1;25473:68:0;;;17230:21:1;17287:2;17267:18;;;17260:30;17326:31;17306:18;;;17299:59;17375:18;;25473:68:0;17046:353:1;25473:68:0;25585:51;25594:5;25601:7;25629:6;25610:16;:25;25585:8;:51::i;:::-;25341:329;25217:453;;;:::o;46039:3777::-;-1:-1:-1;;;;;46153:18:0;;46145:68;;;;-1:-1:-1;;;46145:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46228:16:0;;46220:64;;;;-1:-1:-1;;;46220:64:0;;;;;;;:::i;:::-;46297:11;46293:77;;46319:28;46335:4;46341:2;46345:1;46319:15;:28::i;46293:77::-;46382:14;;;;46378:1812;;;9166:6;;-1:-1:-1;;;;;46421:15:0;;;9166:6;;46421:15;;;;:41;;-1:-1:-1;9166:6:0;;-1:-1:-1;;;;;46449:13:0;;;9166:6;;46449:13;;46421:41;:70;;;;-1:-1:-1;;;;;;46475:16:0;;;;46421:70;:104;;;;-1:-1:-1;;;;;;46504:21:0;;46518:6;46504:21;;46421:104;:126;;;;-1:-1:-1;46539:8:0;;-1:-1:-1;;;46539:8:0;;;;46538:9;46421:126;46407:1776;;;46573:13;;;;;;;46568:171;;-1:-1:-1;;;;;46623:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;46652:23:0;;;;;;:19;:23;;;;;;;;46623:52;46601:126;;;;-1:-1:-1;;;46601:126:0;;18416:2:1;46601:126:0;;;18398:21:1;18455:2;18435:18;;;18428:30;-1:-1:-1;;;18474:18:1;;;18467:52;18536:18;;46601:126:0;18214:346:1;46601:126:0;46879:20;;;;46875:470;;;9166:6;;-1:-1:-1;;;;;46932:13:0;;;9166:6;;46932:13;;;;:60;;-1:-1:-1;46976:15:0;;-1:-1:-1;;;;;46962:30:0;;;46976:15;;46962:30;;46932:60;:105;;;;-1:-1:-1;47023:13:0;;-1:-1:-1;;;;;47009:28:0;;;47023:13;;47009:28;;46932:105;46914:420;;;47119:9;47090:39;;;;:28;:39;;;;;;47132:12;-1:-1:-1;47066:185:0;;;;-1:-1:-1;;;47066:185:0;;18767:2:1;47066:185:0;;;18749:21:1;18806:2;18786:18;;;18779:30;18845:34;18825:18;;;18818:62;18916:34;18896:18;;;18889:62;-1:-1:-1;;;18967:19:1;;;18960:40;19017:19;;47066:185:0;18565:477:1;47066:185:0;47295:9;47266:39;;;;:28;:39;;;;;47308:12;47266:54;;46914:420;-1:-1:-1;;;;;47393:31:0;;;;;;:25;:31;;;;;;;;:82;;;;-1:-1:-1;;;;;;47440:35:0;;;;;;:31;:35;;;;;;;;47439:36;47393:82;47377:797;;;47532:20;;47522:6;:30;;47500:135;;;;-1:-1:-1;;;47500:135:0;;19249:2:1;47500:135:0;;;19231:21:1;19288:2;19268:18;;;19261:30;19327:34;19307:18;;;19300:62;-1:-1:-1;;;19378:18:1;;;19371:51;19439:19;;47500:135:0;19047:417:1;47500:135:0;47682:9;;47665:13;47675:2;47665:9;:13::i;:::-;47656:22;;:6;:22;:::i;:::-;:35;;47648:67;;;;-1:-1:-1;;;47648:67:0;;19671:2:1;47648:67:0;;;19653:21:1;19710:2;19690:18;;;19683:30;-1:-1:-1;;;19729:18:1;;;19722:49;19788:18;;47648:67:0;19469:343:1;47648:67:0;47377:797;;;-1:-1:-1;;;;;47779:29:0;;;;;;:25;:29;;;;;;;;:82;;;;-1:-1:-1;;;;;;47824:37:0;;;;;;:31;:37;;;;;;;;47823:38;47779:82;47763:411;;;47918:20;;47908:6;:30;;47886:136;;;;-1:-1:-1;;;47886:136:0;;20019:2:1;47886:136:0;;;20001:21:1;20058:2;20038:18;;;20031:30;20097:34;20077:18;;;20070:62;-1:-1:-1;;;20148:18:1;;;20141:52;20210:19;;47886:136:0;19817:418:1;47763:411:0;-1:-1:-1;;;;;48045:35:0;;;;;;:31;:35;;;;;;;;48040:134;;48129:9;;48112:13;48122:2;48112:9;:13::i;:::-;48103:22;;:6;:22;:::i;:::-;:35;;48095:67;;;;-1:-1:-1;;;48095:67:0;;19671:2:1;48095:67:0;;;19653:21:1;19710:2;19690:18;;;19683:30;-1:-1:-1;;;19729:18:1;;;19722:49;19788:18;;48095:67:0;19469:343:1;48095:67:0;48198:28;48229:24;48247:4;48229:9;:24::i;:::-;48301:18;;48198:55;;-1:-1:-1;48277:42:0;;;;;;;48340:29;;-1:-1:-1;48358:11:0;;;;;;;48340:29;:49;;;;-1:-1:-1;48381:8:0;;-1:-1:-1;;;48381:8:0;;;;48380:9;48340:49;:92;;;;-1:-1:-1;;;;;;48401:31:0;;;;;;:25;:31;;;;;;;;48400:32;48340:92;:129;;;;-1:-1:-1;;;;;;48444:25:0;;;;;;:19;:25;;;;;;;;48443:26;48340:129;:164;;;;-1:-1:-1;;;;;;48481:23:0;;;;;;:19;:23;;;;;;;;48480:24;48340:164;48328:264;;;48521:8;:15;;-1:-1:-1;;;;48521:15:0;-1:-1:-1;;;48521:15:0;;;48547:10;:8;:10::i;:::-;48568:8;:16;;-1:-1:-1;;;;48568:16:0;;;48328:264;48616:8;;-1:-1:-1;;;;;48718:25:0;;48600:12;48718:25;;;:19;:25;;;;;;48616:8;-1:-1:-1;;;48616:8:0;;;;;48615:9;;48718:25;;:52;;-1:-1:-1;;;;;;48747:23:0;;;;;;:19;:23;;;;;;;;48718:52;48714:90;;;-1:-1:-1;48791:5:0;48714:90;48812:12;48909:7;48905:839;;;-1:-1:-1;;;;;48949:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;48998:1;48982:13;;:17;48949:50;48945:680;;;49019:34;49049:3;49019:25;49030:13;;49019:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;49012:41;;49114:13;;49094:16;;49087:4;:23;;;;:::i;:::-;49086:41;;;;:::i;:::-;49064:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;49176:13:0;;49162:10;;49155:17;;:4;:17;:::i;:::-;49154:35;;;;:::i;:::-;49138:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;49250:13:0;;49230:16;;49223:23;;:4;:23;:::i;:::-;49222:41;;;;:::i;:::-;49200:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;48945:680:0;;-1:-1:-1;48945:680:0;;-1:-1:-1;;;;;49307:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;49357:1;49342:12;;:16;49307:51;49303:322;;;49378:33;49407:3;49378:24;49389:12;;49378:6;:10;;:24;;;;:::i;:33::-;49371:40;;49471:12;;49452:15;;49445:4;:22;;;;:::i;:::-;49444:39;;;;:::i;:::-;49422:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;49531:12:0;;49518:9;;49511:16;;:4;:16;:::i;:::-;49510:33;;;;:::i;:::-;49494:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;49603:12:0;;49584:15;;49577:22;;:4;:22;:::i;:::-;49576:39;;;;:::i;:::-;49554:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;49303:322:0;49639:8;;49635:77;;49660:42;49676:4;49690;49697;49660:15;:42::i;:::-;49722:14;49732:4;49722:14;;:::i;:::-;;;48905:839;49750:33;49766:4;49772:2;49776:6;49750:15;:33::i;:::-;49792:18;49805:4;49792:12;:18::i;:::-;46138:3678;;;;46039:3777;;;:::o;50822:1591::-;50857:23;50883:24;50901:4;50883:9;:24::i;:::-;50857:50;;50914:25;50998:12;;50970:18;;50942;;:46;;;;:::i;:::-;:68;;;;:::i;:::-;50914:96;-1:-1:-1;51023:20:0;;;:46;;-1:-1:-1;51047:22:0;;51023:46;51019:75;;;51080:7;;50822:1591::o;51019:75::-;51147:23;51248:1;51221:17;51192:18;;51174:15;:36;;;;:::i;:::-;51173:65;;;;:::i;:::-;:76;;;;:::i;:::-;51147:102;-1:-1:-1;51256:26:0;51285:36;:15;51147:102;51285:19;:36::i;:::-;51256:65;-1:-1:-1;51358:21:0;51388:36;51256:65;51388:16;:36::i;:::-;51433:18;51454:44;:21;51480:17;51454:25;:44::i;:::-;51433:65;;51507:23;51533:71;51580:17;51533:34;51548:18;;51533:10;:14;;:34;;;;:::i;:71::-;51507:97;;51611:17;51631:51;51664:17;51631:28;51646:12;;51631:10;:14;;:28;;;;:::i;:51::-;51611:71;-1:-1:-1;51691:23:0;51611:71;51717:28;51730:15;51717:10;:28;:::i;:::-;:40;;;;:::i;:::-;51787:1;51766:18;:22;;;51795:18;:22;;;51824:12;:16;;;51876:15;;51868:73;;51691:66;;-1:-1:-1;51787:1:0;;-1:-1:-1;;;;;51876:15:0;;;;51906;;51787:1;51868:73;51787:1;51868:73;51906:15;51876;51868:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51970:9:0;;51962:47;;51849:92;;-1:-1:-1;;;;;;51970:9:0;;51994;;51962:47;;;;51994:9;51970;51962:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51948:61:0;;-1:-1:-1;;52022:19:0;;;;;:42;;;52063:1;52045:15;:19;52022:42;52018:232;;;52075:46;52088:15;52105;52075:12;:46::i;:::-;52215:18;;52135:107;;;20442:25:1;;;20498:2;20483:18;;20476:34;;;20526:18;;;20519:34;;;;52135:107:0;;;;;;20430:2:1;52135:107:0;;;52018:232;52287:7;52262:21;:32;52258:150;;52327:15;;52319:81;;-1:-1:-1;;;;;52327:15:0;;;;52366:21;;52319:81;;;;52366:21;52327:15;52319:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52305:95:0;;-1:-1:-1;;52258:150:0;50850:1563;;;;;;;;;;50822:1591::o;44693:178::-;-1:-1:-1;;;;;44772:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;44772:39:0;;;;;;;;;;44825:40;;44772:39;;:31;44825:40;;;44693:178;;:::o;22789:399::-;-1:-1:-1;;;;;22873:21:0;;22865:65;;;;-1:-1:-1;;;22865:65:0;;20766:2:1;22865:65:0;;;20748:21:1;20805:2;20785:18;;;20778:30;20844:33;20824:18;;;20817:61;20895:18;;22865:65:0;20564:355:1;22865:65:0;23021:6;23005:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;23038:18:0;;:9;:18;;;;;;;;;;:28;;23060:6;;23038:9;:28;;23060:6;;23038:28;:::i;:::-;;;;-1:-1:-1;;23082:37:0;;2082:25:1;;;-1:-1:-1;;;;;23082:37:0;;;23099:1;;23082:37;;2070:2:1;2055:18;23082:37:0;;;;;;;44419:268;;:::o;50353:463::-;50525:15;;50493:62;;50510:4;;-1:-1:-1;;;;;50525:15:0;50543:11;50493:8;:62::i;:::-;50588:15;;50764;;50588:222;;-1:-1:-1;;;50588:222:0;;50656:4;50588:222;;;21265:34:1;21315:18;;;21308:34;;;50588:15:0;21358:18:1;;;21351:34;;;21401:18;;;21394:34;-1:-1:-1;;;;;50764:15:0;;;21444:19:1;;;21437:44;50788:15:0;21497:19:1;;;21490:35;50588:15:0;;;:31;;50628:9;;21199:19:1;;50588:222:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;50353:463;;:::o;41784:186::-;41833:13;;;;;;;41832:14;41824:53;;;;-1:-1:-1;;;41824:53:0;;9491:2:1;41824:53:0;;;9473:21:1;9530:2;9510:18;;;9503:30;9569:28;9549:18;;;9542:56;9615:18;;41824:53:0;9289:350:1;41824:53:0;41884:13;:20;;-1:-1:-1;;41911:18:0;;;;;41949:15;41936:10;:28;41784:186::o;10363:191::-;10456:6;;;-1:-1:-1;;;;;10473:17:0;;;-1:-1:-1;;;;;;10473:17:0;;;;;;;10506:40;;10456:6;;;10473:17;10456:6;;10506:40;;10437:16;;10506:40;10426:128;10363:191;:::o;16554:104::-;16610:13;16643:7;16636:14;;;;;:::i;21831:671::-;-1:-1:-1;;;;;21962:18:0;;21954:68;;;;-1:-1:-1;;;21954:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22041:16:0;;22033:64;;;;-1:-1:-1;;;22033:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22183:15:0;;22161:19;22183:15;;;;;;;;;;;22217:21;;;;22209:72;;;;-1:-1:-1;;;22209:72:0;;22049:2:1;22209:72:0;;;22031:21:1;22088:2;22068:18;;;22061:30;22127:34;22107:18;;;22100:62;-1:-1:-1;;;22178:18:1;;;22171:36;22224:19;;22209:72:0;21847:402:1;22209:72:0;-1:-1:-1;;;;;22317:15:0;;;:9;:15;;;;;;;;;;;22335:20;;;22317:38;;22377:13;;;;;;;;:23;;22349:6;;22317:9;22377:23;;22349:6;;22377:23;:::i;:::-;;;;;;;;22433:2;-1:-1:-1;;;;;22418:26:0;22427:4;-1:-1:-1;;;;;22418:26:0;;22437:6;22418:26;;;;2082:25:1;;2070:2;2055:18;;1936:177;22418:26:0;;;;;;;;22457:37;43475:372;3701:98;3759:7;3786:5;3790:1;3786;:5;:::i;:::-;3779:12;3701:98;-1:-1:-1;;;3701:98:0:o;4100:::-;4158:7;4185:5;4189:1;4185;:5;:::i;45559:474::-;-1:-1:-1;;;;;45614:19:0;;;;;;:13;:19;;;;;;45610:53;;45559:474;:::o;45610:53::-;45669:18;45723:6;45709:10;;45691:15;:28;;;;:::i;:::-;45690:39;;;;:::i;:::-;45669:60;;45736:22;45774:16;;45761:10;:29;;;;:::i;:::-;:36;;45793:4;45761:36;:::i;:::-;-1:-1:-1;;;;;45825:19:0;;;;;;:13;:19;;;;;;45736:61;;-1:-1:-1;45808:36:0;;45804:97;;;-1:-1:-1;;;;;;;45855:19:0;45877:1;45855:19;;;:13;:19;;;;;:23;45559:474::o;45804:97::-;-1:-1:-1;;;;;45942:19:0;;;;;;:13;:19;;;;;;:36;;45964:14;;45942:36;:::i;:::-;45923:15;45933:4;45923:9;:15::i;:::-;:55;;45907:120;;;;-1:-1:-1;;;45907:120:0;;22456:2:1;45907:120:0;;;22438:21:1;22495:2;22475:18;;;22468:30;22534:33;22514:18;;;22507:61;22585:18;;45907:120:0;22254:355:1;3344:98:0;3402:7;3429:5;3433:1;3429;:5;:::i;49822:525::-;49964:16;;;49978:1;49964:16;;;;;;;;49940:21;;49964:16;;;;;;;;;;-1:-1:-1;49964:16:0;49940:40;;50005:4;49987;49992:1;49987:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;49987:23:0;;;:7;;;;;;;;;;:23;;;;50027:15;;:22;;;-1:-1:-1;;;50027:22:0;;;;:15;;;;;:20;;:22;;;;;49987:7;;50027:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50017:4;50022:1;50017:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;50017:32:0;;;:7;;;;;;;;;:32;50090:15;;50058:62;;50075:4;;50090:15;50108:11;50058:8;:62::i;:::-;50151:15;;:190;;-1:-1:-1;;;50151:190:0;;-1:-1:-1;;;;;50151:15:0;;;;:66;;:190;;50226:11;;50151:15;;50284:4;;50305;;50319:15;;50151:190;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49877:470;49822:525;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:180::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;-1:-1:-1;1415:23:1;;1264:180;-1:-1:-1;1264:180:1:o;1449:247::-;1508:6;1561:2;1549:9;1540:7;1536:23;1532:32;1529:52;;;1577:1;1574;1567:12;1529:52;1616:9;1603:23;1635:31;1660:5;1635:31;:::i;2118:456::-;2195:6;2203;2211;2264:2;2252:9;2243:7;2239:23;2235:32;2232:52;;;2280:1;2277;2270:12;2232:52;2319:9;2306:23;2338:31;2363:5;2338:31;:::i;:::-;2388:5;-1:-1:-1;2445:2:1;2430:18;;2417:32;2458:33;2417:32;2458:33;:::i;:::-;2118:456;;2510:7;;-1:-1:-1;;;2564:2:1;2549:18;;;;2536:32;;2118:456::o;2976:127::-;3037:10;3032:3;3028:20;3025:1;3018:31;3068:4;3065:1;3058:15;3092:4;3089:1;3082:15;3108:275;3179:2;3173:9;3244:2;3225:13;;-1:-1:-1;;3221:27:1;3209:40;;3279:18;3264:34;;3300:22;;;3261:62;3258:88;;;3326:18;;:::i;:::-;3362:2;3355:22;3108:275;;-1:-1:-1;3108:275:1:o;3388:183::-;3448:4;3481:18;3473:6;3470:30;3467:56;;;3503:18;;:::i;:::-;-1:-1:-1;3548:1:1;3544:14;3560:4;3540:25;;3388:183::o;3576:662::-;3630:5;3683:3;3676:4;3668:6;3664:17;3660:27;3650:55;;3701:1;3698;3691:12;3650:55;3737:6;3724:20;3763:4;3787:60;3803:43;3843:2;3803:43;:::i;:::-;3787:60;:::i;:::-;3881:15;;;3967:1;3963:10;;;;3951:23;;3947:32;;;3912:12;;;;3991:15;;;3988:35;;;4019:1;4016;4009:12;3988:35;4055:2;4047:6;4043:15;4067:142;4083:6;4078:3;4075:15;4067:142;;;4149:17;;4137:30;;4187:12;;;;4100;;4067:142;;;-1:-1:-1;4227:5:1;3576:662;-1:-1:-1;;;;;;3576:662:1:o;4243:1703::-;4406:6;4414;4422;4430;4438;4446;4454;4507:3;4495:9;4486:7;4482:23;4478:33;4475:53;;;4524:1;4521;4514:12;4475:53;4563:9;4550:23;4582:31;4607:5;4582:31;:::i;:::-;4632:5;-1:-1:-1;4656:2:1;4695:18;;;4682:32;4723:33;4682:32;4723:33;:::i;:::-;4775:7;-1:-1:-1;4829:2:1;4814:18;;4801:32;;-1:-1:-1;4880:2:1;4865:18;;4852:32;;-1:-1:-1;4931:3:1;4916:19;;4903:33;;-1:-1:-1;4987:3:1;4972:19;;4959:33;5011:18;5041:14;;;5038:34;;;5068:1;5065;5058:12;5038:34;5106:6;5095:9;5091:22;5081:32;;5151:7;5144:4;5140:2;5136:13;5132:27;5122:55;;5173:1;5170;5163:12;5122:55;5209:2;5196:16;5232:60;5248:43;5288:2;5248:43;:::i;5232:60::-;5326:15;;;5408:1;5404:10;;;;5396:19;;5392:28;;;5357:12;;;;5432:19;;;5429:39;;;5464:1;5461;5454:12;5429:39;5488:11;;;;5508:223;5524:6;5519:3;5516:15;5508:223;;;5606:3;5593:17;5623:33;5648:7;5623:33;:::i;:::-;5669:20;;5541:12;;;;5709;;;;5508:223;;;5750:5;-1:-1:-1;;;5808:3:1;5793:19;;5780:33;;-1:-1:-1;5825:16:1;;;5822:36;;;5854:1;5851;5844:12;5822:36;;;5877:63;5932:7;5921:8;5910:9;5906:24;5877:63;:::i;:::-;5867:73;;;4243:1703;;;;;;;;;;:::o;5951:118::-;6037:5;6030:13;6023:21;6016:5;6013:32;6003:60;;6059:1;6056;6049:12;6074:382;6139:6;6147;6200:2;6188:9;6179:7;6175:23;6171:32;6168:52;;;6216:1;6213;6206:12;6168:52;6255:9;6242:23;6274:31;6299:5;6274:31;:::i;:::-;6324:5;-1:-1:-1;6381:2:1;6366:18;;6353:32;6394:30;6353:32;6394:30;:::i;:::-;6443:7;6433:17;;;6074:382;;;;;:::o;6461:316::-;6538:6;6546;6554;6607:2;6595:9;6586:7;6582:23;6578:32;6575:52;;;6623:1;6620;6613:12;6575:52;-1:-1:-1;;6646:23:1;;;6716:2;6701:18;;6688:32;;-1:-1:-1;6767:2:1;6752:18;;;6739:32;;6461:316;-1:-1:-1;6461:316:1:o;6782:241::-;6838:6;6891:2;6879:9;6870:7;6866:23;6862:32;6859:52;;;6907:1;6904;6897:12;6859:52;6946:9;6933:23;6965:28;6987:5;6965:28;:::i;7028:388::-;7096:6;7104;7157:2;7145:9;7136:7;7132:23;7128:32;7125:52;;;7173:1;7170;7163:12;7125:52;7212:9;7199:23;7231:31;7256:5;7231:31;:::i;:::-;7281:5;-1:-1:-1;7338:2:1;7323:18;;7310:32;7351:33;7310:32;7351:33;:::i;7421:356::-;7623:2;7605:21;;;7642:18;;;7635:30;7701:34;7696:2;7681:18;;7674:62;7768:2;7753:18;;7421:356::o;7782:127::-;7843:10;7838:3;7834:20;7831:1;7824:31;7874:4;7871:1;7864:15;7898:4;7895:1;7888:15;7914:168;7954:7;8020:1;8016;8012:6;8008:14;8005:1;8002:21;7997:1;7990:9;7983:17;7979:45;7976:71;;;8027:18;;:::i;:::-;-1:-1:-1;8067:9:1;;7914:168::o;8087:217::-;8127:1;8153;8143:132;;8197:10;8192:3;8188:20;8185:1;8178:31;8232:4;8229:1;8222:15;8260:4;8257:1;8250:15;8143:132;-1:-1:-1;8289:9:1;;8087:217::o;8725:128::-;8765:3;8796:1;8792:6;8789:1;8786:13;8783:39;;;8802:18;;:::i;:::-;-1:-1:-1;8838:9:1;;8725:128::o;9990:251::-;10060:6;10113:2;10101:9;10092:7;10088:23;10084:32;10081:52;;;10129:1;10126;10119:12;10081:52;10161:9;10155:16;10180:31;10205:5;10180:31;:::i;10555:125::-;10595:4;10623:1;10620;10617:8;10614:34;;;10628:18;;:::i;:::-;-1:-1:-1;10665:9:1;;10555:125::o;10685:127::-;10746:10;10741:3;10737:20;10734:1;10727:31;10777:4;10774:1;10767:15;10801:4;10798:1;10791:15;11164:135;11203:3;-1:-1:-1;;11224:17:1;;11221:43;;;11244:18;;:::i;:::-;-1:-1:-1;11291:1:1;11280:13;;11164:135::o;15135:184::-;15205:6;15258:2;15246:9;15237:7;15233:23;15229:32;15226:52;;;15274:1;15271;15264:12;15226:52;-1:-1:-1;15297:16:1;;15135:184;-1:-1:-1;15135:184:1:o;15603:245::-;15670:6;15723:2;15711:9;15702:7;15698:23;15694:32;15691:52;;;15739:1;15736;15729:12;15691:52;15771:9;15765:16;15790:28;15812:5;15790:28;:::i;15853:380::-;15932:1;15928:12;;;;15975;;;15996:61;;16050:4;16042:6;16038:17;16028:27;;15996:61;16103:2;16095:6;16092:14;16072:18;16069:38;16066:161;;;16149:10;16144:3;16140:20;16137:1;16130:31;16184:4;16181:1;16174:15;16212:4;16209:1;16202:15;16066:161;;15853:380;;;:::o;17404:401::-;17606:2;17588:21;;;17645:2;17625:18;;;17618:30;17684:34;17679:2;17664:18;;17657:62;-1:-1:-1;;;17750:2:1;17735:18;;17728:35;17795:3;17780:19;;17404:401::o;17810:399::-;18012:2;17994:21;;;18051:2;18031:18;;;18024:30;18090:34;18085:2;18070:18;;18063:62;-1:-1:-1;;;18156:2:1;18141:18;;18134:33;18199:3;18184:19;;17810:399::o;21536:306::-;21624:6;21632;21640;21693:2;21681:9;21672:7;21668:23;21664:32;21661:52;;;21709:1;21706;21699:12;21661:52;21738:9;21732:16;21722:26;;21788:2;21777:9;21773:18;21767:25;21757:35;;21832:2;21821:9;21817:18;21811:25;21801:35;;21536:306;;;;;:::o;22614:980::-;22876:4;22924:3;22913:9;22909:19;22955:6;22944:9;22937:25;22981:2;23019:6;23014:2;23003:9;22999:18;22992:34;23062:3;23057:2;23046:9;23042:18;23035:31;23086:6;23121;23115:13;23152:6;23144;23137:22;23190:3;23179:9;23175:19;23168:26;;23229:2;23221:6;23217:15;23203:29;;23250:1;23260:195;23274:6;23271:1;23268:13;23260:195;;;23339:13;;-1:-1:-1;;;;;23335:39:1;23323:52;;23430:15;;;;23395:12;;;;23371:1;23289:9;23260:195;;;-1:-1:-1;;;;;;;23511:32:1;;;;23506:2;23491:18;;23484:60;-1:-1:-1;;;23575:3:1;23560:19;23553:35;23472:3;22614:980;-1:-1:-1;;;22614:980:1:o
Swarm Source
ipfs://5036e5dc4f25f9c454353513b7458c7293b369f37c06a7fddf9647688c27a8c7
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.