Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 17 from a total of 17 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Update Max Txn A... | 301469 | 696 days ago | IN | 0 ETH | 0.00013006 | ||||
| Approve | 301467 | 696 days ago | IN | 0 ETH | 0.00010856 | ||||
| Approve | 301455 | 696 days ago | IN | 0 ETH | 0.00010678 | ||||
| Approve | 301279 | 696 days ago | IN | 0 ETH | 0.0001748 | ||||
| Approve | 301273 | 696 days ago | IN | 0 ETH | 0.00009062 | ||||
| Approve | 301270 | 696 days ago | IN | 0 ETH | 0.00014183 | ||||
| Approve | 301260 | 696 days ago | IN | 0 ETH | 0.00032634 | ||||
| Approve | 301259 | 696 days ago | IN | 0 ETH | 0.00008981 | ||||
| Approve | 301253 | 696 days ago | IN | 0 ETH | 0.00010084 | ||||
| Approve | 301228 | 696 days ago | IN | 0 ETH | 0.00016304 | ||||
| Approve | 300121 | 696 days ago | IN | 0 ETH | 0.00011929 | ||||
| Approve | 299771 | 696 days ago | IN | 0 ETH | 0.00010891 | ||||
| Approve | 299768 | 696 days ago | IN | 0 ETH | 0.00010891 | ||||
| Enable Trading | 299742 | 696 days ago | IN | 0 ETH | 0.00015822 | ||||
| Update Sell Fees | 299737 | 696 days ago | IN | 0 ETH | 0.00023151 | ||||
| Update Buy Fees | 299731 | 696 days ago | IN | 0 ETH | 0.00022555 | ||||
| Approve | 299665 | 696 days ago | IN | 0 ETH | 0.00011567 |
Latest 9 internal transactions
Advanced mode:
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 301477 | 696 days ago | 0.00155226 ETH | ||||
| 301477 | 696 days ago | 0.00103484 ETH | ||||
| 301477 | 696 days ago | 0.00258711 ETH | ||||
| 301440 | 696 days ago | 0.002733 ETH | ||||
| 301440 | 696 days ago | 0.001822 ETH | ||||
| 301440 | 696 days ago | 0.004555 ETH | ||||
| 301329 | 696 days ago | 0.00791593 ETH | ||||
| 301329 | 696 days ago | 0.00527728 ETH | ||||
| 301329 | 696 days ago | 0.01319322 ETH |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
StarBlast
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/**
*Submitted for verification at blastscan.io on 2024-03-02
*/
/**
STAR BLAST
$STARS
BLAST OFF INTO THE STARS, WITH STAR BLAST! NOW ON BLAST L2!
Website: https://starblast.meme/
Telegram: https://t.me/StarsBlast
*/
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;
////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)
/* pragma solidity ^0.8.0; */
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)
/* pragma solidity ^0.8.0; */
/* import "../utils/Context.sol"; */
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(
newOwner != address(0),
"Ownable: new owner is the zero address"
);
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)
/* pragma solidity ^0.8.0; */
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount)
external
returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender)
external
view
returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
}
////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)
/* pragma solidity ^0.8.0; */
/* import "../IERC20.sol"; */
/**
* @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);
}
////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)
/* pragma solidity ^0.8.0; */
/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account)
public
view
virtual
override
returns (uint256)
{
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount)
public
virtual
override
returns (bool)
{
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender)
public
view
virtual
override
returns (uint256)
{
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount)
public
virtual
override
returns (bool)
{
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(
currentAllowance >= amount,
"ERC20: transfer amount exceeds allowance"
);
unchecked {
_approve(sender, _msgSender(), currentAllowance - amount);
}
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue)
public
virtual
returns (bool)
{
_approve(
_msgSender(),
spender,
_allowances[_msgSender()][spender] + addedValue
);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue)
public
virtual
returns (bool)
{
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(
currentAllowance >= subtractedValue,
"ERC20: decreased allowance below zero"
);
unchecked {
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(
senderBalance >= amount,
"ERC20: transfer amount exceeds balance"
);
unchecked {
_balances[sender] = senderBalance - amount;
}
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
_afterTokenTransfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)
/* pragma solidity ^0.8.0; */
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */
interface IUniswapV2Factory {
event PairCreated(
address indexed token0,
address indexed token1,
address pair,
uint256
);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(address tokenA, address tokenB)
external
view
returns (address pair);
function allPairs(uint256) external view returns (address pair);
function allPairsLength() external view returns (uint256);
function createPair(address tokenA, address tokenB)
external
returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}
////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */
interface IUniswapV2Pair {
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
event Transfer(address indexed from, address indexed to, uint256 value);
function name() external pure returns (string memory);
function symbol() external pure returns (string memory);
function decimals() external pure returns (uint8);
function totalSupply() external view returns (uint256);
function balanceOf(address owner) external view returns (uint256);
function allowance(address owner, address spender)
external
view
returns (uint256);
function approve(address spender, uint256 value) external returns (bool);
function transfer(address to, uint256 value) external returns (bool);
function transferFrom(
address from,
address to,
uint256 value
) external returns (bool);
function DOMAIN_SEPARATOR() external view returns (bytes32);
function PERMIT_TYPEHASH() external pure returns (bytes32);
function nonces(address owner) external view returns (uint256);
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
event Mint(address indexed sender, uint256 amount0, uint256 amount1);
event Burn(
address indexed sender,
uint256 amount0,
uint256 amount1,
address indexed to
);
event Swap(
address indexed sender,
uint256 amount0In,
uint256 amount1In,
uint256 amount0Out,
uint256 amount1Out,
address indexed to
);
event Sync(uint112 reserve0, uint112 reserve1);
function MINIMUM_LIQUIDITY() external pure returns (uint256);
function factory() external view returns (address);
function token0() external view returns (address);
function token1() external view returns (address);
function getReserves()
external
view
returns (
uint112 reserve0,
uint112 reserve1,
uint32 blockTimestampLast
);
function price0CumulativeLast() external view returns (uint256);
function price1CumulativeLast() external view returns (uint256);
function kLast() external view returns (uint256);
function mint(address to) external returns (uint256 liquidity);
function burn(address to)
external
returns (uint256 amount0, uint256 amount1);
function swap(
uint256 amount0Out,
uint256 amount1Out,
address to,
bytes calldata data
) external;
function skim(address to) external;
function sync() external;
function initialize(address, address) external;
}
////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */
interface IUniswapV2Router02 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address tokenA,
address tokenB,
uint256 amountADesired,
uint256 amountBDesired,
uint256 amountAMin,
uint256 amountBMin,
address to,
uint256 deadline
)
external
returns (
uint256 amountA,
uint256 amountB,
uint256 liquidity
);
function addLiquidityETH(
address token,
uint256 amountTokenDesired,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
)
external
payable
returns (
uint256 amountToken,
uint256 amountETH,
uint256 liquidity
);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
}
contract StarBlast is ERC20, Ownable {
using SafeMath for uint256;
IUniswapV2Router02 public immutable uniswapV2Router;
address public immutable uniswapV2Pair;
address public constant deadAddress = address(0xdead);
bool private swapping;
address public marketingWallet;
address public devWallet;
uint256 public maxTransactionAmount;
uint256 public swapTokensAtAmount;
uint256 public maxWallet;
bool public limitsInEffect = true;
bool public tradingActive = false;
bool public swapEnabled = false;
// Anti-bot and anti-whale mappings and variables
mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
bool public transferDelayEnabled = true;
uint256 public buyTotalFees;
uint256 public buyMarketingFee;
uint256 public buyDevFee;
uint256 public sellTotalFees;
uint256 public sellMarketingFee;
uint256 public sellDevFee;
uint256 public tokensForMarketing;
uint256 public tokensForDev;
// block number of opened trading
uint256 launchedAt;
/******************/
// exlcude from fees and max transaction amount
mapping(address => bool) private _isExcludedFromFees;
mapping(address => bool) public _isExcludedMaxTransactionAmount;
// store addresses that a automatic market maker pairs. Any transfer *to* these addresses
// could be subject to a maximum transfer amount
mapping(address => bool) public automatedMarketMakerPairs;
event UpdateUniswapV2Router(
address indexed newAddress,
address indexed oldAddress
);
event ExcludeFromFees(address indexed account, bool isExcluded);
event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
event marketingWalletUpdated(
address indexed newWallet,
address indexed oldWallet
);
event devWalletUpdated(
address indexed newWallet,
address indexed oldWallet
);
constructor() ERC20("STAR BLAST", "STARS") {
IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
0xE470699f6D0384E3eA68F1144E41d22C6c8fdEEf
);
excludeFromMaxTransaction(address(_uniswapV2Router), true);
uniswapV2Router = _uniswapV2Router;
uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
.createPair(address(this), _uniswapV2Router.WETH());
excludeFromMaxTransaction(address(uniswapV2Pair), true);
_setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
uint256 _buyMarketingFee = 0;
uint256 _buyDevFee = 0;
uint256 _sellMarketingFee = 0;
uint256 _sellDevFee = 0;
uint256 totalSupply = 35_000_000 * 1e18;
maxTransactionAmount = (totalSupply * 20) / 1000; // 2% from total supply maxTransactionAmountTxn
maxWallet = (totalSupply * 20) / 1000; // 2% from total supply maxWallet
swapTokensAtAmount = (totalSupply * 35) / 100000; // 0.035% swap wallet
buyMarketingFee = _buyMarketingFee;
buyDevFee = _buyDevFee;
buyTotalFees = buyMarketingFee + buyDevFee;
sellMarketingFee = _sellMarketingFee;
sellDevFee = _sellDevFee;
sellTotalFees = sellMarketingFee + sellDevFee;
marketingWallet = address(msg.sender);
devWallet = address(msg.sender);
// exclude from paying fees or having max transaction amount
excludeFromFees(owner(), true);
excludeFromFees(marketingWallet, true);
excludeFromFees(devWallet, true);
excludeFromFees(address(this), true);
excludeFromFees(address(0xdead), true);
excludeFromMaxTransaction(owner(), true);
excludeFromMaxTransaction(marketingWallet, true);
excludeFromMaxTransaction(devWallet, true);
excludeFromMaxTransaction(address(this), true);
excludeFromMaxTransaction(address(0xdead), true);
/*
_mint is an internal function in ERC20.sol that is only called here,
and CANNOT be called ever again
*/
_mint(msg.sender, totalSupply);
}
receive() external payable {}
// once enabled, can never be turned off
function enableTrading() external onlyOwner {
tradingActive = true;
swapEnabled = true;
launchedAt = block.number;
}
// remove limits after token is stable
function removeLimits() external onlyOwner returns (bool) {
limitsInEffect = false;
return true;
}
// disable Transfer delay - cannot be reenabled
function disableTransferDelay() external onlyOwner returns (bool) {
transferDelayEnabled = false;
return true;
}
// change the minimum amount of tokens to sell from fees
function updateSwapTokensAtAmount(uint256 newAmount)
external
onlyOwner
returns (bool)
{
require(
newAmount >= (totalSupply() * 1) / 100000,
"Swap amount cannot be lower than 0.001% total supply."
);
require(
newAmount <= (totalSupply() * 5) / 1000,
"Swap amount cannot be higher than 0.5% total supply."
);
swapTokensAtAmount = newAmount;
return true;
}
function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
require(
newNum >= ((totalSupply() * 1) / 1000) / 1e18,
"Cannot set maxTransactionAmount lower than 0.1%"
);
maxTransactionAmount = newNum * (10**18);
}
function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
require(
newNum >= ((totalSupply() * 5) / 1000) / 1e18,
"Cannot set maxWallet lower than 0.5%"
);
maxWallet = newNum * (10**18);
}
function excludeFromMaxTransaction(address updAds, bool isEx)
public
onlyOwner
{
_isExcludedMaxTransactionAmount[updAds] = isEx;
}
// only use to disable contract sales if absolutely necessary (emergency use only)
function updateSwapEnabled(bool enabled) external onlyOwner {
swapEnabled = enabled;
}
function updateBuyFees(
uint256 _marketingFee,
uint256 _devFee
) external onlyOwner {
buyMarketingFee = _marketingFee;
buyDevFee = _devFee;
buyTotalFees = buyMarketingFee + buyDevFee;
require(buyTotalFees <= 25, "Must keep fees at 25% or less");
}
function updateSellFees(
uint256 _marketingFee,
uint256 _devFee
) external onlyOwner {
sellMarketingFee = _marketingFee;
sellDevFee = _devFee;
sellTotalFees = sellMarketingFee + sellDevFee;
require(sellTotalFees <= 25, "Must keep fees at 25% or less");
}
function excludeFromFees(address account, bool excluded) public onlyOwner {
_isExcludedFromFees[account] = excluded;
emit ExcludeFromFees(account, excluded);
}
function setAutomatedMarketMakerPair(address pair, bool value)
public
onlyOwner
{
require(
pair != uniswapV2Pair,
"The pair cannot be removed from automatedMarketMakerPairs"
);
_setAutomatedMarketMakerPair(pair, value);
}
function _setAutomatedMarketMakerPair(address pair, bool value) private {
automatedMarketMakerPairs[pair] = value;
emit SetAutomatedMarketMakerPair(pair, value);
}
function updateMarketingWallet(address newMarketingWallet)
external
onlyOwner
{
emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
marketingWallet = newMarketingWallet;
}
function updateDevWallet(address newWallet) external onlyOwner {
emit devWalletUpdated(newWallet, devWallet);
devWallet = newWallet;
}
function isExcludedFromFees(address account) public view returns (bool) {
return _isExcludedFromFees[account];
}
function _transfer(
address from,
address to,
uint256 amount
) internal override {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
if (amount == 0) {
super._transfer(from, to, 0);
return;
}
if (limitsInEffect) {
if (
from != owner() &&
to != owner() &&
to != address(0) &&
to != address(0xdead) &&
!swapping
) {
if (!tradingActive) {
require(
_isExcludedFromFees[from] || _isExcludedFromFees[to],
"Trading is not active."
);
}
// at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
if (transferDelayEnabled) {
if (
to != owner() &&
to != address(uniswapV2Router) &&
to != address(uniswapV2Pair)
) {
require(
_holderLastTransferTimestamp[tx.origin] <
block.number,
"_transfer:: Transfer Delay enabled. Only one purchase per block allowed."
);
_holderLastTransferTimestamp[tx.origin] = block.number;
}
}
//when buy
if (
automatedMarketMakerPairs[from] &&
!_isExcludedMaxTransactionAmount[to]
) {
require(
amount <= maxTransactionAmount,
"Buy transfer amount exceeds the maxTransactionAmount."
);
require(
amount + balanceOf(to) <= maxWallet,
"Max wallet exceeded"
);
}
//when sell
else if (
automatedMarketMakerPairs[to] &&
!_isExcludedMaxTransactionAmount[from]
) {
require(
amount <= maxTransactionAmount,
"Sell transfer amount exceeds the maxTransactionAmount."
);
} else if (!_isExcludedMaxTransactionAmount[to]) {
require(
amount + balanceOf(to) <= maxWallet,
"Max wallet exceeded"
);
}
}
}
uint256 contractTokenBalance = balanceOf(address(this));
bool canSwap = contractTokenBalance >= swapTokensAtAmount;
if (
canSwap &&
swapEnabled &&
!swapping &&
!automatedMarketMakerPairs[from] &&
!_isExcludedFromFees[from] &&
!_isExcludedFromFees[to]
) {
swapping = true;
swapBack();
swapping = false;
}
bool takeFee = !swapping;
// if any account belongs to _isExcludedFromFee account then remove the fee
if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
takeFee = false;
}
uint256 fees = 0;
// only take fees on buys/sells, do not take on wallet transfers
if (takeFee) {
// on sell
if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
fees = amount.mul(sellTotalFees).div(100);
tokensForDev += (fees * sellDevFee) / sellTotalFees;
tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
}
// on buy
else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
fees = amount.mul(buyTotalFees).div(100);
tokensForDev += (fees * buyDevFee) / buyTotalFees;
tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
}
if (fees > 0) {
super._transfer(from, address(this), fees);
}
amount -= fees;
}
super._transfer(from, to, amount);
}
function swapTokensForEth(uint256 tokenAmount) private {
// generate the uniswap pair path of token -> weth
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = uniswapV2Router.WETH();
_approve(address(this), address(uniswapV2Router), tokenAmount);
// make the swap
uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0, // accept any amount of ETH
path,
address(this),
block.timestamp
);
}
function swapBack() private {
uint256 contractBalance = balanceOf(address(this));
uint256 totalTokensToSwap = tokensForMarketing + tokensForDev;
bool success;
if (contractBalance == 0 || totalTokensToSwap == 0) {
return;
}
if (contractBalance > swapTokensAtAmount * 20) {
contractBalance = swapTokensAtAmount * 20;
}
uint256 amountToSwapForETH = contractBalance;
uint256 initialETHBalance = address(this).balance;
swapTokensForEth(amountToSwapForETH);
uint256 ethBalance = address(this).balance.sub(initialETHBalance);
uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
uint256 ethForDev = ethBalance - ethForMarketing;
tokensForMarketing = 0;
tokensForDev = 0;
(success, ) = address(devWallet).call{value: ethForDev}("");
(success, ) = address(marketingWallet).call{
value: address(this).balance
}("");
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600d60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600a81526020017f5354415220424c415354000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f53544152530000000000000000000000000000000000000000000000000000008152508160039081620000fb919062000de2565b5080600490816200010d919062000de2565b50505062000130620001246200062960201b60201c565b6200063160201b60201c565b600073e470699f6d0384e3ea68f1144e41d22c6c8fdeef90506200015c816001620006f760201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000202919062000f33565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000290919062000f33565b6040518363ffffffff1660e01b8152600401620002af92919062000f76565b6020604051808303816000875af1158015620002cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f5919062000f33565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200033d60a0516001620006f760201b60201c565b6200035260a0516001620007e160201b60201c565b60008060008060006a1cf389cd46047d0300000090506103e86014826200037a919062000fd2565b6200038691906200104c565b6008819055506103e86014826200039e919062000fd2565b620003aa91906200104c565b600a81905550620186a0602382620003c3919062000fd2565b620003cf91906200104c565b60098190555084600f8190555083601081905550601054600f54620003f5919062001084565b600e8190555082601281905550816013819055506013546012546200041b919062001084565b60118190555033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004c5620004b76200088260201b60201c565b6001620008ac60201b60201c565b620004fa600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008ac60201b60201c565b6200052f600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008ac60201b60201c565b62000542306001620008ac60201b60201c565b6200055761dead6001620008ac60201b60201c565b620005796200056b6200088260201b60201c565b6001620006f760201b60201c565b620005ae600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006f760201b60201c565b620005e3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006f760201b60201c565b620005f6306001620006f760201b60201c565b6200060b61dead6001620006f760201b60201c565b6200061d3382620009e660201b60201c565b5050505050506200121c565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007076200062960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200072d6200088260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000786576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200077d9062001120565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008bc6200062960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008e26200088260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200093b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009329062001120565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009da91906200115f565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a58576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a4f90620011cc565b60405180910390fd5b62000a6c6000838362000b5e60201b60201c565b806002600082825462000a80919062001084565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000ad7919062001084565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b3e9190620011ff565b60405180910390a362000b5a6000838362000b6360201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000bea57607f821691505b60208210810362000c005762000bff62000ba2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c6a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c2b565b62000c76868362000c2b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000cc362000cbd62000cb78462000c8e565b62000c98565b62000c8e565b9050919050565b6000819050919050565b62000cdf8362000ca2565b62000cf762000cee8262000cca565b84845462000c38565b825550505050565b600090565b62000d0e62000cff565b62000d1b81848462000cd4565b505050565b5b8181101562000d435762000d3760008262000d04565b60018101905062000d21565b5050565b601f82111562000d925762000d5c8162000c06565b62000d678462000c1b565b8101602085101562000d77578190505b62000d8f62000d868562000c1b565b83018262000d20565b50505b505050565b600082821c905092915050565b600062000db76000198460080262000d97565b1980831691505092915050565b600062000dd2838362000da4565b9150826002028217905092915050565b62000ded8262000b68565b67ffffffffffffffff81111562000e095762000e0862000b73565b5b62000e15825462000bd1565b62000e2282828562000d47565b600060209050601f83116001811462000e5a576000841562000e45578287015190505b62000e51858262000dc4565b86555062000ec1565b601f19841662000e6a8662000c06565b60005b8281101562000e945784890151825560018201915060208501945060208101905062000e6d565b8683101562000eb4578489015162000eb0601f89168262000da4565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000efb8262000ece565b9050919050565b62000f0d8162000eee565b811462000f1957600080fd5b50565b60008151905062000f2d8162000f02565b92915050565b60006020828403121562000f4c5762000f4b62000ec9565b5b600062000f5c8482850162000f1c565b91505092915050565b62000f708162000eee565b82525050565b600060408201905062000f8d600083018562000f65565b62000f9c602083018462000f65565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000fdf8262000c8e565b915062000fec8362000c8e565b925082820262000ffc8162000c8e565b9150828204841483151762001016576200101562000fa3565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010598262000c8e565b9150620010668362000c8e565b9250826200107957620010786200101d565b5b828204905092915050565b6000620010918262000c8e565b91506200109e8362000c8e565b9250828201905080821115620010b957620010b862000fa3565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001108602083620010bf565b91506200111582620010d0565b602082019050919050565b600060208201905081810360008301526200113b81620010f9565b9050919050565b60008115159050919050565b620011598162001142565b82525050565b60006020820190506200117660008301846200114e565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620011b4601f83620010bf565b9150620011c1826200117c565b602082019050919050565b60006020820190508181036000830152620011e781620011a5565b9050919050565b620011f98162000c8e565b82525050565b6000602082019050620012166000830184620011ee565b92915050565b60805160a051614ba96200126c600039600081816111fb015281816118b60152612732015260008181610dc9015281816126da0152818161366b0152818161374c01526137730152614ba96000f3fe6080604052600436106102e85760003560e01c80638a8c523c11610190578063b62496f5116100dc578063d257b34f11610095578063e2f456051161006f578063e2f4560514610b63578063e884f26014610b8e578063f2fde38b14610bb9578063f8b45b0514610be2576102ef565b8063d257b34f14610abe578063d85ba06314610afb578063dd62ed3e14610b26576102ef565b8063b62496f5146109ae578063bbc0c742146109eb578063c024666814610a16578063c18bc19514610a3f578063c876d0b914610a68578063c8c8ebe414610a93576102ef565b80639a7a23d611610149578063a0d82dc511610123578063a0d82dc5146108e0578063a457c2d71461090b578063a9059cbb14610948578063aacebbe314610985576102ef565b80639a7a23d6146108615780639c3b4fdc1461088a5780639fccce32146108b5576102ef565b80638a8c523c146107755780638da5cb5b1461078c5780638ea5220f146107b757806392136913146107e2578063924de9b71461080d57806395d89b4114610836576102ef565b8063395093511161024f5780636ddd171311610208578063751039fc116101e2578063751039fc146106cb5780637571336a146106f657806375f0a8741461071f5780637bce5a041461074a576102ef565b80636ddd17131461064c57806370a0823114610677578063715018a6146106b4576102ef565b8063395093511461052857806349bd5a5e146105655780634a62bb65146105905780634fbee193146105bb57806366ca9b83146105f85780636a486a8e14610621576102ef565b80631816467f116102a15780631816467f146104185780631f3fed8f14610441578063203e727e1461046c57806323b872dd1461049557806327c8f835146104d2578063313ce567146104fd576102ef565b806302dbd8f8146102f457806306fdde031461031d578063095ea7b31461034857806310d5de53146103855780631694505e146103c257806318160ddd146103ed576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b5061031b6004803603810190610316919061385a565b610c0d565b005b34801561032957600080fd5b50610332610cf7565b60405161033f919061392a565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a91906139aa565b610d89565b60405161037c9190613a05565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190613a20565b610da7565b6040516103b99190613a05565b60405180910390f35b3480156103ce57600080fd5b506103d7610dc7565b6040516103e49190613aac565b60405180910390f35b3480156103f957600080fd5b50610402610deb565b60405161040f9190613ad6565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190613a20565b610df5565b005b34801561044d57600080fd5b50610456610f31565b6040516104639190613ad6565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190613af1565b610f37565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190613b1e565b611046565b6040516104c99190613a05565b60405180910390f35b3480156104de57600080fd5b506104e761113e565b6040516104f49190613b80565b60405180910390f35b34801561050957600080fd5b50610512611144565b60405161051f9190613bb7565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a91906139aa565b61114d565b60405161055c9190613a05565b60405180910390f35b34801561057157600080fd5b5061057a6111f9565b6040516105879190613b80565b60405180910390f35b34801561059c57600080fd5b506105a561121d565b6040516105b29190613a05565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd9190613a20565b611230565b6040516105ef9190613a05565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a919061385a565b611286565b005b34801561062d57600080fd5b50610636611370565b6040516106439190613ad6565b60405180910390f35b34801561065857600080fd5b50610661611376565b60405161066e9190613a05565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190613a20565b611389565b6040516106ab9190613ad6565b60405180910390f35b3480156106c057600080fd5b506106c96113d1565b005b3480156106d757600080fd5b506106e0611459565b6040516106ed9190613a05565b60405180910390f35b34801561070257600080fd5b5061071d60048036038101906107189190613bfe565b6114f9565b005b34801561072b57600080fd5b506107346115d0565b6040516107419190613b80565b60405180910390f35b34801561075657600080fd5b5061075f6115f6565b60405161076c9190613ad6565b60405180910390f35b34801561078157600080fd5b5061078a6115fc565b005b34801561079857600080fd5b506107a16116b7565b6040516107ae9190613b80565b60405180910390f35b3480156107c357600080fd5b506107cc6116e1565b6040516107d99190613b80565b60405180910390f35b3480156107ee57600080fd5b506107f7611707565b6040516108049190613ad6565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f9190613c3e565b61170d565b005b34801561084257600080fd5b5061084b6117a6565b604051610858919061392a565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190613bfe565b611838565b005b34801561089657600080fd5b5061089f611950565b6040516108ac9190613ad6565b60405180910390f35b3480156108c157600080fd5b506108ca611956565b6040516108d79190613ad6565b60405180910390f35b3480156108ec57600080fd5b506108f561195c565b6040516109029190613ad6565b60405180910390f35b34801561091757600080fd5b50610932600480360381019061092d91906139aa565b611962565b60405161093f9190613a05565b60405180910390f35b34801561095457600080fd5b5061096f600480360381019061096a91906139aa565b611a4d565b60405161097c9190613a05565b60405180910390f35b34801561099157600080fd5b506109ac60048036038101906109a79190613a20565b611a6b565b005b3480156109ba57600080fd5b506109d560048036038101906109d09190613a20565b611ba7565b6040516109e29190613a05565b60405180910390f35b3480156109f757600080fd5b50610a00611bc7565b604051610a0d9190613a05565b60405180910390f35b348015610a2257600080fd5b50610a3d6004803603810190610a389190613bfe565b611bda565b005b348015610a4b57600080fd5b50610a666004803603810190610a619190613af1565b611cff565b005b348015610a7457600080fd5b50610a7d611e0e565b604051610a8a9190613a05565b60405180910390f35b348015610a9f57600080fd5b50610aa8611e21565b604051610ab59190613ad6565b60405180910390f35b348015610aca57600080fd5b50610ae56004803603810190610ae09190613af1565b611e27565b604051610af29190613a05565b60405180910390f35b348015610b0757600080fd5b50610b10611f7c565b604051610b1d9190613ad6565b60405180910390f35b348015610b3257600080fd5b50610b4d6004803603810190610b489190613c6b565b611f82565b604051610b5a9190613ad6565b60405180910390f35b348015610b6f57600080fd5b50610b78612009565b604051610b859190613ad6565b60405180910390f35b348015610b9a57600080fd5b50610ba361200f565b604051610bb09190613a05565b60405180910390f35b348015610bc557600080fd5b50610be06004803603810190610bdb9190613a20565b6120af565b005b348015610bee57600080fd5b50610bf76121a6565b604051610c049190613ad6565b60405180910390f35b610c156121ac565b73ffffffffffffffffffffffffffffffffffffffff16610c336116b7565b73ffffffffffffffffffffffffffffffffffffffff1614610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8090613cf7565b60405180910390fd5b8160128190555080601381905550601354601254610ca79190613d46565b60118190555060196011541115610cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cea90613dc6565b60405180910390fd5b5050565b606060038054610d0690613e15565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3290613e15565b8015610d7f5780601f10610d5457610100808354040283529160200191610d7f565b820191906000526020600020905b815481529060010190602001808311610d6257829003601f168201915b5050505050905090565b6000610d9d610d966121ac565b84846121b4565b6001905092915050565b60186020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610dfd6121ac565b73ffffffffffffffffffffffffffffffffffffffff16610e1b6116b7565b73ffffffffffffffffffffffffffffffffffffffff1614610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6890613cf7565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60145481565b610f3f6121ac565b73ffffffffffffffffffffffffffffffffffffffff16610f5d6116b7565b73ffffffffffffffffffffffffffffffffffffffff1614610fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faa90613cf7565b60405180910390fd5b670de0b6b3a76400006103e86001610fc9610deb565b610fd39190613e46565b610fdd9190613eb7565b610fe79190613eb7565b811015611029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102090613f5a565b60405180910390fd5b670de0b6b3a76400008161103d9190613e46565b60088190555050565b600061105384848461237d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061109e6121ac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561111e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111590613fec565b60405180910390fd5b6111328561112a6121ac565b8584036121b4565b60019150509392505050565b61dead81565b60006012905090565b60006111ef61115a6121ac565b8484600160006111686121ac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111ea9190613d46565b6121b4565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61128e6121ac565b73ffffffffffffffffffffffffffffffffffffffff166112ac6116b7565b73ffffffffffffffffffffffffffffffffffffffff1614611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990613cf7565b60405180910390fd5b81600f8190555080601081905550601054600f546113209190613d46565b600e819055506019600e54111561136c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136390613dc6565b60405180910390fd5b5050565b60115481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113d96121ac565b73ffffffffffffffffffffffffffffffffffffffff166113f76116b7565b73ffffffffffffffffffffffffffffffffffffffff161461144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144490613cf7565b60405180910390fd5b6114576000612fae565b565b60006114636121ac565b73ffffffffffffffffffffffffffffffffffffffff166114816116b7565b73ffffffffffffffffffffffffffffffffffffffff16146114d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ce90613cf7565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6115016121ac565b73ffffffffffffffffffffffffffffffffffffffff1661151f6116b7565b73ffffffffffffffffffffffffffffffffffffffff1614611575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c90613cf7565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b6116046121ac565b73ffffffffffffffffffffffffffffffffffffffff166116226116b7565b73ffffffffffffffffffffffffffffffffffffffff1614611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90613cf7565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601681905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b6117156121ac565b73ffffffffffffffffffffffffffffffffffffffff166117336116b7565b73ffffffffffffffffffffffffffffffffffffffff1614611789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178090613cf7565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546117b590613e15565b80601f01602080910402602001604051908101604052809291908181526020018280546117e190613e15565b801561182e5780601f106118035761010080835404028352916020019161182e565b820191906000526020600020905b81548152906001019060200180831161181157829003601f168201915b5050505050905090565b6118406121ac565b73ffffffffffffffffffffffffffffffffffffffff1661185e6116b7565b73ffffffffffffffffffffffffffffffffffffffff16146118b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ab90613cf7565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611942576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119399061407e565b60405180910390fd5b61194c8282613074565b5050565b60105481565b60155481565b60135481565b600080600160006119716121ac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2590614110565b60405180910390fd5b611a42611a396121ac565b858584036121b4565b600191505092915050565b6000611a61611a5a6121ac565b848461237d565b6001905092915050565b611a736121ac565b73ffffffffffffffffffffffffffffffffffffffff16611a916116b7565b73ffffffffffffffffffffffffffffffffffffffff1614611ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ade90613cf7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60196020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611be26121ac565b73ffffffffffffffffffffffffffffffffffffffff16611c006116b7565b73ffffffffffffffffffffffffffffffffffffffff1614611c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4d90613cf7565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611cf39190613a05565b60405180910390a25050565b611d076121ac565b73ffffffffffffffffffffffffffffffffffffffff16611d256116b7565b73ffffffffffffffffffffffffffffffffffffffff1614611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7290613cf7565b60405180910390fd5b670de0b6b3a76400006103e86005611d91610deb565b611d9b9190613e46565b611da59190613eb7565b611daf9190613eb7565b811015611df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de8906141a2565b60405180910390fd5b670de0b6b3a764000081611e059190613e46565b600a8190555050565b600d60009054906101000a900460ff1681565b60085481565b6000611e316121ac565b73ffffffffffffffffffffffffffffffffffffffff16611e4f6116b7565b73ffffffffffffffffffffffffffffffffffffffff1614611ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9c90613cf7565b60405180910390fd5b620186a06001611eb3610deb565b611ebd9190613e46565b611ec79190613eb7565b821015611f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0090614234565b60405180910390fd5b6103e86005611f16610deb565b611f209190613e46565b611f2a9190613eb7565b821115611f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f63906142c6565b60405180910390fd5b8160098190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006120196121ac565b73ffffffffffffffffffffffffffffffffffffffff166120376116b7565b73ffffffffffffffffffffffffffffffffffffffff161461208d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208490613cf7565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b6120b76121ac565b73ffffffffffffffffffffffffffffffffffffffff166120d56116b7565b73ffffffffffffffffffffffffffffffffffffffff161461212b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212290613cf7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361219a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219190614358565b60405180910390fd5b6121a381612fae565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221a906143ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612292576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122899061447c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123709190613ad6565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e39061450e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361245b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612452906145a0565b60405180910390fd5b600081036124745761246f83836000613115565b612fa9565b600b60009054906101000a900460ff1615612b37576124916116b7565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124ff57506124cf6116b7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125385750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612572575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561258b5750600560149054906101000a900460ff16155b15612b3657600b60019054906101000a900460ff1661268557601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126455750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267b9061460c565b60405180910390fd5b5b600d60009054906101000a900460ff161561284d576126a26116b7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561272957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561278157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561284c5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fe906146c4565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128f05750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156129975760085481111561293a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293190614756565b60405180910390fd5b600a5461294683611389565b826129519190613d46565b1115612992576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612989906147c2565b60405180910390fd5b612b35565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a3a5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a8957600854811115612a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7b90614854565b60405180910390fd5b612b34565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612b3357600a54612ae683611389565b82612af19190613d46565b1115612b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b29906147c2565b60405180910390fd5b5b5b5b5b5b6000612b4230611389565b905060006009548210159050808015612b675750600b60029054906101000a900460ff165b8015612b805750600560149054906101000a900460ff16155b8015612bd65750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c2c5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c825750601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cc6576001600560146101000a81548160ff021916908315150217905550612caa613394565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d7c5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d8657600090505b60008115612f9957601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612de957506000601154115b15612e8357612e166064612e086011548861359690919063ffffffff16565b6135ac90919063ffffffff16565b905060115460135482612e299190613e46565b612e339190613eb7565b60156000828254612e449190613d46565b9250508190555060115460125482612e5c9190613e46565b612e669190613eb7565b60146000828254612e779190613d46565b92505081905550612f75565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ede57506000600e54115b15612f7457612f0b6064612efd600e548861359690919063ffffffff16565b6135ac90919063ffffffff16565b9050600e5460105482612f1e9190613e46565b612f289190613eb7565b60156000828254612f399190613d46565b92505081905550600e54600f5482612f519190613e46565b612f5b9190613eb7565b60146000828254612f6c9190613d46565b925050819055505b5b6000811115612f8a57612f89873083613115565b5b8085612f969190614874565b94505b612fa4878787613115565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317b9061450e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036131f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ea906145a0565b60405180910390fd5b6131fe8383836135c2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327b9061491a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133179190613d46565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161337b9190613ad6565b60405180910390a361338e8484846135c7565b50505050565b600061339f30611389565b905060006015546014546133b39190613d46565b90506000808314806133c55750600082145b156133d257505050613594565b60146009546133e19190613e46565b8311156133fa5760146009546133f79190613e46565b92505b6000839050600047905061340d826135cc565b6000613422824761380990919063ffffffff16565b9050600061344d8661343f6014548561359690919063ffffffff16565b6135ac90919063ffffffff16565b90506000818361345d9190614874565b905060006014819055506000601581905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516134b59061496b565b60006040518083038185875af1925050503d80600081146134f2576040519150601f19603f3d011682016040523d82523d6000602084013e6134f7565b606091505b505080965050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516135439061496b565b60006040518083038185875af1925050503d8060008114613580576040519150601f19603f3d011682016040523d82523d6000602084013e613585565b606091505b50508096505050505050505050505b565b600081836135a49190613e46565b905092915050565b600081836135ba9190613eb7565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156135e9576135e8614980565b5b6040519080825280602002602001820160405280156136175781602001602082028036833780820191505090505b509050308160008151811061362f5761362e6149af565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156136d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136f891906149f3565b8160018151811061370c5761370b6149af565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613771307f0000000000000000000000000000000000000000000000000000000000000000846121b4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016137d3959493929190614b19565b600060405180830381600087803b1580156137ed57600080fd5b505af1158015613801573d6000803e3d6000fd5b505050505050565b600081836138179190614874565b905092915050565b600080fd5b6000819050919050565b61383781613824565b811461384257600080fd5b50565b6000813590506138548161382e565b92915050565b600080604083850312156138715761387061381f565b5b600061387f85828601613845565b925050602061389085828601613845565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138d45780820151818401526020810190506138b9565b60008484015250505050565b6000601f19601f8301169050919050565b60006138fc8261389a565b61390681856138a5565b93506139168185602086016138b6565b61391f816138e0565b840191505092915050565b6000602082019050818103600083015261394481846138f1565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139778261394c565b9050919050565b6139878161396c565b811461399257600080fd5b50565b6000813590506139a48161397e565b92915050565b600080604083850312156139c1576139c061381f565b5b60006139cf85828601613995565b92505060206139e085828601613845565b9150509250929050565b60008115159050919050565b6139ff816139ea565b82525050565b6000602082019050613a1a60008301846139f6565b92915050565b600060208284031215613a3657613a3561381f565b5b6000613a4484828501613995565b91505092915050565b6000819050919050565b6000613a72613a6d613a688461394c565b613a4d565b61394c565b9050919050565b6000613a8482613a57565b9050919050565b6000613a9682613a79565b9050919050565b613aa681613a8b565b82525050565b6000602082019050613ac16000830184613a9d565b92915050565b613ad081613824565b82525050565b6000602082019050613aeb6000830184613ac7565b92915050565b600060208284031215613b0757613b0661381f565b5b6000613b1584828501613845565b91505092915050565b600080600060608486031215613b3757613b3661381f565b5b6000613b4586828701613995565b9350506020613b5686828701613995565b9250506040613b6786828701613845565b9150509250925092565b613b7a8161396c565b82525050565b6000602082019050613b956000830184613b71565b92915050565b600060ff82169050919050565b613bb181613b9b565b82525050565b6000602082019050613bcc6000830184613ba8565b92915050565b613bdb816139ea565b8114613be657600080fd5b50565b600081359050613bf881613bd2565b92915050565b60008060408385031215613c1557613c1461381f565b5b6000613c2385828601613995565b9250506020613c3485828601613be9565b9150509250929050565b600060208284031215613c5457613c5361381f565b5b6000613c6284828501613be9565b91505092915050565b60008060408385031215613c8257613c8161381f565b5b6000613c9085828601613995565b9250506020613ca185828601613995565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ce16020836138a5565b9150613cec82613cab565b602082019050919050565b60006020820190508181036000830152613d1081613cd4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d5182613824565b9150613d5c83613824565b9250828201905080821115613d7457613d73613d17565b5b92915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000613db0601d836138a5565b9150613dbb82613d7a565b602082019050919050565b60006020820190508181036000830152613ddf81613da3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613e2d57607f821691505b602082108103613e4057613e3f613de6565b5b50919050565b6000613e5182613824565b9150613e5c83613824565b9250828202613e6a81613824565b91508282048414831517613e8157613e80613d17565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ec282613824565b9150613ecd83613824565b925082613edd57613edc613e88565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613f44602f836138a5565b9150613f4f82613ee8565b604082019050919050565b60006020820190508181036000830152613f7381613f37565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613fd66028836138a5565b9150613fe182613f7a565b604082019050919050565b6000602082019050818103600083015261400581613fc9565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006140686039836138a5565b91506140738261400c565b604082019050919050565b600060208201905081810360008301526140978161405b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006140fa6025836138a5565b91506141058261409e565b604082019050919050565b60006020820190508181036000830152614129816140ed565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061418c6024836138a5565b915061419782614130565b604082019050919050565b600060208201905081810360008301526141bb8161417f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061421e6035836138a5565b9150614229826141c2565b604082019050919050565b6000602082019050818103600083015261424d81614211565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006142b06034836138a5565b91506142bb82614254565b604082019050919050565b600060208201905081810360008301526142df816142a3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006143426026836138a5565b915061434d826142e6565b604082019050919050565b6000602082019050818103600083015261437181614335565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006143d46024836138a5565b91506143df82614378565b604082019050919050565b60006020820190508181036000830152614403816143c7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006144666022836138a5565b91506144718261440a565b604082019050919050565b6000602082019050818103600083015261449581614459565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006144f86025836138a5565b91506145038261449c565b604082019050919050565b60006020820190508181036000830152614527816144eb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061458a6023836138a5565b91506145958261452e565b604082019050919050565b600060208201905081810360008301526145b98161457d565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006145f66016836138a5565b9150614601826145c0565b602082019050919050565b60006020820190508181036000830152614625816145e9565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006146ae6049836138a5565b91506146b98261462c565b606082019050919050565b600060208201905081810360008301526146dd816146a1565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006147406035836138a5565b915061474b826146e4565b604082019050919050565b6000602082019050818103600083015261476f81614733565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006147ac6013836138a5565b91506147b782614776565b602082019050919050565b600060208201905081810360008301526147db8161479f565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061483e6036836138a5565b9150614849826147e2565b604082019050919050565b6000602082019050818103600083015261486d81614831565b9050919050565b600061487f82613824565b915061488a83613824565b92508282039050818111156148a2576148a1613d17565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006149046026836138a5565b915061490f826148a8565b604082019050919050565b60006020820190508181036000830152614933816148f7565b9050919050565b600081905092915050565b50565b600061495560008361493a565b915061496082614945565b600082019050919050565b600061497682614948565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506149ed8161397e565b92915050565b600060208284031215614a0957614a0861381f565b5b6000614a17848285016149de565b91505092915050565b6000819050919050565b6000614a45614a40614a3b84614a20565b613a4d565b613824565b9050919050565b614a5581614a2a565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614a908161396c565b82525050565b6000614aa28383614a87565b60208301905092915050565b6000602082019050919050565b6000614ac682614a5b565b614ad08185614a66565b9350614adb83614a77565b8060005b83811015614b0c578151614af38882614a96565b9750614afe83614aae565b925050600181019050614adf565b5085935050505092915050565b600060a082019050614b2e6000830188613ac7565b614b3b6020830187614a4c565b8181036040830152614b4d8186614abb565b9050614b5c6060830185613b71565b614b696080830184613ac7565b969550505050505056fea2646970667358221220a065b54cf373ea4478e33d66be24674ab084905f19960290399812ea25b6c03764736f6c63430008130033
Deployed Bytecode
0x6080604052600436106102e85760003560e01c80638a8c523c11610190578063b62496f5116100dc578063d257b34f11610095578063e2f456051161006f578063e2f4560514610b63578063e884f26014610b8e578063f2fde38b14610bb9578063f8b45b0514610be2576102ef565b8063d257b34f14610abe578063d85ba06314610afb578063dd62ed3e14610b26576102ef565b8063b62496f5146109ae578063bbc0c742146109eb578063c024666814610a16578063c18bc19514610a3f578063c876d0b914610a68578063c8c8ebe414610a93576102ef565b80639a7a23d611610149578063a0d82dc511610123578063a0d82dc5146108e0578063a457c2d71461090b578063a9059cbb14610948578063aacebbe314610985576102ef565b80639a7a23d6146108615780639c3b4fdc1461088a5780639fccce32146108b5576102ef565b80638a8c523c146107755780638da5cb5b1461078c5780638ea5220f146107b757806392136913146107e2578063924de9b71461080d57806395d89b4114610836576102ef565b8063395093511161024f5780636ddd171311610208578063751039fc116101e2578063751039fc146106cb5780637571336a146106f657806375f0a8741461071f5780637bce5a041461074a576102ef565b80636ddd17131461064c57806370a0823114610677578063715018a6146106b4576102ef565b8063395093511461052857806349bd5a5e146105655780634a62bb65146105905780634fbee193146105bb57806366ca9b83146105f85780636a486a8e14610621576102ef565b80631816467f116102a15780631816467f146104185780631f3fed8f14610441578063203e727e1461046c57806323b872dd1461049557806327c8f835146104d2578063313ce567146104fd576102ef565b806302dbd8f8146102f457806306fdde031461031d578063095ea7b31461034857806310d5de53146103855780631694505e146103c257806318160ddd146103ed576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b5061031b6004803603810190610316919061385a565b610c0d565b005b34801561032957600080fd5b50610332610cf7565b60405161033f919061392a565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a91906139aa565b610d89565b60405161037c9190613a05565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190613a20565b610da7565b6040516103b99190613a05565b60405180910390f35b3480156103ce57600080fd5b506103d7610dc7565b6040516103e49190613aac565b60405180910390f35b3480156103f957600080fd5b50610402610deb565b60405161040f9190613ad6565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190613a20565b610df5565b005b34801561044d57600080fd5b50610456610f31565b6040516104639190613ad6565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190613af1565b610f37565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190613b1e565b611046565b6040516104c99190613a05565b60405180910390f35b3480156104de57600080fd5b506104e761113e565b6040516104f49190613b80565b60405180910390f35b34801561050957600080fd5b50610512611144565b60405161051f9190613bb7565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a91906139aa565b61114d565b60405161055c9190613a05565b60405180910390f35b34801561057157600080fd5b5061057a6111f9565b6040516105879190613b80565b60405180910390f35b34801561059c57600080fd5b506105a561121d565b6040516105b29190613a05565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd9190613a20565b611230565b6040516105ef9190613a05565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a919061385a565b611286565b005b34801561062d57600080fd5b50610636611370565b6040516106439190613ad6565b60405180910390f35b34801561065857600080fd5b50610661611376565b60405161066e9190613a05565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190613a20565b611389565b6040516106ab9190613ad6565b60405180910390f35b3480156106c057600080fd5b506106c96113d1565b005b3480156106d757600080fd5b506106e0611459565b6040516106ed9190613a05565b60405180910390f35b34801561070257600080fd5b5061071d60048036038101906107189190613bfe565b6114f9565b005b34801561072b57600080fd5b506107346115d0565b6040516107419190613b80565b60405180910390f35b34801561075657600080fd5b5061075f6115f6565b60405161076c9190613ad6565b60405180910390f35b34801561078157600080fd5b5061078a6115fc565b005b34801561079857600080fd5b506107a16116b7565b6040516107ae9190613b80565b60405180910390f35b3480156107c357600080fd5b506107cc6116e1565b6040516107d99190613b80565b60405180910390f35b3480156107ee57600080fd5b506107f7611707565b6040516108049190613ad6565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f9190613c3e565b61170d565b005b34801561084257600080fd5b5061084b6117a6565b604051610858919061392a565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190613bfe565b611838565b005b34801561089657600080fd5b5061089f611950565b6040516108ac9190613ad6565b60405180910390f35b3480156108c157600080fd5b506108ca611956565b6040516108d79190613ad6565b60405180910390f35b3480156108ec57600080fd5b506108f561195c565b6040516109029190613ad6565b60405180910390f35b34801561091757600080fd5b50610932600480360381019061092d91906139aa565b611962565b60405161093f9190613a05565b60405180910390f35b34801561095457600080fd5b5061096f600480360381019061096a91906139aa565b611a4d565b60405161097c9190613a05565b60405180910390f35b34801561099157600080fd5b506109ac60048036038101906109a79190613a20565b611a6b565b005b3480156109ba57600080fd5b506109d560048036038101906109d09190613a20565b611ba7565b6040516109e29190613a05565b60405180910390f35b3480156109f757600080fd5b50610a00611bc7565b604051610a0d9190613a05565b60405180910390f35b348015610a2257600080fd5b50610a3d6004803603810190610a389190613bfe565b611bda565b005b348015610a4b57600080fd5b50610a666004803603810190610a619190613af1565b611cff565b005b348015610a7457600080fd5b50610a7d611e0e565b604051610a8a9190613a05565b60405180910390f35b348015610a9f57600080fd5b50610aa8611e21565b604051610ab59190613ad6565b60405180910390f35b348015610aca57600080fd5b50610ae56004803603810190610ae09190613af1565b611e27565b604051610af29190613a05565b60405180910390f35b348015610b0757600080fd5b50610b10611f7c565b604051610b1d9190613ad6565b60405180910390f35b348015610b3257600080fd5b50610b4d6004803603810190610b489190613c6b565b611f82565b604051610b5a9190613ad6565b60405180910390f35b348015610b6f57600080fd5b50610b78612009565b604051610b859190613ad6565b60405180910390f35b348015610b9a57600080fd5b50610ba361200f565b604051610bb09190613a05565b60405180910390f35b348015610bc557600080fd5b50610be06004803603810190610bdb9190613a20565b6120af565b005b348015610bee57600080fd5b50610bf76121a6565b604051610c049190613ad6565b60405180910390f35b610c156121ac565b73ffffffffffffffffffffffffffffffffffffffff16610c336116b7565b73ffffffffffffffffffffffffffffffffffffffff1614610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8090613cf7565b60405180910390fd5b8160128190555080601381905550601354601254610ca79190613d46565b60118190555060196011541115610cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cea90613dc6565b60405180910390fd5b5050565b606060038054610d0690613e15565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3290613e15565b8015610d7f5780601f10610d5457610100808354040283529160200191610d7f565b820191906000526020600020905b815481529060010190602001808311610d6257829003601f168201915b5050505050905090565b6000610d9d610d966121ac565b84846121b4565b6001905092915050565b60186020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000e470699f6d0384e3ea68f1144e41d22c6c8fdeef81565b6000600254905090565b610dfd6121ac565b73ffffffffffffffffffffffffffffffffffffffff16610e1b6116b7565b73ffffffffffffffffffffffffffffffffffffffff1614610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6890613cf7565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60145481565b610f3f6121ac565b73ffffffffffffffffffffffffffffffffffffffff16610f5d6116b7565b73ffffffffffffffffffffffffffffffffffffffff1614610fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faa90613cf7565b60405180910390fd5b670de0b6b3a76400006103e86001610fc9610deb565b610fd39190613e46565b610fdd9190613eb7565b610fe79190613eb7565b811015611029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102090613f5a565b60405180910390fd5b670de0b6b3a76400008161103d9190613e46565b60088190555050565b600061105384848461237d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061109e6121ac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561111e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111590613fec565b60405180910390fd5b6111328561112a6121ac565b8584036121b4565b60019150509392505050565b61dead81565b60006012905090565b60006111ef61115a6121ac565b8484600160006111686121ac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111ea9190613d46565b6121b4565b6001905092915050565b7f000000000000000000000000b0d4f3568e28670007437133c2aa079a08da4ed981565b600b60009054906101000a900460ff1681565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61128e6121ac565b73ffffffffffffffffffffffffffffffffffffffff166112ac6116b7565b73ffffffffffffffffffffffffffffffffffffffff1614611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990613cf7565b60405180910390fd5b81600f8190555080601081905550601054600f546113209190613d46565b600e819055506019600e54111561136c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136390613dc6565b60405180910390fd5b5050565b60115481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113d96121ac565b73ffffffffffffffffffffffffffffffffffffffff166113f76116b7565b73ffffffffffffffffffffffffffffffffffffffff161461144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144490613cf7565b60405180910390fd5b6114576000612fae565b565b60006114636121ac565b73ffffffffffffffffffffffffffffffffffffffff166114816116b7565b73ffffffffffffffffffffffffffffffffffffffff16146114d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ce90613cf7565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6115016121ac565b73ffffffffffffffffffffffffffffffffffffffff1661151f6116b7565b73ffffffffffffffffffffffffffffffffffffffff1614611575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156c90613cf7565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b6116046121ac565b73ffffffffffffffffffffffffffffffffffffffff166116226116b7565b73ffffffffffffffffffffffffffffffffffffffff1614611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90613cf7565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601681905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b6117156121ac565b73ffffffffffffffffffffffffffffffffffffffff166117336116b7565b73ffffffffffffffffffffffffffffffffffffffff1614611789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178090613cf7565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546117b590613e15565b80601f01602080910402602001604051908101604052809291908181526020018280546117e190613e15565b801561182e5780601f106118035761010080835404028352916020019161182e565b820191906000526020600020905b81548152906001019060200180831161181157829003601f168201915b5050505050905090565b6118406121ac565b73ffffffffffffffffffffffffffffffffffffffff1661185e6116b7565b73ffffffffffffffffffffffffffffffffffffffff16146118b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ab90613cf7565b60405180910390fd5b7f000000000000000000000000b0d4f3568e28670007437133c2aa079a08da4ed973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611942576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119399061407e565b60405180910390fd5b61194c8282613074565b5050565b60105481565b60155481565b60135481565b600080600160006119716121ac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2590614110565b60405180910390fd5b611a42611a396121ac565b858584036121b4565b600191505092915050565b6000611a61611a5a6121ac565b848461237d565b6001905092915050565b611a736121ac565b73ffffffffffffffffffffffffffffffffffffffff16611a916116b7565b73ffffffffffffffffffffffffffffffffffffffff1614611ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ade90613cf7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60196020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611be26121ac565b73ffffffffffffffffffffffffffffffffffffffff16611c006116b7565b73ffffffffffffffffffffffffffffffffffffffff1614611c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4d90613cf7565b60405180910390fd5b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611cf39190613a05565b60405180910390a25050565b611d076121ac565b73ffffffffffffffffffffffffffffffffffffffff16611d256116b7565b73ffffffffffffffffffffffffffffffffffffffff1614611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7290613cf7565b60405180910390fd5b670de0b6b3a76400006103e86005611d91610deb565b611d9b9190613e46565b611da59190613eb7565b611daf9190613eb7565b811015611df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de8906141a2565b60405180910390fd5b670de0b6b3a764000081611e059190613e46565b600a8190555050565b600d60009054906101000a900460ff1681565b60085481565b6000611e316121ac565b73ffffffffffffffffffffffffffffffffffffffff16611e4f6116b7565b73ffffffffffffffffffffffffffffffffffffffff1614611ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9c90613cf7565b60405180910390fd5b620186a06001611eb3610deb565b611ebd9190613e46565b611ec79190613eb7565b821015611f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0090614234565b60405180910390fd5b6103e86005611f16610deb565b611f209190613e46565b611f2a9190613eb7565b821115611f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f63906142c6565b60405180910390fd5b8160098190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006120196121ac565b73ffffffffffffffffffffffffffffffffffffffff166120376116b7565b73ffffffffffffffffffffffffffffffffffffffff161461208d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208490613cf7565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b6120b76121ac565b73ffffffffffffffffffffffffffffffffffffffff166120d56116b7565b73ffffffffffffffffffffffffffffffffffffffff161461212b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212290613cf7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361219a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219190614358565b60405180910390fd5b6121a381612fae565b50565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221a906143ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612292576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122899061447c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123709190613ad6565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e39061450e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361245b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612452906145a0565b60405180910390fd5b600081036124745761246f83836000613115565b612fa9565b600b60009054906101000a900460ff1615612b37576124916116b7565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124ff57506124cf6116b7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125385750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612572575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561258b5750600560149054906101000a900460ff16155b15612b3657600b60019054906101000a900460ff1661268557601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126455750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267b9061460c565b60405180910390fd5b5b600d60009054906101000a900460ff161561284d576126a26116b7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561272957507f000000000000000000000000e470699f6d0384e3ea68f1144e41d22c6c8fdeef73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561278157507f000000000000000000000000b0d4f3568e28670007437133c2aa079a08da4ed973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561284c5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fe906146c4565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128f05750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156129975760085481111561293a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293190614756565b60405180910390fd5b600a5461294683611389565b826129519190613d46565b1115612992576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612989906147c2565b60405180910390fd5b612b35565b601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a3a5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a8957600854811115612a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7b90614854565b60405180910390fd5b612b34565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612b3357600a54612ae683611389565b82612af19190613d46565b1115612b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b29906147c2565b60405180910390fd5b5b5b5b5b5b6000612b4230611389565b905060006009548210159050808015612b675750600b60029054906101000a900460ff165b8015612b805750600560149054906101000a900460ff16155b8015612bd65750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c2c5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c825750601760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cc6576001600560146101000a81548160ff021916908315150217905550612caa613394565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d7c5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d8657600090505b60008115612f9957601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612de957506000601154115b15612e8357612e166064612e086011548861359690919063ffffffff16565b6135ac90919063ffffffff16565b905060115460135482612e299190613e46565b612e339190613eb7565b60156000828254612e449190613d46565b9250508190555060115460125482612e5c9190613e46565b612e669190613eb7565b60146000828254612e779190613d46565b92505081905550612f75565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ede57506000600e54115b15612f7457612f0b6064612efd600e548861359690919063ffffffff16565b6135ac90919063ffffffff16565b9050600e5460105482612f1e9190613e46565b612f289190613eb7565b60156000828254612f399190613d46565b92505081905550600e54600f5482612f519190613e46565b612f5b9190613eb7565b60146000828254612f6c9190613d46565b925050819055505b5b6000811115612f8a57612f89873083613115565b5b8085612f969190614874565b94505b612fa4878787613115565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317b9061450e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036131f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ea906145a0565b60405180910390fd5b6131fe8383836135c2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327b9061491a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133179190613d46565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161337b9190613ad6565b60405180910390a361338e8484846135c7565b50505050565b600061339f30611389565b905060006015546014546133b39190613d46565b90506000808314806133c55750600082145b156133d257505050613594565b60146009546133e19190613e46565b8311156133fa5760146009546133f79190613e46565b92505b6000839050600047905061340d826135cc565b6000613422824761380990919063ffffffff16565b9050600061344d8661343f6014548561359690919063ffffffff16565b6135ac90919063ffffffff16565b90506000818361345d9190614874565b905060006014819055506000601581905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516134b59061496b565b60006040518083038185875af1925050503d80600081146134f2576040519150601f19603f3d011682016040523d82523d6000602084013e6134f7565b606091505b505080965050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516135439061496b565b60006040518083038185875af1925050503d8060008114613580576040519150601f19603f3d011682016040523d82523d6000602084013e613585565b606091505b50508096505050505050505050505b565b600081836135a49190613e46565b905092915050565b600081836135ba9190613eb7565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156135e9576135e8614980565b5b6040519080825280602002602001820160405280156136175781602001602082028036833780820191505090505b509050308160008151811061362f5761362e6149af565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000e470699f6d0384e3ea68f1144e41d22c6c8fdeef73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156136d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136f891906149f3565b8160018151811061370c5761370b6149af565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613771307f000000000000000000000000e470699f6d0384e3ea68f1144e41d22c6c8fdeef846121b4565b7f000000000000000000000000e470699f6d0384e3ea68f1144e41d22c6c8fdeef73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016137d3959493929190614b19565b600060405180830381600087803b1580156137ed57600080fd5b505af1158015613801573d6000803e3d6000fd5b505050505050565b600081836138179190614874565b905092915050565b600080fd5b6000819050919050565b61383781613824565b811461384257600080fd5b50565b6000813590506138548161382e565b92915050565b600080604083850312156138715761387061381f565b5b600061387f85828601613845565b925050602061389085828601613845565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138d45780820151818401526020810190506138b9565b60008484015250505050565b6000601f19601f8301169050919050565b60006138fc8261389a565b61390681856138a5565b93506139168185602086016138b6565b61391f816138e0565b840191505092915050565b6000602082019050818103600083015261394481846138f1565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139778261394c565b9050919050565b6139878161396c565b811461399257600080fd5b50565b6000813590506139a48161397e565b92915050565b600080604083850312156139c1576139c061381f565b5b60006139cf85828601613995565b92505060206139e085828601613845565b9150509250929050565b60008115159050919050565b6139ff816139ea565b82525050565b6000602082019050613a1a60008301846139f6565b92915050565b600060208284031215613a3657613a3561381f565b5b6000613a4484828501613995565b91505092915050565b6000819050919050565b6000613a72613a6d613a688461394c565b613a4d565b61394c565b9050919050565b6000613a8482613a57565b9050919050565b6000613a9682613a79565b9050919050565b613aa681613a8b565b82525050565b6000602082019050613ac16000830184613a9d565b92915050565b613ad081613824565b82525050565b6000602082019050613aeb6000830184613ac7565b92915050565b600060208284031215613b0757613b0661381f565b5b6000613b1584828501613845565b91505092915050565b600080600060608486031215613b3757613b3661381f565b5b6000613b4586828701613995565b9350506020613b5686828701613995565b9250506040613b6786828701613845565b9150509250925092565b613b7a8161396c565b82525050565b6000602082019050613b956000830184613b71565b92915050565b600060ff82169050919050565b613bb181613b9b565b82525050565b6000602082019050613bcc6000830184613ba8565b92915050565b613bdb816139ea565b8114613be657600080fd5b50565b600081359050613bf881613bd2565b92915050565b60008060408385031215613c1557613c1461381f565b5b6000613c2385828601613995565b9250506020613c3485828601613be9565b9150509250929050565b600060208284031215613c5457613c5361381f565b5b6000613c6284828501613be9565b91505092915050565b60008060408385031215613c8257613c8161381f565b5b6000613c9085828601613995565b9250506020613ca185828601613995565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ce16020836138a5565b9150613cec82613cab565b602082019050919050565b60006020820190508181036000830152613d1081613cd4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d5182613824565b9150613d5c83613824565b9250828201905080821115613d7457613d73613d17565b5b92915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000613db0601d836138a5565b9150613dbb82613d7a565b602082019050919050565b60006020820190508181036000830152613ddf81613da3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613e2d57607f821691505b602082108103613e4057613e3f613de6565b5b50919050565b6000613e5182613824565b9150613e5c83613824565b9250828202613e6a81613824565b91508282048414831517613e8157613e80613d17565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ec282613824565b9150613ecd83613824565b925082613edd57613edc613e88565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613f44602f836138a5565b9150613f4f82613ee8565b604082019050919050565b60006020820190508181036000830152613f7381613f37565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613fd66028836138a5565b9150613fe182613f7a565b604082019050919050565b6000602082019050818103600083015261400581613fc9565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006140686039836138a5565b91506140738261400c565b604082019050919050565b600060208201905081810360008301526140978161405b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006140fa6025836138a5565b91506141058261409e565b604082019050919050565b60006020820190508181036000830152614129816140ed565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061418c6024836138a5565b915061419782614130565b604082019050919050565b600060208201905081810360008301526141bb8161417f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061421e6035836138a5565b9150614229826141c2565b604082019050919050565b6000602082019050818103600083015261424d81614211565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006142b06034836138a5565b91506142bb82614254565b604082019050919050565b600060208201905081810360008301526142df816142a3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006143426026836138a5565b915061434d826142e6565b604082019050919050565b6000602082019050818103600083015261437181614335565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006143d46024836138a5565b91506143df82614378565b604082019050919050565b60006020820190508181036000830152614403816143c7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006144666022836138a5565b91506144718261440a565b604082019050919050565b6000602082019050818103600083015261449581614459565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006144f86025836138a5565b91506145038261449c565b604082019050919050565b60006020820190508181036000830152614527816144eb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061458a6023836138a5565b91506145958261452e565b604082019050919050565b600060208201905081810360008301526145b98161457d565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006145f66016836138a5565b9150614601826145c0565b602082019050919050565b60006020820190508181036000830152614625816145e9565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006146ae6049836138a5565b91506146b98261462c565b606082019050919050565b600060208201905081810360008301526146dd816146a1565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006147406035836138a5565b915061474b826146e4565b604082019050919050565b6000602082019050818103600083015261476f81614733565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006147ac6013836138a5565b91506147b782614776565b602082019050919050565b600060208201905081810360008301526147db8161479f565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061483e6036836138a5565b9150614849826147e2565b604082019050919050565b6000602082019050818103600083015261486d81614831565b9050919050565b600061487f82613824565b915061488a83613824565b92508282039050818111156148a2576148a1613d17565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006149046026836138a5565b915061490f826148a8565b604082019050919050565b60006020820190508181036000830152614933816148f7565b9050919050565b600081905092915050565b50565b600061495560008361493a565b915061496082614945565b600082019050919050565b600061497682614948565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506149ed8161397e565b92915050565b600060208284031215614a0957614a0861381f565b5b6000614a17848285016149de565b91505092915050565b6000819050919050565b6000614a45614a40614a3b84614a20565b613a4d565b613824565b9050919050565b614a5581614a2a565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614a908161396c565b82525050565b6000614aa28383614a87565b60208301905092915050565b6000602082019050919050565b6000614ac682614a5b565b614ad08185614a66565b9350614adb83614a77565b8060005b83811015614b0c578151614af38882614a96565b9750614afe83614aae565b925050600181019050614adf565b5085935050505092915050565b600060a082019050614b2e6000830188613ac7565b614b3b6020830187614a4c565b8181036040830152614b4d8186614abb565b9050614b5c6060830185613b71565b614b696080830184613ac7565b969550505050505056fea2646970667358221220a065b54cf373ea4478e33d66be24674ab084905f19960290399812ea25b6c03764736f6c63430008130033
Deployed Bytecode Sourcemap
33003:14483:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39698:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9857:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12165:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34301:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33082:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10977:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40961:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34019:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38461:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12857:529;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33185:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10819:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13795:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33140:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33462:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41126:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39379:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33912:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33542:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11148:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2976:103;;;;;;;;;;;;;:::i;:::-;;37569:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39008:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33277:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33842;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37369:148;;;;;;;;;;;;;:::i;:::-;;2325:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33314:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33947:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39271:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10076:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40214:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33879:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34059:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33985:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14595:482;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11538:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40722:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34522:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33502:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40024:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38744:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33760:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33347:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37956:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33808:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11817:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33389:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37751:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3234:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33429:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39698:318;2556:12;:10;:12::i;:::-;2545:23;;:7;:5;:7::i;:::-;:23;;;2537:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39836:13:::1;39817:16;:32;;;;39873:7;39860:10;:20;;;;39926:10;;39907:16;;:29;;;;:::i;:::-;39891:13;:45;;;;39972:2;39955:13;;:19;;39947:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;39698:318:::0;;:::o;9857:100::-;9911:13;9944:5;9937:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9857:100;:::o;12165:210::-;12284:4;12306:39;12315:12;:10;:12::i;:::-;12329:7;12338:6;12306:8;:39::i;:::-;12363:4;12356:11;;12165:210;;;;:::o;34301:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;33082:51::-;;;:::o;10977:108::-;11038:7;11065:12;;11058:19;;10977:108;:::o;40961:157::-;2556:12;:10;:12::i;:::-;2545:23;;:7;:5;:7::i;:::-;:23;;;2537:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41068:9:::1;;;;;;;;;;;41040:38;;41057:9;41040:38;;;;;;;;;;;;41101:9;41089;;:21;;;;;;;;;;;;;;;;;;40961:157:::0;:::o;34019:33::-;;;;:::o;38461:275::-;2556:12;:10;:12::i;:::-;2545:23;;:7;:5;:7::i;:::-;:23;;;2537:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38598:4:::1;38590;38585:1;38569:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38568:26;;;;:::i;:::-;38567:35;;;;:::i;:::-;38557:6;:45;;38535:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;38721:6;38711;:17;;;;:::i;:::-;38688:20;:40;;;;38461:275:::0;:::o;12857:529::-;12997:4;13014:36;13024:6;13032:9;13043:6;13014:9;:36::i;:::-;13063:24;13090:11;:19;13102:6;13090:19;;;;;;;;;;;;;;;:33;13110:12;:10;:12::i;:::-;13090:33;;;;;;;;;;;;;;;;13063:60;;13176:6;13156:16;:26;;13134:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;13286:57;13295:6;13303:12;:10;:12::i;:::-;13336:6;13317:16;:25;13286:8;:57::i;:::-;13374:4;13367:11;;;12857:529;;;;;:::o;33185:53::-;33231:6;33185:53;:::o;10819:93::-;10877:5;10902:2;10895:9;;10819:93;:::o;13795:297::-;13910:4;13932:130;13955:12;:10;:12::i;:::-;13982:7;14041:10;14004:11;:25;14016:12;:10;:12::i;:::-;14004:25;;;;;;;;;;;;;;;:34;14030:7;14004:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13932:8;:130::i;:::-;14080:4;14073:11;;13795:297;;;;:::o;33140:38::-;;;:::o;33462:33::-;;;;;;;;;;;;;:::o;41126:126::-;41192:4;41216:19;:28;41236:7;41216:28;;;;;;;;;;;;;;;;;;;;;;;;;41209:35;;41126:126;;;:::o;39379:311::-;2556:12;:10;:12::i;:::-;2545:23;;:7;:5;:7::i;:::-;:23;;;2537:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39515:13:::1;39497:15;:31;;;;39551:7;39539:9;:19;;;;39602:9;;39584:15;;:27;;;;:::i;:::-;39569:12;:42;;;;39646:2;39630:12;;:18;;39622:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39379:311:::0;;:::o;33912:28::-;;;;:::o;33542:31::-;;;;;;;;;;;;;:::o;11148:177::-;11267:7;11299:9;:18;11309:7;11299:18;;;;;;;;;;;;;;;;11292:25;;11148:177;;;:::o;2976:103::-;2556:12;:10;:12::i;:::-;2545:23;;:7;:5;:7::i;:::-;:23;;;2537:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3041:30:::1;3068:1;3041:18;:30::i;:::-;2976:103::o:0;37569:121::-;37621:4;2556:12;:10;:12::i;:::-;2545:23;;:7;:5;:7::i;:::-;:23;;;2537:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37655:5:::1;37638:14;;:22;;;;;;;;;;;;;;;;;;37678:4;37671:11;;37569:121:::0;:::o;39008:167::-;2556:12;:10;:12::i;:::-;2545:23;;:7;:5;:7::i;:::-;:23;;;2537:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39163:4:::1;39121:31;:39;39153:6;39121:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39008:167:::0;;:::o;33277:30::-;;;;;;;;;;;;;:::o;33842:::-;;;;:::o;37369:148::-;2556:12;:10;:12::i;:::-;2545:23;;:7;:5;:7::i;:::-;:23;;;2537:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37440:4:::1;37424:13;;:20;;;;;;;;;;;;;;;;;;37469:4;37455:11;;:18;;;;;;;;;;;;;;;;;;37497:12;37484:10;:25;;;;37369:148::o:0;2325:87::-;2371:7;2398:6;;;;;;;;;;;2391:13;;2325:87;:::o;33314:24::-;;;;;;;;;;;;;:::o;33947:31::-;;;;:::o;39271:100::-;2556:12;:10;:12::i;:::-;2545:23;;:7;:5;:7::i;:::-;:23;;;2537:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39356:7:::1;39342:11;;:21;;;;;;;;;;;;;;;;;;39271:100:::0;:::o;10076:104::-;10132:13;10165:7;10158:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10076:104;:::o;40214:304::-;2556:12;:10;:12::i;:::-;2545:23;;:7;:5;:7::i;:::-;:23;;;2537:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40358:13:::1;40350:21;;:4;:21;;::::0;40328:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;40469:41;40498:4;40504:5;40469:28;:41::i;:::-;40214:304:::0;;:::o;33879:24::-;;;;:::o;34059:27::-;;;;:::o;33985:25::-;;;;:::o;14595:482::-;14715:4;14737:24;14764:11;:25;14776:12;:10;:12::i;:::-;14764:25;;;;;;;;;;;;;;;:34;14790:7;14764:34;;;;;;;;;;;;;;;;14737:61;;14851:15;14831:16;:35;;14809:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;14967:67;14976:12;:10;:12::i;:::-;14990:7;15018:15;14999:16;:34;14967:8;:67::i;:::-;15065:4;15058:11;;;14595:482;;;;:::o;11538:216::-;11660:4;11682:42;11692:12;:10;:12::i;:::-;11706:9;11717:6;11682:9;:42::i;:::-;11742:4;11735:11;;11538:216;;;;:::o;40722:231::-;2556:12;:10;:12::i;:::-;2545:23;;:7;:5;:7::i;:::-;:23;;;2537:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40882:15:::1;;;;;;;;;;;40839:59;;40862:18;40839:59;;;;;;;;;;;;40927:18;40909:15;;:36;;;;;;;;;;;;;;;;;;40722:231:::0;:::o;34522:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33502:33::-;;;;;;;;;;;;;:::o;40024:182::-;2556:12;:10;:12::i;:::-;2545:23;;:7;:5;:7::i;:::-;:23;;;2537:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40140:8:::1;40109:19;:28;40129:7;40109:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40180:7;40164:34;;;40189:8;40164:34;;;;;;:::i;:::-;;;;;;;;40024:182:::0;;:::o;38744:256::-;2556:12;:10;:12::i;:::-;2545:23;;:7;:5;:7::i;:::-;:23;;;2537:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38884:4:::1;38876;38871:1;38855:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38854:26;;;;:::i;:::-;38853:35;;;;:::i;:::-;38843:6;:45;;38821:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;38985:6;38975;:17;;;;:::i;:::-;38963:9;:29;;;;38744:256:::0;:::o;33760:39::-;;;;;;;;;;;;;:::o;33347:35::-;;;;:::o;37956:497::-;38064:4;2556:12;:10;:12::i;:::-;2545:23;;:7;:5;:7::i;:::-;:23;;;2537:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38143:6:::1;38138:1;38122:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38121:28;;;;:::i;:::-;38108:9;:41;;38086:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38298:4;38293:1;38277:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38276:26;;;;:::i;:::-;38263:9;:39;;38241:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38414:9;38393:18;:30;;;;38441:4;38434:11;;37956:497:::0;;;:::o;33808:27::-;;;;:::o;11817:201::-;11951:7;11983:11;:18;11995:5;11983:18;;;;;;;;;;;;;;;:27;12002:7;11983:27;;;;;;;;;;;;;;;;11976:34;;11817:201;;;;:::o;33389:33::-;;;;:::o;37751:135::-;37811:4;2556:12;:10;:12::i;:::-;2545:23;;:7;:5;:7::i;:::-;:23;;;2537:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37851:5:::1;37828:20;;:28;;;;;;;;;;;;;;;;;;37874:4;37867:11;;37751:135:::0;:::o;3234:238::-;2556:12;:10;:12::i;:::-;2545:23;;:7;:5;:7::i;:::-;:23;;;2537:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3357:1:::1;3337:22;;:8;:22;;::::0;3315:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3436:28;3455:8;3436:18;:28::i;:::-;3234:238:::0;:::o;33429:24::-;;;;:::o;973:98::-;1026:7;1053:10;1046:17;;973:98;:::o;18385:380::-;18538:1;18521:19;;:5;:19;;;18513:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18619:1;18600:21;;:7;:21;;;18592:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18703:6;18673:11;:18;18685:5;18673:18;;;;;;;;;;;;;;;:27;18692:7;18673:27;;;;;;;;;;;;;;;:36;;;;18741:7;18725:32;;18734:5;18725:32;;;18750:6;18725:32;;;;;;:::i;:::-;;;;;;;;18385:380;;;:::o;41260:4555::-;41408:1;41392:18;;:4;:18;;;41384:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41485:1;41471:16;;:2;:16;;;41463:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41554:1;41544:6;:11;41540:93;;41572:28;41588:4;41594:2;41598:1;41572:15;:28::i;:::-;41615:7;;41540:93;41649:14;;;;;;;;;;;41645:2487;;;41710:7;:5;:7::i;:::-;41702:15;;:4;:15;;;;:49;;;;;41744:7;:5;:7::i;:::-;41738:13;;:2;:13;;;;41702:49;:86;;;;;41786:1;41772:16;;:2;:16;;;;41702:86;:128;;;;;41823:6;41809:21;;:2;:21;;;;41702:128;:158;;;;;41852:8;;;;;;;;;;;41851:9;41702:158;41680:2441;;;41900:13;;;;;;;;;;;41895:223;;41972:19;:25;41992:4;41972:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42001:19;:23;42021:2;42001:23;;;;;;;;;;;;;;;;;;;;;;;;;41972:52;41938:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;41895:223;42274:20;;;;;;;;;;;42270:641;;;42355:7;:5;:7::i;:::-;42349:13;;:2;:13;;;;:72;;;;;42405:15;42391:30;;:2;:30;;;;42349:72;:129;;;;;42464:13;42450:28;;:2;:28;;;;42349:129;42319:573;;;42642:12;42567:28;:39;42596:9;42567:39;;;;;;;;;;;;;;;;:87;42529:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;42856:12;42814:28;:39;42843:9;42814:39;;;;;;;;;;;;;;;:54;;;;42319:573;42270:641;42985:25;:31;43011:4;42985:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43042:31;:35;43074:2;43042:35;;;;;;;;;;;;;;;;;;;;;;;;;43041:36;42985:92;42959:1147;;;43164:20;;43154:6;:30;;43120:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43372:9;;43355:13;43365:2;43355:9;:13::i;:::-;43346:6;:22;;;;:::i;:::-;:35;;43312:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42959:1147;;;43550:25;:29;43576:2;43550:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43605:31;:37;43637:4;43605:37;;;;;;;;;;;;;;;;;;;;;;;;;43604:38;43550:92;43524:582;;;43729:20;;43719:6;:30;;43685:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;43524:582;;;43886:31;:35;43918:2;43886:35;;;;;;;;;;;;;;;;;;;;;;;;;43881:225;;44006:9;;43989:13;43999:2;43989:9;:13::i;:::-;43980:6;:22;;;;:::i;:::-;:35;;43946:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43881:225;43524:582;42959:1147;41680:2441;41645:2487;44144:28;44175:24;44193:4;44175:9;:24::i;:::-;44144:55;;44212:12;44251:18;;44227:20;:42;;44212:57;;44300:7;:35;;;;;44324:11;;;;;;;;;;;44300:35;:61;;;;;44353:8;;;;;;;;;;;44352:9;44300:61;:110;;;;;44379:25;:31;44405:4;44379:31;;;;;;;;;;;;;;;;;;;;;;;;;44378:32;44300:110;:153;;;;;44428:19;:25;44448:4;44428:25;;;;;;;;;;;;;;;;;;;;;;;;;44427:26;44300:153;:194;;;;;44471:19;:23;44491:2;44471:23;;;;;;;;;;;;;;;;;;;;;;;;;44470:24;44300:194;44282:326;;;44532:4;44521:8;;:15;;;;;;;;;;;;;;;;;;44553:10;:8;:10::i;:::-;44591:5;44580:8;;:16;;;;;;;;;;;;;;;;;;44282:326;44620:12;44636:8;;;;;;;;;;;44635:9;44620:24;;44746:19;:25;44766:4;44746:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;44775:19;:23;44795:2;44775:23;;;;;;;;;;;;;;;;;;;;;;;;;44746:52;44742:100;;;44825:5;44815:15;;44742:100;44854:12;44959:7;44955:807;;;45011:25;:29;45037:2;45011:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45060:1;45044:13;;:17;45011:50;45007:606;;;45089:34;45119:3;45089:25;45100:13;;45089:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45082:41;;45180:13;;45166:10;;45159:4;:17;;;;:::i;:::-;45158:35;;;;:::i;:::-;45142:12;;:51;;;;;;;:::i;:::-;;;;;;;;45262:13;;45242:16;;45235:4;:23;;;;:::i;:::-;45234:41;;;;:::i;:::-;45212:18;;:63;;;;;;;:::i;:::-;;;;;;;;45007:606;;;45337:25;:31;45363:4;45337:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;45387:1;45372:12;;:16;45337:51;45333:280;;;45416:33;45445:3;45416:24;45427:12;;45416:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;45409:40;;45505:12;;45492:9;;45485:4;:16;;;;:::i;:::-;45484:33;;;;:::i;:::-;45468:12;;:49;;;;;;;:::i;:::-;;;;;;;;45585:12;;45566:15;;45559:4;:22;;;;:::i;:::-;45558:39;;;;:::i;:::-;45536:18;;:61;;;;;;;:::i;:::-;;;;;;;;45333:280;45007:606;45640:1;45633:4;:8;45629:91;;;45662:42;45678:4;45692;45699;45662:15;:42::i;:::-;45629:91;45746:4;45736:14;;;;;:::i;:::-;;;44955:807;45774:33;45790:4;45796:2;45800:6;45774:15;:33::i;:::-;41373:4442;;;;41260:4555;;;;:::o;3632:191::-;3706:16;3725:6;;;;;;;;;;;3706:25;;3751:8;3742:6;;:17;;;;;;;;;;;;;;;;;;3806:8;3775:40;;3796:8;3775:40;;;;;;;;;;;;3695:128;3632:191;:::o;40526:188::-;40643:5;40609:25;:31;40635:4;40609:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40700:5;40666:40;;40694:4;40666:40;;;;;;;;;;;;40526:188;;:::o;15567:770::-;15725:1;15707:20;;:6;:20;;;15699:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15809:1;15788:23;;:9;:23;;;15780:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15864:47;15885:6;15893:9;15904:6;15864:20;:47::i;:::-;15924:21;15948:9;:17;15958:6;15948:17;;;;;;;;;;;;;;;;15924:41;;16015:6;15998:13;:23;;15976:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;16159:6;16143:13;:22;16123:9;:17;16133:6;16123:17;;;;;;;;;;;;;;;:42;;;;16211:6;16187:9;:20;16197:9;16187:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;16252:9;16235:35;;16244:6;16235:35;;;16263:6;16235:35;;;;;;:::i;:::-;;;;;;;;16283:46;16303:6;16311:9;16322:6;16283:19;:46::i;:::-;15688:649;15567:770;;;:::o;46420:1063::-;46459:23;46485:24;46503:4;46485:9;:24::i;:::-;46459:50;;46520:25;46569:12;;46548:18;;:33;;;;:::i;:::-;46520:61;;46592:12;46640:1;46621:15;:20;:46;;;;46666:1;46645:17;:22;46621:46;46617:85;;;46684:7;;;;;46617:85;46757:2;46736:18;;:23;;;;:::i;:::-;46718:15;:41;46714:115;;;46815:2;46794:18;;:23;;;;:::i;:::-;46776:41;;46714:115;46841:26;46870:15;46841:44;;46898:25;46926:21;46898:49;;46960:36;46977:18;46960:16;:36::i;:::-;47009:18;47030:44;47056:17;47030:21;:25;;:44;;;;:::i;:::-;47009:65;;47085:23;47111:57;47150:17;47111:34;47126:18;;47111:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;47085:83;;47179:17;47212:15;47199:10;:28;;;;:::i;:::-;47179:48;;47261:1;47240:18;:22;;;;47288:1;47273:12;:16;;;;47324:9;;;;;;;;;;;47316:23;;47347:9;47316:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47302:59;;;;;47396:15;;;;;;;;;;;47388:29;;47439:21;47388:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47374:101;;;;;46448:1035;;;;;;;;46420:1063;:::o;23998:98::-;24056:7;24087:1;24083;:5;;;;:::i;:::-;24076:12;;23998:98;;;;:::o;24397:::-;24455:7;24486:1;24482;:5;;;;:::i;:::-;24475:12;;24397:98;;;;:::o;19365:125::-;;;;:::o;20094:124::-;;;;:::o;45823:589::-;45949:21;45987:1;45973:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45949:40;;46018:4;46000;46005:1;46000:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46044:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46034:4;46039:1;46034:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;46079:62;46096:4;46111:15;46129:11;46079:8;:62::i;:::-;46180:15;:66;;;46261:11;46287:1;46331:4;46358;46378:15;46180:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45878:534;45823:589;:::o;23641:98::-;23699:7;23730:1;23726;:5;;;;:::i;:::-;23719:12;;23641:98;;;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:99::-;1222:6;1256:5;1250:12;1240:22;;1170:99;;;:::o;1275:169::-;1359:11;1393:6;1388:3;1381:19;1433:4;1428:3;1424:14;1409:29;;1275:169;;;;:::o;1450:246::-;1531:1;1541:113;1555:6;1552:1;1549:13;1541:113;;;1640:1;1635:3;1631:11;1625:18;1621:1;1616:3;1612:11;1605:39;1577:2;1574:1;1570:10;1565:15;;1541:113;;;1688:1;1679:6;1674:3;1670:16;1663:27;1512:184;1450:246;;;:::o;1702:102::-;1743:6;1794:2;1790:7;1785:2;1778:5;1774:14;1770:28;1760:38;;1702:102;;;:::o;1810:377::-;1898:3;1926:39;1959:5;1926:39;:::i;:::-;1981:71;2045:6;2040:3;1981:71;:::i;:::-;1974:78;;2061:65;2119:6;2114:3;2107:4;2100:5;2096:16;2061:65;:::i;:::-;2151:29;2173:6;2151:29;:::i;:::-;2146:3;2142:39;2135:46;;1902:285;1810:377;;;;:::o;2193:313::-;2306:4;2344:2;2333:9;2329:18;2321:26;;2393:9;2387:4;2383:20;2379:1;2368:9;2364:17;2357:47;2421:78;2494:4;2485:6;2421:78;:::i;:::-;2413:86;;2193:313;;;;:::o;2512:126::-;2549:7;2589:42;2582:5;2578:54;2567:65;;2512:126;;;:::o;2644:96::-;2681:7;2710:24;2728:5;2710:24;:::i;:::-;2699:35;;2644:96;;;:::o;2746:122::-;2819:24;2837:5;2819:24;:::i;:::-;2812:5;2809:35;2799:63;;2858:1;2855;2848:12;2799:63;2746:122;:::o;2874:139::-;2920:5;2958:6;2945:20;2936:29;;2974:33;3001:5;2974:33;:::i;:::-;2874:139;;;;:::o;3019:474::-;3087:6;3095;3144:2;3132:9;3123:7;3119:23;3115:32;3112:119;;;3150:79;;:::i;:::-;3112:119;3270:1;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3241:117;3397:2;3423:53;3468:7;3459:6;3448:9;3444:22;3423:53;:::i;:::-;3413:63;;3368:118;3019:474;;;;;:::o;3499:90::-;3533:7;3576:5;3569:13;3562:21;3551:32;;3499:90;;;:::o;3595:109::-;3676:21;3691:5;3676:21;:::i;:::-;3671:3;3664:34;3595:109;;:::o;3710:210::-;3797:4;3835:2;3824:9;3820:18;3812:26;;3848:65;3910:1;3899:9;3895:17;3886:6;3848:65;:::i;:::-;3710:210;;;;:::o;3926:329::-;3985:6;4034:2;4022:9;4013:7;4009:23;4005:32;4002:119;;;4040:79;;:::i;:::-;4002:119;4160:1;4185:53;4230:7;4221:6;4210:9;4206:22;4185:53;:::i;:::-;4175:63;;4131:117;3926:329;;;;:::o;4261:60::-;4289:3;4310:5;4303:12;;4261:60;;;:::o;4327:142::-;4377:9;4410:53;4428:34;4437:24;4455:5;4437:24;:::i;:::-;4428:34;:::i;:::-;4410:53;:::i;:::-;4397:66;;4327:142;;;:::o;4475:126::-;4525:9;4558:37;4589:5;4558:37;:::i;:::-;4545:50;;4475:126;;;:::o;4607:153::-;4684:9;4717:37;4748:5;4717:37;:::i;:::-;4704:50;;4607:153;;;:::o;4766:185::-;4880:64;4938:5;4880:64;:::i;:::-;4875:3;4868:77;4766:185;;:::o;4957:276::-;5077:4;5115:2;5104:9;5100:18;5092:26;;5128:98;5223:1;5212:9;5208:17;5199:6;5128:98;:::i;:::-;4957:276;;;;:::o;5239:118::-;5326:24;5344:5;5326:24;:::i;:::-;5321:3;5314:37;5239:118;;:::o;5363:222::-;5456:4;5494:2;5483:9;5479:18;5471:26;;5507:71;5575:1;5564:9;5560:17;5551:6;5507:71;:::i;:::-;5363:222;;;;:::o;5591:329::-;5650:6;5699:2;5687:9;5678:7;5674:23;5670:32;5667:119;;;5705:79;;:::i;:::-;5667:119;5825:1;5850:53;5895:7;5886:6;5875:9;5871:22;5850:53;:::i;:::-;5840:63;;5796:117;5591:329;;;;:::o;5926:619::-;6003:6;6011;6019;6068:2;6056:9;6047:7;6043:23;6039:32;6036:119;;;6074:79;;:::i;:::-;6036:119;6194:1;6219:53;6264:7;6255:6;6244:9;6240:22;6219:53;:::i;:::-;6209:63;;6165:117;6321:2;6347:53;6392:7;6383:6;6372:9;6368:22;6347:53;:::i;:::-;6337:63;;6292:118;6449:2;6475:53;6520:7;6511:6;6500:9;6496:22;6475:53;:::i;:::-;6465:63;;6420:118;5926:619;;;;;:::o;6551:118::-;6638:24;6656:5;6638:24;:::i;:::-;6633:3;6626:37;6551:118;;:::o;6675:222::-;6768:4;6806:2;6795:9;6791:18;6783:26;;6819:71;6887:1;6876:9;6872:17;6863:6;6819:71;:::i;:::-;6675:222;;;;:::o;6903:86::-;6938:7;6978:4;6971:5;6967:16;6956:27;;6903:86;;;:::o;6995:112::-;7078:22;7094:5;7078:22;:::i;:::-;7073:3;7066:35;6995:112;;:::o;7113:214::-;7202:4;7240:2;7229:9;7225:18;7217:26;;7253:67;7317:1;7306:9;7302:17;7293:6;7253:67;:::i;:::-;7113:214;;;;:::o;7333:116::-;7403:21;7418:5;7403:21;:::i;:::-;7396:5;7393:32;7383:60;;7439:1;7436;7429:12;7383:60;7333:116;:::o;7455:133::-;7498:5;7536:6;7523:20;7514:29;;7552:30;7576:5;7552:30;:::i;:::-;7455:133;;;;:::o;7594:468::-;7659:6;7667;7716:2;7704:9;7695:7;7691:23;7687:32;7684:119;;;7722:79;;:::i;:::-;7684:119;7842:1;7867:53;7912:7;7903:6;7892:9;7888:22;7867:53;:::i;:::-;7857:63;;7813:117;7969:2;7995:50;8037:7;8028:6;8017:9;8013:22;7995:50;:::i;:::-;7985:60;;7940:115;7594:468;;;;;:::o;8068:323::-;8124:6;8173:2;8161:9;8152:7;8148:23;8144:32;8141:119;;;8179:79;;:::i;:::-;8141:119;8299:1;8324:50;8366:7;8357:6;8346:9;8342:22;8324:50;:::i;:::-;8314:60;;8270:114;8068:323;;;;:::o;8397:474::-;8465:6;8473;8522:2;8510:9;8501:7;8497:23;8493:32;8490:119;;;8528:79;;:::i;:::-;8490:119;8648:1;8673:53;8718:7;8709:6;8698:9;8694:22;8673:53;:::i;:::-;8663:63;;8619:117;8775:2;8801:53;8846:7;8837:6;8826:9;8822:22;8801:53;:::i;:::-;8791:63;;8746:118;8397:474;;;;;:::o;8877:182::-;9017:34;9013:1;9005:6;9001:14;8994:58;8877:182;:::o;9065:366::-;9207:3;9228:67;9292:2;9287:3;9228:67;:::i;:::-;9221:74;;9304:93;9393:3;9304:93;:::i;:::-;9422:2;9417:3;9413:12;9406:19;;9065:366;;;:::o;9437:419::-;9603:4;9641:2;9630:9;9626:18;9618:26;;9690:9;9684:4;9680:20;9676:1;9665:9;9661:17;9654:47;9718:131;9844:4;9718:131;:::i;:::-;9710:139;;9437:419;;;:::o;9862:180::-;9910:77;9907:1;9900:88;10007:4;10004:1;9997:15;10031:4;10028:1;10021:15;10048:191;10088:3;10107:20;10125:1;10107:20;:::i;:::-;10102:25;;10141:20;10159:1;10141:20;:::i;:::-;10136:25;;10184:1;10181;10177:9;10170:16;;10205:3;10202:1;10199:10;10196:36;;;10212:18;;:::i;:::-;10196:36;10048:191;;;;:::o;10245:179::-;10385:31;10381:1;10373:6;10369:14;10362:55;10245:179;:::o;10430:366::-;10572:3;10593:67;10657:2;10652:3;10593:67;:::i;:::-;10586:74;;10669:93;10758:3;10669:93;:::i;:::-;10787:2;10782:3;10778:12;10771:19;;10430:366;;;:::o;10802:419::-;10968:4;11006:2;10995:9;10991:18;10983:26;;11055:9;11049:4;11045:20;11041:1;11030:9;11026:17;11019:47;11083:131;11209:4;11083:131;:::i;:::-;11075:139;;10802:419;;;:::o;11227:180::-;11275:77;11272:1;11265:88;11372:4;11369:1;11362:15;11396:4;11393:1;11386:15;11413:320;11457:6;11494:1;11488:4;11484:12;11474:22;;11541:1;11535:4;11531:12;11562:18;11552:81;;11618:4;11610:6;11606:17;11596:27;;11552:81;11680:2;11672:6;11669:14;11649:18;11646:38;11643:84;;11699:18;;:::i;:::-;11643:84;11464:269;11413:320;;;:::o;11739:410::-;11779:7;11802:20;11820:1;11802:20;:::i;:::-;11797:25;;11836:20;11854:1;11836:20;:::i;:::-;11831:25;;11891:1;11888;11884:9;11913:30;11931:11;11913:30;:::i;:::-;11902:41;;12092:1;12083:7;12079:15;12076:1;12073:22;12053:1;12046:9;12026:83;12003:139;;12122:18;;:::i;:::-;12003:139;11787:362;11739:410;;;;:::o;12155:180::-;12203:77;12200:1;12193:88;12300:4;12297:1;12290:15;12324:4;12321:1;12314:15;12341:185;12381:1;12398:20;12416:1;12398:20;:::i;:::-;12393:25;;12432:20;12450:1;12432:20;:::i;:::-;12427:25;;12471:1;12461:35;;12476:18;;:::i;:::-;12461:35;12518:1;12515;12511:9;12506:14;;12341:185;;;;:::o;12532:234::-;12672:34;12668:1;12660:6;12656:14;12649:58;12741:17;12736:2;12728:6;12724:15;12717:42;12532:234;:::o;12772:366::-;12914:3;12935:67;12999:2;12994:3;12935:67;:::i;:::-;12928:74;;13011:93;13100:3;13011:93;:::i;:::-;13129:2;13124:3;13120:12;13113:19;;12772:366;;;:::o;13144:419::-;13310:4;13348:2;13337:9;13333:18;13325:26;;13397:9;13391:4;13387:20;13383:1;13372:9;13368:17;13361:47;13425:131;13551:4;13425:131;:::i;:::-;13417:139;;13144:419;;;:::o;13569:227::-;13709:34;13705:1;13697:6;13693:14;13686:58;13778:10;13773:2;13765:6;13761:15;13754:35;13569:227;:::o;13802:366::-;13944:3;13965:67;14029:2;14024:3;13965:67;:::i;:::-;13958:74;;14041:93;14130:3;14041:93;:::i;:::-;14159:2;14154:3;14150:12;14143:19;;13802:366;;;:::o;14174:419::-;14340:4;14378:2;14367:9;14363:18;14355:26;;14427:9;14421:4;14417:20;14413:1;14402:9;14398:17;14391:47;14455:131;14581:4;14455:131;:::i;:::-;14447:139;;14174:419;;;:::o;14599:244::-;14739:34;14735:1;14727:6;14723:14;14716:58;14808:27;14803:2;14795:6;14791:15;14784:52;14599:244;:::o;14849:366::-;14991:3;15012:67;15076:2;15071:3;15012:67;:::i;:::-;15005:74;;15088:93;15177:3;15088:93;:::i;:::-;15206:2;15201:3;15197:12;15190:19;;14849:366;;;:::o;15221:419::-;15387:4;15425:2;15414:9;15410:18;15402:26;;15474:9;15468:4;15464:20;15460:1;15449:9;15445:17;15438:47;15502:131;15628:4;15502:131;:::i;:::-;15494:139;;15221:419;;;:::o;15646:224::-;15786:34;15782:1;15774:6;15770:14;15763:58;15855:7;15850:2;15842:6;15838:15;15831:32;15646:224;:::o;15876:366::-;16018:3;16039:67;16103:2;16098:3;16039:67;:::i;:::-;16032:74;;16115:93;16204:3;16115:93;:::i;:::-;16233:2;16228:3;16224:12;16217:19;;15876:366;;;:::o;16248:419::-;16414:4;16452:2;16441:9;16437:18;16429:26;;16501:9;16495:4;16491:20;16487:1;16476:9;16472:17;16465:47;16529:131;16655:4;16529:131;:::i;:::-;16521:139;;16248:419;;;:::o;16673:223::-;16813:34;16809:1;16801:6;16797:14;16790:58;16882:6;16877:2;16869:6;16865:15;16858:31;16673:223;:::o;16902:366::-;17044:3;17065:67;17129:2;17124:3;17065:67;:::i;:::-;17058:74;;17141:93;17230:3;17141:93;:::i;:::-;17259:2;17254:3;17250:12;17243:19;;16902:366;;;:::o;17274:419::-;17440:4;17478:2;17467:9;17463:18;17455:26;;17527:9;17521:4;17517:20;17513:1;17502:9;17498:17;17491:47;17555:131;17681:4;17555:131;:::i;:::-;17547:139;;17274:419;;;:::o;17699:240::-;17839:34;17835:1;17827:6;17823:14;17816:58;17908:23;17903:2;17895:6;17891:15;17884:48;17699:240;:::o;17945:366::-;18087:3;18108:67;18172:2;18167:3;18108:67;:::i;:::-;18101:74;;18184:93;18273:3;18184:93;:::i;:::-;18302:2;18297:3;18293:12;18286:19;;17945:366;;;:::o;18317:419::-;18483:4;18521:2;18510:9;18506:18;18498:26;;18570:9;18564:4;18560:20;18556:1;18545:9;18541:17;18534:47;18598:131;18724:4;18598:131;:::i;:::-;18590:139;;18317:419;;;:::o;18742:239::-;18882:34;18878:1;18870:6;18866:14;18859:58;18951:22;18946:2;18938:6;18934:15;18927:47;18742:239;:::o;18987:366::-;19129:3;19150:67;19214:2;19209:3;19150:67;:::i;:::-;19143:74;;19226:93;19315:3;19226:93;:::i;:::-;19344:2;19339:3;19335:12;19328:19;;18987:366;;;:::o;19359:419::-;19525:4;19563:2;19552:9;19548:18;19540:26;;19612:9;19606:4;19602:20;19598:1;19587:9;19583:17;19576:47;19640:131;19766:4;19640:131;:::i;:::-;19632:139;;19359:419;;;:::o;19784:225::-;19924:34;19920:1;19912:6;19908:14;19901:58;19993:8;19988:2;19980:6;19976:15;19969:33;19784:225;:::o;20015:366::-;20157:3;20178:67;20242:2;20237:3;20178:67;:::i;:::-;20171:74;;20254:93;20343:3;20254:93;:::i;:::-;20372:2;20367:3;20363:12;20356:19;;20015:366;;;:::o;20387:419::-;20553:4;20591:2;20580:9;20576:18;20568:26;;20640:9;20634:4;20630:20;20626:1;20615:9;20611:17;20604:47;20668:131;20794:4;20668:131;:::i;:::-;20660:139;;20387:419;;;:::o;20812:223::-;20952:34;20948:1;20940:6;20936:14;20929:58;21021:6;21016:2;21008:6;21004:15;20997:31;20812:223;:::o;21041:366::-;21183:3;21204:67;21268:2;21263:3;21204:67;:::i;:::-;21197:74;;21280:93;21369:3;21280:93;:::i;:::-;21398:2;21393:3;21389:12;21382:19;;21041:366;;;:::o;21413:419::-;21579:4;21617:2;21606:9;21602:18;21594:26;;21666:9;21660:4;21656:20;21652:1;21641:9;21637:17;21630:47;21694:131;21820:4;21694:131;:::i;:::-;21686:139;;21413:419;;;:::o;21838:221::-;21978:34;21974:1;21966:6;21962:14;21955:58;22047:4;22042:2;22034:6;22030:15;22023:29;21838:221;:::o;22065:366::-;22207:3;22228:67;22292:2;22287:3;22228:67;:::i;:::-;22221:74;;22304:93;22393:3;22304:93;:::i;:::-;22422:2;22417:3;22413:12;22406:19;;22065:366;;;:::o;22437:419::-;22603:4;22641:2;22630:9;22626:18;22618:26;;22690:9;22684:4;22680:20;22676:1;22665:9;22661:17;22654:47;22718:131;22844:4;22718:131;:::i;:::-;22710:139;;22437:419;;;:::o;22862:224::-;23002:34;22998:1;22990:6;22986:14;22979:58;23071:7;23066:2;23058:6;23054:15;23047:32;22862:224;:::o;23092:366::-;23234:3;23255:67;23319:2;23314:3;23255:67;:::i;:::-;23248:74;;23331:93;23420:3;23331:93;:::i;:::-;23449:2;23444:3;23440:12;23433:19;;23092:366;;;:::o;23464:419::-;23630:4;23668:2;23657:9;23653:18;23645:26;;23717:9;23711:4;23707:20;23703:1;23692:9;23688:17;23681:47;23745:131;23871:4;23745:131;:::i;:::-;23737:139;;23464:419;;;:::o;23889:222::-;24029:34;24025:1;24017:6;24013:14;24006:58;24098:5;24093:2;24085:6;24081:15;24074:30;23889:222;:::o;24117:366::-;24259:3;24280:67;24344:2;24339:3;24280:67;:::i;:::-;24273:74;;24356:93;24445:3;24356:93;:::i;:::-;24474:2;24469:3;24465:12;24458:19;;24117:366;;;:::o;24489:419::-;24655:4;24693:2;24682:9;24678:18;24670:26;;24742:9;24736:4;24732:20;24728:1;24717:9;24713:17;24706:47;24770:131;24896:4;24770:131;:::i;:::-;24762:139;;24489:419;;;:::o;24914:172::-;25054:24;25050:1;25042:6;25038:14;25031:48;24914:172;:::o;25092:366::-;25234:3;25255:67;25319:2;25314:3;25255:67;:::i;:::-;25248:74;;25331:93;25420:3;25331:93;:::i;:::-;25449:2;25444:3;25440:12;25433:19;;25092:366;;;:::o;25464:419::-;25630:4;25668:2;25657:9;25653:18;25645:26;;25717:9;25711:4;25707:20;25703:1;25692:9;25688:17;25681:47;25745:131;25871:4;25745:131;:::i;:::-;25737:139;;25464:419;;;:::o;25889:297::-;26029:34;26025:1;26017:6;26013:14;26006:58;26098:34;26093:2;26085:6;26081:15;26074:59;26167:11;26162:2;26154:6;26150:15;26143:36;25889:297;:::o;26192:366::-;26334:3;26355:67;26419:2;26414:3;26355:67;:::i;:::-;26348:74;;26431:93;26520:3;26431:93;:::i;:::-;26549:2;26544:3;26540:12;26533:19;;26192:366;;;:::o;26564:419::-;26730:4;26768:2;26757:9;26753:18;26745:26;;26817:9;26811:4;26807:20;26803:1;26792:9;26788:17;26781:47;26845:131;26971:4;26845:131;:::i;:::-;26837:139;;26564:419;;;:::o;26989:240::-;27129:34;27125:1;27117:6;27113:14;27106:58;27198:23;27193:2;27185:6;27181:15;27174:48;26989:240;:::o;27235:366::-;27377:3;27398:67;27462:2;27457:3;27398:67;:::i;:::-;27391:74;;27474:93;27563:3;27474:93;:::i;:::-;27592:2;27587:3;27583:12;27576:19;;27235:366;;;:::o;27607:419::-;27773:4;27811:2;27800:9;27796:18;27788:26;;27860:9;27854:4;27850:20;27846:1;27835:9;27831:17;27824:47;27888:131;28014:4;27888:131;:::i;:::-;27880:139;;27607:419;;;:::o;28032:169::-;28172:21;28168:1;28160:6;28156:14;28149:45;28032:169;:::o;28207:366::-;28349:3;28370:67;28434:2;28429:3;28370:67;:::i;:::-;28363:74;;28446:93;28535:3;28446:93;:::i;:::-;28564:2;28559:3;28555:12;28548:19;;28207:366;;;:::o;28579:419::-;28745:4;28783:2;28772:9;28768:18;28760:26;;28832:9;28826:4;28822:20;28818:1;28807:9;28803:17;28796:47;28860:131;28986:4;28860:131;:::i;:::-;28852:139;;28579:419;;;:::o;29004:241::-;29144:34;29140:1;29132:6;29128:14;29121:58;29213:24;29208:2;29200:6;29196:15;29189:49;29004:241;:::o;29251:366::-;29393:3;29414:67;29478:2;29473:3;29414:67;:::i;:::-;29407:74;;29490:93;29579:3;29490:93;:::i;:::-;29608:2;29603:3;29599:12;29592:19;;29251:366;;;:::o;29623:419::-;29789:4;29827:2;29816:9;29812:18;29804:26;;29876:9;29870:4;29866:20;29862:1;29851:9;29847:17;29840:47;29904:131;30030:4;29904:131;:::i;:::-;29896:139;;29623:419;;;:::o;30048:194::-;30088:4;30108:20;30126:1;30108:20;:::i;:::-;30103:25;;30142:20;30160:1;30142:20;:::i;:::-;30137:25;;30186:1;30183;30179:9;30171:17;;30210:1;30204:4;30201:11;30198:37;;;30215:18;;:::i;:::-;30198:37;30048:194;;;;:::o;30248:225::-;30388:34;30384:1;30376:6;30372:14;30365:58;30457:8;30452:2;30444:6;30440:15;30433:33;30248:225;:::o;30479:366::-;30621:3;30642:67;30706:2;30701:3;30642:67;:::i;:::-;30635:74;;30718:93;30807:3;30718:93;:::i;:::-;30836:2;30831:3;30827:12;30820:19;;30479:366;;;:::o;30851:419::-;31017:4;31055:2;31044:9;31040:18;31032:26;;31104:9;31098:4;31094:20;31090:1;31079:9;31075:17;31068:47;31132:131;31258:4;31132:131;:::i;:::-;31124:139;;30851:419;;;:::o;31276:147::-;31377:11;31414:3;31399:18;;31276:147;;;;:::o;31429:114::-;;:::o;31549:398::-;31708:3;31729:83;31810:1;31805:3;31729:83;:::i;:::-;31722:90;;31821:93;31910:3;31821:93;:::i;:::-;31939:1;31934:3;31930:11;31923:18;;31549:398;;;:::o;31953:379::-;32137:3;32159:147;32302:3;32159:147;:::i;:::-;32152:154;;32323:3;32316:10;;31953:379;;;:::o;32338:180::-;32386:77;32383:1;32376:88;32483:4;32480:1;32473:15;32507:4;32504:1;32497:15;32524:180;32572:77;32569:1;32562:88;32669:4;32666:1;32659:15;32693:4;32690:1;32683:15;32710:143;32767:5;32798:6;32792:13;32783:22;;32814:33;32841:5;32814:33;:::i;:::-;32710:143;;;;:::o;32859:351::-;32929:6;32978:2;32966:9;32957:7;32953:23;32949:32;32946:119;;;32984:79;;:::i;:::-;32946:119;33104:1;33129:64;33185:7;33176:6;33165:9;33161:22;33129:64;:::i;:::-;33119:74;;33075:128;32859:351;;;;:::o;33216:85::-;33261:7;33290:5;33279:16;;33216:85;;;:::o;33307:158::-;33365:9;33398:61;33416:42;33425:32;33451:5;33425:32;:::i;:::-;33416:42;:::i;:::-;33398:61;:::i;:::-;33385:74;;33307:158;;;:::o;33471:147::-;33566:45;33605:5;33566:45;:::i;:::-;33561:3;33554:58;33471:147;;:::o;33624:114::-;33691:6;33725:5;33719:12;33709:22;;33624:114;;;:::o;33744:184::-;33843:11;33877:6;33872:3;33865:19;33917:4;33912:3;33908:14;33893:29;;33744:184;;;;:::o;33934:132::-;34001:4;34024:3;34016:11;;34054:4;34049:3;34045:14;34037:22;;33934:132;;;:::o;34072:108::-;34149:24;34167:5;34149:24;:::i;:::-;34144:3;34137:37;34072:108;;:::o;34186:179::-;34255:10;34276:46;34318:3;34310:6;34276:46;:::i;:::-;34354:4;34349:3;34345:14;34331:28;;34186:179;;;;:::o;34371:113::-;34441:4;34473;34468:3;34464:14;34456:22;;34371:113;;;:::o;34520:732::-;34639:3;34668:54;34716:5;34668:54;:::i;:::-;34738:86;34817:6;34812:3;34738:86;:::i;:::-;34731:93;;34848:56;34898:5;34848:56;:::i;:::-;34927:7;34958:1;34943:284;34968:6;34965:1;34962:13;34943:284;;;35044:6;35038:13;35071:63;35130:3;35115:13;35071:63;:::i;:::-;35064:70;;35157:60;35210:6;35157:60;:::i;:::-;35147:70;;35003:224;34990:1;34987;34983:9;34978:14;;34943:284;;;34947:14;35243:3;35236:10;;34644:608;;;34520:732;;;;:::o;35258:831::-;35521:4;35559:3;35548:9;35544:19;35536:27;;35573:71;35641:1;35630:9;35626:17;35617:6;35573:71;:::i;:::-;35654:80;35730:2;35719:9;35715:18;35706:6;35654:80;:::i;:::-;35781:9;35775:4;35771:20;35766:2;35755:9;35751:18;35744:48;35809:108;35912:4;35903:6;35809:108;:::i;:::-;35801:116;;35927:72;35995:2;35984:9;35980:18;35971:6;35927:72;:::i;:::-;36009:73;36077:3;36066:9;36062:19;36053:6;36009:73;:::i;:::-;35258:831;;;;;;;;:::o
Swarm Source
ipfs://a065b54cf373ea4478e33d66be24674ab084905f19960290399812ea25b6c037
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.