JIZZ
Signup to DeployContract Information
The following smart contract is called JIZZ and is an ERC20 token. It includes anti-bot measures to prevent bots from trading the token frequently. The contract includes functions for transferring tokens, approving spending limits, and burning tokens. The contract also allows the owner to set anti-bot measures and exempt certain contracts from these measures.
More Info
## Public Information
- `_name`: a private string variable that stores the name of the token.
- `_symbol`: a private string variable that stores the symbol of the token.
- `_totalSupply`: a private uint256 variable that stores the total supply of the token.
- `_balances`: a private mapping that stores the balance of each address.
- `_allowances`: a private mapping that stores the allowance of each address to spend on behalf of another address.
- `antiBotsActive`: a public boolean variable that indicates whether anti-bot measures are active or not.
- `isContractExempt`: a public mapping that stores whether an address is exempt from anti-bot measures or not.
- `blockCooldownAmount`: a public uint variable that stores the block cooldown amount for anti-bot measures.
- `_blockNumberByAddress`: a public mapping that stores the block number of the last transaction for each address.
## Public or external functions
- `name()`: a public view function that returns the name of the token.
- `symbol()`: a public view function that returns the symbol of the token.
- `decimals()`: a public view function that returns the number of decimals of the token.
- `totalSupply()`: a public view function that returns the total supply of the token.
- `balanceOf(address account)`: a public view function that returns the balance of an address.
- `transfer(address to, uint256 amount)`: a public function that transfers tokens from the sender to the recipient.
- `allowance(address owner, address spender)`: a public view function that returns the allowance of an address to spend on behalf of another address.
- `approve(address spender, uint256 amount)`: a public function that approves an address to spend a certain amount of tokens on behalf of the sender.
- `transferFrom(address from, address to, uint256 amount)`: a public function that transfers tokens from one address to another on behalf of a third address.
- `increaseAllowance(address spender, uint256 addedValue)`: a public function that increases the allowance of an address to spend on behalf of the sender.
- `decreaseAllowance(address spender, uint256 subtractedValue)`: a public function that decreases the allowance of an address to spend on behalf of the sender.
- `setAntiBotsActive(bool value)`: a public function that sets the value of `antiBotsActive`.
- `setBlockCooldown(uint value)`: a public function that sets the value of `blockCooldownAmount`.
- `setContractExempt(address account, bool value)`: a public function that sets the value of `isContractExempt` for a specific address.
## Events
- `Transfer(address indexed from, address indexed to, uint256 value)`: an event that is emitted when tokens are transferred from one address to another.
- `Approval(address indexed owner, address indexed spender, uint256 value)`: an event that is emitted when an address is approved to spend a certain amount of tokens on behalf of another address.
## Inherits
- `Context`: a contract that provides information about the execution context, including the sender of the transaction and the block number.
- `IERC20`: an interface that defines the standard functions and events of an ERC20 token.
- `IERC20Metadata`: an interface that extends `IERC20` and adds metadata about the token, including its name, symbol, and number of decimals.
- `Ownable`: a contract that provides a modifier to restrict access to certain functions to the owner of the contract.
- `_name`: a private string variable that stores the name of the token.
- `_symbol`: a private string variable that stores the symbol of the token.
- `_totalSupply`: a private uint256 variable that stores the total supply of the token.
- `_balances`: a private mapping that stores the balance of each address.
- `_allowances`: a private mapping that stores the allowance of each address to spend on behalf of another address.
- `antiBotsActive`: a public boolean variable that indicates whether anti-bot measures are active or not.
- `isContractExempt`: a public mapping that stores whether an address is exempt from anti-bot measures or not.
- `blockCooldownAmount`: a public uint variable that stores the block cooldown amount for anti-bot measures.
- `_blockNumberByAddress`: a public mapping that stores the block number of the last transaction for each address.
## Public or external functions
- `name()`: a public view function that returns the name of the token.
- `symbol()`: a public view function that returns the symbol of the token.
- `decimals()`: a public view function that returns the number of decimals of the token.
- `totalSupply()`: a public view function that returns the total supply of the token.
- `balanceOf(address account)`: a public view function that returns the balance of an address.
- `transfer(address to, uint256 amount)`: a public function that transfers tokens from the sender to the recipient.
- `allowance(address owner, address spender)`: a public view function that returns the allowance of an address to spend on behalf of another address.
- `approve(address spender, uint256 amount)`: a public function that approves an address to spend a certain amount of tokens on behalf of the sender.
- `transferFrom(address from, address to, uint256 amount)`: a public function that transfers tokens from one address to another on behalf of a third address.
- `increaseAllowance(address spender, uint256 addedValue)`: a public function that increases the allowance of an address to spend on behalf of the sender.
- `decreaseAllowance(address spender, uint256 subtractedValue)`: a public function that decreases the allowance of an address to spend on behalf of the sender.
- `setAntiBotsActive(bool value)`: a public function that sets the value of `antiBotsActive`.
- `setBlockCooldown(uint value)`: a public function that sets the value of `blockCooldownAmount`.
- `setContractExempt(address account, bool value)`: a public function that sets the value of `isContractExempt` for a specific address.
## Events
- `Transfer(address indexed from, address indexed to, uint256 value)`: an event that is emitted when tokens are transferred from one address to another.
- `Approval(address indexed owner, address indexed spender, uint256 value)`: an event that is emitted when an address is approved to spend a certain amount of tokens on behalf of another address.
## Inherits
- `Context`: a contract that provides information about the execution context, including the sender of the transaction and the block number.
- `IERC20`: an interface that defines the standard functions and events of an ERC20 token.
- `IERC20Metadata`: an interface that extends `IERC20` and adds metadata about the token, including its name, symbol, and number of decimals.
- `Ownable`: a contract that provides a modifier to restrict access to certain functions to the owner of the contract.
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
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);
}
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
interface IUniswapV2Factory {
function createPair(address tokenA, address tokenB) external returns (address pair);
}
interface IUniswapV2Router01 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
}
interface IUniswapV2Router02 is IUniswapV2Router01 {
}
contract JIZZ is Context, IERC20, IERC20Metadata, Ownable {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
// Anti bot
mapping(address => uint256) public _blockNumberByAddress;
bool public antiBotsActive = false;
mapping(address => bool) public isContractExempt;
uint public blockCooldownAmount = 1;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor() {
_name = "JizzRocket";
_symbol = "JIZZ";
uint e_totalSupply = 69_000_000_000 ether;
// Anti bot
isContractExempt[address(this)] = true;
_mint(msg.sender, e_totalSupply);
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, _allowances[owner][spender] + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = _allowances[owner][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
// bots don't get jizz
if(antiBotsActive)
{
if(!isContractExempt[from] && !isContractExempt[to])
{
address human = ensureOneHuman(from, to);
ensureMaxTxFrequency(human);
_blockNumberByAddress[human] = block.number;
}
}
//
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
}
_balances[to] += amount;
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Spend `amount` form the allowance of `owner` toward `spender`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
// anti bot
function isContract(address account) internal view returns (bool) {
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
function ensureOneHuman(address _to, address _from) internal virtual returns (address) {
require(!isContract(_to) || !isContract(_from), "No bots are allowed JIZZ!");
if (isContract(_to)) return _from;
else return _to;
}
function ensureMaxTxFrequency(address addr) internal virtual {
bool isAllowed = _blockNumberByAddress[addr] == 0 ||
((_blockNumberByAddress[addr] + blockCooldownAmount) < (block.number + 1));
require(isAllowed, "Max tx frequency exceeded!");
}
function setAntiBotsActive(bool value) external onlyOwner {
antiBotsActive = value;
}
function setBlockCooldown(uint value) external onlyOwner {
blockCooldownAmount = value;
}
function setContractExempt(address account, bool value) external onlyOwner {
isContractExempt[account] = value;
}
// End anti bot
}
[{"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":[{"internalType":"address","name":"","type":"address"}],"name":"_blockNumberByAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"antiBotsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"blockCooldownAmount","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":[{"internalType":"address","name":"","type":"address"}],"name":"isContractExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setAntiBotsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setBlockCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setContractExempt","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
[{"inputs":[],"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":[{"internalType":"address","name":"","type":"address"}],"name":"_blockNumberByAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"antiBotsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"blockCooldownAmount","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":[{"internalType":"address","name":"","type":"address"}],"name":"isContractExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setAntiBotsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setBlockCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setContractExempt","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
60806040526007805460ff1916905560016009553480156200002057600080fd5b506200002c33620000c2565b60408051808201909152600a815269129a5e9e949bd8dad95d60b21b60208201526004906200005c9082620002a3565b506040805180820190915260048152632524ad2d60e11b6020820152600590620000879082620002a3565b50306000908152600860205260409020805460ff191660011790556bdef376571332906a88000000620000bb338262000112565b5062000397565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200016d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600360008282546200018191906200036f565b90915550506001600160a01b03821660009081526001602052604081208054839290620001b09084906200036f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200022a57607f821691505b6020821081036200024b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001fa57600081815260208120601f850160051c810160208610156200027a5750805b601f850160051c820191505b818110156200029b5782815560010162000286565b505050505050565b81516001600160401b03811115620002bf57620002bf620001ff565b620002d781620002d0845462000215565b8462000251565b602080601f8311600181146200030f5760008415620002f65750858301515b600019600386901b1c1916600185901b1785556200029b565b600085815260208120601f198616915b8281101562000340578886015182559484019460019091019084016200031f565b50858210156200035f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200039157634e487b7160e01b600052601160045260246000fd5b92915050565b61121c80620003a76000396000f3fe608060405234801561001057600080fd5b50600436106101775760003560e01c8063715018a6116100d85780639686d3221161008c578063dd62ed3e11610066578063dd62ed3e14610309578063f2fde38b1461034f578063f6887cd31461036257600080fd5b80639686d322146102d0578063a457c2d7146102e3578063a9059cbb146102f657600080fd5b806380f68310116100bd57806380f683101461028d5780638da5cb5b146102a057806395d89b41146102c857600080fd5b8063715018a61461026557806377a59f001461026d57600080fd5b806323b872dd1161012f5780633950935111610114578063395093511461020f57806341f20b681461022257806370a082311461022f57600080fd5b806323b872dd146101ed578063313ce5671461020057600080fd5b806313c72aed1161016057806313c72aed146101bd57806318160ddd146101d25780631868aadf146101e457600080fd5b806306fdde031461017c578063095ea7b31461019a575b600080fd5b610184610385565b6040516101919190610f9b565b60405180910390f35b6101ad6101a8366004611030565b610417565b6040519015158152602001610191565b6101d06101cb36600461105a565b610431565b005b6003545b604051908152602001610191565b6101d660095481565b6101ad6101fb366004611073565b6104a2565b60405160128152602001610191565b6101ad61021d366004611030565b6104c6565b6007546101ad9060ff1681565b6101d661023d3660046110af565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b6101d0610512565b6101d661027b3660046110af565b60066020526000908152604090205481565b6101d061029b3660046110e1565b610585565b60005460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610191565b61018461061d565b6101d06102de3660046110fc565b61062c565b6101ad6102f1366004611030565b6106e9565b6101ad610304366004611030565b6107a0565b6101d661031736600461112f565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260026020908152604080832093909416825291909152205490565b6101d061035d3660046110af565b6107ae565b6101ad6103703660046110af565b60086020526000908152604090205460ff1681565b60606004805461039490611159565b80601f01602080910402602001604051908101604052809291908181526020018280546103c090611159565b801561040d5780601f106103e25761010080835404028352916020019161040d565b820191906000526020600020905b8154815290600101906020018083116103f057829003601f168201915b5050505050905090565b6000336104258185856108aa565b60019150505b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461049d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600955565b6000336104b0858285610a29565b6104bb858585610ae6565b506001949350505050565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610425908290869061050d9087906111ac565b6108aa565b60005473ffffffffffffffffffffffffffffffffffffffff1633146105795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610494565b6105836000610df6565b565b60005473ffffffffffffffffffffffffffffffffffffffff1633146105ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610494565b600780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60606005805461039490611159565b60005473ffffffffffffffffffffffffffffffffffffffff1633146106935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610494565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260086020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156107935760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610494565b6104bb82868684036108aa565b600033610425818585610ae6565b60005473ffffffffffffffffffffffffffffffffffffffff1633146108155760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610494565b73ffffffffffffffffffffffffffffffffffffffff811661089e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610494565b6108a781610df6565b50565b73ffffffffffffffffffffffffffffffffffffffff83166109325760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610494565b73ffffffffffffffffffffffffffffffffffffffff82166109bb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610494565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600260209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ae05781811015610ad35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610494565b610ae084848484036108aa565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610b6f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610494565b73ffffffffffffffffffffffffffffffffffffffff8216610bf85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610494565b60075460ff1615610ca35773ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205460ff16158015610c5f575073ffffffffffffffffffffffffffffffffffffffff821660009081526008602052604090205460ff16155b15610ca3576000610c708484610e6b565b9050610c7b81610edb565b73ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090204390555b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604090205481811015610d3f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610494565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260016020526040808220858503905591851681529081208054849290610d839084906111ac565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610de991815260200190565b60405180910390a3610ae0565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000823b1580610e7a5750813b155b610ec65760405162461bcd60e51b815260206004820152601960248201527f4e6f20626f74732061726520616c6c6f776564204a495a5a21000000000000006044820152606401610494565b823b15610ed457508061042b565b508161042b565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600660205260408120541580610f485750610f134360016111ac565b60095473ffffffffffffffffffffffffffffffffffffffff8416600090815260066020526040902054610f4691906111ac565b105b905080610f975760405162461bcd60e51b815260206004820152601a60248201527f4d6178207478206672657175656e6379206578636565646564210000000000006044820152606401610494565b5050565b600060208083528351808285015260005b81811015610fc857858101830151858201604001528201610fac565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461102b57600080fd5b919050565b6000806040838503121561104357600080fd5b61104c83611007565b946020939093013593505050565b60006020828403121561106c57600080fd5b5035919050565b60008060006060848603121561108857600080fd5b61109184611007565b925061109f60208501611007565b9150604084013590509250925092565b6000602082840312156110c157600080fd5b6110ca82611007565b9392505050565b8035801515811461102b57600080fd5b6000602082840312156110f357600080fd5b6110ca826110d1565b6000806040838503121561110f57600080fd5b61111883611007565b9150611126602084016110d1565b90509250929050565b6000806040838503121561114257600080fd5b61114b83611007565b915061112660208401611007565b600181811c9082168061116d57607f821691505b6020821081036111a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b8082018082111561042b577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea26469706673582212205fc099a63e053dc0f0e652c0fed7a0ff05bd4afb472b2c4341518154837c6ce164736f6c63430008110033
60806040526007805460ff1916905560016009553480156200002057600080fd5b506200002c33620000c2565b60408051808201909152600a815269129a5e9e949bd8dad95d60b21b60208201526004906200005c9082620002a3565b506040805180820190915260048152632524ad2d60e11b6020820152600590620000879082620002a3565b50306000908152600860205260409020805460ff191660011790556bdef376571332906a88000000620000bb338262000112565b5062000397565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200016d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600360008282546200018191906200036f565b90915550506001600160a01b03821660009081526001602052604081208054839290620001b09084906200036f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200022a57607f821691505b6020821081036200024b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001fa57600081815260208120601f850160051c810160208610156200027a5750805b601f850160051c820191505b818110156200029b5782815560010162000286565b505050505050565b81516001600160401b03811115620002bf57620002bf620001ff565b620002d781620002d0845462000215565b8462000251565b602080601f8311600181146200030f5760008415620002f65750858301515b600019600386901b1c1916600185901b1785556200029b565b600085815260208120601f198616915b8281101562000340578886015182559484019460019091019084016200031f565b50858210156200035f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200039157634e487b7160e01b600052601160045260246000fd5b92915050565b61121c80620003a76000396000f3fe608060405234801561001057600080fd5b50600436106101775760003560e01c8063715018a6116100d85780639686d3221161008c578063dd62ed3e11610066578063dd62ed3e14610309578063f2fde38b1461034f578063f6887cd31461036257600080fd5b80639686d322146102d0578063a457c2d7146102e3578063a9059cbb146102f657600080fd5b806380f68310116100bd57806380f683101461028d5780638da5cb5b146102a057806395d89b41146102c857600080fd5b8063715018a61461026557806377a59f001461026d57600080fd5b806323b872dd1161012f5780633950935111610114578063395093511461020f57806341f20b681461022257806370a082311461022f57600080fd5b806323b872dd146101ed578063313ce5671461020057600080fd5b806313c72aed1161016057806313c72aed146101bd57806318160ddd146101d25780631868aadf146101e457600080fd5b806306fdde031461017c578063095ea7b31461019a575b600080fd5b610184610385565b6040516101919190610f9b565b60405180910390f35b6101ad6101a8366004611030565b610417565b6040519015158152602001610191565b6101d06101cb36600461105a565b610431565b005b6003545b604051908152602001610191565b6101d660095481565b6101ad6101fb366004611073565b6104a2565b60405160128152602001610191565b6101ad61021d366004611030565b6104c6565b6007546101ad9060ff1681565b6101d661023d3660046110af565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b6101d0610512565b6101d661027b3660046110af565b60066020526000908152604090205481565b6101d061029b3660046110e1565b610585565b60005460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610191565b61018461061d565b6101d06102de3660046110fc565b61062c565b6101ad6102f1366004611030565b6106e9565b6101ad610304366004611030565b6107a0565b6101d661031736600461112f565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260026020908152604080832093909416825291909152205490565b6101d061035d3660046110af565b6107ae565b6101ad6103703660046110af565b60086020526000908152604090205460ff1681565b60606004805461039490611159565b80601f01602080910402602001604051908101604052809291908181526020018280546103c090611159565b801561040d5780601f106103e25761010080835404028352916020019161040d565b820191906000526020600020905b8154815290600101906020018083116103f057829003601f168201915b5050505050905090565b6000336104258185856108aa565b60019150505b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461049d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600955565b6000336104b0858285610a29565b6104bb858585610ae6565b506001949350505050565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610425908290869061050d9087906111ac565b6108aa565b60005473ffffffffffffffffffffffffffffffffffffffff1633146105795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610494565b6105836000610df6565b565b60005473ffffffffffffffffffffffffffffffffffffffff1633146105ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610494565b600780547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60606005805461039490611159565b60005473ffffffffffffffffffffffffffffffffffffffff1633146106935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610494565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260086020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156107935760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610494565b6104bb82868684036108aa565b600033610425818585610ae6565b60005473ffffffffffffffffffffffffffffffffffffffff1633146108155760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610494565b73ffffffffffffffffffffffffffffffffffffffff811661089e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610494565b6108a781610df6565b50565b73ffffffffffffffffffffffffffffffffffffffff83166109325760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610494565b73ffffffffffffffffffffffffffffffffffffffff82166109bb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610494565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600260209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ae05781811015610ad35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610494565b610ae084848484036108aa565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610b6f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610494565b73ffffffffffffffffffffffffffffffffffffffff8216610bf85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610494565b60075460ff1615610ca35773ffffffffffffffffffffffffffffffffffffffff831660009081526008602052604090205460ff16158015610c5f575073ffffffffffffffffffffffffffffffffffffffff821660009081526008602052604090205460ff16155b15610ca3576000610c708484610e6b565b9050610c7b81610edb565b73ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090204390555b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604090205481811015610d3f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610494565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260016020526040808220858503905591851681529081208054849290610d839084906111ac565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610de991815260200190565b60405180910390a3610ae0565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000823b1580610e7a5750813b155b610ec65760405162461bcd60e51b815260206004820152601960248201527f4e6f20626f74732061726520616c6c6f776564204a495a5a21000000000000006044820152606401610494565b823b15610ed457508061042b565b508161042b565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600660205260408120541580610f485750610f134360016111ac565b60095473ffffffffffffffffffffffffffffffffffffffff8416600090815260066020526040902054610f4691906111ac565b105b905080610f975760405162461bcd60e51b815260206004820152601a60248201527f4d6178207478206672657175656e6379206578636565646564210000000000006044820152606401610494565b5050565b600060208083528351808285015260005b81811015610fc857858101830151858201604001528201610fac565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461102b57600080fd5b919050565b6000806040838503121561104357600080fd5b61104c83611007565b946020939093013593505050565b60006020828403121561106c57600080fd5b5035919050565b60008060006060848603121561108857600080fd5b61109184611007565b925061109f60208501611007565b9150604084013590509250925092565b6000602082840312156110c157600080fd5b6110ca82611007565b9392505050565b8035801515811461102b57600080fd5b6000602082840312156110f357600080fd5b6110ca826110d1565b6000806040838503121561110f57600080fd5b61111883611007565b9150611126602084016110d1565b90509250929050565b6000806040838503121561114257600080fd5b61114b83611007565b915061112660208401611007565b600181811c9082168061116d57607f821691505b6020821081036111a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b8082018082111561042b577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea26469706673582212205fc099a63e053dc0f0e652c0fed7a0ff05bd4afb472b2c4341518154837c6ce164736f6c63430008110033