ERC-20
Overview
Max Total Supply
1,000,000,000 BORZOI
Holders
107
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
7,886,474.523806954208911184 BORZOIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BORZOI
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-08 */ // SPDX-License-Identifier: MIT // File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol pragma solidity >=0.5.0; 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: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol pragma solidity >=0.5.0; 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: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol pragma solidity >=0.6.2; 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); } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol pragma solidity >=0.6.2; 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: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (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/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (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/ERC20.sol // OpenZeppelin Contracts v4.4.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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; if (amount > 0) { emit Transfer(sender, recipient, amount);} _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: contracts/test.sol pragma solidity ^0.8.16; contract BORZOI is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; struct BuyFee { uint16 devFee; } struct SellFee { uint16 devFee; } bool private swapping; BuyFee public buyFee; SellFee public sellFee; uint256 public swapTokensAtAmount = 4 * 10**7 * 10**18; uint256 public maxBuyAmount = 1 * 10**7 * 10**18; // 1% of the supply (antiwhale) uint256 public maxSellAmount = 2 * 10**7 * 10**18; // 2% of the supply (antiwhale) uint256 public maxWalletAmount = 2 * 10**7 * 10**18; // 2% of the supply (antiwhale) uint16 private totalBuyFee; uint16 private totalSellFee; bool public swapEnabled; bool private isTradingEnabled; address payable devWallet = payable(address(0x341E673Cc4639fE0c89756B032b74E8D14034d81)); mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _isExcludedFromLimit; 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); modifier lockTheSwap() { swapping = true; _; swapping = false; } constructor() ERC20("BORZOI", "BORZOI") { buyFee.devFee = 5; totalBuyFee = 5; sellFee.devFee = 25; totalSellFee = 25; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D// Uniswap V2 Router ); // Create a uniswap pair for this new token address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = _uniswapV2Pair; _setAutomatedMarketMakerPair(_uniswapV2Pair, true); // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); swapEnabled = true; /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(owner(), 1 * 10**9 * (10**18)); // 1 Billion Tokens } receive() external payable {} function updateRouter(address newAddress) external onlyOwner { require(newAddress != address(uniswapV2Router), "ERC20: The router already has that address"); uniswapV2Router = IUniswapV2Router02(newAddress); address get_pair = IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this), uniswapV2Router.WETH()); if (get_pair == address(0)) { uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); } else { uniswapV2Pair = get_pair; } } function excludeFromFees(address account, bool excluded) public onlyOwner { require( _isExcludedFromFees[account] != excluded, "ERC20: Account is already the value of 'excluded'" ); _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function claimStuckTokens(address _token) external onlyOwner { require(_token != address(this), "No rugs"); if (_token == address(0x0)) { payable(owner()).transfer(address(this).balance); return; } IERC20 erc20token = IERC20(_token); uint256 balance = erc20token.balanceOf(address(this)); erc20token.transfer(owner(), balance); } function excludefromLimit(address account, bool excluded) external onlyOwner { _isExcludedFromLimit[account] = excluded; } function enableTrading() external onlyOwner { isTradingEnabled = true; } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "ERC20: The Uniswap pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { require( automatedMarketMakerPairs[pair] != value, "ERC20: Automated market maker pair is already set to that value" ); automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function setBuyFees( uint16 newBuyFee ) external onlyOwner { buyFee.devFee = newBuyFee; totalBuyFee = newBuyFee; require(totalBuyFee <= 20, "MaX buy fees limit is 20%"); } function setSellFee( uint16 newSellFee ) external onlyOwner { sellFee.devFee = newSellFee; totalSellFee = newSellFee; require (totalSellFee <= 25, "Max sell fees limit is 25%"); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } // function to change dev wallet function setDevWallet(address newWallet) external onlyOwner { require (newWallet != address(0), "Dev wallet can not be a zero address"); devWallet = payable(newWallet); } // Function to set Max Wallet limit ( How many tokens a wallet can hold) function setMaxWallet(uint256 amount) external onlyOwner { require(amount > 20000000, "Can't set lower amount, No rugPull"); maxWalletAmount = amount * 10**18; } // // function to set Max Buy limit per transaction function setMaxBuyAmount(uint256 amount) external onlyOwner { require(amount >= 10000000, "Can't set lower amount, No rugPull"); maxBuyAmount = amount * 10**18; } // function to set Max sell limit per transaction function setMaxSellAmount(uint256 amount) external onlyOwner { require(amount >= 10000000, "Can't set lower amount, No rugPull"); maxSellAmount = amount * 10**18; } // function to set threshold for eth conversion function setSwapTokensAtAmount(uint256 amount) external onlyOwner { swapTokensAtAmount = amount * 10**18; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "Token: transfer from the zero address"); require(to != address(0), "Token: transfer to the zero address"); require( isTradingEnabled || _isExcludedFromFees[from], "Trading not enabled yet" ); if (amount == 0) { super._transfer(from, to, 0); return; } uint256 contractTokenBalance = balanceOf(address(this)); bool overMinimumTokenBalance = contractTokenBalance >= swapTokensAtAmount; if ( swapEnabled && !swapping && from != uniswapV2Pair && overMinimumTokenBalance ) { uint256 swapTokens = contractTokenBalance; swapAndSendToDev(swapTokens); } bool takeFee = true; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } if (takeFee) { uint256 fees; if (automatedMarketMakerPairs[to]) { fees = totalSellFee; } else if (automatedMarketMakerPairs[from]) { fees = totalBuyFee; } if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) { if (automatedMarketMakerPairs[to]) { require(amount <= maxSellAmount, "Sell exceeds per transaction limit"); } else if (automatedMarketMakerPairs[from]) { require(amount <= maxBuyAmount, "Buy exceeds per transaction limit"); } if (!automatedMarketMakerPairs[to]) { require( balanceOf(to) + amount <= maxWalletAmount, "Antiwhale: Balance exceeds limit" ); } } uint256 feeAmount = amount.mul(fees).div(100); amount = amount.sub(feeAmount); super._transfer(from, address(this), feeAmount); } super._transfer(from, to, amount); } function swapAndSendToDev (uint256 tokens) private lockTheSwap { uint256 initialBalance = address(this).balance; swapTokensForEth(tokens); uint256 newBalance = address(this).balance.sub(initialBalance); (bool os, ) = payable(devWallet).call{value: newBalance}(""); require(os,"transaction failed"); } 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 ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"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":"buyFee","outputs":[{"internalType":"uint16","name":"devFee","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludefromLimit","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":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint16","name":"devFee","type":"uint16"}],"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":[{"internalType":"uint16","name":"newBuyFee","type":"uint16"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"newSellFee","type":"uint16"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526a2116545850052128000000600a556a084595161401484a000000600b556a108b2a2c28029094000000600c819055600d55600e8054600160301b600160d01b03191679341e673cc4639fe0c89756b032b74e8d14034d810000000000001790553480156200007257600080fd5b50604080518082018252600680825265424f525a4f4960d01b6020808401829052845180860190955291845290830152906003620000b1838262000741565b506004620000c0828262000741565b505050620000dd620000d76200032660201b60201c565b6200032a565b60088054600561ffff1991821617909155600e805460098054601994169390931790925563ffffffff19909116621900051790556040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d91600091839163c45a01559160048083019260209291908290030181865afa15801562000167573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018d91906200080d565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020191906200080d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200024f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027591906200080d565b600680546001600160a01b038086166001600160a01b03199283161790925560078054928416929091169190911790559050620002b48160016200037c565b620002d3620002cb6005546001600160a01b031690565b60016200046c565b620002e03060016200046c565b600e805460ff60201b19166401000000001790556200031e6200030b6005546001600160a01b031690565b6b033b2e3c9fd0803ce8000000620005b3565b505062000867565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526011602052604090205481151560ff909116151503620004185760405162461bcd60e51b815260206004820152603f60248201527f45524332303a204175746f6d61746564206d61726b6574206d616b657220706160448201527f697220697320616c72656164792073657420746f20746861742076616c75650060648201526084015b60405180910390fd5b6001600160a01b038216600081815260116020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620004c85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200040f565b6001600160a01b0382166000908152600f602052604090205481151560ff909116151503620005545760405162461bcd60e51b815260206004820152603160248201527f45524332303a204163636f756e7420697320616c7265616479207468652076616044820152706c7565206f6620276578636c756465642760781b60648201526084016200040f565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200060b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200040f565b80600260008282546200061f91906200083f565b90915550506001600160a01b038216600090815260208190526040812080548392906200064e9084906200083f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006c857607f821691505b602082108103620006e957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200069857600081815260208120601f850160051c81016020861015620007185750805b601f850160051c820191505b81811015620007395782815560010162000724565b505050505050565b81516001600160401b038111156200075d576200075d6200069d565b62000775816200076e8454620006b3565b84620006ef565b602080601f831160018114620007ad5760008415620007945750858301515b600019600386901b1c1916600185901b17855562000739565b600085815260208120601f198616915b82811015620007de57888601518255948401946001909101908401620007bd565b5085821015620007fd5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200082057600080fd5b81516001600160a01b03811681146200083857600080fd5b9392505050565b808201808211156200086157634e487b7160e01b600052601160045260246000fd5b92915050565b6124ed80620008776000396000f3fe6080604052600436106102295760003560e01c806388e765ff11610123578063b62496f5116100ab578063e2f456051161006f578063e2f45605146106b4578063e99c9d09146106ca578063f2fde38b146106ea578063f34eb0b81461070a578063f9d0831a1461072a57600080fd5b8063b62496f5146105de578063c02466681461060e578063c851cc321461062e578063dd62ed3e1461064e578063e064648a1461069457600080fd5b80639a7a23d6116100f25780639a7a23d614610548578063a457c2d714610568578063a9059cbb14610588578063aa4bde28146105a8578063afa4f3b2146105be57600080fd5b806388e765ff146104ea5780638a8c523c146105005780638da5cb5b1461051557806395d89b411461053357600080fd5b806343c348a5116101b157806366d602ae1161017557806366d602ae146104475780636ddd17131461045d57806370a082311461047f578063715018a6146104b55780637537a47f146104ca57600080fd5b806343c348a51461039357806347062402146103b357806349bd5a5e146103ce5780634fbee193146103ee5780635d0044ca1461042757600080fd5b80631f53ac02116101f85780631f53ac02146102e757806323b872dd146103095780632b14ca5614610329578063313ce56714610357578063395093511461037357600080fd5b806306fdde0314610235578063095ea7b3146102605780631694505e1461029057806318160ddd146102c857600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024a61074a565b6040516102579190612118565b60405180910390f35b34801561026c57600080fd5b5061028061027b36600461217b565b6107dc565b6040519015158152602001610257565b34801561029c57600080fd5b506006546102b0906001600160a01b031681565b6040516001600160a01b039091168152602001610257565b3480156102d457600080fd5b506002545b604051908152602001610257565b3480156102f357600080fd5b506103076103023660046121a7565b6107f3565b005b34801561031557600080fd5b506102806103243660046121c4565b6108ba565b34801561033557600080fd5b506009546103449061ffff1681565b60405161ffff9091168152602001610257565b34801561036357600080fd5b5060405160128152602001610257565b34801561037f57600080fd5b5061028061038e36600461217b565b610964565b34801561039f57600080fd5b506103076103ae366004612205565b6109a0565b3480156103bf57600080fd5b506008546103449061ffff1681565b3480156103da57600080fd5b506007546102b0906001600160a01b031681565b3480156103fa57600080fd5b506102806104093660046121a7565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561043357600080fd5b50610307610442366004612229565b610a3d565b34801561045357600080fd5b506102d9600c5481565b34801561046957600080fd5b50600e5461028090640100000000900460ff1681565b34801561048b57600080fd5b506102d961049a3660046121a7565b6001600160a01b031660009081526020819052604090205490565b3480156104c157600080fd5b50610307610aa2565b3480156104d657600080fd5b506103076104e5366004612250565b610ad8565b3480156104f657600080fd5b506102d9600b5481565b34801561050c57600080fd5b50610307610b2d565b34801561052157600080fd5b506005546001600160a01b03166102b0565b34801561053f57600080fd5b5061024a610b70565b34801561055457600080fd5b50610307610563366004612250565b610b7f565b34801561057457600080fd5b5061028061058336600461217b565b610c4c565b34801561059457600080fd5b506102806105a336600461217b565b610ce5565b3480156105b457600080fd5b506102d9600d5481565b3480156105ca57600080fd5b506103076105d9366004612229565b610cf2565b3480156105ea57600080fd5b506102806105f93660046121a7565b60116020526000908152604090205460ff1681565b34801561061a57600080fd5b50610307610629366004612250565b610d34565b34801561063a57600080fd5b506103076106493660046121a7565b610e47565b34801561065a57600080fd5b506102d9610669366004612289565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106a057600080fd5b506103076106af366004612205565b61121a565b3480156106c057600080fd5b506102d9600a5481565b3480156106d657600080fd5b506103076106e5366004612229565b6112c6565b3480156106f657600080fd5b506103076107053660046121a7565b61132b565b34801561071657600080fd5b50610307610725366004612229565b6113c3565b34801561073657600080fd5b506103076107453660046121a7565b611428565b606060038054610759906122b7565b80601f0160208091040260200160405190810160405280929190818152602001828054610785906122b7565b80156107d25780601f106107a7576101008083540402835291602001916107d2565b820191906000526020600020905b8154815290600101906020018083116107b557829003601f168201915b5050505050905090565b60006107e93384846115e2565b5060015b92915050565b6005546001600160a01b031633146108265760405162461bcd60e51b815260040161081d906122f1565b60405180910390fd5b6001600160a01b0381166108885760405162461bcd60e51b8152602060048201526024808201527f4465762077616c6c65742063616e206e6f742062652061207a65726f206164646044820152637265737360e01b606482015260840161081d565b600e80546001600160a01b039092166601000000000000026601000000000000600160d01b0319909216919091179055565b60006108c7848484611706565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561094c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161081d565b61095985338584036115e2565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107e991859061099b90869061233c565b6115e2565b6005546001600160a01b031633146109ca5760405162461bcd60e51b815260040161081d906122f1565b6008805461ffff831661ffff199182168117909255600e80549091168217905560141015610a3a5760405162461bcd60e51b815260206004820152601a60248201527f4d6158206275792066656573206c696d69742020697320323025000000000000604482015260640161081d565b50565b6005546001600160a01b03163314610a675760405162461bcd60e51b815260040161081d906122f1565b6301312d008111610a8a5760405162461bcd60e51b815260040161081d9061234f565b610a9c81670de0b6b3a7640000612391565b600d5550565b6005546001600160a01b03163314610acc5760405162461bcd60e51b815260040161081d906122f1565b610ad66000611baa565b565b6005546001600160a01b03163314610b025760405162461bcd60e51b815260040161081d906122f1565b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b575760405162461bcd60e51b815260040161081d906122f1565b600e805465ff0000000000191665010000000000179055565b606060048054610759906122b7565b6005546001600160a01b03163314610ba95760405162461bcd60e51b815260040161081d906122f1565b6007546001600160a01b0390811690831603610c3e5760405162461bcd60e51b815260206004820152604860248201527f45524332303a2054686520556e697377617020706169722063616e6e6f74206260448201527f652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616064820152676b6572506169727360c01b608482015260a40161081d565b610c488282611bfc565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610cce5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161081d565b610cdb33858584036115e2565b5060019392505050565b60006107e9338484611706565b6005546001600160a01b03163314610d1c5760405162461bcd60e51b815260040161081d906122f1565b610d2e81670de0b6b3a7640000612391565b600a5550565b6005546001600160a01b03163314610d5e5760405162461bcd60e51b815260040161081d906122f1565b6001600160a01b0382166000908152600f602052604090205481151560ff909116151503610de85760405162461bcd60e51b815260206004820152603160248201527f45524332303a204163636f756e7420697320616c7265616479207468652076616044820152706c7565206f6620276578636c756465642760781b606482015260840161081d565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e715760405162461bcd60e51b815260040161081d906122f1565b6006546001600160a01b0390811690821603610ee25760405162461bcd60e51b815260206004820152602a60248201527f45524332303a2054686520726f7574657220616c7265616479206861732074686044820152696174206164647265737360b01b606482015260840161081d565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290516000929163c45a01559160048083019260209291908290030181865afa158015610f3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6291906123a8565b6001600160a01b031663e6a4390530600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fc4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe891906123a8565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015611033573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061105791906123a8565b90506001600160a01b0381166111f957600660009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110de91906123a8565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611140573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116491906123a8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156111b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111d591906123a8565b600780546001600160a01b0319166001600160a01b03929092169190911790555050565b600780546001600160a01b0383166001600160a01b03199091161790555050565b6005546001600160a01b031633146112445760405162461bcd60e51b815260040161081d906122f1565b6009805461ffff191661ffff838116918217909255600e805463ffff0000191662010000928302179081905560199190049091161115610a3a5760405162461bcd60e51b815260206004820152601a60248201527f4d61782073656c6c2066656573206c696d697420697320323525000000000000604482015260640161081d565b6005546001600160a01b031633146112f05760405162461bcd60e51b815260040161081d906122f1565b629896808110156113135760405162461bcd60e51b815260040161081d9061234f565b61132581670de0b6b3a7640000612391565b600c5550565b6005546001600160a01b031633146113555760405162461bcd60e51b815260040161081d906122f1565b6001600160a01b0381166113ba5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081d565b610a3a81611baa565b6005546001600160a01b031633146113ed5760405162461bcd60e51b815260040161081d906122f1565b629896808110156114105760405162461bcd60e51b815260040161081d9061234f565b61142281670de0b6b3a7640000612391565b600b5550565b6005546001600160a01b031633146114525760405162461bcd60e51b815260040161081d906122f1565b306001600160a01b038216036114945760405162461bcd60e51b81526020600482015260076024820152664e6f207275677360c81b604482015260640161081d565b6001600160a01b0381166114db576005546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610c48573d6000803e3d6000fd5b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611524573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154891906123c5565b9050816001600160a01b031663a9059cbb61156b6005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156115b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115dc91906123de565b50505050565b6001600160a01b0383166116445760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161081d565b6001600160a01b0382166116a55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161081d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661176a5760405162461bcd60e51b815260206004820152602560248201527f546f6b656e3a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161081d565b6001600160a01b0382166117cc5760405162461bcd60e51b815260206004820152602360248201527f546f6b656e3a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161081d565b600e5465010000000000900460ff16806117fe57506001600160a01b0383166000908152600f602052604090205460ff165b61184a5760405162461bcd60e51b815260206004820152601760248201527f54726164696e67206e6f7420656e61626c656420796574000000000000000000604482015260640161081d565b806000036118635761185e83836000611ce6565b505050565b30600090815260208190526040902054600a54600e549082101590640100000000900460ff16801561189f5750600754600160a01b900460ff16155b80156118b957506007546001600160a01b03868116911614155b80156118c25750805b156118d357816118d181611eb9565b505b6001600160a01b0385166000908152600f602052604090205460019060ff168061191557506001600160a01b0385166000908152600f602052604090205460ff165b1561191e575060005b8015611b97576001600160a01b03851660009081526011602052604081205460ff16156119585750600e5462010000900461ffff16611982565b6001600160a01b03871660009081526011602052604090205460ff16156119825750600e5461ffff165b6001600160a01b03871660009081526010602052604090205460ff161580156119c457506001600160a01b03861660009081526010602052604090205460ff16155b15611b64576001600160a01b03861660009081526011602052604090205460ff1615611a4c57600c54851115611a475760405162461bcd60e51b815260206004820152602260248201527f53656c6c206578636565647320706572207472616e73616374696f6e206c696d6044820152611a5d60f21b606482015260840161081d565b611ac9565b6001600160a01b03871660009081526011602052604090205460ff1615611ac957600b54851115611ac95760405162461bcd60e51b815260206004820152602160248201527f427579206578636565647320706572207472616e73616374696f6e206c696d696044820152601d60fa1b606482015260840161081d565b6001600160a01b03861660009081526011602052604090205460ff16611b6457600d5485611b0c886001600160a01b031660009081526020819052604090205490565b611b16919061233c565b1115611b645760405162461bcd60e51b815260206004820181905260248201527f416e74697768616c653a2042616c616e63652065786365656473206c696d6974604482015260640161081d565b6000611b7b6064611b758885611f9b565b90611fae565b9050611b878682611fba565b9550611b94883083611ce6565b50505b611ba2868686611ce6565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526011602052604090205481151560ff909116151503611c925760405162461bcd60e51b815260206004820152603f60248201527f45524332303a204175746f6d61746564206d61726b6574206d616b657220706160448201527f697220697320616c72656164792073657420746f20746861742076616c756500606482015260840161081d565b6001600160a01b038216600081815260116020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611d4a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161081d565b6001600160a01b038216611dac5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161081d565b6001600160a01b03831660009081526020819052604090205481811015611e245760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161081d565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611e5b90849061233c565b90915550508115611eb457826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611eab91815260200190565b60405180910390a35b6115dc565b6007805460ff60a01b1916600160a01b17905547611ed682611fc6565b6000611ee24783611fba565b600e5460405191925060009166010000000000009091046001600160a01b03169083908381818185875af1925050503d8060008114611f3d576040519150601f19603f3d011682016040523d82523d6000602084013e611f42565b606091505b5050905080611f885760405162461bcd60e51b81526020600482015260126024820152711d1c985b9cd858dd1a5bdb8819985a5b195960721b604482015260640161081d565b50506007805460ff60a01b191690555050565b6000611fa78284612391565b9392505050565b6000611fa782846123fb565b6000611fa7828461241d565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ffb57611ffb612430565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612054573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061207891906123a8565b8160018151811061208b5761208b612430565b6001600160a01b0392831660209182029290920101526006546120b191309116846115e2565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906120ea908590600090869030904290600401612446565b600060405180830381600087803b15801561210457600080fd5b505af1158015611ba2573d6000803e3d6000fd5b600060208083528351808285015260005b8181101561214557858101830151858201604001528201612129565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a3a57600080fd5b6000806040838503121561218e57600080fd5b823561219981612166565b946020939093013593505050565b6000602082840312156121b957600080fd5b8135611fa781612166565b6000806000606084860312156121d957600080fd5b83356121e481612166565b925060208401356121f481612166565b929592945050506040919091013590565b60006020828403121561221757600080fd5b813561ffff81168114611fa757600080fd5b60006020828403121561223b57600080fd5b5035919050565b8015158114610a3a57600080fd5b6000806040838503121561226357600080fd5b823561226e81612166565b9150602083013561227e81612242565b809150509250929050565b6000806040838503121561229c57600080fd5b82356122a781612166565b9150602083013561227e81612166565b600181811c908216806122cb57607f821691505b6020821081036122eb57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156107ed576107ed612326565b60208082526022908201527f43616e277420736574206c6f77657220616d6f756e742c204e6f2072756750756040820152611b1b60f21b606082015260800190565b80820281158282048414176107ed576107ed612326565b6000602082840312156123ba57600080fd5b8151611fa781612166565b6000602082840312156123d757600080fd5b5051919050565b6000602082840312156123f057600080fd5b8151611fa781612242565b60008261241857634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156107ed576107ed612326565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124965784516001600160a01b031683529383019391830191600101612471565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220717549637ccaf701b610f9cb72fe0a60930d45d6095d23725786bfe7955ae4e564736f6c63430008110033
Deployed Bytecode
0x6080604052600436106102295760003560e01c806388e765ff11610123578063b62496f5116100ab578063e2f456051161006f578063e2f45605146106b4578063e99c9d09146106ca578063f2fde38b146106ea578063f34eb0b81461070a578063f9d0831a1461072a57600080fd5b8063b62496f5146105de578063c02466681461060e578063c851cc321461062e578063dd62ed3e1461064e578063e064648a1461069457600080fd5b80639a7a23d6116100f25780639a7a23d614610548578063a457c2d714610568578063a9059cbb14610588578063aa4bde28146105a8578063afa4f3b2146105be57600080fd5b806388e765ff146104ea5780638a8c523c146105005780638da5cb5b1461051557806395d89b411461053357600080fd5b806343c348a5116101b157806366d602ae1161017557806366d602ae146104475780636ddd17131461045d57806370a082311461047f578063715018a6146104b55780637537a47f146104ca57600080fd5b806343c348a51461039357806347062402146103b357806349bd5a5e146103ce5780634fbee193146103ee5780635d0044ca1461042757600080fd5b80631f53ac02116101f85780631f53ac02146102e757806323b872dd146103095780632b14ca5614610329578063313ce56714610357578063395093511461037357600080fd5b806306fdde0314610235578063095ea7b3146102605780631694505e1461029057806318160ddd146102c857600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024a61074a565b6040516102579190612118565b60405180910390f35b34801561026c57600080fd5b5061028061027b36600461217b565b6107dc565b6040519015158152602001610257565b34801561029c57600080fd5b506006546102b0906001600160a01b031681565b6040516001600160a01b039091168152602001610257565b3480156102d457600080fd5b506002545b604051908152602001610257565b3480156102f357600080fd5b506103076103023660046121a7565b6107f3565b005b34801561031557600080fd5b506102806103243660046121c4565b6108ba565b34801561033557600080fd5b506009546103449061ffff1681565b60405161ffff9091168152602001610257565b34801561036357600080fd5b5060405160128152602001610257565b34801561037f57600080fd5b5061028061038e36600461217b565b610964565b34801561039f57600080fd5b506103076103ae366004612205565b6109a0565b3480156103bf57600080fd5b506008546103449061ffff1681565b3480156103da57600080fd5b506007546102b0906001600160a01b031681565b3480156103fa57600080fd5b506102806104093660046121a7565b6001600160a01b03166000908152600f602052604090205460ff1690565b34801561043357600080fd5b50610307610442366004612229565b610a3d565b34801561045357600080fd5b506102d9600c5481565b34801561046957600080fd5b50600e5461028090640100000000900460ff1681565b34801561048b57600080fd5b506102d961049a3660046121a7565b6001600160a01b031660009081526020819052604090205490565b3480156104c157600080fd5b50610307610aa2565b3480156104d657600080fd5b506103076104e5366004612250565b610ad8565b3480156104f657600080fd5b506102d9600b5481565b34801561050c57600080fd5b50610307610b2d565b34801561052157600080fd5b506005546001600160a01b03166102b0565b34801561053f57600080fd5b5061024a610b70565b34801561055457600080fd5b50610307610563366004612250565b610b7f565b34801561057457600080fd5b5061028061058336600461217b565b610c4c565b34801561059457600080fd5b506102806105a336600461217b565b610ce5565b3480156105b457600080fd5b506102d9600d5481565b3480156105ca57600080fd5b506103076105d9366004612229565b610cf2565b3480156105ea57600080fd5b506102806105f93660046121a7565b60116020526000908152604090205460ff1681565b34801561061a57600080fd5b50610307610629366004612250565b610d34565b34801561063a57600080fd5b506103076106493660046121a7565b610e47565b34801561065a57600080fd5b506102d9610669366004612289565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106a057600080fd5b506103076106af366004612205565b61121a565b3480156106c057600080fd5b506102d9600a5481565b3480156106d657600080fd5b506103076106e5366004612229565b6112c6565b3480156106f657600080fd5b506103076107053660046121a7565b61132b565b34801561071657600080fd5b50610307610725366004612229565b6113c3565b34801561073657600080fd5b506103076107453660046121a7565b611428565b606060038054610759906122b7565b80601f0160208091040260200160405190810160405280929190818152602001828054610785906122b7565b80156107d25780601f106107a7576101008083540402835291602001916107d2565b820191906000526020600020905b8154815290600101906020018083116107b557829003601f168201915b5050505050905090565b60006107e93384846115e2565b5060015b92915050565b6005546001600160a01b031633146108265760405162461bcd60e51b815260040161081d906122f1565b60405180910390fd5b6001600160a01b0381166108885760405162461bcd60e51b8152602060048201526024808201527f4465762077616c6c65742063616e206e6f742062652061207a65726f206164646044820152637265737360e01b606482015260840161081d565b600e80546001600160a01b039092166601000000000000026601000000000000600160d01b0319909216919091179055565b60006108c7848484611706565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561094c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161081d565b61095985338584036115e2565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107e991859061099b90869061233c565b6115e2565b6005546001600160a01b031633146109ca5760405162461bcd60e51b815260040161081d906122f1565b6008805461ffff831661ffff199182168117909255600e80549091168217905560141015610a3a5760405162461bcd60e51b815260206004820152601a60248201527f4d6158206275792066656573206c696d69742020697320323025000000000000604482015260640161081d565b50565b6005546001600160a01b03163314610a675760405162461bcd60e51b815260040161081d906122f1565b6301312d008111610a8a5760405162461bcd60e51b815260040161081d9061234f565b610a9c81670de0b6b3a7640000612391565b600d5550565b6005546001600160a01b03163314610acc5760405162461bcd60e51b815260040161081d906122f1565b610ad66000611baa565b565b6005546001600160a01b03163314610b025760405162461bcd60e51b815260040161081d906122f1565b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b575760405162461bcd60e51b815260040161081d906122f1565b600e805465ff0000000000191665010000000000179055565b606060048054610759906122b7565b6005546001600160a01b03163314610ba95760405162461bcd60e51b815260040161081d906122f1565b6007546001600160a01b0390811690831603610c3e5760405162461bcd60e51b815260206004820152604860248201527f45524332303a2054686520556e697377617020706169722063616e6e6f74206260448201527f652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616064820152676b6572506169727360c01b608482015260a40161081d565b610c488282611bfc565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610cce5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161081d565b610cdb33858584036115e2565b5060019392505050565b60006107e9338484611706565b6005546001600160a01b03163314610d1c5760405162461bcd60e51b815260040161081d906122f1565b610d2e81670de0b6b3a7640000612391565b600a5550565b6005546001600160a01b03163314610d5e5760405162461bcd60e51b815260040161081d906122f1565b6001600160a01b0382166000908152600f602052604090205481151560ff909116151503610de85760405162461bcd60e51b815260206004820152603160248201527f45524332303a204163636f756e7420697320616c7265616479207468652076616044820152706c7565206f6620276578636c756465642760781b606482015260840161081d565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e715760405162461bcd60e51b815260040161081d906122f1565b6006546001600160a01b0390811690821603610ee25760405162461bcd60e51b815260206004820152602a60248201527f45524332303a2054686520726f7574657220616c7265616479206861732074686044820152696174206164647265737360b01b606482015260840161081d565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290516000929163c45a01559160048083019260209291908290030181865afa158015610f3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6291906123a8565b6001600160a01b031663e6a4390530600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fc4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe891906123a8565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015611033573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061105791906123a8565b90506001600160a01b0381166111f957600660009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110de91906123a8565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611140573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116491906123a8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156111b1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111d591906123a8565b600780546001600160a01b0319166001600160a01b03929092169190911790555050565b600780546001600160a01b0383166001600160a01b03199091161790555050565b6005546001600160a01b031633146112445760405162461bcd60e51b815260040161081d906122f1565b6009805461ffff191661ffff838116918217909255600e805463ffff0000191662010000928302179081905560199190049091161115610a3a5760405162461bcd60e51b815260206004820152601a60248201527f4d61782073656c6c2066656573206c696d697420697320323525000000000000604482015260640161081d565b6005546001600160a01b031633146112f05760405162461bcd60e51b815260040161081d906122f1565b629896808110156113135760405162461bcd60e51b815260040161081d9061234f565b61132581670de0b6b3a7640000612391565b600c5550565b6005546001600160a01b031633146113555760405162461bcd60e51b815260040161081d906122f1565b6001600160a01b0381166113ba5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081d565b610a3a81611baa565b6005546001600160a01b031633146113ed5760405162461bcd60e51b815260040161081d906122f1565b629896808110156114105760405162461bcd60e51b815260040161081d9061234f565b61142281670de0b6b3a7640000612391565b600b5550565b6005546001600160a01b031633146114525760405162461bcd60e51b815260040161081d906122f1565b306001600160a01b038216036114945760405162461bcd60e51b81526020600482015260076024820152664e6f207275677360c81b604482015260640161081d565b6001600160a01b0381166114db576005546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610c48573d6000803e3d6000fd5b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611524573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154891906123c5565b9050816001600160a01b031663a9059cbb61156b6005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156115b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115dc91906123de565b50505050565b6001600160a01b0383166116445760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161081d565b6001600160a01b0382166116a55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161081d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661176a5760405162461bcd60e51b815260206004820152602560248201527f546f6b656e3a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161081d565b6001600160a01b0382166117cc5760405162461bcd60e51b815260206004820152602360248201527f546f6b656e3a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161081d565b600e5465010000000000900460ff16806117fe57506001600160a01b0383166000908152600f602052604090205460ff165b61184a5760405162461bcd60e51b815260206004820152601760248201527f54726164696e67206e6f7420656e61626c656420796574000000000000000000604482015260640161081d565b806000036118635761185e83836000611ce6565b505050565b30600090815260208190526040902054600a54600e549082101590640100000000900460ff16801561189f5750600754600160a01b900460ff16155b80156118b957506007546001600160a01b03868116911614155b80156118c25750805b156118d357816118d181611eb9565b505b6001600160a01b0385166000908152600f602052604090205460019060ff168061191557506001600160a01b0385166000908152600f602052604090205460ff165b1561191e575060005b8015611b97576001600160a01b03851660009081526011602052604081205460ff16156119585750600e5462010000900461ffff16611982565b6001600160a01b03871660009081526011602052604090205460ff16156119825750600e5461ffff165b6001600160a01b03871660009081526010602052604090205460ff161580156119c457506001600160a01b03861660009081526010602052604090205460ff16155b15611b64576001600160a01b03861660009081526011602052604090205460ff1615611a4c57600c54851115611a475760405162461bcd60e51b815260206004820152602260248201527f53656c6c206578636565647320706572207472616e73616374696f6e206c696d6044820152611a5d60f21b606482015260840161081d565b611ac9565b6001600160a01b03871660009081526011602052604090205460ff1615611ac957600b54851115611ac95760405162461bcd60e51b815260206004820152602160248201527f427579206578636565647320706572207472616e73616374696f6e206c696d696044820152601d60fa1b606482015260840161081d565b6001600160a01b03861660009081526011602052604090205460ff16611b6457600d5485611b0c886001600160a01b031660009081526020819052604090205490565b611b16919061233c565b1115611b645760405162461bcd60e51b815260206004820181905260248201527f416e74697768616c653a2042616c616e63652065786365656473206c696d6974604482015260640161081d565b6000611b7b6064611b758885611f9b565b90611fae565b9050611b878682611fba565b9550611b94883083611ce6565b50505b611ba2868686611ce6565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526011602052604090205481151560ff909116151503611c925760405162461bcd60e51b815260206004820152603f60248201527f45524332303a204175746f6d61746564206d61726b6574206d616b657220706160448201527f697220697320616c72656164792073657420746f20746861742076616c756500606482015260840161081d565b6001600160a01b038216600081815260116020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611d4a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161081d565b6001600160a01b038216611dac5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161081d565b6001600160a01b03831660009081526020819052604090205481811015611e245760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161081d565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611e5b90849061233c565b90915550508115611eb457826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611eab91815260200190565b60405180910390a35b6115dc565b6007805460ff60a01b1916600160a01b17905547611ed682611fc6565b6000611ee24783611fba565b600e5460405191925060009166010000000000009091046001600160a01b03169083908381818185875af1925050503d8060008114611f3d576040519150601f19603f3d011682016040523d82523d6000602084013e611f42565b606091505b5050905080611f885760405162461bcd60e51b81526020600482015260126024820152711d1c985b9cd858dd1a5bdb8819985a5b195960721b604482015260640161081d565b50506007805460ff60a01b191690555050565b6000611fa78284612391565b9392505050565b6000611fa782846123fb565b6000611fa7828461241d565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ffb57611ffb612430565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612054573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061207891906123a8565b8160018151811061208b5761208b612430565b6001600160a01b0392831660209182029290920101526006546120b191309116846115e2565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906120ea908590600090869030904290600401612446565b600060405180830381600087803b15801561210457600080fd5b505af1158015611ba2573d6000803e3d6000fd5b600060208083528351808285015260005b8181101561214557858101830151858201604001528201612129565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a3a57600080fd5b6000806040838503121561218e57600080fd5b823561219981612166565b946020939093013593505050565b6000602082840312156121b957600080fd5b8135611fa781612166565b6000806000606084860312156121d957600080fd5b83356121e481612166565b925060208401356121f481612166565b929592945050506040919091013590565b60006020828403121561221757600080fd5b813561ffff81168114611fa757600080fd5b60006020828403121561223b57600080fd5b5035919050565b8015158114610a3a57600080fd5b6000806040838503121561226357600080fd5b823561226e81612166565b9150602083013561227e81612242565b809150509250929050565b6000806040838503121561229c57600080fd5b82356122a781612166565b9150602083013561227e81612166565b600181811c908216806122cb57607f821691505b6020821081036122eb57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156107ed576107ed612326565b60208082526022908201527f43616e277420736574206c6f77657220616d6f756e742c204e6f2072756750756040820152611b1b60f21b606082015260800190565b80820281158282048414176107ed576107ed612326565b6000602082840312156123ba57600080fd5b8151611fa781612166565b6000602082840312156123d757600080fd5b5051919050565b6000602082840312156123f057600080fd5b8151611fa781612242565b60008261241857634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156107ed576107ed612326565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124965784516001600160a01b031683529383019391830191600101612471565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220717549637ccaf701b610f9cb72fe0a60930d45d6095d23725786bfe7955ae4e564736f6c63430008110033
Deployed Bytecode Sourcemap
34697:10274:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24641:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26808:169;;;;;;;;;;-1:-1:-1;26808:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;26808:169:0;1023:187:1;34773:41:0;;;;;;;;;;-1:-1:-1;34773:41:0;;;;-1:-1:-1;;;;;34773:41:0;;;;;;-1:-1:-1;;;;;1405:32:1;;;1387:51;;1375:2;1360:18;34773:41:0;1215:229:1;25761:108:0;;;;;;;;;;-1:-1:-1;25849:12:0;;25761:108;;;1595:25:1;;;1583:2;1568:18;25761:108:0;1449:177:1;40480:189:0;;;;;;;;;;-1:-1:-1;40480:189:0;;;;;:::i;:::-;;:::i;:::-;;27459:492;;;;;;;;;;-1:-1:-1;27459:492:0;;;;;:::i;:::-;;:::i;35048:22::-;;;;;;;;;;-1:-1:-1;35048:22:0;;;;;;;;;;;2518:6:1;2506:19;;;2488:38;;2476:2;2461:18;35048:22:0;2344:188:1;25603:93:0;;;;;;;;;;-1:-1:-1;25603:93:0;;25686:2;2679:36:1;;2667:2;2652:18;25603:93:0;2537:184:1;28360:215:0;;;;;;;;;;-1:-1:-1;28360:215:0;;;;;:::i;:::-;;:::i;39787:240::-;;;;;;;;;;-1:-1:-1;39787:240:0;;;;;:::i;:::-;;:::i;35021:20::-;;;;;;;;;;-1:-1:-1;35021:20:0;;;;;;;;34821:29;;;;;;;;;;-1:-1:-1;34821:29:0;;;;-1:-1:-1;;;;;34821:29:0;;;40308:126;;;;;;;;;;-1:-1:-1;40308:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;40398:28:0;40374:4;40398:28;;;:19;:28;;;;;;;;;40308:126;40757:184;;;;;;;;;;-1:-1:-1;40757:184:0;;;;;:::i;:::-;;:::i;35240:49::-;;;;;;;;;;;;;;;;35495:23;;;;;;;;;;-1:-1:-1;35495:23:0;;;;;;;;;;;25932:127;;;;;;;;;;-1:-1:-1;25932:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;26033:18:0;26006:7;26033:18;;;;;;;;;;;;25932:127;18062:103;;;;;;;;;;;;;:::i;38817:159::-;;;;;;;;;;-1:-1:-1;38817:159:0;;;;;:::i;:::-;;:::i;35153:48::-;;;;;;;;;;;;;;;;38985:95;;;;;;;;;;;;;:::i;17411:87::-;;;;;;;;;;-1:-1:-1;17484:6:0;;-1:-1:-1;;;;;17484:6:0;17411:87;;24860:104;;;;;;;;;;;;;:::i;39088:319::-;;;;;;;;;;-1:-1:-1;39088:319:0;;;;;:::i;:::-;;:::i;29078:413::-;;;;;;;;;;-1:-1:-1;29078:413:0;;;;;:::i;:::-;;:::i;26272:175::-;;;;;;;;;;-1:-1:-1;26272:175:0;;;;;:::i;:::-;;:::i;35328:51::-;;;;;;;;;;;;;;;;41495:121;;;;;;;;;;-1:-1:-1;41495:121:0;;;;;:::i;:::-;;:::i;35801:57::-;;;;;;;;;;-1:-1:-1;35801:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;38052:334;;;;;;;;;;-1:-1:-1;38052:334:0;;;;;:::i;:::-;;:::i;37415:629::-;;;;;;;;;;-1:-1:-1;37415:629:0;;;;;:::i;:::-;;:::i;26510:151::-;;;;;;;;;;-1:-1:-1;26510:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;26626:18:0;;;26599:7;26626:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;26510:151;40040:236;;;;;;;;;;-1:-1:-1;40040:236:0;;;;;:::i;:::-;;:::i;35087:54::-;;;;;;;;;;;;;;;;41248:187;;;;;;;;;;-1:-1:-1;41248:187:0;;;;;:::i;:::-;;:::i;18320:201::-;;;;;;;;;;-1:-1:-1;18320:201:0;;;;;:::i;:::-;;:::i;41004:183::-;;;;;;;;;;-1:-1:-1;41004:183:0;;;;;:::i;:::-;;:::i;38395:414::-;;;;;;;;;;-1:-1:-1;38395:414:0;;;;;:::i;:::-;;:::i;24641:100::-;24695:13;24728:5;24721:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24641:100;:::o;26808:169::-;26891:4;26908:39;16195:10;26931:7;26940:6;26908:8;:39::i;:::-;-1:-1:-1;26965:4:0;26808:169;;;;;:::o;40480:189::-;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;40556:23:0;::::1;40547:73;;;::::0;-1:-1:-1;;;40547:73:0;;5247:2:1;40547:73:0::1;::::0;::::1;5229:21:1::0;5286:2;5266:18;;;5259:30;5325:34;5305:18;;;5298:62;-1:-1:-1;;;5376:18:1;;;5369:34;5420:19;;40547:73:0::1;5045:400:1::0;40547:73:0::1;40631:9;:30:::0;;-1:-1:-1;;;;;40631:30:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;40631:30:0;;::::1;::::0;;;::::1;::::0;;40480:189::o;27459:492::-;27599:4;27616:36;27626:6;27634:9;27645:6;27616:9;:36::i;:::-;-1:-1:-1;;;;;27692:19:0;;27665:24;27692:19;;;:11;:19;;;;;;;;16195:10;27692:33;;;;;;;;27744:26;;;;27736:79;;;;-1:-1:-1;;;27736:79:0;;5652:2:1;27736:79:0;;;5634:21:1;5691:2;5671:18;;;5664:30;5730:34;5710:18;;;5703:62;-1:-1:-1;;;5781:18:1;;;5774:38;5829:19;;27736:79:0;5450:404:1;27736:79:0;27851:57;27860:6;16195:10;27901:6;27882:16;:25;27851:8;:57::i;:::-;-1:-1:-1;27939:4:0;;27459:492;-1:-1:-1;;;;27459:492:0:o;28360:215::-;16195:10;28448:4;28497:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;28497:34:0;;;;;;;;;;28448:4;;28465:80;;28488:7;;28497:47;;28534:10;;28497:47;:::i;:::-;28465:8;:80::i;39787:240::-;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;39882:6:::1;:25:::0;;::::1;::::0;::::1;-1:-1:-1::0;;39882:25:0;;::::1;::::0;::::1;::::0;;;39919:11:::1;:23:::0;;;;::::1;::::0;::::1;::::0;;39976:2:::1;-1:-1:-1::0;39961:17:0::1;39953:66;;;::::0;-1:-1:-1;;;39953:66:0;;6323:2:1;39953:66:0::1;::::0;::::1;6305:21:1::0;6362:2;6342:18;;;6335:30;6401:28;6381:18;;;6374:56;6447:18;;39953:66:0::1;6121:350:1::0;39953:66:0::1;39787:240:::0;:::o;40757:184::-;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;40842:8:::1;40833:6;:17;40825:64;;;;-1:-1:-1::0;;;40825:64:0::1;;;;;;;:::i;:::-;40918:15;:6:::0;40927::::1;40918:15;:::i;:::-;40900;:33:::0;-1:-1:-1;40757:184:0:o;18062:103::-;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;18127:30:::1;18154:1;18127:18;:30::i;:::-;18062:103::o:0;38817:159::-;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38928:29:0;;;::::1;;::::0;;;:20:::1;:29;::::0;;;;:40;;-1:-1:-1;;38928:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38817:159::o;38985:95::-;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;39040:16:::1;:23:::0;;-1:-1:-1;;39040:23:0::1;::::0;::::1;::::0;;38985:95::o;24860:104::-;24916:13;24949:7;24942:14;;;;;:::i;39088:319::-;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;39232:13:::1;::::0;-1:-1:-1;;;;;39232:13:0;;::::1;39224:21:::0;;::::1;::::0;39202:143:::1;;;::::0;-1:-1:-1;;;39202:143:0;;7254:2:1;39202:143:0::1;::::0;::::1;7236:21:1::0;7293:2;7273:18;;;7266:30;7332:34;7312:18;;;7305:62;7403:34;7383:18;;;7376:62;-1:-1:-1;;;7454:19:1;;;7447:39;7503:19;;39202:143:0::1;7052:476:1::0;39202:143:0::1;39358:41;39387:4;39393:5;39358:28;:41::i;:::-;39088:319:::0;;:::o;29078:413::-;16195:10;29171:4;29215:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;29215:34:0;;;;;;;;;;29268:35;;;;29260:85;;;;-1:-1:-1;;;29260:85:0;;7735:2:1;29260:85:0;;;7717:21:1;7774:2;7754:18;;;7747:30;7813:34;7793:18;;;7786:62;-1:-1:-1;;;7864:18:1;;;7857:35;7909:19;;29260:85:0;7533:401:1;29260:85:0;29381:67;16195:10;29404:7;29432:15;29413:16;:34;29381:8;:67::i;:::-;-1:-1:-1;29479:4:0;;29078:413;-1:-1:-1;;;29078:413:0:o;26272:175::-;26358:4;26375:42;16195:10;26399:9;26410:6;26375:9;:42::i;41495:121::-;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;41593:15:::1;:6:::0;41602::::1;41593:15;:::i;:::-;41571:18;:37:::0;-1:-1:-1;41495:121:0:o;38052:334::-;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38159:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:40;::::1;;:28;::::0;;::::1;:40;;::::0;38137:139:::1;;;::::0;-1:-1:-1;;;38137:139:0;;8141:2:1;38137:139:0::1;::::0;::::1;8123:21:1::0;8180:2;8160:18;;;8153:30;8219:34;8199:18;;;8192:62;-1:-1:-1;;;8270:18:1;;;8263:47;8327:19;;38137:139:0::1;7939:413:1::0;38137:139:0::1;-1:-1:-1::0;;;;;38287:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38287:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38344:34;;1163:41:1;;;38344:34:0::1;::::0;1136:18:1;38344:34:0::1;;;;;;;38052:334:::0;;:::o;37415:629::-;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;37513:15:::1;::::0;-1:-1:-1;;;;;37513:15:0;;::::1;37491:38:::0;;::::1;::::0;37483:93:::1;;;::::0;-1:-1:-1;;;37483:93:0;;8559:2:1;37483:93:0::1;::::0;::::1;8541:21:1::0;8598:2;8578:18;;;8571:30;8637:34;8617:18;;;8610:62;-1:-1:-1;;;8688:18:1;;;8681:40;8738:19;;37483:93:0::1;8357:406:1::0;37483:93:0::1;37591:15;:48:::0;;-1:-1:-1;;;;;;37591:48:0::1;-1:-1:-1::0;;;;;37591:48:0;::::1;::::0;;::::1;::::0;;;37701:25:::1;::::0;;-1:-1:-1;;;37701:25:0;;;;-1:-1:-1;;37591:48:0;37701:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;37591:48;37701:25:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;37683:52:0::1;;37744:4;37764:15;;;;;;;;;-1:-1:-1::0;;;;;37764:15:0::1;-1:-1:-1::0;;;;;37764:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37683:104;::::0;-1:-1:-1;;;;;;37683:104:0::1;::::0;;;;;;-1:-1:-1;;;;;9254:15:1;;;37683:104:0::1;::::0;::::1;9236:34:1::0;9306:15;;9286:18;;;9279:43;9171:18;;37683:104:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37651:136:::0;-1:-1:-1;;;;;;37802:22:0;::::1;37798:239;;37886:15;;;;;;;;;-1:-1:-1::0;;;;;37886:15:0::1;-1:-1:-1::0;;;;;37886:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;37868:55:0::1;;37932:4;37953:15;;;;;;;;;-1:-1:-1::0;;;;;37953:15:0::1;-1:-1:-1::0;;;;;37953:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37868:108;::::0;-1:-1:-1;;;;;;37868:108:0::1;::::0;;;;;;-1:-1:-1;;;;;9254:15:1;;;37868:108:0::1;::::0;::::1;9236:34:1::0;9306:15;;9286:18;;;9279:43;9171:18;;37868:108:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37839:13;:137:::0;;-1:-1:-1;;;;;;37839:137:0::1;-1:-1:-1::0;;;;;37839:137:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;39088:319:0:o;37798:239::-:1;38001:13;:24:::0;;-1:-1:-1;;;;;38001:24:0;::::1;-1:-1:-1::0;;;;;;38001:24:0;;::::1;;::::0;;37476:568:::1;37415:629:::0;:::o;40040:236::-;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;40136:7:::1;:27:::0;;-1:-1:-1;;40136:27:0::1;;::::0;;::::1;::::0;;::::1;::::0;;;40174:12:::1;:25:::0;;-1:-1:-1;;40174:25:0::1;::::0;;;::::1;;::::0;;;;40235:2:::1;40219:12:::0;;::::1;::::0;;::::1;:18;;40210:58;;;::::0;-1:-1:-1;;;40210:58:0;;9535:2:1;40210:58:0::1;::::0;::::1;9517:21:1::0;9574:2;9554:18;;;9547:30;9613:28;9593:18;;;9586:56;9659:18;;40210:58:0::1;9333:350:1::0;41248:187:0;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;41338:8:::1;41328:6;:18;;41320:65;;;;-1:-1:-1::0;;;41320:65:0::1;;;;;;;:::i;:::-;41412:15;:6:::0;41421::::1;41412:15;:::i;:::-;41396:13;:31:::0;-1:-1:-1;41248:187:0:o;18320:201::-;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18409:22:0;::::1;18401:73;;;::::0;-1:-1:-1;;;18401:73:0;;9890:2:1;18401:73:0::1;::::0;::::1;9872:21:1::0;9929:2;9909:18;;;9902:30;9968:34;9948:18;;;9941:62;-1:-1:-1;;;10019:18:1;;;10012:36;10065:19;;18401:73:0::1;9688:402:1::0;18401:73:0::1;18485:28;18504:8;18485:18;:28::i;41004:183::-:0;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;41091:8:::1;41081:6;:18;;41073:65;;;;-1:-1:-1::0;;;41073:65:0::1;;;;;;;:::i;:::-;41164:15;:6:::0;41173::::1;41164:15;:::i;:::-;41149:12;:30:::0;-1:-1:-1;41004:183:0:o;38395:414::-;17484:6;;-1:-1:-1;;;;;17484:6:0;16195:10;17631:23;17623:68;;;;-1:-1:-1;;;17623:68:0;;;;;;;:::i;:::-;38493:4:::1;-1:-1:-1::0;;;;;38475:23:0;::::1;::::0;38467:43:::1;;;::::0;-1:-1:-1;;;38467:43:0;;10297:2:1;38467:43:0::1;::::0;::::1;10279:21:1::0;10336:1;10316:18;;;10309:29;-1:-1:-1;;;10354:18:1;;;10347:37;10401:18;;38467:43:0::1;10095:330:1::0;38467:43:0::1;-1:-1:-1::0;;;;;38525:22:0;::::1;38521:124;;17484:6:::0;;38564:48:::1;::::0;-1:-1:-1;;;;;17484:6:0;;;;38590:21:::1;38564:48:::0;::::1;;;::::0;::::1;::::0;;;38590:21;17484:6;38564:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;38521:124;38718:35;::::0;-1:-1:-1;;;38718:35:0;;38747:4:::1;38718:35;::::0;::::1;1387:51:1::0;38682:6:0;;38655:17:::1;::::0;-1:-1:-1;;;;;38718:20:0;::::1;::::0;::::1;::::0;1360:18:1;;38718:35:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38700:53;;38764:10;-1:-1:-1::0;;;;;38764:19:0::1;;38784:7;17484:6:::0;;-1:-1:-1;;;;;17484:6:0;;17411:87;38784:7:::1;38764:37;::::0;-1:-1:-1;;;;;;38764:37:0::1;::::0;;;;;;-1:-1:-1;;;;;10811:32:1;;;38764:37:0::1;::::0;::::1;10793:51:1::0;10860:18;;;10853:34;;;10766:18;;38764:37:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38456:353;;38395:414:::0;:::o;32792:380::-;-1:-1:-1;;;;;32928:19:0;;32920:68;;;;-1:-1:-1;;;32920:68:0;;11350:2:1;32920:68:0;;;11332:21:1;11389:2;11369:18;;;11362:30;11428:34;11408:18;;;11401:62;-1:-1:-1;;;11479:18:1;;;11472:34;11523:19;;32920:68:0;11148:400:1;32920:68:0;-1:-1:-1;;;;;33007:21:0;;32999:68;;;;-1:-1:-1;;;32999:68:0;;11755:2:1;32999:68:0;;;11737:21:1;11794:2;11774:18;;;11767:30;11833:34;11813:18;;;11806:62;-1:-1:-1;;;11884:18:1;;;11877:32;11926:19;;32999:68:0;11553:398:1;32999:68:0;-1:-1:-1;;;;;33080:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;33132:32;;1595:25:1;;;33132:32:0;;1568:18:1;33132:32:0;;;;;;;32792:380;;;:::o;41624:2370::-;-1:-1:-1;;;;;41756:18:0;;41748:68;;;;-1:-1:-1;;;41748:68:0;;12158:2:1;41748:68:0;;;12140:21:1;12197:2;12177:18;;;12170:30;12236:34;12216:18;;;12209:62;-1:-1:-1;;;12287:18:1;;;12280:35;12332:19;;41748:68:0;11956:401:1;41748:68:0;-1:-1:-1;;;;;41835:16:0;;41827:64;;;;-1:-1:-1;;;41827:64:0;;12564:2:1;41827:64:0;;;12546:21:1;12603:2;12583:18;;;12576:30;12642:34;12622:18;;;12615:62;-1:-1:-1;;;12693:18:1;;;12686:33;12736:19;;41827:64:0;12362:399:1;41827:64:0;41920:16;;;;;;;;:45;;-1:-1:-1;;;;;;41940:25:0;;;;;;:19;:25;;;;;;;;41920:45;41911:105;;;;-1:-1:-1;;;41911:105:0;;12968:2:1;41911:105:0;;;12950:21:1;13007:2;12987:18;;;12980:30;13046:25;13026:18;;;13019:53;13089:18;;41911:105:0;12766:347:1;41911:105:0;42033:6;42043:1;42033:11;42029:93;;42061:28;42077:4;42083:2;42087:1;42061:15;:28::i;:::-;41624:2370;;;:::o;42029:93::-;42183:4;42134:28;26033:18;;;;;;;;;;;42268;;42317:11;;42231:55;;;;;42317:11;;;;;:37;;;;-1:-1:-1;42346:8:0;;-1:-1:-1;;;42346:8:0;;;;42345:9;42317:37;:75;;;;-1:-1:-1;42379:13:0;;-1:-1:-1;;;;;42371:21:0;;;42379:13;;42371:21;;42317:75;:115;;;;;42409:23;42317:115;42299:272;;;42494:20;42529:28;42494:20;42529:16;:28::i;:::-;42444:127;42299:272;-1:-1:-1;;;;;42704:25:0;;42583:12;42704:25;;;:19;:25;;;;;;42598:4;;42704:25;;;:52;;-1:-1:-1;;;;;;42733:23:0;;;;;;:19;:23;;;;;;;;42704:52;42700:100;;;-1:-1:-1;42783:5:0;42700:100;42816:7;42812:1129;;;-1:-1:-1;;;;;42887:29:0;;42840:12;42887:29;;;:25;:29;;;;;;;;42883:185;;;-1:-1:-1;42944:12:0;;;;;;;42883:185;;;-1:-1:-1;;;;;42982:31:0;;;;;;:25;:31;;;;;;;;42978:90;;;-1:-1:-1;43041:11:0;;;;42978:90;-1:-1:-1;;;;;43089:26:0;;;;;;:20;:26;;;;;;;;43088:27;:56;;;;-1:-1:-1;;;;;;43120:24:0;;;;;;:20;:24;;;;;;;;43119:25;43088:56;43084:675;;;-1:-1:-1;;;;;43169:29:0;;;;;;:25;:29;;;;;;;;43165:321;;;43241:13;;43231:6;:23;;43223:70;;;;-1:-1:-1;;;43223:70:0;;13320:2:1;43223:70:0;;;13302:21:1;13359:2;13339:18;;;13332:30;13398:34;13378:18;;;13371:62;-1:-1:-1;;;13449:18:1;;;13442:32;13491:19;;43223:70:0;13118:398:1;43223:70:0;43165:321;;;-1:-1:-1;;;;;43323:31:0;;;;;;:25;:31;;;;;;;;43319:167;;;43395:12;;43385:6;:22;;43377:68;;;;-1:-1:-1;;;43377:68:0;;13723:2:1;43377:68:0;;;13705:21:1;13762:2;13742:18;;;13735:30;13801:34;13781:18;;;13774:62;-1:-1:-1;;;13852:18:1;;;13845:31;13893:19;;43377:68:0;13521:397:1;43377:68:0;-1:-1:-1;;;;;43511:29:0;;;;;;:25;:29;;;;;;;;43506:238;;43625:15;;43615:6;43599:13;43609:2;-1:-1:-1;;;;;26033:18:0;26006:7;26033:18;;;;;;;;;;;;25932:127;43599:13;:22;;;;:::i;:::-;:41;;43565:159;;;;-1:-1:-1;;;43565:159:0;;14125:2:1;43565:159:0;;;14107:21:1;;;14144:18;;;14137:30;14203:34;14183:18;;;14176:62;14255:18;;43565:159:0;13923:356:1;43565:159:0;43775:17;43795:25;43816:3;43795:16;:6;43806:4;43795:10;:16::i;:::-;:20;;:25::i;:::-;43775:45;-1:-1:-1;43844:21:0;:6;43775:45;43844:10;:21::i;:::-;43835:30;;43882:47;43898:4;43912;43919:9;43882:15;:47::i;:::-;42825:1116;;42812:1129;43953:33;43969:4;43975:2;43979:6;43953:15;:33::i;:::-;41737:2257;;;41624:2370;;;:::o;18681:191::-;18774:6;;;-1:-1:-1;;;;;18791:17:0;;;-1:-1:-1;;;;;;18791:17:0;;;;;;;18824:40;;18774:6;;;18791:17;18774:6;;18824:40;;18755:16;;18824:40;18744:128;18681:191;:::o;39415:352::-;-1:-1:-1;;;;;39520:31:0;;;;;;:25;:31;;;;;;:40;;;:31;;;;:40;;;39498:153;;;;-1:-1:-1;;;39498:153:0;;14486:2:1;39498:153:0;;;14468:21:1;14525:2;14505:18;;;14498:30;14564:34;14544:18;;;14537:62;14635:33;14615:18;;;14608:61;14686:19;;39498:153:0;14284:427:1;39498:153:0;-1:-1:-1;;;;;39662:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;39662:39:0;;;;;;;;;;39719:40;;39662:39;;:31;39719:40;;;39415:352;;:::o;29981:763::-;-1:-1:-1;;;;;30121:20:0;;30113:70;;;;-1:-1:-1;;;30113:70:0;;14918:2:1;30113:70:0;;;14900:21:1;14957:2;14937:18;;;14930:30;14996:34;14976:18;;;14969:62;-1:-1:-1;;;15047:18:1;;;15040:35;15092:19;;30113:70:0;14716:401:1;30113:70:0;-1:-1:-1;;;;;30202:23:0;;30194:71;;;;-1:-1:-1;;;30194:71:0;;15324:2:1;30194:71:0;;;15306:21:1;15363:2;15343:18;;;15336:30;15402:34;15382:18;;;15375:62;-1:-1:-1;;;15453:18:1;;;15446:33;15496:19;;30194:71:0;15122:399:1;30194:71:0;-1:-1:-1;;;;;30362:17:0;;30338:21;30362:17;;;;;;;;;;;30398:23;;;;30390:74;;;;-1:-1:-1;;;30390:74:0;;15728:2:1;30390:74:0;;;15710:21:1;15767:2;15747:18;;;15740:30;15806:34;15786:18;;;15779:62;-1:-1:-1;;;15857:18:1;;;15850:36;15903:19;;30390:74:0;15526:402:1;30390:74:0;-1:-1:-1;;;;;30500:17:0;;;:9;:17;;;;;;;;;;;30520:22;;;30500:42;;30564:20;;;;;;;;:30;;30536:6;;30500:9;30564:30;;30536:6;;30564:30;:::i;:::-;;;;-1:-1:-1;;30611:10:0;;30607:71;;30658:9;-1:-1:-1;;;;;30641:35:0;30650:6;-1:-1:-1;;;;;30641:35:0;;30669:6;30641:35;;;;1595:25:1;;1583:2;1568:18;;1449:177;30641:35:0;;;;;;;;30607:71;30690:46;41624:2370;44002:362;36180:8;:15;;-1:-1:-1;;;;36180:15:0;-1:-1:-1;;;36180:15:0;;;44101:21:::1;44133:24;44150:6:::0;44133:16:::1;:24::i;:::-;44168:18;44189:41;:21;44215:14:::0;44189:25:::1;:41::i;:::-;44274:9;::::0;44266:46:::1;::::0;44168:62;;-1:-1:-1;44253:7:0::1;::::0;44274:9;;;::::1;-1:-1:-1::0;;;;;44274:9:0::1;::::0;44168:62;;44253:7;44266:46;44253:7;44266:46;44168:62;44274:9;44266:46:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44252:60;;;44330:2;44322:32;;;::::0;-1:-1:-1;;;44322:32:0;;16345:2:1;44322:32:0::1;::::0;::::1;16327:21:1::0;16384:2;16364:18;;;16357:30;-1:-1:-1;;;16403:18:1;;;16396:48;16461:18;;44322:32:0::1;16143:342:1::0;44322:32:0::1;-1:-1:-1::0;;36218:8:0;:16;;-1:-1:-1;;;;36218:16:0;;;-1:-1:-1;;44002:362:0:o;12009:98::-;12067:7;12094:5;12098:1;12094;:5;:::i;:::-;12087:12;12009:98;-1:-1:-1;;;12009:98:0:o;12408:::-;12466:7;12493:5;12497:1;12493;:5;:::i;11652:98::-;11710:7;11737:5;11741:1;11737;:5;:::i;44377:591::-;44527:16;;;44541:1;44527:16;;;;;;;;44503:21;;44527:16;;;;;;;;;;-1:-1:-1;44527:16:0;44503:40;;44572:4;44554;44559:1;44554:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;44554:23:0;;;:7;;;;;;;;;;:23;;;;44598:15;;:22;;;-1:-1:-1;;;44598:22:0;;;;:15;;;;;:20;;:22;;;;;44554:7;;44598:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44588:4;44593:1;44588:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;44588:32:0;;;:7;;;;;;;;;:32;44665:15;;44633:62;;44650:4;;44665:15;44683:11;44633:8;:62::i;:::-;44734:15;;:226;;-1:-1:-1;;;44734:226:0;;-1:-1:-1;;;;;44734:15:0;;;;:66;;:226;;44815:11;;44734:15;;44885:4;;44912;;44932:15;;44734:226;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:548: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;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1631:247::-;1690:6;1743:2;1731:9;1722:7;1718:23;1714:32;1711:52;;;1759:1;1756;1749:12;1711:52;1798:9;1785:23;1817:31;1842:5;1817:31;:::i;1883:456::-;1960:6;1968;1976;2029:2;2017:9;2008:7;2004:23;2000:32;1997:52;;;2045:1;2042;2035:12;1997:52;2084:9;2071:23;2103:31;2128:5;2103:31;:::i;:::-;2153:5;-1:-1:-1;2210:2:1;2195:18;;2182:32;2223:33;2182:32;2223:33;:::i;:::-;1883:456;;2275:7;;-1:-1:-1;;;2329:2:1;2314:18;;;;2301:32;;1883:456::o;2726:272::-;2784:6;2837:2;2825:9;2816:7;2812:23;2808:32;2805:52;;;2853:1;2850;2843:12;2805:52;2892:9;2879:23;2942:6;2935:5;2931:18;2924:5;2921:29;2911:57;;2964:1;2961;2954:12;3211:180;3270:6;3323:2;3311:9;3302:7;3298:23;3294:32;3291:52;;;3339:1;3336;3329:12;3291:52;-1:-1:-1;3362:23:1;;3211:180;-1:-1:-1;3211:180:1:o;3396:118::-;3482:5;3475:13;3468:21;3461:5;3458:32;3448:60;;3504:1;3501;3494:12;3519:382;3584:6;3592;3645:2;3633:9;3624:7;3620:23;3616:32;3613:52;;;3661:1;3658;3651:12;3613:52;3700:9;3687:23;3719:31;3744:5;3719:31;:::i;:::-;3769:5;-1:-1:-1;3826:2:1;3811:18;;3798:32;3839:30;3798:32;3839:30;:::i;:::-;3888:7;3878:17;;;3519:382;;;;;:::o;3906:388::-;3974:6;3982;4035:2;4023:9;4014:7;4010:23;4006:32;4003:52;;;4051:1;4048;4041:12;4003:52;4090:9;4077:23;4109:31;4134:5;4109:31;:::i;:::-;4159:5;-1:-1:-1;4216:2:1;4201:18;;4188:32;4229:33;4188:32;4229:33;:::i;4299:380::-;4378:1;4374:12;;;;4421;;;4442:61;;4496:4;4488:6;4484:17;4474:27;;4442:61;4549:2;4541:6;4538:14;4518:18;4515:38;4512:161;;4595:10;4590:3;4586:20;4583:1;4576:31;4630:4;4627:1;4620:15;4658:4;4655:1;4648:15;4512:161;;4299:380;;;:::o;4684:356::-;4886:2;4868:21;;;4905:18;;;4898:30;4964:34;4959:2;4944:18;;4937:62;5031:2;5016:18;;4684:356::o;5859:127::-;5920:10;5915:3;5911:20;5908:1;5901:31;5951:4;5948:1;5941:15;5975:4;5972:1;5965:15;5991:125;6056:9;;;6077:10;;;6074:36;;;6090:18;;:::i;6476:398::-;6678:2;6660:21;;;6717:2;6697:18;;;6690:30;6756:34;6751:2;6736:18;;6729:62;-1:-1:-1;;;6822:2:1;6807:18;;6800:32;6864:3;6849:19;;6476:398::o;6879:168::-;6952:9;;;6983;;7000:15;;;6994:22;;6980:37;6970:71;;7021:18;;:::i;8768:251::-;8838:6;8891:2;8879:9;8870:7;8866:23;8862:32;8859:52;;;8907:1;8904;8897:12;8859:52;8939:9;8933:16;8958:31;8983:5;8958:31;:::i;10430:184::-;10500:6;10553:2;10541:9;10532:7;10528:23;10524:32;10521:52;;;10569:1;10566;10559:12;10521:52;-1:-1:-1;10592:16:1;;10430:184;-1:-1:-1;10430:184:1:o;10898:245::-;10965:6;11018:2;11006:9;10997:7;10993:23;10989:32;10986:52;;;11034:1;11031;11024:12;10986:52;11066:9;11060:16;11085:28;11107:5;11085:28;:::i;16490:217::-;16530:1;16556;16546:132;;16600:10;16595:3;16591:20;16588:1;16581:31;16635:4;16632:1;16625:15;16663:4;16660:1;16653:15;16546:132;-1:-1:-1;16692:9:1;;16490:217::o;16712:128::-;16779:9;;;16800:11;;;16797:37;;;16814:18;;:::i;16977:127::-;17038:10;17033:3;17029:20;17026:1;17019:31;17069:4;17066:1;17059:15;17093:4;17090:1;17083:15;17109:980;17371:4;17419:3;17408:9;17404:19;17450:6;17439:9;17432:25;17476:2;17514:6;17509:2;17498:9;17494:18;17487:34;17557:3;17552:2;17541:9;17537:18;17530:31;17581:6;17616;17610:13;17647:6;17639;17632:22;17685:3;17674:9;17670:19;17663:26;;17724:2;17716:6;17712:15;17698:29;;17745:1;17755:195;17769:6;17766:1;17763:13;17755:195;;;17834:13;;-1:-1:-1;;;;;17830:39:1;17818:52;;17925:15;;;;17890:12;;;;17866:1;17784:9;17755:195;;;-1:-1:-1;;;;;;;18006:32:1;;;;18001:2;17986:18;;17979:60;-1:-1:-1;;;18070:3:1;18055:19;18048:35;17967:3;17109:980;-1:-1:-1;;;17109:980:1:o
Swarm Source
ipfs://717549637ccaf701b610f9cb72fe0a60930d45d6095d23725786bfe7955ae4e5
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.