ERC-20
Overview
Max Total Supply
10,000,000,000 SAUDIRAPTOR
Holders
120
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,047,607.389555872137343865 SAUDIRAPTORValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SaudiRaptor
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-30 */ // SPDX-License-Identifier: MIT // File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: contracts/SaudiRaptor.sol pragma solidity 0.8.19; contract SaudiRaptor is Context, IERC20Metadata, Ownable, ReentrancyGuard { IUniswapV2Router02 private immutable uniswapRouter; address private immutable uniswapPair; uint256 public buyFee; uint256 public sellFee; mapping(address => bool) public List; string private _name; string private _symbol; uint8 private _decimals = 18; uint256 private _totalSupply; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; constructor( string memory _tokenName, string memory _tokensymbol, uint256 initialSupply, address _uniswapRouter ) { _name = _tokenName; _symbol = _tokensymbol; _totalSupply = initialSupply * 10**_decimals; _balances[_msgSender()] = _totalSupply; uniswapRouter = IUniswapV2Router02(_uniswapRouter); uniswapPair = IUniswapV2Factory(uniswapRouter.factory()).createPair(address(this), uniswapRouter.WETH()); buyFee = 0; sellFee = 0; List[_msgSender()] = true; emit Transfer(address(0), _msgSender(), _totalSupply); } event TokenChargedFees(address indexed sender, uint256 amount, uint256 timestamp); function name() external view returns (string memory) { return _name; } function symbol() external view returns (string memory) { return _symbol; } function decimals() external view returns (uint8) { return _decimals; } function totalSupply() external view override returns (uint256) { return _totalSupply; } function balanceOf(address account) external view override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public override nonReentrant returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override nonReentrant returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } function allowance(address owner, address spender) external view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) external override returns (bool) { _approve(_msgSender(), spender, 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"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); uint256 senderBalance = this.balanceOf(sender); require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); uint256 chargeAmount = 0; uint256 transferAmount = amount; // Check if the sender or recipient is not in the list of addresses if (!List[sender] && !List[recipient]) { // Buy if (sender == uniswapPair && buyFee > 0) { chargeAmount = amount * buyFee / 100; // Sell } else if (recipient == uniswapPair && sellFee > 0) { chargeAmount = amount * sellFee / 100; } if (chargeAmount > 0) { transferAmount = transferAmount - chargeAmount; _balances[owner()] = _balances[owner()] + chargeAmount; emit TokenChargedFees(sender, chargeAmount, block.timestamp); } } _balances[sender] = senderBalance - amount; _balances[recipient] = _balances[recipient] + transferAmount; emit Transfer(sender, recipient, transferAmount); } 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 setBuyFee(uint256 newBuyFee) external onlyOwner { buyFee = newBuyFee; } function setSellFee(uint256 newSellFee) external onlyOwner { sellFee = newSellFee; } function updateList(address account, bool status) external onlyOwner { List[account] = status; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokensymbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"_uniswapRouter","type":"address"}],"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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TokenChargedFees","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":[{"internalType":"address","name":"","type":"address"}],"name":"List","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":[],"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyFee","type":"uint256"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSellFee","type":"uint256"}],"name":"setSellFee","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":[{"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":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"updateList","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526007805460ff191660121790553480156200001e57600080fd5b5060405162001684380380620016848339810160408190526200004191620003bc565b6200004c336200028a565b6001805560056200005e8582620004d1565b5060066200006d8482620004d1565b50600754620000819060ff16600a620006b2565b6200008d9083620006ca565b600881905533600090815260096020908152604091829020929092556001600160a01b0383166080819052815163c45a015560e01b81529151909263c45a015592600480820193918290030181865afa158015620000ef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001159190620006e4565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000165573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018b9190620006e4565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001d9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ff9190620006e4565b6001600160a01b031660a0526000600281905560038190553380825260046020526040909120805460ff191660011790556001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6008546040516200027891815260200190565b60405180910390a35050505062000702565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200030257600080fd5b81516001600160401b03808211156200031f576200031f620002da565b604051601f8301601f19908116603f011681019082821181831017156200034a576200034a620002da565b816040528381526020925086838588010111156200036757600080fd5b600091505b838210156200038b57858201830151818301840152908201906200036c565b600093810190920192909252949350505050565b80516001600160a01b0381168114620003b757600080fd5b919050565b60008060008060808587031215620003d357600080fd5b84516001600160401b0380821115620003eb57600080fd5b620003f988838901620002f0565b955060208701519150808211156200041057600080fd5b506200041f87828801620002f0565b9350506040850151915062000437606086016200039f565b905092959194509250565b600181811c908216806200045757607f821691505b6020821081036200047857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004cc57600081815260208120601f850160051c81016020861015620004a75750805b601f850160051c820191505b81811015620004c857828155600101620004b3565b5050505b505050565b81516001600160401b03811115620004ed57620004ed620002da565b6200050581620004fe845462000442565b846200047e565b602080601f8311600181146200053d5760008415620005245750858301515b600019600386901b1c1916600185901b178555620004c8565b600085815260208120601f198616915b828110156200056e578886015182559484019460019091019084016200054d565b50858210156200058d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620005f4578160001904821115620005d857620005d86200059d565b80851615620005e657918102915b93841c9390800290620005b8565b509250929050565b6000826200060d57506001620006ac565b816200061c57506000620006ac565b8160018114620006355760028114620006405762000660565b6001915050620006ac565b60ff8411156200065457620006546200059d565b50506001821b620006ac565b5060208310610133831016604e8410600b841016171562000685575081810a620006ac565b620006918383620005b3565b8060001904821115620006a857620006a86200059d565b0290505b92915050565b6000620006c360ff841683620005fc565b9392505050565b8082028115828204841417620006ac57620006ac6200059d565b600060208284031215620006f757600080fd5b620006c3826200039f565b60805160a051610f586200072c60003960008181610a520152610abb015260005050610f586000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad5780639b4f1cbf116100715780639b4f1cbf14610260578063a457c2d714610283578063a9059cbb14610296578063dd62ed3e146102a9578063f2fde38b146102e257600080fd5b8063715018a61461020f578063899af294146102175780638b4cee081461022a5780638da5cb5b1461023d57806395d89b411461025857600080fd5b80632b14ca56116100f45780632b14ca56146101ac578063313ce567146101b557806339509351146101ca57806347062402146101dd57806370a08231146101e657600080fd5b806306fdde0314610131578063095ea7b31461014f5780630cc835a31461017257806318160ddd1461018757806323b872dd14610199575b600080fd5b6101396102f5565b6040516101469190610ce7565b60405180910390f35b61016261015d366004610d51565b610387565b6040519015158152602001610146565b610185610180366004610d7b565b61039e565b005b6008545b604051908152602001610146565b6101626101a7366004610d94565b6103ab565b61018b60035481565b60075460405160ff9091168152602001610146565b6101626101d8366004610d51565b61046d565b61018b60025481565b61018b6101f4366004610dd0565b6001600160a01b031660009081526009602052604090205490565b6101856104a4565b610185610225366004610deb565b6104b8565b610185610238366004610d7b565b6104eb565b6000546040516001600160a01b039091168152602001610146565b6101396104f8565b61016261026e366004610dd0565b60046020526000908152604090205460ff1681565b610162610291366004610d51565b610507565b6101626102a4366004610d51565b6105a2565b61018b6102b7366004610e27565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205490565b6101856102f0366004610dd0565b6105c3565b60606005805461030490610e5a565b80601f016020809104026020016040519081016040528092919081815260200182805461033090610e5a565b801561037d5780601f106103525761010080835404028352916020019161037d565b820191906000526020600020905b81548152906001019060200180831161036057829003601f168201915b5050505050905090565b600061039433848461063c565b5060015b92915050565b6103a6610760565b600255565b60006103b56107ba565b6103c0848484610813565b6001600160a01b0384166000908152600a602090815260408083203384529091529020548281101561044a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61045e85336104598685610eaa565b61063c565b505060018080555b9392505050565b336000818152600a602090815260408083206001600160a01b03871684529091528120549091610394918590610459908690610ebd565b6104ac610760565b6104b66000610c97565b565b6104c0610760565b6001600160a01b03919091166000908152600460205260409020805460ff1916911515919091179055565b6104f3610760565b600355565b60606006805461030490610e5a565b336000908152600a602090815260408083206001600160a01b0386168452909152812054828110156105895760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610441565b61059833856104598685610eaa565b5060019392505050565b60006105ac6107ba565b6105b7338484610813565b50600161039860018055565b6105cb610760565b6001600160a01b0381166106305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610441565b61063981610c97565b50565b6001600160a01b03831661069e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610441565b6001600160a01b0382166106ff5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610441565b6001600160a01b038381166000818152600a602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000546001600160a01b031633146104b65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610441565b60026001540361080c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610441565b6002600155565b6001600160a01b0383166108775760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610441565b6001600160a01b0382166108d95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610441565b6000811161093b5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610441565b6040516370a0823160e01b81526001600160a01b038416600482015260009030906370a0823190602401602060405180830381865afa158015610982573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a69190610ed0565b905081811015610a075760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610441565b6001600160a01b038416600090815260046020526040812054839060ff16158015610a4b57506001600160a01b03851660009081526004602052604090205460ff16155b15610bf9577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b0316148015610a9357506000600254115b15610ab957606460025485610aa89190610ee9565b610ab29190610f00565b9150610b1e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316148015610afc57506000600354115b15610b1e57606460035485610b119190610ee9565b610b1b9190610f00565b91505b8115610bf957610b2e8282610eaa565b90508160096000610b476000546001600160a01b031690565b6001600160a01b03166001600160a01b0316815260200190815260200160002054610b729190610ebd565b60096000610b886000546001600160a01b031690565b6001600160a01b03166001600160a01b0316815260200190815260200160002081905550856001600160a01b03167fb8ba7fd7137a43792efd27dfe74ba6b8c3d215a6091f42d74f98f5514846a87c8342604051610bf0929190918252602082015260400190565b60405180910390a25b610c038484610eaa565b6001600160a01b038088166000908152600960205260408082209390935590871681522054610c33908290610ebd565b6001600160a01b0380871660008181526009602052604090819020939093559151908816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610c879085815260200190565b60405180910390a3505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610d1457858101830151858201604001528201610cf8565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d4c57600080fd5b919050565b60008060408385031215610d6457600080fd5b610d6d83610d35565b946020939093013593505050565b600060208284031215610d8d57600080fd5b5035919050565b600080600060608486031215610da957600080fd5b610db284610d35565b9250610dc060208501610d35565b9150604084013590509250925092565b600060208284031215610de257600080fd5b61046682610d35565b60008060408385031215610dfe57600080fd5b610e0783610d35565b915060208301358015158114610e1c57600080fd5b809150509250929050565b60008060408385031215610e3a57600080fd5b610e4383610d35565b9150610e5160208401610d35565b90509250929050565b600181811c90821680610e6e57607f821691505b602082108103610e8e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561039857610398610e94565b8082018082111561039857610398610e94565b600060208284031215610ee257600080fd5b5051919050565b808202811582820484141761039857610398610e94565b600082610f1d57634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220e06b32589568836d213cc6d29cdf602f966e37308264c2dabe252c199c25373464736f6c63430008130033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000002540be4000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000000c534155444920524150544f520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b5341554449524150544f52000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad5780639b4f1cbf116100715780639b4f1cbf14610260578063a457c2d714610283578063a9059cbb14610296578063dd62ed3e146102a9578063f2fde38b146102e257600080fd5b8063715018a61461020f578063899af294146102175780638b4cee081461022a5780638da5cb5b1461023d57806395d89b411461025857600080fd5b80632b14ca56116100f45780632b14ca56146101ac578063313ce567146101b557806339509351146101ca57806347062402146101dd57806370a08231146101e657600080fd5b806306fdde0314610131578063095ea7b31461014f5780630cc835a31461017257806318160ddd1461018757806323b872dd14610199575b600080fd5b6101396102f5565b6040516101469190610ce7565b60405180910390f35b61016261015d366004610d51565b610387565b6040519015158152602001610146565b610185610180366004610d7b565b61039e565b005b6008545b604051908152602001610146565b6101626101a7366004610d94565b6103ab565b61018b60035481565b60075460405160ff9091168152602001610146565b6101626101d8366004610d51565b61046d565b61018b60025481565b61018b6101f4366004610dd0565b6001600160a01b031660009081526009602052604090205490565b6101856104a4565b610185610225366004610deb565b6104b8565b610185610238366004610d7b565b6104eb565b6000546040516001600160a01b039091168152602001610146565b6101396104f8565b61016261026e366004610dd0565b60046020526000908152604090205460ff1681565b610162610291366004610d51565b610507565b6101626102a4366004610d51565b6105a2565b61018b6102b7366004610e27565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205490565b6101856102f0366004610dd0565b6105c3565b60606005805461030490610e5a565b80601f016020809104026020016040519081016040528092919081815260200182805461033090610e5a565b801561037d5780601f106103525761010080835404028352916020019161037d565b820191906000526020600020905b81548152906001019060200180831161036057829003601f168201915b5050505050905090565b600061039433848461063c565b5060015b92915050565b6103a6610760565b600255565b60006103b56107ba565b6103c0848484610813565b6001600160a01b0384166000908152600a602090815260408083203384529091529020548281101561044a5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61045e85336104598685610eaa565b61063c565b505060018080555b9392505050565b336000818152600a602090815260408083206001600160a01b03871684529091528120549091610394918590610459908690610ebd565b6104ac610760565b6104b66000610c97565b565b6104c0610760565b6001600160a01b03919091166000908152600460205260409020805460ff1916911515919091179055565b6104f3610760565b600355565b60606006805461030490610e5a565b336000908152600a602090815260408083206001600160a01b0386168452909152812054828110156105895760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610441565b61059833856104598685610eaa565b5060019392505050565b60006105ac6107ba565b6105b7338484610813565b50600161039860018055565b6105cb610760565b6001600160a01b0381166106305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610441565b61063981610c97565b50565b6001600160a01b03831661069e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610441565b6001600160a01b0382166106ff5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610441565b6001600160a01b038381166000818152600a602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000546001600160a01b031633146104b65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610441565b60026001540361080c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610441565b6002600155565b6001600160a01b0383166108775760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610441565b6001600160a01b0382166108d95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610441565b6000811161093b5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610441565b6040516370a0823160e01b81526001600160a01b038416600482015260009030906370a0823190602401602060405180830381865afa158015610982573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a69190610ed0565b905081811015610a075760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610441565b6001600160a01b038416600090815260046020526040812054839060ff16158015610a4b57506001600160a01b03851660009081526004602052604090205460ff16155b15610bf9577f000000000000000000000000b57b00e5271a3416d70e2d145f2d7149622dead06001600160a01b0316866001600160a01b0316148015610a9357506000600254115b15610ab957606460025485610aa89190610ee9565b610ab29190610f00565b9150610b1e565b7f000000000000000000000000b57b00e5271a3416d70e2d145f2d7149622dead06001600160a01b0316856001600160a01b0316148015610afc57506000600354115b15610b1e57606460035485610b119190610ee9565b610b1b9190610f00565b91505b8115610bf957610b2e8282610eaa565b90508160096000610b476000546001600160a01b031690565b6001600160a01b03166001600160a01b0316815260200190815260200160002054610b729190610ebd565b60096000610b886000546001600160a01b031690565b6001600160a01b03166001600160a01b0316815260200190815260200160002081905550856001600160a01b03167fb8ba7fd7137a43792efd27dfe74ba6b8c3d215a6091f42d74f98f5514846a87c8342604051610bf0929190918252602082015260400190565b60405180910390a25b610c038484610eaa565b6001600160a01b038088166000908152600960205260408082209390935590871681522054610c33908290610ebd565b6001600160a01b0380871660008181526009602052604090819020939093559151908816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610c879085815260200190565b60405180910390a3505050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610d1457858101830151858201604001528201610cf8565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d4c57600080fd5b919050565b60008060408385031215610d6457600080fd5b610d6d83610d35565b946020939093013593505050565b600060208284031215610d8d57600080fd5b5035919050565b600080600060608486031215610da957600080fd5b610db284610d35565b9250610dc060208501610d35565b9150604084013590509250925092565b600060208284031215610de257600080fd5b61046682610d35565b60008060408385031215610dfe57600080fd5b610e0783610d35565b915060208301358015158114610e1c57600080fd5b809150509250929050565b60008060408385031215610e3a57600080fd5b610e4383610d35565b9150610e5160208401610d35565b90509250929050565b600181811c90821680610e6e57607f821691505b602082108103610e8e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561039857610398610e94565b8082018082111561039857610398610e94565b600060208284031215610ee257600080fd5b5051919050565b808202811582820484141761039857610398610e94565b600082610f1d57634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220e06b32589568836d213cc6d29cdf602f966e37308264c2dabe252c199c25373464736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000002540be4000000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000000c534155444920524150544f520000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b5341554449524150544f52000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenName (string): SAUDI RAPTOR
Arg [1] : _tokensymbol (string): SAUDIRAPTOR
Arg [2] : initialSupply (uint256): 10000000000
Arg [3] : _uniswapRouter (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000000000000000002540be400
Arg [3] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 534155444920524150544f520000000000000000000000000000000000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [7] : 5341554449524150544f52000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
16094:5514:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17395:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18689:168;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;18689:168:0;1004:187:1;21271:102:0;;;;;;:::i;:::-;;:::i;:::-;;17678;17760:12;;17678:102;;;1527:25:1;;;1515:2;1500:18;17678:102:0;1381:177:1;18105:423:0;;;;;;:::i;:::-;;:::i;16308:22::-;;;;;;17585:85;17653:9;;17585:85;;17653:9;;;;2038:36:1;;2026:2;2011:18;17585:85:0;1896:184:1;18865:215:0;;;;;;:::i;:::-;;:::i;16280:21::-;;;;;;17788:121;;;;;;:::i;:::-;-1:-1:-1;;;;;17883:18:0;17856:7;17883:18;;;:9;:18;;;;;;;17788:121;11582:103;;;:::i;21495:110::-;;;;;;:::i;:::-;;:::i;21381:106::-;;;;;;:::i;:::-;;:::i;10934:87::-;10980:7;11007:6;10934:87;;-1:-1:-1;;;;;11007:6:0;;;2774:51:1;;2762:2;2747:18;10934:87:0;2628:203:1;17488:89:0;;;:::i;16337:36::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;19088:375;;;;;;:::i;:::-;;:::i;17917:180::-;;;;;;:::i;:::-;;:::i;18536:145::-;;;;;;:::i;:::-;-1:-1:-1;;;;;18646:18:0;;;18619:7;18646:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18536:145;11840:201;;;;;;:::i;:::-;;:::i;17395:85::-;17434:13;17467:5;17460:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17395:85;:::o;18689:168::-;18771:4;18788:39;9565:10;18811:7;18820:6;18788:8;:39::i;:::-;-1:-1:-1;18845:4:0;18689:168;;;;;:::o;21271:102::-;10820:13;:11;:13::i;:::-;21347:6:::1;:18:::0;21271:102::o;18105:423::-;18216:4;8205:21;:19;:21::i;:::-;18233:36:::1;18243:6;18251:9;18262:6;18233:9;:36::i;:::-;-1:-1:-1::0;;;;;18307:19:0;::::1;18280:24;18307:19:::0;;;:11:::1;:19;::::0;;;;;;;9565:10;18307:33;;;;;;;;18359:26;;::::1;;18351:79;;;::::0;-1:-1:-1;;;18351:79:0;;3688:2:1;18351:79:0::1;::::0;::::1;3670:21:1::0;3727:2;3707:18;;;3700:30;3766:34;3746:18;;;3739:62;-1:-1:-1;;;3817:18:1;;;3810:38;3865:19;;18351:79:0::1;;;;;;;;;18441:57;18450:6:::0;9565:10;18472:25:::1;18491:6:::0;18472:16;:25:::1;:::i;:::-;18441:8;:57::i;:::-;-1:-1:-1::0;;18516:4:0::1;8769:22:::0;;;8249:20;18105:423;;;;;:::o;18865:215::-;9565:10;18953:4;19002:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;19002:34:0;;;;;;;;;;18953:4;;18970:80;;18993:7;;19002:47;;19039:10;;19002:47;:::i;11582:103::-;10820:13;:11;:13::i;:::-;11647:30:::1;11674:1;11647:18;:30::i;:::-;11582:103::o:0;21495:110::-;10820:13;:11;:13::i;:::-;-1:-1:-1;;;;;21575:13:0;;;::::1;;::::0;;;:4:::1;:13;::::0;;;;:22;;-1:-1:-1;;21575:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;21495:110::o;21381:106::-;10820:13;:11;:13::i;:::-;21459:7:::1;:20:::0;21381:106::o;17488:89::-;17529:13;17562:7;17555:14;;;;;:::i;19088:375::-;9565:10;19181:4;19225:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;19225:34:0;;;;;;;;;;19278:35;;;;19270:85;;;;-1:-1:-1;;;19270:85:0;;4492:2:1;19270:85:0;;;4474:21:1;4531:2;4511:18;;;4504:30;4570:34;4550:18;;;4543:62;-1:-1:-1;;;4621:18:1;;;4614:35;4666:19;;19270:85:0;4290:401:1;19270:85:0;19366:67;9565:10;19389:7;19398:34;19417:15;19398:16;:34;:::i;19366:67::-;-1:-1:-1;19451:4:0;;19088:375;-1:-1:-1;;;19088:375:0:o;17917:180::-;18008:4;8205:21;:19;:21::i;:::-;18025:42:::1;9565:10:::0;18049:9:::1;18060:6;18025:9;:42::i;:::-;-1:-1:-1::0;18085:4:0::1;8249:20:::0;7643:1;8769:22;;8586:213;11840:201;10820:13;:11;:13::i;:::-;-1:-1:-1;;;;;11929:22:0;::::1;11921:73;;;::::0;-1:-1:-1;;;11921:73:0;;4898:2:1;11921:73:0::1;::::0;::::1;4880:21:1::0;4937:2;4917:18;;;4910:30;4976:34;4956:18;;;4949:62;-1:-1:-1;;;5027:18:1;;;5020:36;5073:19;;11921:73:0::1;4696:402:1::0;11921:73:0::1;12005:28;12024:8;12005:18;:28::i;:::-;11840:201:::0;:::o;20917:346::-;-1:-1:-1;;;;;21019:19:0;;21011:68;;;;-1:-1:-1;;;21011:68:0;;5305:2:1;21011:68:0;;;5287:21:1;5344:2;5324:18;;;5317:30;5383:34;5363:18;;;5356:62;-1:-1:-1;;;5434:18:1;;;5427:34;5478:19;;21011:68:0;5103:400:1;21011:68:0;-1:-1:-1;;;;;21098:21:0;;21090:68;;;;-1:-1:-1;;;21090:68:0;;5710:2:1;21090:68:0;;;5692:21:1;5749:2;5729:18;;;5722:30;5788:34;5768:18;;;5761:62;-1:-1:-1;;;5839:18:1;;;5832:32;5881:19;;21090:68:0;5508:398:1;21090:68:0;-1:-1:-1;;;;;21171:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21223:32;;1527:25:1;;;21223:32:0;;1500:18:1;21223:32:0;;;;;;;20917:346;;;:::o;11099:132::-;10980:7;11007:6;-1:-1:-1;;;;;11007:6:0;9565:10;11163:23;11155:68;;;;-1:-1:-1;;;11155:68:0;;6113:2:1;11155:68:0;;;6095:21:1;;;6132:18;;;6125:30;6191:34;6171:18;;;6164:62;6243:18;;11155:68:0;5911:356:1;8285:293:0;7687:1;8419:7;;:19;8411:63;;;;-1:-1:-1;;;8411:63:0;;6474:2:1;8411:63:0;;;6456:21:1;6513:2;6493:18;;;6486:30;6552:33;6532:18;;;6525:61;6603:18;;8411:63:0;6272:355:1;8411:63:0;7687:1;8552:7;:18;8285:293::o;19471:1438::-;-1:-1:-1;;;;;19569:20:0;;19561:70;;;;-1:-1:-1;;;19561:70:0;;6834:2:1;19561:70:0;;;6816:21:1;6873:2;6853:18;;;6846:30;6912:34;6892:18;;;6885:62;-1:-1:-1;;;6963:18:1;;;6956:35;7008:19;;19561:70:0;6632:401:1;19561:70:0;-1:-1:-1;;;;;19650:23:0;;19642:71;;;;-1:-1:-1;;;19642:71:0;;7240:2:1;19642:71:0;;;7222:21:1;7279:2;7259:18;;;7252:30;7318:34;7298:18;;;7291:62;-1:-1:-1;;;7369:18:1;;;7362:33;7412:19;;19642:71:0;7038:399:1;19642:71:0;19741:1;19732:6;:10;19724:64;;;;-1:-1:-1;;;19724:64:0;;7644:2:1;19724:64:0;;;7626:21:1;7683:2;7663:18;;;7656:30;7722:34;7702:18;;;7695:62;-1:-1:-1;;;7773:18:1;;;7766:39;7822:19;;19724:64:0;7442:405:1;19724:64:0;19825:22;;-1:-1:-1;;;19825:22:0;;-1:-1:-1;;;;;2792:32:1;;19825:22:0;;;2774:51:1;19801:21:0;;19825:4;;:14;;2747:18:1;;19825:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19801:46;;19883:6;19866:13;:23;;19858:74;;;;-1:-1:-1;;;19858:74:0;;8243:2:1;19858:74:0;;;8225:21:1;8282:2;8262:18;;;8255:30;8321:34;8301:18;;;8294:62;-1:-1:-1;;;8372:18:1;;;8365:36;8418:19;;19858:74:0;8041:402:1;19858:74:0;-1:-1:-1;;;;;20108:12:0;;19945:20;20108:12;;;:4;:12;;;;;;20005:6;;20108:12;;20107:13;:33;;;;-1:-1:-1;;;;;;20125:15:0;;;;;;:4;:15;;;;;;;;20124:16;20107:33;20103:612;;;20191:11;-1:-1:-1;;;;;20181:21:0;:6;-1:-1:-1;;;;;20181:21:0;;:35;;;;;20215:1;20206:6;;:10;20181:35;20177:256;;;20270:3;20261:6;;20252;:15;;;;:::i;:::-;:21;;;;:::i;:::-;20237:36;;20177:256;;;20333:11;-1:-1:-1;;;;;20320:24:0;:9;-1:-1:-1;;;;;20320:24:0;;:39;;;;;20358:1;20348:7;;:11;20320:39;20316:117;;;20414:3;20404:7;;20395:6;:16;;;;:::i;:::-;:22;;;;:::i;:::-;20380:37;;20316:117;20453:16;;20449:255;;20507:29;20524:12;20507:14;:29;:::i;:::-;20490:46;;20597:12;20576:9;:18;20586:7;10980;11007:6;-1:-1:-1;;;;;11007:6:0;;10934:87;20586:7;-1:-1:-1;;;;;20576:18:0;-1:-1:-1;;;;;20576:18:0;;;;;;;;;;;;;:33;;;;:::i;:::-;20555:9;:18;20565:7;10980;11007:6;-1:-1:-1;;;;;11007:6:0;;10934:87;20565:7;-1:-1:-1;;;;;20555:18:0;-1:-1:-1;;;;;20555:18:0;;;;;;;;;;;;:54;;;;20650:6;-1:-1:-1;;;;;20633:55:0;;20658:12;20672:15;20633:55;;;;;;9017:25:1;;;9073:2;9058:18;;9051:34;9005:2;8990:18;;8843:248;20633:55:0;;;;;;;;20449:255;20747:22;20763:6;20747:13;:22;:::i;:::-;-1:-1:-1;;;;;20727:17:0;;;;;;;:9;:17;;;;;;:42;;;;20803:20;;;;;;;:37;;20826:14;;20803:37;:::i;:::-;-1:-1:-1;;;;;20780:20:0;;;;;;;:9;:20;;;;;;;:60;;;;20858:43;;;;;;;;;;20886:14;1527:25:1;;1515:2;1500:18;;1381:177;20858:43:0;;;;;;;;19550:1359;;;19471:1438;;;:::o;12201:191::-;12275:16;12294:6;;-1:-1:-1;;;;;12311:17:0;;;-1:-1:-1;;;;;;12311:17:0;;;;;;12344:40;;12294:6;;;;;;;12344:40;;12275:16;12344:40;12264:128;12201:191;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1196:180::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;-1:-1:-1;1347:23:1;;1196:180;-1:-1:-1;1196:180:1:o;1563:328::-;1640:6;1648;1656;1709:2;1697:9;1688:7;1684:23;1680:32;1677:52;;;1725:1;1722;1715:12;1677:52;1748:29;1767:9;1748:29;:::i;:::-;1738:39;;1796:38;1830:2;1819:9;1815:18;1796:38;:::i;:::-;1786:48;;1881:2;1870:9;1866:18;1853:32;1843:42;;1563:328;;;;;:::o;2085:186::-;2144:6;2197:2;2185:9;2176:7;2172:23;2168:32;2165:52;;;2213:1;2210;2203:12;2165:52;2236:29;2255:9;2236:29;:::i;2276:347::-;2341:6;2349;2402:2;2390:9;2381:7;2377:23;2373:32;2370:52;;;2418:1;2415;2408:12;2370:52;2441:29;2460:9;2441:29;:::i;:::-;2431:39;;2520:2;2509:9;2505:18;2492:32;2567:5;2560:13;2553:21;2546:5;2543:32;2533:60;;2589:1;2586;2579:12;2533:60;2612:5;2602:15;;;2276:347;;;;;:::o;2836:260::-;2904:6;2912;2965:2;2953:9;2944:7;2940:23;2936:32;2933:52;;;2981:1;2978;2971:12;2933:52;3004:29;3023:9;3004:29;:::i;:::-;2994:39;;3052:38;3086:2;3075:9;3071:18;3052:38;:::i;:::-;3042:48;;2836:260;;;;;:::o;3101:380::-;3180:1;3176:12;;;;3223;;;3244:61;;3298:4;3290:6;3286:17;3276:27;;3244:61;3351:2;3343:6;3340:14;3320:18;3317:38;3314:161;;3397:10;3392:3;3388:20;3385:1;3378:31;3432:4;3429:1;3422:15;3460:4;3457:1;3450:15;3314:161;;3101:380;;;:::o;3895:127::-;3956:10;3951:3;3947:20;3944:1;3937:31;3987:4;3984:1;3977:15;4011:4;4008:1;4001:15;4027:128;4094:9;;;4115:11;;;4112:37;;;4129:18;;:::i;4160:125::-;4225:9;;;4246:10;;;4243:36;;;4259:18;;:::i;7852:184::-;7922:6;7975:2;7963:9;7954:7;7950:23;7946:32;7943:52;;;7991:1;7988;7981:12;7943:52;-1:-1:-1;8014:16:1;;7852:184;-1:-1:-1;7852:184:1:o;8448:168::-;8521:9;;;8552;;8569:15;;;8563:22;;8549:37;8539:71;;8590:18;;:::i;8621:217::-;8661:1;8687;8677:132;;8731:10;8726:3;8722:20;8719:1;8712:31;8766:4;8763:1;8756:15;8794:4;8791:1;8784:15;8677:132;-1:-1:-1;8823:9:1;;8621:217::o
Swarm Source
ipfs://e06b32589568836d213cc6d29cdf602f966e37308264c2dabe252c199c253734
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.