hexsha stringlengths 40 40 | size int64 5 1.05M | ext stringclasses 98
values | lang stringclasses 21
values | max_stars_repo_path stringlengths 3 945 | max_stars_repo_name stringlengths 4 118 | max_stars_repo_head_hexsha stringlengths 40 78 | max_stars_repo_licenses listlengths 1 10 | max_stars_count int64 1 368k ⌀ | max_stars_repo_stars_event_min_datetime stringlengths 24 24 ⌀ | max_stars_repo_stars_event_max_datetime stringlengths 24 24 ⌀ | max_issues_repo_path stringlengths 3 945 | max_issues_repo_name stringlengths 4 118 | max_issues_repo_head_hexsha stringlengths 40 78 | max_issues_repo_licenses listlengths 1 10 | max_issues_count int64 1 134k ⌀ | max_issues_repo_issues_event_min_datetime stringlengths 24 24 ⌀ | max_issues_repo_issues_event_max_datetime stringlengths 24 24 ⌀ | max_forks_repo_path stringlengths 3 945 | max_forks_repo_name stringlengths 4 135 | max_forks_repo_head_hexsha stringlengths 40 78 | max_forks_repo_licenses listlengths 1 10 | max_forks_count int64 1 105k ⌀ | max_forks_repo_forks_event_min_datetime stringlengths 24 24 ⌀ | max_forks_repo_forks_event_max_datetime stringlengths 24 24 ⌀ | content stringlengths 5 1.05M | avg_line_length float64 1 1.03M | max_line_length int64 2 1.03M | alphanum_fraction float64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
9c5d953671c187c9d4d843392bdff8c26dd90020 | 144 | js | JavaScript | config/db.js | aeshaganatra/midterm | f13b30accc61314102fa4a5e650228e884fe3037 | [
"MIT"
] | null | null | null | config/db.js | aeshaganatra/midterm | f13b30accc61314102fa4a5e650228e884fe3037 | [
"MIT"
] | null | null | null | config/db.js | aeshaganatra/midterm | f13b30accc61314102fa4a5e650228e884fe3037 | [
"MIT"
] | null | null | null | module.exports = {
"AtlasDB": "mongodb+srv://root:1oIHb1kzseAT5kMZ@cluster0.2c5cq.mongodb.net/myFirstDatabase?retryWrites=true&w=majority"
} | 48 | 123 | 0.777778 |
d97c4eed83940ece811d2fc4ce1151eeaee5d519 | 2,730 | rs | Rust | src/columns/write_bytes.rs | sorairolake/procs | 01eae490b37037a9c059c2ded04ca0a64a5841a7 | [
"MIT"
] | null | null | null | src/columns/write_bytes.rs | sorairolake/procs | 01eae490b37037a9c059c2ded04ca0a64a5841a7 | [
"MIT"
] | 24 | 2022-01-25T20:30:33.000Z | 2022-03-31T20:40:52.000Z | src/columns/write_bytes.rs | doytsujin/procs | 65fb32c1e879727ba2561bbb1d95617945733517 | [
"MIT"
] | null | null | null | use crate::process::ProcessInfo;
use crate::util::bytify;
use crate::{column_default, Column};
use std::cmp;
use std::collections::HashMap;
pub struct WriteBytes {
header: String,
unit: String,
fmt_contents: HashMap<i32, String>,
raw_contents: HashMap<i32, u64>,
width: usize,
}
impl WriteBytes {
pub fn new(header: Option<String>) -> Self {
let header = header.unwrap_or_else(|| String::from("Write"));
let unit = String::from("[B/s]");
WriteBytes {
fmt_contents: HashMap::new(),
raw_contents: HashMap::new(),
width: 0,
header,
unit,
}
}
}
#[cfg(any(target_os = "linux", target_os = "android"))]
impl Column for WriteBytes {
fn add(&mut self, proc: &ProcessInfo) {
let (fmt_content, raw_content) = if proc.curr_io.is_some() && proc.prev_io.is_some() {
let interval_ms = proc.interval.as_secs() + u64::from(proc.interval.subsec_millis());
let io = (proc.curr_io.as_ref().unwrap().write_bytes
- proc.prev_io.as_ref().unwrap().write_bytes)
* 1000
/ interval_ms;
(bytify(io), io)
} else {
(String::from(""), 0)
};
self.fmt_contents.insert(proc.pid, fmt_content);
self.raw_contents.insert(proc.pid, raw_content);
}
column_default!(u64);
}
#[cfg_attr(tarpaulin, skip)]
#[cfg(target_os = "macos")]
impl Column for WriteBytes {
fn add(&mut self, proc: &ProcessInfo) {
let (fmt_content, raw_content) = if proc.curr_res.is_some() && proc.prev_res.is_some() {
let interval_ms = proc.interval.as_secs() + u64::from(proc.interval.subsec_millis());
let io = (proc.curr_res.as_ref().unwrap().ri_diskio_byteswritten
- proc.prev_res.as_ref().unwrap().ri_diskio_byteswritten)
* 1000
/ interval_ms;
(bytify(io), io)
} else {
(String::from(""), 0)
};
self.fmt_contents.insert(proc.pid, fmt_content);
self.raw_contents.insert(proc.pid, raw_content);
}
column_default!(u64);
}
#[cfg_attr(tarpaulin, skip)]
#[cfg(target_os = "windows")]
impl Column for WriteBytes {
fn add(&mut self, proc: &ProcessInfo) {
let interval_ms = proc.interval.as_secs() + u64::from(proc.interval.subsec_millis());
let io = (proc.disk_info.curr_write - proc.disk_info.prev_write) * 1000 / interval_ms;
let raw_content = io;
let fmt_content = bytify(raw_content);
self.fmt_contents.insert(proc.pid, fmt_content);
self.raw_contents.insert(proc.pid, raw_content);
}
column_default!(u64);
}
| 31.022727 | 97 | 0.595971 |
7fce45fb82afbd057f10d7053606a05de0d7902f | 5,494 | go | Go | galley/pkg/runtime/publish/strategy.go | pbohman/istio | 6bade8133aadc2b32382256fc5f60d30f99379f5 | [
"Apache-2.0"
] | 2 | 2021-01-15T09:23:29.000Z | 2021-12-04T13:35:18.000Z | galley/pkg/runtime/publish/strategy.go | pbohman/istio | 6bade8133aadc2b32382256fc5f60d30f99379f5 | [
"Apache-2.0"
] | 7 | 2020-04-08T00:11:35.000Z | 2021-09-21T01:49:26.000Z | galley/pkg/runtime/publish/strategy.go | pbohman/istio | 6bade8133aadc2b32382256fc5f60d30f99379f5 | [
"Apache-2.0"
] | 5 | 2018-01-16T00:38:11.000Z | 2019-07-10T19:04:40.000Z | // Copyright 2018 Istio Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package publish
import (
"context"
"sync"
"time"
"istio.io/istio/galley/pkg/runtime/log"
"istio.io/istio/galley/pkg/runtime/monitoring"
"istio.io/istio/galley/pkg/util"
)
const (
// Maximum wait time before deciding to publish the events.
defaultMaxWaitDuration = time.Second
// Minimum time distance between two events for deciding on the quiesce point. If the time delay
// between two events is larger than this, then we can deduce that we hit a quiesce point.
defaultQuiesceDuration = time.Second
// The frequency for firing the timer events.
defaultTimerFrequency = 500 * time.Millisecond
)
// Strategy is a heuristic model for deciding when to publish snapshots. It tries to detect
// quiesce points for events with a total bounded wait time.
type Strategy struct {
maxWaitDuration time.Duration
quiesceDuration time.Duration
timerFrequency time.Duration
// stateLock protects the internal state of the publishing strategy.
stateLock sync.Mutex
// Publish channel is used to trigger the publication of snapshots.
Publish chan struct{}
// the time of first event that is received.
firstEvent time.Time
// the time of the latest event that is received.
latestEvent time.Time
// timer that is used for periodically checking for the quiesce point.
timer *time.Timer
// nowFn is a testing hook for overriding time.Now()
nowFn func() time.Time
// startTimerFn is a testing hook for overriding the starting of the timer.
startTimerFn func()
// worker manages the lifecycle of the timer worker thread.
worker *util.Worker
// resetChan is used to issue a reset to the timer.
resetChan chan struct{}
// pendingChanges indicates that there are unpublished changes.
pendingChanges bool
}
// NewStrategyWithDefaults creates a new strategy with default values.
func NewStrategyWithDefaults() *Strategy {
return NewStrategy(defaultMaxWaitDuration, defaultQuiesceDuration, defaultTimerFrequency)
}
// NewStrategy creates a new strategy with the given values.
func NewStrategy(
maxWaitDuration time.Duration,
quiesceDuration time.Duration,
timerFrequency time.Duration) *Strategy {
s := &Strategy{
maxWaitDuration: maxWaitDuration,
quiesceDuration: quiesceDuration,
timerFrequency: timerFrequency,
Publish: make(chan struct{}, 1),
nowFn: time.Now,
worker: util.NewWorker("runtime publishing strategy", log.Scope),
resetChan: make(chan struct{}, 1),
}
s.startTimerFn = s.startTimer
return s
}
func (s *Strategy) OnChange() {
s.stateLock.Lock()
monitoring.RecordStrategyOnChange()
// Capture the latest event time.
s.latestEvent = s.nowFn()
if !s.pendingChanges {
// This is the first event after a quiesce, start a timer to periodically check event
// frequency and fire the publish event.
s.pendingChanges = true
s.firstEvent = s.latestEvent
// Start or reset the timer.
if s.timer != nil {
// Timer has already been started, just reset it now.
// NOTE: Unlocking the state lock first, to avoid a potential race with
// the timer thread waiting to enter onTimer.
s.stateLock.Unlock()
s.resetChan <- struct{}{}
return
}
s.startTimerFn()
}
s.stateLock.Unlock()
}
// startTimer performs a start or reset on the timer. Called with lock on stateLock.
func (s *Strategy) startTimer() {
s.timer = time.NewTimer(s.timerFrequency)
eventLoop := func(ctx context.Context) {
for {
select {
case <-s.timer.C:
if !s.onTimer() {
// We did not publish. Reset the timer and try again later.
s.timer.Reset(s.timerFrequency)
}
case <-s.resetChan:
s.timer.Reset(s.timerFrequency)
case <-ctx.Done():
// User requested to stop the timer.
s.timer.Stop()
return
}
}
}
// Start a go routine to listen to the timer.
_ = s.worker.Start(nil, eventLoop)
}
func (s *Strategy) onTimer() bool {
s.stateLock.Lock()
defer s.stateLock.Unlock()
now := s.nowFn()
// If there has been a long time since the first event, or if there was a quiesce since last event,
// then fire publish to create new snapshots.
// Otherwise, reset the timer and get a call again.
maxTimeReached := now.After(s.firstEvent.Add(s.maxWaitDuration))
quiesceTimeReached := now.After(s.latestEvent.Add(s.quiesceDuration))
published := false
if maxTimeReached || quiesceTimeReached {
// Try to send to the channel
select {
case s.Publish <- struct{}{}:
s.pendingChanges = false
published = true
default:
// If the calling code is not draining the publish channel, then we can potentially cause
// a deadlock here. Avoid the deadlock by going through the timer loop again.
log.Scope.Warnf("Unable to publish to the channel, resetting the timer again to avoid deadlock")
}
}
monitoring.RecordOnTimer(maxTimeReached, quiesceTimeReached, !published)
return published
}
func (s *Strategy) Close() {
s.worker.Stop()
}
| 28.915789 | 100 | 0.729341 |
3e45c38d3140ca10b80324412d1e37d4634bca24 | 25,517 | h | C | VecGeom/base/BitSet.h | cxwx/VecGeom | c86c00bd7d4db08f4fc20a625020da329784aaac | [
"ECL-2.0",
"Apache-2.0"
] | 1 | 2020-06-27T18:43:36.000Z | 2020-06-27T18:43:36.000Z | VecGeom/base/BitSet.h | cxwx/VecGeom | c86c00bd7d4db08f4fc20a625020da329784aaac | [
"ECL-2.0",
"Apache-2.0"
] | null | null | null | VecGeom/base/BitSet.h | cxwx/VecGeom | c86c00bd7d4db08f4fc20a625020da329784aaac | [
"ECL-2.0",
"Apache-2.0"
] | null | null | null | /// \file VecCore/BitSet.h
/// \author Philippe Canal (pcanal@fnal.gov)
/// \author Exported from the original version in ROOT (root.cern.ch).
#ifndef VECGEOM_BITSET_H
#define VECGEOM_BITSET_H
// This file will eventually move in VecCore.
#include "VecGeom/base/Global.h"
#include "VariableSizeObj.h"
// For memset and memcpy
#include <string.h>
// For operator new with placement
#include <new>
//
// Fast bitset operations.
//
class TRootIOCtor;
// gcc 4.8.2's -Wnon-virtual-dtor is broken and turned on by -Weffc++, we
// need to disable it for SOA3D
#if __GNUC__ < 3 || (__GNUC__ == 4 && __GNUC_MINOR__ <= 8)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wnon-virtual-dtor"
#pragma GCC diagnostic ignored "-Weffc++"
#define GCC_DIAG_POP_NEEDED
#endif
namespace vecgeom {
/**
* @brief Fast operation on a set of bit, all information stored contiguously in memory.
* @details Resizing operations require explicit new creation and copy.
*
*/
class BitSet : protected VariableSizeObjectInterface<BitSet, unsigned char> {
public:
using Base_t = VariableSizeObjectInterface<BitSet, unsigned char>;
private:
friend Base_t;
using VariableData_t = VariableSizeObj<unsigned char>;
unsigned int fNbits; // Highest bit set + 1
VariableData_t fData;
// Required by VariableSizeObjectInterface
VECCORE_ATT_HOST_DEVICE
VariableData_t &GetVariableData() { return fData; }
// Required by VariableSizeObjectInterface
VECCORE_ATT_HOST_DEVICE
VariableData_t const &GetVariableData() const { return fData; }
static inline VECCORE_ATT_HOST_DEVICE size_t GetNbytes(size_t nbits) { return (((nbits ? nbits : 8) - 1) / 8) + 1; }
VECCORE_ATT_HOST_DEVICE
BitSet(const BitSet &other) : fNbits(other.fNbits), fData(other.fData)
{
// We assume that the memory allocated and use is large enough to
// hold the full values (i.e. Sizeof(other.fData.fN) )
}
VECCORE_ATT_HOST_DEVICE
BitSet(size_t new_size, const BitSet &other) : fNbits(other.fNbits), fData(new_size, other.fData)
{
// We assume that the memory allocated and use is large enough to
// hold the full values (i.e. Sizeof(new_size) )
// If new_size is smaller than the size of 'other' then the copy is truncated.
// if new_size is greater than the size of 'other' the value are zero initialized.
if (fNbits * 8 > new_size) {
fNbits = 8 * new_size;
}
if (new_size > other.fData.fN) {
memset(fData.GetValues() + other.fData.fN, 0, new_size - other.fData.fN);
}
}
VECCORE_ATT_HOST_DEVICE
BitSet(size_t nvalues, size_t nbits) : fNbits(nbits), fData(nvalues) { memset(fData.GetValues(), 0, GetNbytes()); }
void DoAndEqual(const BitSet &rhs)
{
// Execute (*this) &= rhs;
// Extra bits in rhs are ignored
// Missing bits in rhs are assumed to be zero.
size_t min = (GetNbytes() < rhs.GetNbytes()) ? GetNbytes() : rhs.GetNbytes();
for (size_t i = 0; i < min; ++i) {
fData[i] &= rhs.fData[i];
}
if (GetNbytes() > min) {
memset(&(fData[min]), 0, GetNbytes() - min);
}
}
void DoOrEqual(const BitSet &rhs)
{
// Execute (*this) &= rhs;
// Extra bits in rhs are ignored
// Missing bits in rhs are assumed to be zero.
size_t min = (GetNbytes() < rhs.GetNbytes()) ? GetNbytes() : rhs.GetNbytes();
for (size_t i = 0; i < min; ++i) {
fData[i] |= rhs.fData[i];
}
}
void DoXorEqual(const BitSet &rhs)
{
// Execute (*this) ^= rhs;
// Extra bits in rhs are ignored
// Missing bits in rhs are assumed to be zero.
size_t min = (GetNbytes() < rhs.GetNbytes()) ? GetNbytes() : rhs.GetNbytes();
for (size_t i = 0; i < min; ++i) {
fData[i] ^= rhs.fData[i];
}
}
void DoLeftShift(size_t shift)
{
// Execute the left shift operation.
if (shift == 0) return;
const size_t wordshift = shift / 8;
const size_t offset = shift % 8;
if (offset == 0) {
for (size_t n = GetNbytes() - 1; n >= wordshift; --n) {
fData[n] = fData[n - wordshift];
}
} else {
const size_t sub_offset = 8 - offset;
for (size_t n = GetNbytes() - 1; n > wordshift; --n) {
fData[n] = (fData[n - wordshift] << offset) | (fData[n - wordshift - 1] >> sub_offset);
}
fData[wordshift] = fData[0] << offset;
}
memset(fData.GetValues(), 0, wordshift);
}
void DoRightShift(size_t shift)
{
// Execute the left shift operation.
if (shift == 0) return;
const size_t wordshift = shift / 8;
const size_t offset = shift % 8;
const size_t limit = GetNbytes() - wordshift - 1;
if (offset == 0)
for (size_t n = 0; n <= limit; ++n)
fData[n] = fData[n + wordshift];
else {
const size_t sub_offset = 8 - offset;
for (size_t n = 0; n < limit; ++n)
fData[n] = (fData[n + wordshift] >> offset) | (fData[n + wordshift + 1] << sub_offset);
fData[limit] = fData[GetNbytes() - 1] >> offset;
}
memset(&(fData[limit + 1]), 0, GetNbytes() - limit - 1);
}
void DoFlip()
{
// Execute ~(*this)
for (size_t i = 0; i < GetNbytes(); ++i) {
fData[i] = ~fData[i];
}
// NOTE: out-of-bounds bit were also flipped!
}
public:
class reference {
friend class BitSet;
unsigned char &fBit; //! reference to the data storage
unsigned char fPos; //! position (0 through 7)
reference() : fBit(fPos), fPos(0)
{
// default constructor, default to all bits looking false.
// assignment are ignored.
}
public:
reference(unsigned char &bit, unsigned char pos) : fBit(bit), fPos(pos) {}
~reference() {}
// For b[i] = val;
reference &operator=(bool val)
{
if (val) {
fBit |= val << fPos;
} else {
fBit &= (0xFF ^ (1 << fPos));
}
return *this;
}
// For b[i] = b[__j];
reference &operator=(const reference &rhs)
{
*this = rhs.operator bool();
return *this;
}
// Flips the bit
bool operator~() const { return (fBit & (1 << fPos)) == 0; };
// For val = b[i];
operator bool() const { return (fBit & (1 << fPos)) != 0; };
};
// Enumerate the part of the private interface, we want to expose.
using Base_t::MakeCopy;
using Base_t::MakeCopyAt;
using Base_t::ReleaseInstance;
using Base_t::SizeOf;
// This replaces the dummy constructor to make sure that I/O can be
// performed while the user is only allowed to use the static maker
BitSet(TRootIOCtor *marker) : fNbits(0), fData(marker) {}
// Assignment allowed
BitSet &operator=(const BitSet &rhs)
{
// BitSet assignment operator
if (this != &rhs) {
fNbits = rhs.fNbits;
// Default operator= does memcpy.
// Potential trucation if this is smaller than rhs.
fData = rhs.fData;
}
return *this;
}
VECCORE_ATT_HOST_DEVICE
static size_t SizeOfInstance(size_t nbits) { return SizeOf(GetNbytes(nbits)); }
static BitSet *MakeInstance(size_t nbits)
{
size_t nvalues = GetNbytes(nbits);
return Base_t::MakeInstance(nvalues, nbits);
}
VECCORE_ATT_HOST_DEVICE
static BitSet *MakeInstanceAt(size_t nbits, void *addr)
{
size_t nvalues = GetNbytes(nbits);
return Base_t::MakeInstanceAt(nvalues, addr, nbits);
}
static BitSet *MakeCompactCopy(BitSet &other)
{
// Make a copy of a the variable size array and its container with
// a new_size of the content.
// If no compact was needed, return the address of the original
if (other.GetNbytes() <= 1) return &other;
size_t needed;
for (needed = other.GetNbytes() - 1; needed > 0 && other.fData[needed] == 0;) {
needed--;
};
needed++;
if (needed != other.GetNbytes()) {
return MakeCopy(needed, other);
} else {
return &other;
}
}
size_t SizeOf() const { return SizeOf(fData.fN); }
//----- bit manipulation
//----- (note the difference with TObject's bit manipulations)
VECCORE_ATT_HOST_DEVICE
void ResetAllBits(bool value = false)
{
// Reset all bits to 0 (false).
// if value=1 set all bits to 1
if (fData.GetValues()) memset(fData.GetValues(), value ? 1 : 0, GetNbytes());
}
VECCORE_ATT_HOST_DEVICE
void ResetBitNumber(size_t bitnumber) { SetBitNumber(bitnumber, false); }
VECCORE_ATT_HOST_DEVICE
bool SetBitNumber(size_t bitnumber, bool value = true)
{
// Set bit number 'bitnumber' to be value
if (bitnumber >= fNbits) {
size_t new_size = (bitnumber / 8) + 1;
if (new_size > GetNbytes()) {
// too far, can not set
return false;
}
fNbits = bitnumber + 1;
}
size_t loc = bitnumber / 8;
unsigned char bit = bitnumber % 8;
if (value)
fData[loc] |= (1 << bit);
else
fData[loc] &= (0xFF ^ (1 << bit));
return true;
}
VECCORE_ATT_HOST_DEVICE
bool TestBitNumber(size_t bitnumber) const
{
// Return the current value of the bit
if (bitnumber >= fNbits) return false;
size_t loc = bitnumber / 8;
unsigned char value = fData[loc];
unsigned char bit = bitnumber % 8;
bool result = (value & (1 << bit)) != 0;
return result;
// short: return 0 != (fAllBits[bitnumber/8] & (1<< (bitnumber%8)));
}
//----- Accessors and operator
BitSet::reference operator[](size_t bitnumber)
{
if (bitnumber >= fNbits) return reference();
size_t loc = bitnumber / 8;
unsigned char bit = bitnumber % 8;
return reference(fData[loc], bit);
}
bool operator[](size_t bitnumber) const { return TestBitNumber(bitnumber); }
BitSet &operator&=(const BitSet &rhs)
{
DoAndEqual(rhs);
return *this;
}
BitSet &operator|=(const BitSet &rhs)
{
DoOrEqual(rhs);
return *this;
}
BitSet &operator^=(const BitSet &rhs)
{
DoXorEqual(rhs);
return *this;
}
BitSet &operator<<=(size_t rhs)
{
DoLeftShift(rhs);
return *this;
}
BitSet &operator>>=(size_t rhs)
{
DoRightShift(rhs);
return *this;
}
// BitSet operator<<(size_t rhs) { return BitSet(*this)<<= rhs; }
// BitSet operator>>(size_t rhs) { return BitSet(*this)>>= rhs; }
// BitSet operator~() { BitSet res(*this); res.DoFlip(); return res; }
//----- Optimized setters
// Each of these will replace the contents of the receiver with the bitvector
// in the parameter array. The number of bits is changed to nbits. If nbits
// is smaller than fNbits, the receiver will NOT be compacted.
bool Set(size_t nbits, const char *array)
{
// Set all the bytes.
size_t nbytes = (nbits + 7) >> 3;
if (nbytes > GetNbytes()) return false;
fNbits = nbits;
memcpy(fData.GetValues(), array, nbytes);
return true;
}
bool Set(size_t nbits, const unsigned char *array) { return Set(nbits, (const char *)array); }
bool Set(size_t nbits, const unsigned short *array) { return Set(nbits, (const short *)array); }
bool Set(size_t nbits, const unsigned int *array) { return Set(nbits, (const int *)array); }
bool Set(size_t nbits, const unsigned long long *array) { return Set(nbits, (const long long *)array); }
#ifdef R__BYTESWAP /* means we are on little endian */
/*
If we are on a little endian machine, a bitvector represented using
any integer type is identical to a bitvector represented using bytes.
-- FP.
*/
bool Set(size_t nbits, const short *array) { return Set(nbits, (const char *)array); }
bool Set(size_t nbits, const int *array) { return Set(nbits, (const char *)array); }
bool Set(size_t nbits, const long long *array) { return Set(nbits, (const char *)array); }
#else
/*
If we are on a big endian machine, some swapping around is required.
*/
bool Set(size_t nbits, const short *array)
{
// make nbytes even so that the loop below is neat.
size_t nbytes = ((nbits + 15) >> 3) & ~1;
if (nbytes > GetNbytes()) return false;
fNbits = nbits;
const unsigned char *cArray = (const unsigned char *)array;
for (size_t i = 0; i < nbytes; i += 2) {
fData[i] = cArray[i + 1];
fData[i + 1] = cArray[i];
}
return true;
}
bool Set(size_t nbits, const int *array)
{
// make nbytes a multiple of 4 so that the loop below is neat.
size_t nbytes = ((nbits + 31) >> 3) & ~3;
if (nbytes > GetNbytes()) return false;
fNbits = nbits;
const unsigned char *cArray = (const unsigned char *)array;
for (size_t i = 0; i < nbytes; i += 4) {
fData[i] = cArray[i + 3];
fData[i + 1] = cArray[i + 2];
fData[i + 2] = cArray[i + 1];
fData[i + 3] = cArray[i];
}
return true;
}
bool Set(size_t nbits, const long long *array)
{
// make nbytes a multiple of 8 so that the loop below is neat.
size_t nbytes = ((nbits + 63) >> 3) & ~7;
if (nbytes > GetNbytes()) return false;
fNbits = nbits;
const unsigned char *cArray = (const unsigned char *)array;
for (size_t i = 0; i < nbytes; i += 8) {
fData[i] = cArray[i + 7];
fData[i + 1] = cArray[i + 6];
fData[i + 2] = cArray[i + 5];
fData[i + 3] = cArray[i + 4];
fData[i + 4] = cArray[i + 3];
fData[i + 5] = cArray[i + 2];
fData[i + 6] = cArray[i + 1];
fData[i + 7] = cArray[i];
}
return true;
}
#endif
//----- Optimized getters
// Each of these will replace the contents of the parameter array with the
// bits in the receiver. The parameter array must be large enough to hold
// all of the bits in the receiver.
// Note on semantics: any bits in the parameter array that go beyond the
// number of the bits in the receiver will have an unspecified value. For
// example, if you call Get(Int*) with an array of one integer and the BitSet
// object has less than 32 bits, then the remaining bits in the integer will
// have an unspecified value.
void Get(char *array) const
{
// Copy all the byes.
memcpy(array, fData.GetValues(), (fNbits + 7) >> 3);
}
void Get(unsigned char *array) const { Get((char *)array); }
void Get(unsigned short *array) const { Get((short *)array); }
void Get(unsigned int *array) const { Get((int *)array); }
void Get(unsigned long long *array) const { Get((long long *)array); }
#ifdef R__BYTESWAP /* means we are on little endian */
/*
If we are on a little endian machine, a bitvector represented using
any integer type is identical to a bitvector represented using bytes.
-- FP.
*/
void Get(short *array) const { Get((char *)array); }
void Get(int *array) const { Get((char *)array); }
void Get(long long *array) const { Get((char *)array); }
#else
void Get(short *array) const
{
// Get all the bytes.
size_t nBytes = (fNbits + 7) >> 3;
size_t nSafeBytes = nBytes & ~1;
unsigned char *cArray = (unsigned char *)array;
for (size_t i = 0; i < nSafeBytes; i += 2) {
cArray[i] = fData[i + 1];
cArray[i + 1] = fData[i];
}
if (nBytes > nSafeBytes) {
cArray[nSafeBytes + 1] = fData[nSafeBytes];
}
}
void Get(int *array) const
{
// Get all the bytes.
size_t nBytes = (fNbits + 7) >> 3;
size_t nSafeBytes = nBytes & ~3;
unsigned char *cArray = (unsigned char *)array;
size_t i;
for (i = 0; i < nSafeBytes; i += 4) {
cArray[i] = fData[i + 3];
cArray[i + 1] = fData[i + 2];
cArray[i + 2] = fData[i + 1];
cArray[i + 3] = fData[i];
}
for (i = 0; i < nBytes - nSafeBytes; ++i) {
cArray[nSafeBytes + (3 - i)] = fData[nSafeBytes + i];
}
}
void Get(long long *array) const
{
// Get all the bytes.
size_t nBytes = (fNbits + 7) >> 3;
size_t nSafeBytes = nBytes & ~7;
unsigned char *cArray = (unsigned char *)array;
size_t i;
for (i = 0; i < nSafeBytes; i += 8) {
cArray[i] = fData[i + 7];
cArray[i + 1] = fData[i + 6];
cArray[i + 2] = fData[i + 5];
cArray[i + 3] = fData[i + 4];
cArray[i + 4] = fData[i + 3];
cArray[i + 5] = fData[i + 2];
cArray[i + 6] = fData[i + 1];
cArray[i + 7] = fData[i];
}
for (i = 0; i < nBytes - nSafeBytes; ++i) {
cArray[nSafeBytes + (7 - i)] = fData[nSafeBytes + i];
}
}
#endif
//----- Utilities
void Clear()
{
fNbits = 0;
memset(&(fData[0]), 0, GetNbytes());
}
size_t CountBits(size_t startBit = 0) const
{
// Return number of bits set to 1 starting at bit startBit
// Keep array initiation hand-formatted
// clang-format off
constexpr unsigned char nbits[256] = {
0,1,1,2,1,2,2,3,1,2,2,3,2,3,3,4,
1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,
1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,
2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,
1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,
2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,
2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,
3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,
1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,
2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,
2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,
3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,
2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,
3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,
3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,
4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8};
// clang-format on
size_t i, count = 0;
if (startBit == 0) {
for (i = 0; i < GetNbytes(); i++) {
count += nbits[fData[i]];
}
return count;
}
if (startBit >= fNbits) return count;
size_t startByte = startBit / 8;
size_t ibit = startBit % 8;
if (ibit) {
for (i = ibit; i < 8; i++) {
if (fData[startByte] & (1 << ibit)) count++;
}
startByte++;
}
for (i = startByte; i < GetNbytes(); i++) {
count += nbits[fData[i]];
}
return count;
}
VECCORE_ATT_HOST_DEVICE
size_t FirstNullBit(size_t startBit = 0) const
{
// Return position of first null bit (starting from position 0 and up)
// Keep array initiation hand-formatted
// clang-format off
constexpr unsigned char bitsPattern[256] = {
0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,
0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,
0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,
0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,6,
0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,
0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,
0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,
0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,7,
0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,
0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,
0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,
0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,6,
0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,
0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,5,
0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,4,
0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,8};
// clang-format on
size_t i;
if (startBit == 0) {
for (i = 0; i < GetNbytes(); i++) {
if (fData[i] != 255) return 8 * i + bitsPattern[fData[i]];
}
return fNbits;
}
if (startBit >= fNbits) return fNbits;
size_t startByte = startBit / 8;
size_t ibit = startBit % 8;
if (ibit) {
for (i = ibit; i < 8; i++) {
if ((fData[startByte] & (1 << i)) == 0) return 8 * startByte + i;
}
startByte++;
}
for (i = startByte; i < GetNbytes(); i++) {
if (fData[i] != 255) return 8 * i + bitsPattern[fData[i]];
}
return fNbits;
}
VECCORE_ATT_HOST_DEVICE
size_t FirstSetBit(size_t startBit = 0) const
{
// Return position of first non null bit (starting from position 0 and up)
// Keep array initiation hand-formatted
// clang-format off
constexpr unsigned char bitsPattern[256] = {
8,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
6,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
7,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
6,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
5,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0,
4,0,1,0,2,0,1,0,3,0,1,0,2,0,1,0};
// clang-format on
size_t i;
if (startBit == 0) {
for (i = 0; i < GetNbytes(); i++) {
if (fData[i] != 0) return 8 * i + bitsPattern[fData[i]];
}
return fNbits;
}
if (startBit >= fNbits) return fNbits;
size_t startByte = startBit / 8;
size_t ibit = startBit % 8;
if (ibit) {
for (i = ibit; i < 8; i++) {
if ((fData[startByte] & (1 << i)) != 0) return 8 * startByte + i;
}
startByte++;
}
for (i = startByte; i < GetNbytes(); i++) {
if (fData[i] != 0) return 8 * i + bitsPattern[fData[i]];
}
return fNbits;
}
size_t LastNullBit() const { return LastNullBit(fNbits - 1); }
size_t LastNullBit(size_t startBit) const
{
// Return position of first null bit (starting from position startBit and down)
// Keep array initiation hand-formatted
// clang-format off
constexpr unsigned char bitsPattern[256] = {
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,
3,3,3,3,3,3,3,3,2,2,2,2,1,1,0,8};
// clang-format on
size_t i;
if (startBit >= fNbits) startBit = fNbits - 1;
size_t startByte = startBit / 8;
size_t ibit = startBit % 8;
if (ibit < 7) {
for (i = ibit + 1; i > 0; i--) {
if ((fData[startByte] & (1 << (i - 1))) == 0) return 8 * startByte + i - 1;
}
startByte--;
}
for (i = startByte + 1; i > 0; i--) {
if (fData[i - 1] != 255) return 8 * (i - 1) + bitsPattern[fData[i - 1]];
}
return fNbits;
}
VECCORE_ATT_HOST_DEVICE
size_t LastSetBit() const { return LastSetBit(fNbits - 1); }
VECCORE_ATT_HOST_DEVICE
size_t LastSetBit(size_t startBit) const
{
// Return position of first non null bit (starting from position fNbits and down)
// Keep array initiation hand-formatted
// clang-format off
constexpr unsigned char bitsPattern[256] = {
8,0,1,1,2,2,2,2,3,3,3,3,3,3,3,3,
4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,
5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7};
// clang-format on
if (startBit >= fNbits) startBit = fNbits - 1;
size_t startByte = startBit / 8;
size_t ibit = startBit % 8;
size_t i;
if (ibit < 7) {
for (i = ibit + 1; i > 0; i--) {
if ((fData[startByte] & (1 << (i - 1))) != 0) return 8 * startByte + i - 1;
}
startByte--;
}
for (i = startByte + 1; i > 0; i--) {
if (fData[i - 1] != 0) return 8 * (i - 1) + bitsPattern[fData[i - 1]];
}
return fNbits;
}
VECCORE_ATT_HOST_DEVICE
size_t GetNbits() const { return fNbits; }
VECCORE_ATT_HOST_DEVICE
size_t GetNbytes() const { return fData.fN; }
bool operator==(const BitSet &other) const
{
// Compare object.
if (fNbits == other.fNbits) {
return !memcmp(fData.GetValues(), other.fData.GetValues(), (fNbits + 7) >> 3);
} else if (fNbits < other.fNbits) {
return !memcmp(fData.GetValues(), other.fData.GetValues(), (fNbits + 7) >> 3) &&
other.FirstSetBit(fNbits) == other.fNbits;
} else {
return !memcmp(fData.GetValues(), other.fData.GetValues(), (other.fNbits + 7) >> 3) &&
FirstSetBit(other.fNbits) == fNbits;
}
}
bool operator!=(const BitSet &other) const { return !(*this == other); }
};
inline bool operator&(const BitSet::reference &lhs, const BitSet::reference &rhs)
{
return (bool)lhs & rhs;
}
inline bool operator|(const BitSet::reference &lhs, const BitSet::reference &rhs)
{
return (bool)lhs | rhs;
}
inline bool operator^(const BitSet::reference &lhs, const BitSet::reference &rhs)
{
return (bool)lhs ^ rhs;
}
} // namespace vecgeom
#if defined(GCC_DIAG_POP_NEEDED)
#pragma GCC diagnostic pop
#undef GCC_DIAG_POP_NEEDED
#endif
#endif // VECGEOM_BITSET_H
| 29.602088 | 118 | 0.566172 |
f1083f0967e181d35d9971121b31902adde87d74 | 1,764 | rb | Ruby | spec/locale_spec.rb | k3rni/ffi-locale | 374348ad00fdffd45aef484b1349c6e3401d7758 | [
"MIT"
] | 2 | 2016-10-05T06:44:45.000Z | 2018-11-28T23:04:26.000Z | spec/locale_spec.rb | k3rni/ffi-locale | 374348ad00fdffd45aef484b1349c6e3401d7758 | [
"MIT"
] | 3 | 2015-08-03T15:55:44.000Z | 2017-10-29T17:56:35.000Z | spec/locale_spec.rb | k3rni/ffi-locale | 374348ad00fdffd45aef484b1349c6e3401d7758 | [
"MIT"
] | 2 | 2015-08-03T11:15:56.000Z | 2017-10-27T07:40:53.000Z | # encoding: utf-8
# frozen-string-literal: true
require 'spec_helper'
boot_locale = FFILocale.setlocale FFILocale::LC_ALL, nil
describe FFILocale do
# NOTE: not a very useful test suite. All this functionality is provided by glibc and FFI, and it's useless to
# test libraries you depend on.
let(:locale_keys) do
%w[LC_CTYPE LC_COLLATE LC_MESSAGES]
end
let(:alphabet_pl) { %w[a ą b c ć d e ę f l ł m n ń o ó s ś t z ź ż] }
let(:names) { %w[Ágnes Andor Cecil Cvi Csaba Elemér Éva Géza Gizella György Győző Lóránd Lotár Lőrinc Lukács Orsolya Ödön Ulrika Üllő] }
before do
# Restore locale if we set something else
FFILocale.setlocale FFILocale::LC_ALL, boot_locale
end
specify 'reports default locale' do
info = FFILocale.getlocaleinfo
info.wont_be_nil
info.must_be_kind_of(Hash)
locale_keys.each do |key|
info.must_include key.to_sym
end
end
# NOTE: this test will fail unless you have the Polish locale available
specify 'returns new locale after setting' do
newlocale = FFILocale.setlocale FFILocale::LC_ALL, 'pl_PL.UTF-8'
newlocale.must_equal('pl_PL.UTF-8')
end
# NOTE: this test will fail unless you have the Polish locale available
specify 'knows the Polish ABC' do
letters = %w[z ś a ł t m ż o ą n ę s f ć d e ń c ź b ó l]
FFILocale.setlocale FFILocale::LC_ALL, 'pl_PL.UTF-8'
sorted = letters.sort { |a, b| FFILocale.strcoll a, b }
sorted.must_equal(alphabet_pl)
end
# NOTE: this test will fail unless you have the Hungarian locale available
specify 'performs sorting by collation' do
FFILocale.setlocale FFILocale::LC_COLLATE, 'hu_HU.UTF-8'
sorted = names.dup.shuffle.sort_by { |s| FFILocale.strxfrm(s) }
sorted.must_equal(names)
end
end
| 33.923077 | 138 | 0.71712 |
596efc9183d44bb15233fe084641866918517f55 | 5,617 | h | C | qqtw/qqheaders7.2/QQPublicAccountFolderViewController.h | onezens/QQTweak | 04b9efd1d93eba8ef8fec5cf9a20276637765777 | [
"MIT"
] | 5 | 2018-02-20T14:24:17.000Z | 2020-08-06T09:31:21.000Z | qqtw/qqheaders7.2/QQPublicAccountFolderViewController.h | onezens/QQTweak | 04b9efd1d93eba8ef8fec5cf9a20276637765777 | [
"MIT"
] | 1 | 2020-06-10T07:49:16.000Z | 2020-06-12T02:08:35.000Z | qqtw/qqheaders7.2/QQPublicAccountFolderViewController.h | onezens/SmartQQ | 04b9efd1d93eba8ef8fec5cf9a20276637765777 | [
"MIT"
] | null | null | null | //
// Generated by class-dump 3.5 (64 bit).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard.
//
#import "QQViewController.h"
#import "QQMoreOptionTableViewCellScrollStateDelegate.h"
#import "QQPubAccMessageFolderCellDelegate.h"
#import "UIGestureRecognizerDelegate.h"
#import "UITableViewDataSource.h"
#import "UITableViewDelegate.h"
@class NSArray, NSMutableArray, NSMutableSet, NSString, QQPublicAccountFolderListEngine, QQPublicAccountTriangleBubbleView, UIImageView, UILongPressGestureRecognizer, UITableView, UITapGestureRecognizer, UIView;
@interface QQPublicAccountFolderViewController : QQViewController <UITableViewDataSource, UITableViewDelegate, QQPubAccMessageFolderCellDelegate, QQMoreOptionTableViewCellScrollStateDelegate, UIGestureRecognizerDelegate>
{
NSArray *_suggestList;
_Bool isSuggestView;
UITableView *_tableView;
QQPublicAccountFolderListEngine *_listEngine;
UILongPressGestureRecognizer *_touchGestureRecognizer;
NSMutableArray *_leftSwipMsgKeyArray;
NSMutableSet *_reportData;
double _enterTickCount;
_Bool _IsFolderPerformanceViewLoadMeasured;
double _FolderPerformanceInitTime;
QQPublicAccountTriangleBubbleView *_findMoreGuideView;
_Bool _isHaveEnterBackground;
_Bool _isDrawFinished;
_Bool _hasInsertMeMsgVC;
_Bool _formIndependentTab;
_Bool _isViewShowing;
long long _folderType;
long long _unreadCount;
UIImageView *_rightRedPointView;
UIView *_tipsView;
NSString *_privateMsgCallback;
NSArray *_dataSource;
UITapGestureRecognizer *_tapToTopRegnizer;
}
+ (id)biuFeedsName;
+ (_Bool)biuFeedsSwitch;
+ (id)biuFeedsWebUrl;
+ (_Bool)shouldBiuFeedsShow;
- (void)OnClickDeleteCellWithUin:(id)arg1 andIsFollow:(_Bool)arg2;
- (void)PublicAccountUpdataMsgHandle:(id)arg1;
- (void)SetSubViews;
- (void)TabController:(id)arg1 didSelect:(id)arg2 from:(id)arg3;
- (void)TabController:(id)arg1 didUnSelect:(id)arg2 to:(id)arg3;
- (void)_asyncCheckUpdateOfflinePackageForSubscriptionCenter;
- (void)_on0xc5BiuTipNoti;
- (void)_setBiuUI;
- (void)clearLeftSwipMsgKeyArray;
- (void)configTableview;
- (void)dealloc;
- (void)dissmissNetWorkErrorTips:(id)arg1;
- (id)folderCellWithTableView:(id)arg1 cellForRowAtIndexPath:(id)arg2;
- (void)folderScrollToTop;
@property(nonatomic) long long folderType; // @synthesize folderType=_folderType;
@property(nonatomic) _Bool formIndependentTab; // @synthesize formIndependentTab=_formIndependentTab;
- (_Bool)gestureRecognizerShouldBegin:(id)arg1;
- (id)getCellID:(id)arg1 msgType:(long long *)arg2;
- (id)getFolderCellModelKey:(id)arg1;
@property(retain, nonatomic, getter=getPublicAccountDataSource) NSArray *dataSource; // @synthesize dataSource=_dataSource;
- (id)getSystemDataSource;
- (id)getTableViewDataSource;
- (void)gotoMoreSubscribePage;
- (void)gotoPublicAccountSearchPage:(id)arg1;
- (void)gotoWebView:(id)arg1;
- (void)hideHeaderView;
- (id)init;
- (void)insetMeMsgVc;
- (_Bool)isFolderModelInLeftArray:(id)arg1;
- (_Bool)isFolderModelInLeftArrayQQReadinjoyMsgModel:(id)arg1;
- (_Bool)isMessageTabInLeftSwipState;
@property(nonatomic) _Bool isViewShowing; // @synthesize isViewShowing=_isViewShowing;
- (void)leftSwipTouchDown;
- (void)loadView;
- (id)messageView;
- (long long)numberOfSectionsInTableView:(id)arg1;
- (void)onClickTitleBar;
- (void)onExitFolder;
- (void)onNeedReloadMessage:(id)arg1;
- (void)onTapEnded;
@property(retain, nonatomic) NSString *privateMsgCallback; // @synthesize privateMsgCallback=_privateMsgCallback;
- (void)refreshFolderViewDataAfterDelay;
- (void)refreshFolderViewDataAtOnce;
- (struct CGRect)regionForSupportingRightDragToGoBack;
- (void)reloadFolderData;
- (void)removeTouchGesture:(id)arg1;
- (id)replaceFolderModelIfNeed:(id)arg1;
- (void)reportDataOnQuit;
- (void)reportPublicAccountInfo:(_Bool)arg1 andModel:(id)arg2;
@property(retain, nonatomic) UIImageView *rightRedPointView; // @synthesize rightRedPointView=_rightRedPointView;
- (void)scrollViewDidEndDecelerating:(id)arg1;
- (void)scrollViewDidEndDragging:(id)arg1 willDecelerate:(_Bool)arg2;
- (void)scrollViewWillBeginDragging:(id)arg1;
- (_Bool)searchBarShouldBeginEditing:(id)arg1;
- (void)setFriendsBiuAvatar:(id)arg1;
- (void)setFriendsBiuRedPoint:(_Bool)arg1;
@property(retain, nonatomic) UITapGestureRecognizer *tapToTopRegnizer; // @synthesize tapToTopRegnizer=_tapToTopRegnizer;
@property(retain, nonatomic) UIView *tipsView; // @synthesize tipsView=_tipsView;
@property(nonatomic) long long unreadCount; // @synthesize unreadCount=_unreadCount;
- (void)showTipsIfNeeded;
- (id)tableView:(id)arg1 cellForRowAtIndexPath:(id)arg2;
- (void)tableView:(id)arg1 didSelectRowAtIndexPath:(id)arg2;
- (double)tableView:(id)arg1 heightForRowAtIndexPath:(id)arg2;
- (long long)tableView:(id)arg1 numberOfRowsInSection:(long long)arg2;
- (void)tableView:(id)arg1 removeModelInRowAtIndexPath:(id)arg2;
- (void)tableView:(id)arg1 scrollBackToCenterStateInRowAtIndexPath:(id)arg2;
- (_Bool)tableView:(id)arg1 scrollToLeftSwipStateInRowAtIndexPath:(id)arg2;
- (id)tableView:(id)arg1 viewForFooterInSection:(long long)arg2;
- (void)tableView:(id)arg1 willDisplayCell:(id)arg2 forRowAtIndexPath:(id)arg3;
- (void)updateAccountModel:(id)arg1 withTopState:(_Bool)arg2;
- (void)viewDidAppear:(_Bool)arg1;
- (void)viewDidLoad;
- (void)viewWillAppear:(_Bool)arg1;
- (void)viewWillDisappear:(_Bool)arg1;
// Remaining properties
@property(readonly, copy) NSString *debugDescription;
@property(readonly, copy) NSString *description;
@property(readonly) unsigned long long hash;
@property(readonly) Class superclass;
@end
| 42.877863 | 220 | 0.799181 |
0a2b9481660b531cc3a0f0171cb4c0b490817efb | 4,515 | c | C | test/udpsocket-01.c | SecureIndustries/medusa | 8cdf200d0fe492f3f912820b8b17218b4a35d8cd | [
"BSD-3-Clause"
] | 1 | 2019-07-12T01:54:54.000Z | 2019-07-12T01:54:54.000Z | test/udpsocket-01.c | SecureIndustries/medusa | 8cdf200d0fe492f3f912820b8b17218b4a35d8cd | [
"BSD-3-Clause"
] | null | null | null | test/udpsocket-01.c | SecureIndustries/medusa | 8cdf200d0fe492f3f912820b8b17218b4a35d8cd | [
"BSD-3-Clause"
] | 1 | 2019-06-24T11:03:29.000Z | 2019-06-24T11:03:29.000Z |
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <time.h>
#include <signal.h>
#include <errno.h>
#include "medusa/error.h"
#include "medusa/udpsocket.h"
#include "medusa/monitor.h"
static const unsigned int g_polls[] = {
MEDUSA_MONITOR_POLL_DEFAULT,
#if defined(__LINUX__)
MEDUSA_MONITOR_POLL_EPOLL,
#endif
#if defined(__APPLE__)
MEDUSA_MONITOR_POLL_KQUEUE,
#endif
MEDUSA_MONITOR_POLL_POLL,
MEDUSA_MONITOR_POLL_SELECT
};
static int udpsocket_onevent (struct medusa_udpsocket *udpsocket, unsigned int events, void *context, void *param)
{
unsigned int *tevents = (unsigned int *) context;
(void) udpsocket;
(void) param;
*tevents |= events;
return 0;
}
static int test_poll (unsigned int poll)
{
int rc;
struct medusa_monitor *monitor;
struct medusa_monitor_init_options monitor_init_options;
int port;
unsigned int tevents;
struct medusa_udpsocket *udpsocket;
struct medusa_udpsocket_bind_options udpsocket_bind_options;
monitor = NULL;
medusa_monitor_init_options_default(&monitor_init_options);
monitor_init_options.poll.type = poll;
monitor = medusa_monitor_create_with_options(&monitor_init_options);
if (monitor == NULL) {
goto bail;
}
for (port = 12345; port < 65535; port++) {
fprintf(stderr, "trying port: %d\n", port);
tevents = 0;
rc = medusa_udpsocket_bind_options_default(&udpsocket_bind_options);
if (rc < 0) {
fprintf(stderr, "medusa_udpsocket_bind_options_default failed\n");
goto bail;
}
udpsocket_bind_options.monitor = monitor;
udpsocket_bind_options.onevent = udpsocket_onevent;
udpsocket_bind_options.context = &tevents;
udpsocket_bind_options.protocol = MEDUSA_UDPSOCKET_PROTOCOL_ANY;
udpsocket_bind_options.address = "127.0.0.1";
udpsocket_bind_options.port = port;
udpsocket_bind_options.reuseaddr = 1;
udpsocket_bind_options.reuseport = 0;
udpsocket_bind_options.nonblocking = 1;
udpsocket_bind_options.enabled = 1;
udpsocket = medusa_udpsocket_bind_with_options(&udpsocket_bind_options);
if (MEDUSA_IS_ERR_OR_NULL(udpsocket)) {
fprintf(stderr, "medusa_udpsocket_bind failed\n");
goto bail;
}
if (medusa_udpsocket_get_state(udpsocket) == MEDUSA_UDPSOCKET_STATE_DISCONNECTED) {
fprintf(stderr, "medusa_udpsocket_bind error: %d, %s\n", medusa_udpsocket_get_error(udpsocket), strerror(medusa_udpsocket_get_error(udpsocket)));
medusa_udpsocket_destroy(udpsocket);
} else {
break;
}
}
if (port >= 65535) {
fprintf(stderr, "medusa_udpsocket_bind failed\n");
goto bail;
}
fprintf(stderr, "port: %d\n", port);
medusa_monitor_destroy(monitor);
monitor = NULL;
if (tevents != (MEDUSA_UDPSOCKET_EVENT_BINDING |
MEDUSA_UDPSOCKET_EVENT_BOUND |
MEDUSA_UDPSOCKET_EVENT_LISTENING |
MEDUSA_UDPSOCKET_EVENT_DESTROY)) {
fprintf(stderr, "tevents: 0x%08x is invalid\n", tevents);
goto bail;
}
return 0;
bail: if (monitor != NULL) {
medusa_monitor_destroy(monitor);
}
return -1;
}
static void alarm_handler (int sig)
{
(void) sig;
abort();
}
int main (int argc, char *argv[])
{
int rc;
unsigned int i;
(void) argc;
(void) argv;
srand(time(NULL));
signal(SIGALRM, alarm_handler);
for (i = 0; i < sizeof(g_polls) / sizeof(g_polls[0]); i++) {
alarm(5);
fprintf(stderr, "testing poll: %d\n", g_polls[i]);
rc = test_poll(g_polls[i]);
if (rc != 0) {
fprintf(stderr, " failed\n");
return -1;
}
fprintf(stderr, "success\n");
}
return 0;
}
| 31.573427 | 169 | 0.561683 |
f7565039202ff3dc92fbf144641c15f512eaeda9 | 1,906 | h | C | inc/ftsq/fast_queue.h | after5cst/fast-thread-safe-queue | 1abc40d620afe7b476803577b86a86d70f61bc32 | [
"MIT"
] | 1 | 2016-01-19T19:17:17.000Z | 2016-01-19T19:17:17.000Z | inc/ftsq/fast_queue.h | after5cst/fast-thread-safe-queue | 1abc40d620afe7b476803577b86a86d70f61bc32 | [
"MIT"
] | null | null | null | inc/ftsq/fast_queue.h | after5cst/fast-thread-safe-queue | 1abc40d620afe7b476803577b86a86d70f61bc32 | [
"MIT"
] | null | null | null | #ifndef FTSQ_MUTEX_H
#define FTSQ_MUTEX_H
#include "ftsq/mutex.h"
#include <vector>
#include <deque>
namespace ftsq
{
template <typename T, typename mutex_type=ftsq::mutex>
class queue_pop_one
{
public:
typedef std::deque<T> queue_type;
typedef typename queue_type::size_type size_type;
size_type push(T item)
{
std::lock_guard<mutex_type> guard(m_mutex);
m_queue.push_back(std::move(item));
return m_queue.size();
}
bool pop(T& item)
{
std::lock_guard<mutex_type> guard(m_mutex);
if(m_queue.empty())
{
return false;
}
item = std::move(m_queue.front());
m_queue.pop_front();
return true;
}
queue_pop_one() {}
// disable object copy
queue_pop_one(const queue_pop_one&) = delete;
void operator=(const queue_pop_one&) = delete;
private:
mutex_type m_mutex;
queue_type m_queue;
}; //class queue_pop_one
template <typename T, typename mutex_type=ftsq::mutex>
class queue_pop_all
{
public:
typedef std::vector<T> queue_type;
typedef typename queue_type::size_type size_type;
size_type push(T item)
{
std::lock_guard<mutex_type> guard(m_mutex);
m_queue.push_back(std::move(item));
return m_queue.size();
}
queue_type pop_all()
{
std::lock_guard<mutex_type> guard(m_mutex);
return std::move(m_queue);
}
queue_pop_all() {}
// disable object copy
queue_pop_all(const queue_pop_all&) = delete;
void operator=(const queue_pop_all&) = delete;
private:
mutex_type m_mutex;
queue_type m_queue;
}; //class queue_pop_all
}
#endif // FTSQ_MUTEX_H
| 25.413333 | 58 | 0.573977 |
11d44316ee22a87903f0f90069aa4a8a162b7290 | 1,050 | rs | Rust | crates/ui/form/text_field.rs | OneToolsCollection/tangramdotdev-tangram | 666343a87b88a1c1b34a4be2298f6aa54f0fc2eb | [
"MIT"
] | 957 | 2021-07-26T17:13:54.000Z | 2022-03-30T21:38:05.000Z | crates/ui/form/text_field.rs | OneToolsCollection/tangramdotdev-tangram | 666343a87b88a1c1b34a4be2298f6aa54f0fc2eb | [
"MIT"
] | 83 | 2021-07-28T09:08:27.000Z | 2022-03-13T16:36:49.000Z | crates/ui/form/text_field.rs | OneToolsCollection/tangramdotdev-tangram | 666343a87b88a1c1b34a4be2298f6aa54f0fc2eb | [
"MIT"
] | 46 | 2021-07-29T14:46:10.000Z | 2022-03-31T08:43:20.000Z | use super::FieldLabel;
use pinwheel::prelude::*;
#[derive(builder, Default, new)]
#[new(default)]
pub struct TextField {
#[builder]
pub autocomplete: Option<String>,
#[builder]
pub id: Option<String>,
#[builder]
pub disabled: Option<bool>,
#[builder]
pub label: Option<String>,
#[builder]
pub name: Option<String>,
#[builder]
pub placeholder: Option<String>,
#[builder]
pub readonly: Option<bool>,
#[builder]
pub required: Option<bool>,
#[builder]
pub value: Option<String>,
}
impl Component for TextField {
fn into_node(self) -> Node {
FieldLabel::new()
.child(self.label)
.child(
input()
.attribute("id", self.id)
.attribute("autocomplete", self.autocomplete)
.class("form-text-field")
.attribute("disabled", self.disabled)
.attribute("name", self.name)
.attribute("placeholder", self.placeholder)
.attribute("readonly", self.readonly)
.attribute("required", self.required)
.attribute("spellcheck", false)
.attribute("value", self.value),
)
.into_node()
}
}
| 22.340426 | 50 | 0.660952 |
71714c9553c7a67a2eb5ec44cd307b55cd721b5b | 127 | ts | TypeScript | packages/shared/src/index.ts | dora-projects/dora | bb419a83df4c0f0dad76b2def94934dc2375dfaa | [
"MIT"
] | 13 | 2021-12-06T01:59:30.000Z | 2022-03-22T10:33:48.000Z | packages/shared/src/index.ts | dora-projects/dora | bb419a83df4c0f0dad76b2def94934dc2375dfaa | [
"MIT"
] | null | null | null | packages/shared/src/index.ts | dora-projects/dora | bb419a83df4c0f0dad76b2def94934dc2375dfaa | [
"MIT"
] | 3 | 2021-10-09T09:58:46.000Z | 2021-12-13T10:56:55.000Z | export * from "./dom";
export * from "./utils";
export * from "./logger";
export * from "./tracekit";
export * from "./error";
| 21.166667 | 27 | 0.606299 |
2f1d9c4f3d0c5e91eb0047204389689381bfcbe3 | 4,317 | php | PHP | Features/bootstrap/SpomkyLabs/IpFilterBundle/Features/Context/RequestBuilder.php | Spomky-Labs/SpomkyIpFilterBundle | cb7fad239e1888c0d959cebdbaa15b13b56b7f61 | [
"MIT"
] | null | null | null | Features/bootstrap/SpomkyLabs/IpFilterBundle/Features/Context/RequestBuilder.php | Spomky-Labs/SpomkyIpFilterBundle | cb7fad239e1888c0d959cebdbaa15b13b56b7f61 | [
"MIT"
] | 2 | 2015-03-18T13:39:02.000Z | 2015-03-18T13:44:16.000Z | Features/bootstrap/SpomkyLabs/IpFilterBundle/Features/Context/RequestBuilder.php | Spomky-Labs/SpomkyIpFilterBundle | cb7fad239e1888c0d959cebdbaa15b13b56b7f61 | [
"MIT"
] | null | null | null | <?php
/*
* The MIT License (MIT)
*
* Copyright (c) 2014-2015 Spomky-Labs
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
namespace SpomkyLabs\IpFilterBundle\Features\Context;
use Symfony\Component\HttpFoundation\Request;
class RequestBuilder
{
private $query = [];
private $fragment = [];
private $server = [];
private $header = [];
private $content_parameter = [];
private $content = null;
private $method = 'GET';
private $uri = '/';
public function getUri()
{
$parse_url = parse_url($this->uri);
$parse_url['query'] = array_merge(isset($parse_url['query']) ? $parse_url['query'] : [], $this->query);
$parse_url['fragment'] = array_merge(isset($parse_url['fragment']) ? $parse_url['fragment'] : [], $this->fragment);
if (count($parse_url['query']) === 0) {
unset($parse_url['query']);
}
if (count($parse_url['fragment']) === 0) {
unset($parse_url['fragment']);
}
return
((isset($parse_url['scheme'])) ? $parse_url['scheme'].'://' : '')
.((isset($parse_url['user'])) ? $parse_url['user'].((isset($parse_url['pass'])) ? ':'.$parse_url['pass'] : '').'@' : '')
.((isset($parse_url['host'])) ? $parse_url['host'] : '')
.((isset($parse_url['port'])) ? ':'.$parse_url['port'] : '')
.((isset($parse_url['path'])) ? $parse_url['path'] : '')
.((isset($parse_url['query'])) ? '?'.http_build_query($parse_url['query']) : '')
.((isset($parse_url['fragment'])) ? '#'.http_build_query($parse_url['fragment']) : '');
}
public function addFragmentParameter($key, $value)
{
$this->fragment[$key] = $value;
return $this;
}
public function removeFragmentParameter($key)
{
unset($this->fragment[$key]);
return $this;
}
public function addQueryParameter($key, $value)
{
$this->query[$key] = $value;
return $this;
}
public function removeQueryParameter($key)
{
unset($this->query[$key]);
return $this;
}
public function addServerParameter($key, $value)
{
$this->server[$key] = $value;
return $this;
}
public function removeServerParameter($key)
{
unset($this->server[$key]);
return $this;
}
public function addHeader($key, $value)
{
$this->header[$key] = $value;
return $this;
}
public function removeHeader($key)
{
unset($this->header[$key]);
return $this;
}
public function addContentParameter($key, $value)
{
$this->content_parameter[$key] = $value;
return $this;
}
public function removeContentParameter($key)
{
unset($this->content_parameter[$key]);
return $this;
}
public function setContent($content)
{
$this->content = $content;
return $this;
}
public function unsetContent()
{
$this->content = null;
return $this;
}
public function setMethod($method)
{
$this->method = $method;
return $this;
}
public function unsetMethod()
{
$this->method = 'GET';
return $this;
}
public function setUri($uri)
{
$this->uri = $uri;
return $this;
}
public function unsetUri()
{
$this->uri = '/';
return $this;
}
public function getServerParameters()
{
$data = $this->server;
foreach ($this->header as $key => $value) {
$data[strtoupper('HTTP_'.$key)] = $value;
}
return $data;
}
public function getContent()
{
if ($this->content !== null) {
return $this->content;
}
if (count($this->content_parameter) > 0) {
return http_build_query($this->content_parameter);
}
}
public function getRequest()
{
return Request::create(
$this->getUri(),
$this->method,
[],
[],
[],
$this->getServerParameters(),
$this->getContent()
);
}
}
| 22.252577 | 132 | 0.524438 |
3f6238e86b0863465a6220c6a98c119e4b3ef3d0 | 4,218 | swift | Swift | Sources/Constraints/Standard/OptionalConstraint.swift | alexcristea/brick-validator | 9696dfe2d2095c8e4be80eafb582b54348dcb36e | [
"MIT"
] | 32 | 2017-02-26T19:09:43.000Z | 2020-12-07T11:05:53.000Z | Sources/Constraints/Standard/OptionalConstraint.swift | alexcristea/validation-kit | 9696dfe2d2095c8e4be80eafb582b54348dcb36e | [
"MIT"
] | 22 | 2017-02-26T23:22:29.000Z | 2021-03-06T13:12:08.000Z | Sources/Constraints/Standard/OptionalConstraint.swift | alexcristea/validation-kit | 9696dfe2d2095c8e4be80eafb582b54348dcb36e | [
"MIT"
] | 15 | 2017-02-26T19:09:44.000Z | 2021-02-10T08:37:00.000Z | import Foundation
/**
A `Constraint` that accepts an optional input and passes the unwrapped value to an underlying `Constraint`.
```swift
enum Failure: Error {
case required
case invalidEmail
}
```
```swift
let email: String? = "hello@nsagora.com"
let constraint = OptionalConstraint<String, Failure>(required: .required) {
PredicateConstraint(.email, error: .invalidEmail)
}
let result = constraint.evaluate(with: email)
```
*/
public struct OptionalConstraint<T, E: Error>: Constraint {
public typealias InputType = T?
public typealias ErrorType = E
private let constraint: AnyConstraint<T, E>
private let requiredError: E?
/**
Returns a new `OptionalConstraint` instance.
```swift
enum Failure: Error {
case required
case invalidEmail
}
```
```swift
let email: String? = "hello@nsagora.com"
let emailConstraint = PredicateConstraint(.email, error: .invalidEmail)
let constraint = OptionalConstraint<String, Failure>(required: .required, constraint: emailConstraint)
let result = constraint.evaluate(with: email)
- parameter required: An optional `Error` that marks the optional as mandatory.
- parameter constraint: A `Constraint` to describes the evaluation rule for the unwrapped value of the input.
*/
public init<C: Constraint>(required requiredError: E? = nil, constraint: C) where C.InputType == T, C.ErrorType == E {
self.constraint = constraint.erase()
self.requiredError = requiredError
}
/**
Returns a new `OptionalConstraint` instance.
```swift
enum Failure: Error {
case required
case invalidEmail
}
```
```swift
let email: String? = "hello@nsagora.com"
let constraint = OptionalConstraint<String, Failure>(required: .required) {
PredicateConstraint(.email, error: .invalidEmail)
}
let result = constraint.evaluate(with: email)
- parameter required: An optional `Error` that marks the optional as mandatory.
- parameter constraint: A closure that dynamically builds a `Constraint` to describes the evaluation rule for the unwrapped value of the input.
*/
public init<C: Constraint>(required requiredError: E? = nil, constraintBuilder: () -> C) where C.InputType == T, C.ErrorType == E {
self.init(required: requiredError, constraint: constraintBuilder())
}
/**
Evaluates the unwrapped input on the underlying constraint.
- parameter input: The optional input to be validated.
- returns: `.failure` with a `Summary` containing the required error when the optional is marked as required and the input is `nil`, `success` when the optional is not marked as required and the input is `nil`, the evaluation result from the underlying constraint otherwise.
*/
public func evaluate(with input: T?) -> Result<Void, Summary<E>> {
if let input = input {
return constraint.evaluate(with: input)
}
if let requiredError = requiredError {
return .failure(Summary(errors: [requiredError]))
}
return .success(())
}
}
// MARK: - Constraint modifiers
extension Constraint {
/**
Returns a new `OptionalConstraint` instance.
```swift
enum Failure: Error {
case required
case invalidEmail
}
```
```swift
let email: String? = "hello@nsagora.com"
let emailConstraint = PredicateConstraint(.email, error: .invalidEmail)
let constraint = emailConstraint.optional(required: .required)
let result = constraint.evaluate(with: email)
- parameter required: An optional `Error` that marks the optional as mandatory.
- parameter constraint: A `Constraint` to describes the evaluation rule for the unwrapped value of the input.
*/
public func `optional`<T, E>(required requiredError: E? = nil) -> OptionalConstraint<T, E> where Self.ErrorType == E, Self.InputType == T{
OptionalConstraint(required: requiredError, constraint: self)
}
}
| 32.697674 | 279 | 0.652916 |
c3381b455906d1a93be8337658e4afc83b2971ff | 2,379 | go | Go | parser/cypruspost_test.go | brunopita/pechkin | e22974c2943d5d9e8eb4b66f410304cba2cc5b40 | [
"MIT"
] | null | null | null | parser/cypruspost_test.go | brunopita/pechkin | e22974c2943d5d9e8eb4b66f410304cba2cc5b40 | [
"MIT"
] | null | null | null | parser/cypruspost_test.go | brunopita/pechkin | e22974c2943d5d9e8eb4b66f410304cba2cc5b40 | [
"MIT"
] | null | null | null | package parser
import (
"github.com/fr05t1k/pechkin/storage"
"net/http"
"net/http/httptest"
"reflect"
"testing"
"time"
)
func Test_cyprusPost_Parse(t *testing.T) {
tests := []struct {
name string
response string
track string
wantEvents []storage.Event
wantErr bool
}{
{
name: "simple",
response: `
<html>
<head>
</head>
<body>
<table class="table-striped table-bordered" width="100%" border="0" cellspacing="0" cellpadding="3">
<tbody>
<tr align="left" class="tabl2">
<td colspan="6"><strong> ITEM n° CO820479485DE</strong></td>
<td align="center"> </td>
</tr>
<tr align="center">
<td class="tabmen" width="13%">Date & Time/ Ημερομηνία & Ώρα </td>
<td class="tabmen" width="13%">Country / Χώρα </td>
<td class="tabmen" width="13%">Location / Τοποθεσία </td>
<td class="tabmen" width="22%">Description / Περιγραφή</td>
<td class="tabmen" width="15%">Next Office / Επόμενος σταθμός</td>
<td class="tabmen" width="27%">Extra Information / Επιπρόσθετες πληροφορίες</td>
</tr>
<tr class="tabl1">
<td align="center" width="13%">3/4/2019 3:51:00 PM</td>
<td align="center" width="13%">Germany</td>
<td align="center" width="13%">DE-63179</td>
<td align="center" width="22%">Receive item from sender/ Κατάθεση αντικειμένου από τον αποστολέα</td>
<td align="center" width="15%"> </td>
<td align="center" width="27%"></td>
</tr>
</tbody>
</table>
</body>
</html>
`,
track: "",
wantEvents: []storage.Event{
{
EventAt: time.Date(2019, 3, 4, 15, 51, 00, 0, time.UTC),
Description: "Germany\nDE-63179\nReceive item from sender/ Κατάθεση αντικειμένου από τον αποστολέα\n \n\n",
},
},
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
s := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
_, _ = w.Write([]byte(tt.response))
}))
c := NewCyprusPost()
c.PageUrl = s.URL + "?track=%s"
gotEvents, err := c.Parse(tt.track)
if (err != nil) != tt.wantErr {
t.Errorf("Parse() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(gotEvents, tt.wantEvents) {
t.Errorf("Parse() gotEvents = %v, want %v", gotEvents, tt.wantEvents)
}
})
}
}
| 27.988235 | 112 | 0.604456 |
0ef73038c93549f7ff0d0f3fe3552d7ccc0ec520 | 247 | ts | TypeScript | test/common/fixtures/fixture.app-provider.ts | 0xflotus/nestjsx | 34e363661a26d34ea6513981cfe15442cae4eb43 | [
"MIT"
] | 64 | 2018-10-19T06:40:23.000Z | 2022-03-01T15:15:56.000Z | test/common/fixtures/fixture.app-provider.ts | 0xflotus/nestjsx | 34e363661a26d34ea6513981cfe15442cae4eb43 | [
"MIT"
] | 19 | 2019-01-31T03:39:17.000Z | 2022-02-12T03:42:41.000Z | test/common/fixtures/fixture.app-provider.ts | 0xflotus/nestjsx | 34e363661a26d34ea6513981cfe15442cae4eb43 | [
"MIT"
] | 4 | 2019-07-26T14:03:24.000Z | 2020-06-27T19:58:16.000Z | import { NestjsxAppProvider } from '../../../packages/common/src/interfaces/nestjsx-app-provider.interface';
export const AppFixtureProvider = {
order: 0,
provider: {
provide: 'token',
useValue: 'value',
},
} as NestjsxAppProvider;
| 24.7 | 108 | 0.688259 |
9c1f517b1993ba48425bbe270dde998d118bbc45 | 282 | js | JavaScript | modifying/decorators.js | skylarkutils/skylark-utils-templating | 0ad633582ed23e1c19a12043c57ccaa1cc175dc0 | [
"MIT"
] | null | null | null | modifying/decorators.js | skylarkutils/skylark-utils-templating | 0ad633582ed23e1c19a12043c57ccaa1cc175dc0 | [
"MIT"
] | 1 | 2021-05-11T23:55:32.000Z | 2021-05-11T23:55:32.000Z | modifying/decorators.js | skylarkutils/skylark-utils-templating | 0ad633582ed23e1c19a12043c57ccaa1cc175dc0 | [
"MIT"
] | null | null | null | define([
"../templater",
'./decorators/inline'
], function (templater, _decoratorsInline) {
'use strict';
var decorators = templater.decorators;
decorators.registerDefaultDecorators = function (instance) {
_decoratorsInline(instance);
};
return decorators;
});
| 17.625 | 62 | 0.702128 |
f033bfe2f685281ab92d1e624830759c49f17b27 | 711 | js | JavaScript | plugins/slickdeals.js | Mattwmaster58/hoverzoom | 655e1063494215647015bac3312ab134491cf8b6 | [
"MIT"
] | 627 | 2015-01-14T23:10:26.000Z | 2022-03-29T20:20:48.000Z | plugins/slickdeals.js | Mattwmaster58/hoverzoom | 655e1063494215647015bac3312ab134491cf8b6 | [
"MIT"
] | 550 | 2015-01-22T18:44:37.000Z | 2022-03-30T14:37:08.000Z | plugins/slickdeals.js | Mattwmaster58/hoverzoom | 655e1063494215647015bac3312ab134491cf8b6 | [
"MIT"
] | 179 | 2015-01-12T01:05:53.000Z | 2022-03-20T08:39:24.000Z | var hoverZoomPlugins = hoverZoomPlugins || [];
hoverZoomPlugins.push({
name:'slickdeals',
version:'0.1',
prepareImgLinks:function (callback) {
var res = [];
hoverZoom.urlReplace(res,
'img[src$=".thumb"]',
[/\/\d+x\d+\//, '.thumb'],
['/', '.attach']
);
$('body').on('mouseenter', 'img[src$=".thumb"]', function() {
var img = $(this);
var url = img.attr('src').replace(/\/\d+x\d+\//, '/').replace('.thumb', '.attach');
img.data().hoverZoomSrc = [url];
img.addClass('hoverZoomLink');
hoverZoom.displayPicFromElement(img);
});
callback($(res));
}
});
| 28.44 | 95 | 0.479606 |
051cccca28d32b0216814e1200c6fac8226d615d | 1,822 | rb | Ruby | fluentd/vendored_gem_src/async-io/lib/async/io/unix_socket.rb | cahartma/logging-fluentd | a9c2606943f34902dff30601b2ac481a8600fea4 | [
"Apache-2.0"
] | 172 | 2017-05-26T01:45:37.000Z | 2022-03-28T14:01:48.000Z | fluentd/vendored_gem_src/async-io/lib/async/io/unix_socket.rb | cahartma/logging-fluentd | a9c2606943f34902dff30601b2ac481a8600fea4 | [
"Apache-2.0"
] | 51 | 2017-05-26T01:12:32.000Z | 2022-02-18T09:56:49.000Z | fluentd/vendored_gem_src/async-io/lib/async/io/unix_socket.rb | cahartma/logging-fluentd | a9c2606943f34902dff30601b2ac481a8600fea4 | [
"Apache-2.0"
] | 20 | 2017-06-19T16:54:55.000Z | 2021-12-08T01:21:29.000Z | # frozen_string_literal: true
# Copyright, 2017, by Samuel G. D. Williams. <http://www.codeotaku.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
require_relative 'socket'
module Async
module IO
class UNIXSocket < BasicSocket
# `send_io`, `recv_io` and `recvfrom` may block but no non-blocking implementation available.
wraps ::UNIXSocket, :path, :addr, :peeraddr, :send_io, :recv_io, :recvfrom
include Peer
end
class UNIXServer < UNIXSocket
wraps ::UNIXServer, :listen
def accept
peer = async_send(:accept_nonblock)
wrapper = UNIXSocket.new(peer, self.reactor)
return wrapper unless block_given?
begin
yield wrapper
ensure
wrapper.close
end
end
alias sysaccept accept
alias accept_nonblock accept
end
end
end
| 33.127273 | 96 | 0.742042 |
3b5ec8836380a1153ec3d120dc8e95e1a8cc0f5d | 1,126 | h | C | Bayes_Sto_IHT.h | LCWN-Lab/Parallel-Sparse-Recovery | b5dd6b98977bcb437164f1c0109bc892f1d7141d | [
"MIT"
] | null | null | null | Bayes_Sto_IHT.h | LCWN-Lab/Parallel-Sparse-Recovery | b5dd6b98977bcb437164f1c0109bc892f1d7141d | [
"MIT"
] | null | null | null | Bayes_Sto_IHT.h | LCWN-Lab/Parallel-Sparse-Recovery | b5dd6b98977bcb437164f1c0109bc892f1d7141d | [
"MIT"
] | 2 | 2017-12-24T04:15:16.000Z | 2022-01-05T17:25:19.000Z | #ifndef BAYES_STO_IHT_H
#define BAYES_STO_IHT_H
/* Description: Parallel Stochastic Iterative Hard Thresholding (StoIHT) algorithm
to approximate the vector x from measurements u = A*x.
A tally score is calculate to represent the probability of each coefficient
being in the support.
The tally score is calculated using Bayesian update rules
*/
vec expected_ln_beta_dist(const vec pos_count, const vec neg_count);
double expected_ln_beta_dist(const double pos_count, const double neg_count);
ivec generate_support(const uvec &curr_supp,const uvec &prev_supp,const int sig_dim);
void update_tally_bayesian(vec &pos_count, vec &neg_count, double &reliability_pos,
double &reliability_neg, vec &expected_u, const ivec &support_data,
const ivec &prev_support_data, const double P_rand, const unsigned int global_iters,
const unsigned int local_iters);
vec bayesian_Sto_IHT(const mat &A, const vec &y, const int sparsity, const vec prob_vec,
const unsigned int max_iter, const double gamma,const double tol,
unsigned int &num_iters, const simulation_parameters simulation_params);
#endif /* BAYES_STO_IHT_H */
| 41.703704 | 88 | 0.806394 |
ed72c0e34aca8d83564af9687beb659f35f60576 | 521 | sql | SQL | usr/share/roundcube/SQL/mysql/2018021600.sql | jmkristian/mail-server-configuration | 29c9c978931d0f1ab856b830c020a177f346c3aa | [
"Apache-2.0"
] | 1 | 2021-12-30T12:01:33.000Z | 2021-12-30T12:01:33.000Z | usr/share/roundcube/SQL/mysql/2018021600.sql | jmkristian/mail-server-configuration | 29c9c978931d0f1ab856b830c020a177f346c3aa | [
"Apache-2.0"
] | null | null | null | usr/share/roundcube/SQL/mysql/2018021600.sql | jmkristian/mail-server-configuration | 29c9c978931d0f1ab856b830c020a177f346c3aa | [
"Apache-2.0"
] | 3 | 2021-08-24T18:43:11.000Z | 2022-01-03T07:44:01.000Z | CREATE TABLE `filestore` (
`file_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`user_id` int(10) UNSIGNED NOT NULL,
`filename` varchar(128) NOT NULL,
`mtime` int(10) NOT NULL,
`data` longtext NOT NULL,
PRIMARY KEY (`file_id`),
CONSTRAINT `user_id_fk_filestore` FOREIGN KEY (`user_id`)
REFERENCES `users` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE,
UNIQUE `uniqueness` (`user_id`, `filename`)
) /*!40000 ENGINE=INNODB */ /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */;
| 43.416667 | 83 | 0.683301 |
d003f4c7130ba38263222e6d11505065680073c4 | 961 | css | CSS | styles/pill.css | ameyam9/Medican | 77ff7a91850a611a0f56572062de841049d63fe5 | [
"MIT"
] | null | null | null | styles/pill.css | ameyam9/Medican | 77ff7a91850a611a0f56572062de841049d63fe5 | [
"MIT"
] | null | null | null | styles/pill.css | ameyam9/Medican | 77ff7a91850a611a0f56572062de841049d63fe5 | [
"MIT"
] | null | null | null | body {
text-align: center;
background-color: #123e5b;
font-family: 'Neucha', cursive;
}
img#wrapper {
position: relative;
margin-top: 3vh;
width: 400px;
padding: 0px;
}
p {
margin-block-end: 0;
margin-block-start: 0;
font-size: 40px;
color: #abcdcc;
padding: 0px;
}
.column {
margin-block-end: 0;
margin-block-start: 0;
float: left;
width: 31.5%;
padding: 10px;
height: 100px;
font-size: 35px;
}
.row:after {
padding: 0px;
margin-block-end: 0;
margin-block-start: 0;
content: "";
display: table;
clear:both;
}
h2 {
color: #faf2d8;
}
#submit_button {
font-family: 'Neucha', cursive;
color: #faf2d8;
background-color: #abcdcc;
size: 50px;
font-size: 50px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
text-align:left;
;
}
#submit_button:hover {
border: none;
background: #ff635c;
box-shadow: 0px 0px 1px #777;
}
.pill-button {
cursor: pointer;
}
| 14.560606 | 35 | 0.619147 |
04077cfaea32a3c243873342c4d9ad010b188034 | 1,240 | js | JavaScript | js/api.js | SakuraEvilStore/BotFreeBitco | 7bf95a56d9e1c4630c77f425b9eb35c0b1f30629 | [
"Apache-2.0"
] | 1 | 2017-07-05T15:34:04.000Z | 2017-07-05T15:34:04.000Z | js/api.js | SakuraEvilStore/BotFreeBitco | 7bf95a56d9e1c4630c77f425b9eb35c0b1f30629 | [
"Apache-2.0"
] | null | null | null | js/api.js | SakuraEvilStore/BotFreeBitco | 7bf95a56d9e1c4630c77f425b9eb35c0b1f30629 | [
"Apache-2.0"
] | null | null | null | (function (chrome) {
chrome.extension.onRequest.addListener(function (request, sender, sendResponse) {
var website = location.protocol + '//' + location.host;
switch (request.method) {
case 'setData':
var syncdata = {};
syncdata[website] = request.customjs;
chrome.storage.sync.set(syncdata);
case 'getData':
chrome.storage.sync.get(website, function (obj) {
var customjs = obj[website] || JSON.parse('false');
sendResponse({
customjs: customjs,
host: location.host,
protocol: location.protocol
});
});
break;
case 'removeData':
chrome.storage.sync.remove(website, function () {});
break;
case 'goTo':
window.location = request.link;
break;
default:
sendResponse({
src: '',
config: {}
});
}
if (request.reload) {
window.location.reload();
}
});
})(chrome); | 35.428571 | 85 | 0.435484 |
5a51656f89a2ad7d0edf1573643150e47ab98e91 | 13,067 | rs | Rust | rosomaxa/src/example.rs | PeakBI/ds-reinterpretcat-vrp | 62428fdd5438812ddcf37583a14b9a26bdb43225 | [
"Apache-2.0"
] | null | null | null | rosomaxa/src/example.rs | PeakBI/ds-reinterpretcat-vrp | 62428fdd5438812ddcf37583a14b9a26bdb43225 | [
"Apache-2.0"
] | null | null | null | rosomaxa/src/example.rs | PeakBI/ds-reinterpretcat-vrp | 62428fdd5438812ddcf37583a14b9a26bdb43225 | [
"Apache-2.0"
] | null | null | null | //! This module contains example models and logic to demonstrate practical usage of rosomaxa crate.
#[cfg(test)]
#[path = "../tests/unit/example_test.rs"]
mod example_test;
use crate::evolution::*;
use crate::get_default_population;
use crate::hyper::*;
use crate::population::{DominanceOrder, DominanceOrdered, RosomaxaWeighted, Shuffled};
use crate::prelude::*;
use crate::utils::Noise;
use hashbrown::{HashMap, HashSet};
use std::any::Any;
use std::ops::Deref;
use std::sync::Arc;
/// An example objective function.
pub type VectorFunction = Arc<dyn Fn(&[f64]) -> f64 + Send + Sync>;
/// An example heuristic context.
pub struct VectorContext {
objective: Arc<VectorObjective>,
population: Box<dyn HeuristicPopulation<Objective = VectorObjective, Individual = VectorSolution>>,
statistics: HeuristicStatistics,
environment: Arc<Environment>,
state: HashMap<i32, Box<dyn Any + Send + Sync>>,
}
/// An example heuristic objective.
pub struct VectorObjective {
func: VectorFunction,
}
/// An example heuristic solution.
pub struct VectorSolution {
/// Solution payload.
pub data: Vec<f64>,
objective: Arc<VectorObjective>,
order: DominanceOrder,
}
impl VectorContext {
/// Creates a new instance of `VectorContext`.
pub fn new(
objective: Arc<VectorObjective>,
population: Box<dyn HeuristicPopulation<Objective = VectorObjective, Individual = VectorSolution>>,
environment: Arc<Environment>,
) -> Self {
Self { objective, population, statistics: Default::default(), environment, state: Default::default() }
}
}
impl HeuristicContext for VectorContext {
type Objective = VectorObjective;
type Solution = VectorSolution;
fn objective(&self) -> &Self::Objective {
&self.objective
}
fn population(&self) -> &dyn HeuristicPopulation<Objective = Self::Objective, Individual = Self::Solution> {
self.population.as_ref()
}
fn population_mut(
&mut self,
) -> &mut dyn HeuristicPopulation<Objective = Self::Objective, Individual = Self::Solution> {
self.population.as_mut()
}
fn statistics(&self) -> &HeuristicStatistics {
&self.statistics
}
fn statistics_mut(&mut self) -> &mut HeuristicStatistics {
&mut self.statistics
}
fn environment(&self) -> &Environment {
self.environment.as_ref()
}
}
impl Stateful for VectorContext {
type Key = i32;
fn set_state<T: 'static + Send + Sync>(&mut self, key: Self::Key, state: T) {
self.state.insert(key, Box::new(state));
}
fn get_state<T: 'static + Send + Sync>(&self, key: &Self::Key) -> Option<&T> {
self.state.get(key).and_then(|v| v.downcast_ref::<T>())
}
fn state_mut<T: 'static + Send + Sync, F: Fn() -> T>(&mut self, key: Self::Key, inserter: F) -> &mut T {
self.state.entry(key).or_insert_with(|| Box::new(inserter())).downcast_mut::<T>().unwrap()
}
}
impl VectorObjective {
/// Creates a new instance `VectorObjective`.
pub fn new(func: VectorFunction) -> Self {
Self { func }
}
}
impl HeuristicObjective for VectorObjective {}
impl Objective for VectorObjective {
type Solution = VectorSolution;
fn fitness(&self, solution: &Self::Solution) -> f64 {
self.func.deref()(solution.data.as_slice())
}
}
impl MultiObjective for VectorObjective {
fn objectives<'a>(
&'a self,
) -> Box<dyn Iterator<Item = &'a (dyn Objective<Solution = Self::Solution> + Send + Sync)> + 'a> {
let objective: &(dyn Objective<Solution = Self::Solution> + Send + Sync) = self;
Box::new(std::iter::once(objective))
}
}
impl Shuffled for VectorObjective {
fn get_shuffled(&self, _: &(dyn Random + Send + Sync)) -> Self {
Self::new(self.func.clone())
}
}
impl HeuristicSolution for VectorSolution {
fn get_fitness<'a>(&'a self) -> Box<dyn Iterator<Item = f64> + 'a> {
Box::new(self.objective.objectives().map(move |objective| objective.fitness(self)))
}
fn deep_copy(&self) -> Self {
Self::new(self.data.clone(), self.objective.clone())
}
}
impl DominanceOrdered for VectorSolution {
fn get_order(&self) -> &DominanceOrder {
&self.order
}
fn set_order(&mut self, order: DominanceOrder) {
self.order = order
}
}
impl RosomaxaWeighted for VectorSolution {
fn weights(&self) -> Vec<f64> {
// TODO:
// for the sake of experimentation, consider to provide some configuration here to allow
// usage of some noise, smoothing or optional weights, but not only direct mapping of data.
self.data.clone()
}
}
impl VectorSolution {
/// Creates a new instance of `VectorSolution`.
pub fn new(data: Vec<f64>, objective: Arc<VectorObjective>) -> Self {
Self { data, objective, order: DominanceOrder::default() }
}
}
/// An example initial operator
pub struct VectorInitialOperator {
data: Vec<f64>,
}
impl VectorInitialOperator {
/// Creates a new instance of `VectorInitialOperator`.
pub fn new(data: Vec<f64>) -> Self {
Self { data }
}
}
impl InitialOperator for VectorInitialOperator {
type Context = VectorContext;
type Objective = VectorObjective;
type Solution = VectorSolution;
fn create(&self, context: &Self::Context) -> Self::Solution {
Self::Solution::new(self.data.clone(), context.objective.clone())
}
}
/// Specifies mode of heuristic operator.
pub enum VectorHeuristicOperatorMode {
/// Adds some noice to all dimensions.
JustNoise(Noise),
/// Adds some noice to specific dimensions.
DimensionNoise(Noise, HashSet<usize>),
}
/// A naive implementation of heuristic search operator in vector space.
struct VectorHeuristicOperator {
mode: VectorHeuristicOperatorMode,
}
impl HeuristicOperator for VectorHeuristicOperator {
type Context = VectorContext;
type Objective = VectorObjective;
type Solution = VectorSolution;
fn search(&self, context: &Self::Context, solution: &Self::Solution) -> Self::Solution {
Self::Solution::new(
match &self.mode {
VectorHeuristicOperatorMode::JustNoise(noise) => {
solution.data.iter().map(|d| *d + noise.add(*d)).collect()
}
VectorHeuristicOperatorMode::DimensionNoise(noise, dimens) => solution
.data
.iter()
.enumerate()
.map(|(idx, d)| if dimens.contains(&idx) { *d + noise.add(*d) } else { *d })
.collect(),
},
context.objective.clone(),
)
}
}
type TargetInitialOperator = Box<
dyn InitialOperator<Context = VectorContext, Objective = VectorObjective, Solution = VectorSolution> + Send + Sync,
>;
type TargetHeuristicOperator = Arc<
dyn HeuristicOperator<Context = VectorContext, Objective = VectorObjective, Solution = VectorSolution>
+ Send
+ Sync,
>;
/// Specifies solver solutions.
pub type SolverSolutions = Vec<(Vec<f64>, f64)>;
/// An example of the optimization solver to solve trivial problems.
pub struct Solver {
initial_solutions: Vec<Vec<f64>>,
initial_params: (usize, f64),
objective_func: Option<VectorFunction>,
max_time: Option<usize>,
max_generations: Option<usize>,
min_cv: Option<(String, usize, f64, bool)>,
target_proximity: Option<(Vec<f64>, f64)>,
operators: Vec<(TargetHeuristicOperator, String, f64)>,
}
impl Default for Solver {
fn default() -> Self {
Self {
initial_solutions: vec![],
initial_params: (4, 0.05),
objective_func: None,
max_time: Some(10),
max_generations: Some(100),
min_cv: None,
target_proximity: None,
operators: vec![],
}
}
}
impl Solver {
/// Sets initial parameters.
pub fn with_init_params(mut self, max_size: usize, quota: f64) -> Self {
self.initial_params = (max_size, quota);
self
}
/// Sets initial solutions.
pub fn with_init_solutions(mut self, init_solutions: Vec<Vec<f64>>) -> Self {
self.initial_solutions = init_solutions;
self
}
// TODO add termination to stop when solution close to some target
/// Sets termination parameters.
pub fn with_termination(
mut self,
max_time: Option<usize>,
max_generations: Option<usize>,
min_cv: Option<(String, usize, f64, bool)>,
target_proximity: Option<(Vec<f64>, f64)>,
) -> Self {
self.max_time = max_time;
self.max_generations = max_generations;
self.min_cv = min_cv;
self.target_proximity = target_proximity;
self
}
/// Sets search operator.
pub fn with_operator(mut self, mode: VectorHeuristicOperatorMode, name: &str, probability: f64) -> Self {
self.operators.push((Arc::new(VectorHeuristicOperator { mode }), name.to_string(), probability));
self
}
/// Sets objective function.
pub fn with_objective_fun(mut self, objective_func: VectorFunction) -> Self {
self.objective_func = Some(objective_func);
self
}
/// Runs the solver using configuration provided through fluent interface methods.
pub fn solve(self) -> Result<(SolverSolutions, Option<TelemetryMetrics>), String> {
let environment = Arc::new(Environment::new_with_time_quota(self.max_time));
// build instances of implementation types from submitted data
let func = self.objective_func.ok_or_else(|| "objective function must be set".to_string())?;
let objective = Arc::new(VectorObjective::new(func));
let heuristic = Box::new(MultiSelective::new(
Box::new(DynamicSelective::new(
self.operators.iter().map(|(op, name, _)| (op.clone(), name.clone())).collect(),
environment.random.clone(),
)),
Box::new(StaticSelective::new(
self.operators
.iter()
.map(|(op, _, probability)| {
let random = environment.random.clone();
let probability = *probability;
let probability_func: HeuristicProbability<VectorContext, VectorObjective, VectorSolution> =
(Box::new(move |_, _| random.is_hit(probability)), Default::default());
(op.clone(), probability_func)
})
.collect(),
)),
));
let initial_operators = self
.initial_solutions
.into_iter()
.map(VectorInitialOperator::new)
.map::<(TargetInitialOperator, _), _>(|o| (Box::new(o), 1))
.collect();
// create a heuristic context
let context = VectorContext::new(
objective.clone(),
get_default_population::<VectorContext, _, _>(objective.clone(), environment.clone()),
environment.clone(),
);
// create a telemetry which will log population
let telemetry = Telemetry::new(TelemetryMode::OnlyLogging {
logger: environment.logger.clone(),
log_best: 100,
log_population: 500,
dump_population: false,
});
// build evolution config using fluent interface
let config = EvolutionConfigBuilder::default()
.with_heuristic(heuristic)
.with_objective(objective)
.with_context(context)
.with_min_cv(self.min_cv, 1)
.with_max_time(self.max_time)
.with_max_generations(self.max_generations)
.with_target_proximity(self.target_proximity)
.with_initial(self.initial_params.0, self.initial_params.1, initial_operators)
.with_telemetry(telemetry)
.build()?;
// solve the problem
let (solutions, metrics) = EvolutionSimulator::new(config)?.run()?;
let solutions = solutions
.into_iter()
.map(|s| {
let fitness = s.get_fitness().next().expect("empty fitness");
(s.data, fitness)
})
.collect();
Ok((solutions, metrics))
}
}
/// Creates multidimensional Rosenbrock function, also referred to as the Valley or Banana function.
/// The function is usually evaluated on the hypercube xi ∈ [-5, 10], for all i = 1, …, d, although
/// it may be restricted to the hypercube xi ∈ [-2.048, 2.048], for all i = 1, …, d.
pub fn create_rosenbrock_function() -> VectorFunction {
Arc::new(|input| {
assert!(input.len() > 1);
input.windows(2).fold(0., |acc, pair| {
let (x1, x2) = match pair {
[x1, x2] => (*x1, *x2),
_ => unreachable!(),
};
acc + 100. * (x2 - x1.powi(2)).powi(2) + (x1 - 1.).powi(2)
})
})
}
| 32.424318 | 119 | 0.614296 |
6533cb2d911f06e68a721247deb37def17dac93b | 5,448 | py | Python | kedro/extras/datasets/pandas/appendable_excel_dataset.py | hfwittmann/kedro | b0d4fcd8f19b49a7916d78fd09daeb6209a7b6c6 | [
"Apache-2.0"
] | 1 | 2021-11-25T12:33:13.000Z | 2021-11-25T12:33:13.000Z | kedro/extras/datasets/pandas/appendable_excel_dataset.py | MerelTheisenQB/kedro | 1eaa2e0fa5d80f96e18ea60b9f3d6e6efc161827 | [
"Apache-2.0"
] | null | null | null | kedro/extras/datasets/pandas/appendable_excel_dataset.py | MerelTheisenQB/kedro | 1eaa2e0fa5d80f96e18ea60b9f3d6e6efc161827 | [
"Apache-2.0"
] | null | null | null | """``AppendableExcelDataSet`` loads/saves data from/to a local Excel file opened in append mode.
It uses pandas to handle the Excel file.
"""
from copy import deepcopy
from pathlib import Path, PurePosixPath
from typing import Any, Dict
import pandas as pd
from kedro.io.core import AbstractDataSet, DataSetError
class AppendableExcelDataSet(AbstractDataSet):
"""``AppendableExcelDataSet`` loads/saves data from/to a local Excel file opened in
append mode. It uses pandas to handle the Excel file.
Example adding a catalog entry with
`YAML API <https://kedro.readthedocs.io/en/stable/05_data/\
01_data_catalog.html#using-the-data-catalog-with-the-yaml-api>`_:
.. code-block:: yaml
>>> # AppendableExcelDataSet creates a new sheet for every dataset
>>> # ExcelDataSet restricts one dataset per file as it is overwritten
>>>
>>> preprocessed_companies:
>>> type: pandas.AppendableExcelDataSet
>>> filepath: data/02_intermediate/preprocessed.xlsx # assumes file already exists
>>> save_args:
>>> sheet_name: preprocessed_companies
>>> load_args:
>>> sheet_name: preprocessed_companies
>>>
>>> preprocessed_shuttles:
>>> type: pandas.AppendableExcelDataSet
>>> filepath: data/02_intermediate/preprocessed.xlsx
>>> save_args:
>>> sheet_name: preprocessed_shuttles
>>> load_args:
>>> sheet_name: preprocessed_shuttles
Example using Python API:
::
>>> from kedro.extras.datasets.pandas import AppendableExcelDataSet
>>> from kedro.extras.datasets.pandas import ExcelDataSet
>>> import pandas as pd
>>>
>>> data_1 = pd.DataFrame({'col1': [1, 2], 'col2': [4, 5],
>>> 'col3': [5, 6]})
>>>
>>> data_2 = pd.DataFrame({'col1': [7, 8], 'col2': [5, 7]})
>>>
>>> regular_ds = ExcelDataSet(filepath="/tmp/test.xlsx")
>>> appendable_ds = AppendableExcelDataSet(
>>> filepath="/tmp/test.xlsx",
>>> save_args={"sheet_name": "my_sheet"},
>>> load_args={"sheet_name": "my_sheet"}
>>> )
>>>
>>> regular_ds.save(data_1)
>>> appendable_ds.save(data_2)
>>> reloaded = appendable_ds.load()
>>> assert data_2.equals(reloaded)
"""
DEFAULT_LOAD_ARGS = {"engine": "openpyxl"}
DEFAULT_SAVE_ARGS = {"index": False}
def __init__(
self,
filepath: str,
load_args: Dict[str, Any] = None,
save_args: Dict[str, Any] = None,
) -> None:
"""Creates a new instance of ``AppendableExcelDataSet`` pointing to an existing local
Excel file to be opened in append mode.
Args:
filepath: Filepath in POSIX format to an existing local Excel file.
load_args: Pandas options for loading Excel files.
Here you can find all available arguments:
https://pandas.pydata.org/pandas-docs/stable/generated/pandas.read_excel.html
All defaults are preserved, but "engine", which is set to "openpyxl".
save_args: Pandas options for saving Excel files.
Here you can find all available arguments:
https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.to_excel.html
All defaults are preserved, but "index", which is set to False.
If you would like to specify options for the `ExcelWriter`,
you can include them under "writer" key. Here you can
find all available arguments:
https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.ExcelWriter.html
Note: `mode` option of `ExcelWriter` is set to `a` and it can not be overridden.
"""
self._filepath = PurePosixPath(filepath)
# Handle default load and save arguments
self._load_args = deepcopy(self.DEFAULT_LOAD_ARGS)
if load_args is not None:
self._load_args.update(load_args)
save_args = deepcopy(save_args) or {}
self._save_args = deepcopy(self.DEFAULT_SAVE_ARGS)
self._writer_args = save_args.pop("writer", {}) # type: Dict[str, Any]
self._writer_args.setdefault("engine", "openpyxl")
if save_args is not None:
self._save_args.update(save_args)
# Use only append mode
self._writer_args["mode"] = "a"
def _describe(self) -> Dict[str, Any]:
return dict(
filepath=self._filepath,
load_args=self._load_args,
save_args=self._save_args,
writer_args=self._writer_args,
)
def _load(self) -> pd.DataFrame:
return pd.read_excel(str(self._filepath), **self._load_args)
def _save(self, data: pd.DataFrame) -> None:
# pylint: disable=abstract-class-instantiated
try:
with pd.ExcelWriter(str(self._filepath), **self._writer_args) as writer:
data.to_excel(writer, **self._save_args)
except FileNotFoundError as exc:
raise DataSetError(
f"`{self._filepath}` Excel file not found. The file cannot be opened in "
f"append mode."
) from exc
def _exists(self) -> bool:
return Path(self._filepath.as_posix()).is_file()
| 39.766423 | 101 | 0.612518 |
544ceb2743dbbb4ce474f25f42d566e60e7e9573 | 3,812 | go | Go | Godeps/_workspace/src/github.com/ThomasRooney/gexpect/gexpect_test.go | maquanyi/rkt | d213d00ad591e9b2e1542c3b1615a79bab03633d | [
"Apache-2.0"
] | null | null | null | Godeps/_workspace/src/github.com/ThomasRooney/gexpect/gexpect_test.go | maquanyi/rkt | d213d00ad591e9b2e1542c3b1615a79bab03633d | [
"Apache-2.0"
] | null | null | null | Godeps/_workspace/src/github.com/ThomasRooney/gexpect/gexpect_test.go | maquanyi/rkt | d213d00ad591e9b2e1542c3b1615a79bab03633d | [
"Apache-2.0"
] | 1 | 2022-03-22T09:16:50.000Z | 2022-03-22T09:16:50.000Z | package gexpect
import (
"strings"
"testing"
)
func TestHelloWorld(t *testing.T) {
t.Logf("Testing Hello World... ")
child, err := Spawn("echo \"Hello World\"")
if err != nil {
t.Fatal(err)
}
err = child.Expect("Hello World")
if err != nil {
t.Fatal(err)
}
}
func TestDoubleHelloWorld(t *testing.T) {
t.Logf("Testing Double Hello World... ")
child, err := Spawn(`sh -c "echo Hello World ; echo Hello ; echo Hi"`)
if err != nil {
t.Fatal(err)
}
err = child.Expect("Hello World")
if err != nil {
t.Fatal(err)
}
err = child.Expect("Hello")
if err != nil {
t.Fatal(err)
}
err = child.Expect("Hi")
if err != nil {
t.Fatal(err)
}
}
func TestHelloWorldFailureCase(t *testing.T) {
t.Logf("Testing Hello World Failure case... ")
child, err := Spawn("echo \"Hello World\"")
if err != nil {
t.Fatal(err)
}
err = child.Expect("YOU WILL NEVER FIND ME")
if err != nil {
return
}
t.Fatal("Expected an error for TestHelloWorldFailureCase")
}
func TestBiChannel(t *testing.T) {
t.Logf("Testing BiChannel screen... ")
child, err := Spawn("cat")
if err != nil {
t.Fatal(err)
}
sender, reciever := child.AsyncInteractChannels()
wait := func(str string) {
for {
msg, open := <-reciever
if !open {
return
}
if strings.Contains(msg, str) {
return
}
}
}
sender <- "echo\n"
wait("echo")
sender <- "echo2"
wait("echo2")
child.Close()
// child.Wait()
}
func TestCommandStart(t *testing.T) {
t.Logf("Testing Command... ")
// Doing this allows you to modify the cmd struct prior to execution, for example to add environment variables
child, err := Command("echo 'Hello World'")
if err != nil {
t.Fatal(err)
}
child.Start()
child.Expect("Hello World")
}
var regexMatchTests = []struct {
re string
good string
bad string
}{
{`a`, `a`, `b`},
{`.b`, `ab`, `ac`},
{`a+hello`, `aaaahello`, `bhello`},
{`(hello|world)`, `hello`, `unknown`},
{`(hello|world)`, `world`, `unknown`},
}
func TestRegexMatch(t *testing.T) {
t.Logf("Testing Regular Expression Matching... ")
for _, tt := range regexMatchTests {
runTest := func(input string) bool {
var match bool
child, err := Spawn("echo \"" + input + "\"")
if err != nil {
t.Fatal(err)
}
match, err = child.ExpectRegex(tt.re)
if err != nil {
t.Fatal(err)
}
return match
}
if !runTest(tt.good) {
t.Errorf("Regex Not matching [%#q] with pattern [%#q]", tt.good, tt.re)
}
if runTest(tt.bad) {
t.Errorf("Regex Matching [%#q] with pattern [%#q]", tt.bad, tt.re)
}
}
}
var regexFindTests = []struct {
re string
input string
matches []string
}{
{`he(l)lo wo(r)ld`, `hello world`, []string{"hello world", "l", "r"}},
{`(a)`, `a`, []string{"a", "a"}},
{`so.. (hello|world)`, `so.. hello`, []string{"so.. hello", "hello"}},
{`(a+)hello`, `aaaahello`, []string{"aaaahello", "aaaa"}},
{`\d+ (\d+) (\d+)`, `123 456 789`, []string{"123 456 789", "456", "789"}},
}
func TestRegexFind(t *testing.T) {
t.Logf("Testing Regular Expression Search... ")
for _, tt := range regexFindTests {
runTest := func(input string) []string {
child, err := Spawn("echo \"" + input + "\"")
if err != nil {
t.Fatal(err)
}
matches, err := child.ExpectRegexFind(tt.re)
if err != nil {
t.Fatal(err)
}
return matches
}
matches := runTest(tt.input)
if len(matches) != len(tt.matches) {
t.Fatalf("Regex not producing the expected number of patterns.. got[%d] ([%s]) expected[%d] ([%s])",
len(matches), strings.Join(matches, ","),
len(tt.matches), strings.Join(tt.matches, ","))
}
for i, _ := range matches {
if matches[i] != tt.matches[i] {
t.Errorf("Regex Expected group [%s] and got group [%s] with pattern [%#q] and input [%s]",
tt.matches[i], matches[i], tt.re, tt.input)
}
}
}
}
| 22.826347 | 111 | 0.595226 |
858f4fa8742738a7f15e7c3a06f3c8052384d1dd | 1,014 | js | JavaScript | src/index.js | lianwt115/react_s3 | bc571d77b9a44f38fcaf3a2182f583ec24b1cb56 | [
"MIT"
] | 1 | 2018-07-15T06:16:40.000Z | 2018-07-15T06:16:40.000Z | src/index.js | lianwt115/react_s3 | bc571d77b9a44f38fcaf3a2182f583ec24b1cb56 | [
"MIT"
] | null | null | null | src/index.js | lianwt115/react_s3 | bc571d77b9a44f38fcaf3a2182f583ec24b1cb56 | [
"MIT"
] | null | null | null | import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import { Provider } from 'react-redux';
import App from './App';
import store from './store';
import Login from './component/login/Login';
import registerServiceWorker from './registerServiceWorker';
import { Switch , BrowserRouter, Route,Redirect} from 'react-router-dom';
import noMatch from "./component/notfound/404";
class Index extends React.Component {
render() {
return (
<Provider store={store}>
<BrowserRouter>
<Switch>
<Route path="/main" component={App} />
<Route path="/login" component={Login} />
<Redirect from="/" to="/login"/>
<Route component={noMatch} />
</Switch>
</BrowserRouter>
</Provider>
)
}
}
ReactDOM.render( <Index/>, document.getElementById('root'));
registerServiceWorker();
| 30.727273 | 73 | 0.561144 |
a1b79090f803dc3fceff7199a7c24ab6d0e0950a | 3,669 | h | C | rts/game_MC/ai.h | jedirv/ELF-OSU | 98bb2a68bbab5b6ac8925222a82738809db41f7d | [
"BSD-3-Clause"
] | 2 | 2019-07-15T00:18:52.000Z | 2021-02-09T22:12:45.000Z | rts/game_MC/ai.h | GaoFangshu/ELF-example | 8fbe6f0633c13378003282352f23cd08ca7a50f1 | [
"BSD-3-Clause"
] | null | null | null | rts/game_MC/ai.h | GaoFangshu/ELF-example | 8fbe6f0633c13378003282352f23cd08ca7a50f1 | [
"BSD-3-Clause"
] | null | null | null | /**
* Copyright (c) 2017-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#pragma once
#include "../engine/ai.h"
#include "python_options.h"
#include "mc_rule_actor.h"
using Context = ContextT<PythonOptions, ExtGame, Reply>;
using AIComm = AICommT<Context>;
class AIBase : public AIWithComm<AIComm, ExtGame> {
protected:
// Feature extraction.
void save_structured_state(const GameEnv &env, ExtGame *game) const override;
public:
AIBase() { }
AIBase(PlayerId id, int frameskip, CmdReceiver *receiver, AIComm *ai_comm = nullptr)
: AIWithComm<AIComm, ExtGame>(id, frameskip, receiver, ai_comm) {
}
};
// TrainedAI2 for MiniRTS, connected with a python wrapper / ELF.
class TrainedAI2 : public AIBase {
private:
// Backup AI.
// Used when we want the default ai to play for a while and then TrainedAI can take over.
Tick _backup_ai_tick_thres;
std::unique_ptr<AI> _backup_ai;
MCRuleActor _mc_rule_actor;
protected:
bool on_act(const GameEnv &env) override;
void on_set_id(PlayerId id) override {
this->AIBase::on_set_id(id);
if (_backup_ai != nullptr) _backup_ai->SetId(id);
}
void on_set_cmd_receiver(CmdReceiver *receiver) override {
this->AIBase::on_set_cmd_receiver(receiver);
if (_backup_ai != nullptr) _backup_ai->SetCmdReceiver(receiver);
}
void on_save_data(ExtGame *game) override {
this->AIBase::on_save_data(game);
game->ai_start_tick = _backup_ai_tick_thres;
}
bool need_structured_state(Tick tick) const override {
if (_backup_ai != nullptr && tick < _backup_ai_tick_thres) {
// We just use the backup AI.
return false;
} else {
return true;
}
}
RuleActor *rule_actor() override { return &_mc_rule_actor; }
public:
TrainedAI2(PlayerId id, int frame_skip, CmdReceiver *receiver, AIComm *ai_comm, AI *backup_ai = nullptr)
: AIBase(id, frame_skip, receiver, ai_comm), _backup_ai_tick_thres(0) {
if (ai_comm == nullptr) {
throw std::range_error("TrainedAI2: ai_comm cannot be nullptr!");
}
if (backup_ai != nullptr) {
backup_ai->SetId(GetId());
backup_ai->SetCmdReceiver(_receiver);
_backup_ai.reset(backup_ai);
}
}
// Note that this is not thread-safe, so we need to be careful here.
void SetBackupAIEndTick(Tick thres) { _backup_ai_tick_thres = thres; }
};
// Simple AI, rule-based AI for Mini-RTS
class SimpleAI : public AIBase {
private:
MCRuleActor _mc_rule_actor;
bool on_act(const GameEnv &env) override;
RuleActor *rule_actor() override { return &_mc_rule_actor; }
public:
SimpleAI() {
}
SimpleAI(PlayerId id, int frame_skip, CmdReceiver *receiver, AIComm *ai_comm = nullptr)
: AIBase(id, frame_skip, receiver, ai_comm) {
}
SERIALIZER_DERIVED(SimpleAI, AIBase, _state);
};
// HitAndRun AI, rule-based AI for Mini-RTS
class HitAndRunAI : public AIBase {
private:
MCRuleActor _mc_rule_actor;
bool on_act(const GameEnv &env) override;
RuleActor *rule_actor() override { return &_mc_rule_actor; }
public:
HitAndRunAI() {
}
HitAndRunAI(PlayerId id, int frame_skip, CmdReceiver *receiver, AIComm *ai_comm = nullptr)
: AIBase(id, frame_skip, receiver, ai_comm) {
}
SERIALIZER_DERIVED(HitAndRunAI, AIBase, _state);
};
| 30.831933 | 108 | 0.674571 |
7828db01df90d87ce8957314f72541d2ebdb2520 | 1,260 | swift | Swift | Sources/SATSCore/Extensions/SwiftUI/ViewData/ActionSheetViewData.swift | healthfitnessnordic/SATSCore-iOS | 66ca055876bdc92c5df250d140e916d1575eab13 | [
"MIT"
] | 3 | 2021-05-18T07:31:59.000Z | 2022-03-20T10:07:32.000Z | Sources/SATSCore/Extensions/SwiftUI/ViewData/ActionSheetViewData.swift | healthfitnessnordic/SATSCore-iOS | 66ca055876bdc92c5df250d140e916d1575eab13 | [
"MIT"
] | 12 | 2021-08-02T08:53:22.000Z | 2022-03-23T10:44:28.000Z | Sources/SATSCore/Extensions/SwiftUI/ViewData/ActionSheetViewData.swift | healthfitnessnordic/SATSCore-iOS | 66ca055876bdc92c5df250d140e916d1575eab13 | [
"MIT"
] | null | null | null | import SwiftUI
public struct ActionSheetViewData: Identifiable, Equatable {
public let id: String
public let title: String
public let message: String?
public let actions: [ActionViewData]
public init(id: String? = nil, title: String, message: String?, actions: [ActionViewData]) {
self.id = id ?? UUID().uuidString
self.title = title
self.message = message
self.actions = actions
}
public struct ActionViewData: Equatable {
public let title: String
public let perform: () -> Void
public init(title: String, perform: @escaping () -> Void) {
self.title = title
self.perform = perform
}
public static func == (lhs: Self, rhs: Self) -> Bool {
lhs.title == rhs.title
}
}
}
public extension ActionSheet {
init(viewData: ActionSheetViewData) {
var buttons: [Button] = viewData.actions
.map { action in
Button.default(Text(action.title), action: action.perform)
}
buttons.append(.cancel())
self.init(
title: Text(viewData.title),
message: viewData.message.map { Text($0) },
buttons: buttons
)
}
}
| 27.391304 | 96 | 0.577778 |
1f9a0e882c9bceb69a4bc24b717259aa996f2935 | 3,932 | html | HTML | app/templates/objects/course_contents.html | OpenJUB/jCourse | a2b953480b913c3d2cf9774afd5802b0c5364189 | [
"MIT"
] | null | null | null | app/templates/objects/course_contents.html | OpenJUB/jCourse | a2b953480b913c3d2cf9774afd5802b0c5364189 | [
"MIT"
] | null | null | null | app/templates/objects/course_contents.html | OpenJUB/jCourse | a2b953480b913c3d2cf9774afd5802b0c5364189 | [
"MIT"
] | null | null | null | <div class="panel-heading">
<!-- Course Name -->
<div class="course-name">
<a href="{% url 'course_page' course.slug %}">{{ course.name }}</a>
</div>
</div>
<div class="panel-body">
<div class="row">
<!-- Picture here -->
<div class="col-md-4">
<div class="course-image-wrapper">
{% if course.image %}
<img class="img-thumbnail course-page-image" src="{% url 'course_image' course.slug %}" alt="{{course.name}} image">
{% else %}
<img class="img-thumbnail course-page-image" src="{{ STATIC_URL }}books.jpg" alt="{{course.name}} image">
{% endif %}
</div>
</div>
<!-- Some info -->
<div class="col-md-8 course-brief-detail-wrapper">
{% if course.course_id %}
<div class="course-brief-detail">
<strong> Course ID: </strong>
<span class="content">
{{ course.course_id }}
</span>
</div>
{% endif %}
{% if course.credits %}
<div class="course-brief-detail">
<strong> Credits: </strong>
<span class="content">
{{ course.credits }}
</span>
</div>
{% endif %}
{% if course.participants %}
<div class="course-brief-detail">
<strong> Min. | Max. participants: </strong>
<span class="content">
{{ course.participants }}
</span>
</div>
{% endif %}
{% if course.abbreviation %}
<div class="course-brief-detail">
<strong> Abbreviation: </strong>
<span class="content">
{{ course.abbreviation }}
</span>
</div>
{% endif %}
{% if course_type %}
<div class="course-brief-detail">
<strong> Course Type: </strong>
<span class="content">
{{ course_type }}
</span>
</div>
{% endif %}
</div>
</div>
<hr>
{% include "objects/course_ratings.html" %}
<hr>
{% if course.description %}
<div class="course-detail">
<strong> Description: </strong>
<div class="content">
{{ course.description|linebreaks }}
</div>
</div>
<hr>
{% endif %}
{% if course.additional_info %}
<div class="course-detail">
<strong> Additional information: </strong>
<div class="content">
{{ course.additional_info|linebreaks }}
</div>
</div>
{% endif %}
{% if course.grades %}
<div class="course-detail">
<strong> Grade breakdown: </strong>
<div class="content">
{{ course.grades }}
</div>
</div>
{% endif %}
{% if course.grades_info %}
<div class="course-detail">
<strong> Additional Information about grades: </strong>
<div class="content">
{{ course.grades_info }}
</div>
</div>
{% endif %}
{% if course.hours_per_week %}
<div class="course-detail">
<strong> Hours per week: </strong>
<span class="content">
{{ course.hours_per_week }}
</span>
</div>
{% endif %}
{% if course.catalogue %}
<div class="course-detail">
<strong> Catalogue: </strong>
<span class="content">
{{ course.catalogue }}
</span>
</div>
{% endif %}
<!-- sections_info is useless -->
</div> | 30.48062 | 136 | 0.431841 |
6b1a61258e7f56c3dd5ef4b5c31a0a46571b74ca | 209 | kt | Kotlin | extender-framework/src/main/kotlin/info/pzss/zomboid/extender/framework/config/ConfigSource.kt | pz-extender/extender | 87c6a98311b0f2198ed40229c0fc4f7817bb426d | [
"Apache-2.0",
"MIT"
] | null | null | null | extender-framework/src/main/kotlin/info/pzss/zomboid/extender/framework/config/ConfigSource.kt | pz-extender/extender | 87c6a98311b0f2198ed40229c0fc4f7817bb426d | [
"Apache-2.0",
"MIT"
] | 1 | 2022-01-08T23:04:24.000Z | 2022-01-08T23:04:24.000Z | extender-framework/src/main/kotlin/info/pzss/zomboid/extender/framework/config/ConfigSource.kt | pz-extender/extender | 87c6a98311b0f2198ed40229c0fc4f7817bb426d | [
"Apache-2.0",
"MIT"
] | null | null | null | package info.pzss.zomboid.extender.framework.config
interface ConfigSource {
fun getOptionValueAsString(name: String): String?
operator fun get(name: String): String? = getOptionValueAsString(name)
} | 29.857143 | 74 | 0.779904 |
2a61f3d84c0b9e4083a60904928201beb3b590f5 | 210 | kt | Kotlin | app/src/main/java/com/luisenricke/localwebpages/common/extension/ViewExt.kt | luisenricke/LocalWebPages | 1bdc0605a55fc3613b8403dd53aa61de59f782f0 | [
"MIT"
] | 3 | 2020-02-22T02:26:59.000Z | 2021-08-05T01:47:43.000Z | app/src/main/java/com/luisenricke/localwebpages/common/extension/ViewExt.kt | luisenricke/LocalWebPages | 1bdc0605a55fc3613b8403dd53aa61de59f782f0 | [
"MIT"
] | null | null | null | app/src/main/java/com/luisenricke/localwebpages/common/extension/ViewExt.kt | luisenricke/LocalWebPages | 1bdc0605a55fc3613b8403dd53aa61de59f782f0 | [
"MIT"
] | null | null | null | package com.luisenricke.localwebpages.common.extension
import android.view.View
import androidx.core.widget.NestedScrollView
@Suppress("unused")
fun NestedScrollView.moveTop() = this.fullScroll(View.FOCUS_UP) | 30 | 63 | 0.838095 |
5f2c23c6e87a17773f9decd12f1aea8a684a464b | 237 | ts | TypeScript | src/app/customDirectives/google-map.directive.spec.ts | gustavo-alarcon/aqpcab-off | eefd7d893cf6442ca6deb7bbf78a157b69e58677 | [
"Apache-2.0"
] | null | null | null | src/app/customDirectives/google-map.directive.spec.ts | gustavo-alarcon/aqpcab-off | eefd7d893cf6442ca6deb7bbf78a157b69e58677 | [
"Apache-2.0"
] | null | null | null | src/app/customDirectives/google-map.directive.spec.ts | gustavo-alarcon/aqpcab-off | eefd7d893cf6442ca6deb7bbf78a157b69e58677 | [
"Apache-2.0"
] | null | null | null | import { GoogleMapDirective } from './google-map.directive';
describe('GoogleMapDirective', () => {
it('should create an instance', () => {
const directive = new GoogleMapDirective();
expect(directive).toBeTruthy();
});
});
| 26.333333 | 60 | 0.658228 |
43cf8f2c4e94f2a6aef434b7756d20fd9ca402bd | 797 | go | Go | unixtime.go | fakeNetflix/indeedeng-repo-libtime | 2cfc5556e8d60b6672adbca5192f2e464be29db1 | [
"BSD-3-Clause"
] | 2 | 2019-07-01T20:41:22.000Z | 2019-12-05T20:21:06.000Z | unixtime.go | fakeNetflix/indeedeng-repo-libtime | 2cfc5556e8d60b6672adbca5192f2e464be29db1 | [
"BSD-3-Clause"
] | 5 | 2019-07-01T20:41:06.000Z | 2022-03-15T03:16:50.000Z | unixtime.go | fakeNetflix/indeedeng-repo-libtime | 2cfc5556e8d60b6672adbca5192f2e464be29db1 | [
"BSD-3-Clause"
] | 2 | 2021-04-01T11:46:18.000Z | 2022-03-13T14:35:12.000Z | package libtime
import (
"time"
)
const nanosToMillisDenominator = int64(time.Millisecond / time.Nanosecond)
const millisToSecsDenominator = int64(time.Second / time.Millisecond)
// ToMilliseconds returns time in milliseconds since epoch
func ToMilliseconds(t time.Time) int64 {
return t.UnixNano() / nanosToMillisDenominator
}
// FromMilliseconds converts time in milliseconds since epoch to time.Time
func FromMilliseconds(ms int64) time.Time {
seconds := ms / millisToSecsDenominator
milliseconds := ms % millisToSecsDenominator
nanoseconds := milliseconds * nanosToMillisDenominator
return time.Unix(seconds, nanoseconds)
}
// DurationToMillis returns d in terms of milliseconds.
func DurationToMillis(d time.Duration) int64 {
return d.Nanoseconds() / nanosToMillisDenominator
}
| 27.482759 | 74 | 0.796738 |
ddf8b0952c4a3d9e8da47e45e9b0347857b18d6d | 639 | php | PHP | database/seeders/RolSeeder.php | Vk-Zea/Api-js | 9485b971545533a8a047822d370a0915bf82c9c8 | [
"MIT"
] | null | null | null | database/seeders/RolSeeder.php | Vk-Zea/Api-js | 9485b971545533a8a047822d370a0915bf82c9c8 | [
"MIT"
] | null | null | null | database/seeders/RolSeeder.php | Vk-Zea/Api-js | 9485b971545533a8a047822d370a0915bf82c9c8 | [
"MIT"
] | null | null | null | <?php
namespace Database\Seeders;
use App\Models\roles;
use Illuminate\Database\Seeder;
class RolSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
$arrayData =
[
['name' => 'Administrador', 'status_id' => 1],
['name' => 'Cliente', 'status_id' => 1],
['name' => 'Empleado', 'status_id' => 1]
];
foreach($arrayData as $data){
$TS = new roles();
$TS->name = $data['name'];
$TS->status_id = $data['status_id'];
$TS->save();
}
}
}
| 19.96875 | 58 | 0.467919 |
24aa5574b98df9355db06f65aa76fba2d55645b8 | 4,002 | asm | Assembly | bootdict/x86/rstack.asm | ikysil/ikforth | 165e049fc007003cd05f59332dc856d553d8aac8 | [
"Unlicense"
] | 8 | 2017-08-03T08:49:06.000Z | 2021-12-17T12:02:19.000Z | bootdict/x86/rstack.asm | clstrfsck/ikforth | 165e049fc007003cd05f59332dc856d553d8aac8 | [
"Unlicense"
] | 58 | 2016-04-21T20:03:54.000Z | 2022-01-16T00:40:50.000Z | bootdict/x86/rstack.asm | clstrfsck/ikforth | 165e049fc007003cd05f59332dc856d553d8aac8 | [
"Unlicense"
] | 1 | 2018-07-25T21:07:00.000Z | 2018-07-25T21:07:00.000Z | ;******************************************************************************
;
; rstack.asm
; IKForth
;
; Unlicense since 1999 by Illya Kysil
;
;******************************************************************************
; Return stack manipulation
;******************************************************************************
; 6.1.0580 >R
; Move value from the data stack to return stack
; D: a --
; R: -- a
$CODE '>R',$TO_R,VEF_COMPILE_ONLY
POPDS EAX
PUSHRS EAX
$NEXT
; 6.1.2060 R>
; Interpretation: Interpretation semantics for this word are undefined.
; Execution: ( -- x ) ( R: x -- )
; Move x from the return stack to the data stack.
$CODE 'R>',$R_FROM,VEF_COMPILE_ONLY
POPRS EAX
PUSHDS EAX
$NEXT
; 6.1.2070 R@
; Copy value from the return stack to data stack
; R: a -- a
; D: -- a
$CODE 'R@',$R_FETCH,VEF_USUAL
FETCHRS EAX
PUSHDS EAX
$NEXT
; 6.2.0340 2>R
; D: a b --
; R: -- a b
$CODE '2>R',$TWO_TO_R,VEF_COMPILE_ONLY
POPDS EBX
POPDS EAX
PUSHRS EAX
PUSHRS EBX
$NEXT
; 6.2.0410 2R>
; D: -- a b
; R: a b --
$CODE '2R>',$TWO_R_FROM,VEF_COMPILE_ONLY
POPRS EBX
POPRS EAX
PUSHDS EAX
PUSHDS EBX
$NEXT
; 6.2.0415 2R@
; D: -- a b
; R: a b -- a b
$CODE '2R@',$TWO_R_FETCH,VEF_USUAL
FETCHRS EBX,0
FETCHRS EAX,1
PUSHDS EAX
PUSHDS EBX
$NEXT
; R-PICK
$CODE 'R-PICK',$R_PICK,VEF_USUAL
POPDS EBX
FETCHRS EAX,EBX
PUSHDS EAX
$NEXT
; RS-SIZE
$CONST 'RS-SIZE',,RETURN_STACK_SIZE
; RP0
$CODE 'RP0',$RP0,VEF_USUAL
LEA EAX,DWORD [EDI + VAR_RSTACK]
PUSHDS EAX
$NEXT
; RP@
$CODE 'RP@',$RPFETCH,VEF_USUAL
PUSHDS EBP
$NEXT
; RP!
$CODE 'RP!',$RPSTORE,VEF_COMPILE_ONLY
POPDS EBP
$NEXT
; +R
; D: x - x
; R: - x
$CODE '+R',$PLUS_R,VEF_COMPILE_ONLY
FETCHDS EAX
PUSHRS EAX
$NEXT
; 2+R
; D: x1 x2 - x1 x2
; R: - x1 x2
$CODE '2+R',$2PLUS_R,VEF_COMPILE_ONLY
FETCHDS EAX
FETCHDS EBX,1
PUSHRS EBX
PUSHRS EAX
$NEXT
; N>R
; D: xn .. x1 n -
; R: - x1 .. xn n
$CODE 'N>R',$N_TO_R,VEF_COMPILE_ONLY
POPDS ECX
MOV EAX,ECX
OR ECX,ECX
@@N_TO_R_LOOP:
JECXZ SHORT @@N_TO_R_EXIT
POPDS EBX
PUSHRS EBX
DEC ECX
JMP SHORT @@N_TO_R_LOOP
@@N_TO_R_EXIT:
PUSHRS EAX
$NEXT
; NR>
; D: - xn .. x1 n
; R: x1 .. xn n -
$CODE 'NR>',$N_R_FROM,VEF_COMPILE_ONLY
POPRS ECX
MOV EAX,ECX
OR ECX,ECX
@@N_R_FROM_LOOP:
JECXZ SHORT @@N_R_FROM_EXIT
POPRS EBX
PUSHDS EBX
DEC ECX
JMP SHORT @@N_R_FROM_LOOP
@@N_R_FROM_EXIT:
PUSHDS EAX
$NEXT
| 27.410959 | 79 | 0.348326 |
b19377c655f06bfb382a729bef86d6bd74e0a79f | 459 | h | C | src/html_constant.h | kamiltalipov/simple-http-server | b46876839d8df14bf7ce563b7c25f2d15cda6d63 | [
"MIT"
] | 1 | 2016-10-09T00:39:25.000Z | 2016-10-09T00:39:25.000Z | src/html_constant.h | kamiltalipov/simple-http-server | b46876839d8df14bf7ce563b7c25f2d15cda6d63 | [
"MIT"
] | null | null | null | src/html_constant.h | kamiltalipov/simple-http-server | b46876839d8df14bf7ce563b7c25f2d15cda6d63 | [
"MIT"
] | 2 | 2015-11-07T17:27:38.000Z | 2019-10-12T16:08:55.000Z | #ifndef __HTML_CONSTANT_H__
#define __HTML_CONSTANT_H__
const char* const HTML_BEGIN = "<html><body><h1>Simple http server</h1><table>";
const char* const HTML_END = "</table></body></html>\r\n";
const char* const HTML_TABLE_BEGIN = "<tr><td>";
const char* const HTML_TABLE_END = "</td></tr>";
const char* const HTML_LINK_BEGIN = "<a href=\"http://127.0.0.1:8080";
const char* const HTML_LINK_MIDDLE = "\">";
const char* const HTML_LINK_END = "</a>";
#endif | 38.25 | 80 | 0.699346 |
e78b42e5205c1273e7de7e16157421bb115ce2af | 2,222 | js | JavaScript | files/pixastic/0.1.3/actions/blurfast.js | isaackwan/jsdelivr | 8fd58a1cad97aacc58f9723b81f06ff231ceed60 | [
"MIT"
] | 188 | 2015-01-03T23:49:36.000Z | 2021-06-18T09:16:24.000Z | view/js/pixtastic/actions/blurfast.js | fregaham/KiWi | 04952f928b2cc23555961dbc5988cfcd496f4854 | [
"BSD-3-Clause"
] | 2 | 2015-01-21T08:21:47.000Z | 2018-06-20T12:15:04.000Z | view/js/pixtastic/actions/blurfast.js | fregaham/KiWi | 04952f928b2cc23555961dbc5988cfcd496f4854 | [
"BSD-3-Clause"
] | 51 | 2015-01-07T14:15:25.000Z | 2021-08-06T03:00:59.000Z | /*
* Pixastic Lib - Blur Fast - v0.1.1
* Copyright (c) 2008 Jacob Seidelin, jseidelin@nihilogic.dk, http://blog.nihilogic.dk/
* License: [http://www.pixastic.com/lib/license.txt]
*/
Pixastic.Actions.blurfast = {
process : function(params) {
var amount = parseFloat(params.options.amount)||0;
var clear = !!(params.options.clear && params.options.clear != "false");
amount = Math.max(0,Math.min(5,amount));
if (Pixastic.Client.hasCanvas()) {
var rect = params.options.rect;
var ctx = params.canvas.getContext("2d");
ctx.save();
ctx.beginPath();
ctx.rect(rect.left, rect.top, rect.width, rect.height);
ctx.clip();
var scale = 2;
var smallWidth = Math.round(params.width / scale);
var smallHeight = Math.round(params.height / scale);
var copy = document.createElement("canvas");
copy.width = smallWidth;
copy.height = smallHeight;
var clear = false;
var steps = Math.round(amount * 20);
var copyCtx = copy.getContext("2d");
for (var i=0;i<steps;i++) {
var scaledWidth = Math.max(1,Math.round(smallWidth - i));
var scaledHeight = Math.max(1,Math.round(smallHeight - i));
copyCtx.clearRect(0,0,smallWidth,smallHeight);
copyCtx.drawImage(
params.canvas,
0,0,params.width,params.height,
0,0,scaledWidth,scaledHeight
);
if (clear)
ctx.clearRect(rect.left,rect.top,rect.width,rect.height);
ctx.drawImage(
copy,
0,0,scaledWidth,scaledHeight,
0,0,params.width,params.height
);
}
ctx.restore();
params.useData = false;
return true;
} else if (Pixastic.Client.isIE()) {
var radius = 10 * amount;
params.image.style.filter += " progid:DXImageTransform.Microsoft.Blur(pixelradius=" + radius + ")";
if (params.options.fixMargin || 1) {
params.image.style.marginLeft = (parseInt(params.image.style.marginLeft,10)||0) - Math.round(radius) + "px";
params.image.style.marginTop = (parseInt(params.image.style.marginTop,10)||0) - Math.round(radius) + "px";
}
return true;
}
},
checkSupport : function() {
return (Pixastic.Client.hasCanvas() || Pixastic.Client.isIE());
}
}
| 28.487179 | 113 | 0.633663 |
85b6e55b5fab276805a57d0a72b6237bdc6f3eb6 | 420 | js | JavaScript | lib/selector.js | regularjs/regular-loader | 1e70e5266b1624ab4b3b326d0fec84d02b22bc39 | [
"MIT"
] | 11 | 2016-09-09T15:33:38.000Z | 2019-06-25T07:11:47.000Z | lib/selector.js | regularjs/regular-loader | 1e70e5266b1624ab4b3b326d0fec84d02b22bc39 | [
"MIT"
] | 10 | 2016-08-19T02:40:31.000Z | 2018-11-22T07:04:38.000Z | lib/selector.js | regularjs/regular-loader | 1e70e5266b1624ab4b3b326d0fec84d02b22bc39 | [
"MIT"
] | 8 | 2016-08-20T19:13:59.000Z | 2018-09-26T07:28:15.000Z | const parse = require( './parser' )
const loaderUtils = require( 'loader-utils' )
const path = require( 'path' )
module.exports = function ( content ) {
const options = loaderUtils.getOptions( this )
const filename = path.basename( this.resourcePath )
const parts = parse( content, filename, this.sourceMap )
const part = parts[ options.type ][ options.index ]
this.callback( null, part.content, part.map )
}
| 35 | 58 | 0.707143 |
d1cbdaedd48c68aa87a65a0fb37e63d995114a4d | 208 | lua | Lua | dev/worldmods/mapserver_emerge/init.lua | PeterNerlich/mapserver | 847c0870260893dda8aab80a279db08e832f5758 | [
"MIT"
] | 56 | 2019-12-13T18:49:43.000Z | 2022-03-15T08:09:58.000Z | dev/worldmods/mapserver_emerge/init.lua | PeterNerlich/mapserver | 847c0870260893dda8aab80a279db08e832f5758 | [
"MIT"
] | 149 | 2019-11-27T05:43:28.000Z | 2022-03-23T07:43:45.000Z | dev/worldmods/mapserver_emerge/init.lua | PeterNerlich/mapserver | 847c0870260893dda8aab80a279db08e832f5758 | [
"MIT"
] | 16 | 2019-12-03T16:42:16.000Z | 2022-02-10T04:05:47.000Z |
minetest.after(5, function()
minetest.log("action", "[mapserver_emerge] emerging area")
local pos1 = { x=0, y=-50, z=0 }
local pos2 = { x=50, y=50, z=0 }
minetest.emerge_area(pos1, pos2)
end) | 29.714286 | 62 | 0.625 |
410aa5cee9cac9a50c2dba28317823f60b93253f | 794 | c | C | LeetCode/0064_minimum-path-sum/0064_minimum-path-sum.c | kenjin/DSAlgo | f4f58d57eebc5d7d1ce78f842e08cec360f403a4 | [
"MIT"
] | 13 | 2020-08-10T08:25:07.000Z | 2022-03-22T07:47:46.000Z | LeetCode/0064_minimum-path-sum/0064_minimum-path-sum.c | kenjin/DSAlgo | f4f58d57eebc5d7d1ce78f842e08cec360f403a4 | [
"MIT"
] | null | null | null | LeetCode/0064_minimum-path-sum/0064_minimum-path-sum.c | kenjin/DSAlgo | f4f58d57eebc5d7d1ce78f842e08cec360f403a4 | [
"MIT"
] | 5 | 2021-01-05T01:58:04.000Z | 2022-03-22T07:47:49.000Z |
#define MIN(a, b) (a < b ? a : b)
int minPathSum(int **grid, int grid_sz, int *grid_col_sz)
{
/* sanity check */
if (grid_sz == 0)
return 0;
int **dp = malloc(sizeof(int *) * grid_sz);
int col_sz = grid_col_sz[0], sum = 0;
for (int i = 0; i < grid_sz; i++) {
dp[i] = malloc(sizeof(int) * col_sz);
sum += grid[i][0];
dp[i][0] = sum;
}
sum = 0;
for (int i = 0; i < col_sz; i++) {
sum += grid[0][i];
dp[0][i] = sum;
}
for (int i = 1; i < grid_sz; i++) {
for (int j = 1; j < col_sz; j++)
dp[i][j] = MIN(dp[i - 1][j], dp[i][j - 1]) + grid[i][j];
}
int ret = dp[grid_sz - 1][col_sz - 1];
for (int i = 0; i < grid_sz; i++)
free(dp[i]);
free(dp);
return ret;
} | 23.352941 | 68 | 0.440806 |
a156f27492607c20ef308914ae7fabc19f9facb1 | 91 | go | Go | pingfederate/pingfederateSDK.go | joatmon/pingfederate-sdk-go | 79a26f9b5923c904a99625a82ce58aa8345a10cf | [
"MIT"
] | 4 | 2020-11-06T16:02:55.000Z | 2021-12-14T23:15:02.000Z | pingfederate/pingfederateSDK.go | joatmon/pingfederate-sdk-go | 79a26f9b5923c904a99625a82ce58aa8345a10cf | [
"MIT"
] | 4 | 2021-02-09T01:34:39.000Z | 2021-07-13T21:05:42.000Z | pingfederate/pingfederateSDK.go | joatmon/pingfederate-sdk-go | 79a26f9b5923c904a99625a82ce58aa8345a10cf | [
"MIT"
] | 2 | 2021-02-19T01:51:03.000Z | 2021-04-27T10:46:16.000Z | package pingfederate
const SDKName = "pingfederate-sdk-go"
const SDKVersion = "10.0.2.2"
| 15.166667 | 37 | 0.747253 |
f0fe4b376ffda71de4954690385227f11581a7a1 | 493 | kt | Kotlin | app/src/main/java/io/github/lee0701/lboard/dictionary/Dictionary.kt | Lee0701/LBoard | 2befd2f2b1941dd6e02336a468e4f824c6617974 | [
"Apache-2.0"
] | 6 | 2017-08-11T12:54:58.000Z | 2019-08-30T08:30:34.000Z | app/src/main/java/io/github/lee0701/lboard/dictionary/Dictionary.kt | Lee0701/LBoard | 2befd2f2b1941dd6e02336a468e4f824c6617974 | [
"Apache-2.0"
] | 7 | 2019-06-12T16:40:08.000Z | 2019-09-01T07:10:30.000Z | app/src/main/java/io/github/lee0701/lboard/dictionary/Dictionary.kt | Lee0701/LBoard | 2befd2f2b1941dd6e02336a468e4f824c6617974 | [
"Apache-2.0"
] | null | null | null | package io.github.lee0701.lboard.dictionary
interface Dictionary {
fun search(text: String): Iterable<Word>
fun searchPrefix(prefix: String, length: Int): Iterable<Word>
fun searchSequence(seq: List<Int>, layout: Map<Int, List<Int>>): Iterable<Word>
fun searchSequencePrefix(seqPrefix: List<Int>, layout: Map<Int, List<Int>>, length: Int): Iterable<Word>
data class Word(
val text: String,
val frequency: Float,
val pos: Int
)
}
| 29 | 108 | 0.659229 |
f78771b68415c006c4f1bd8b9a246bca12e8aeab | 112 | c | C | new/libr/bin/p/bin_dbginfo_elf64.c | benbenwt/lisa_docker | 0b851223dbaecef9b27c418eae05890fea752d49 | [
"Apache-2.0"
] | null | null | null | new/libr/bin/p/bin_dbginfo_elf64.c | benbenwt/lisa_docker | 0b851223dbaecef9b27c418eae05890fea752d49 | [
"Apache-2.0"
] | 1 | 2021-12-17T00:14:27.000Z | 2021-12-17T00:14:27.000Z | new/libr/bin/p/bin_dbginfo_elf64.c | benbenwt/lisa_docker | 0b851223dbaecef9b27c418eae05890fea752d49 | [
"Apache-2.0"
] | null | null | null | /* radare - LGPL - Copyright 2009-2020 - nibble, pancake */
#define R_BIN_ELF64 1
#include "bin_dbginfo_elf.c"
| 22.4 | 59 | 0.723214 |
67e3666a6fe3ebdf137b410e71f6590b330e786f | 233,519 | sql | SQL | data/PlatformLogVirus.sql | escray/SecurityChart | b409a776ddf2ad7c8d1a38311775d76b2bb2de96 | [
"MIT"
] | null | null | null | data/PlatformLogVirus.sql | escray/SecurityChart | b409a776ddf2ad7c8d1a38311775d76b2bb2de96 | [
"MIT"
] | null | null | null | data/PlatformLogVirus.sql | escray/SecurityChart | b409a776ddf2ad7c8d1a38311775d76b2bb2de96 | [
"MIT"
] | null | null | null | INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21837,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 16:21','01/12/2016 16:21');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21836,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 16:16','01/12/2016 16:16');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21835,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 16:11','01/12/2016 16:11');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21834,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 16:06','01/12/2016 16:06');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21833,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 16:01','01/12/2016 16:01');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21832,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 15:56','01/12/2016 15:56');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21831,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 15:51','01/12/2016 15:51');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21830,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 15:46','01/12/2016 15:46');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21829,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 15:41','01/12/2016 15:41');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21828,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 15:36','01/12/2016 15:36');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21827,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 15:31','01/12/2016 15:31');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21826,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 15:26','01/12/2016 15:26');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21825,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 15:21','01/12/2016 15:21');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21824,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 15:16','01/12/2016 15:16');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21823,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 15:11','01/12/2016 15:11');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21822,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 15:06','01/12/2016 15:06');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21821,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 15:01','01/12/2016 15:01');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21820,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 14:56','01/12/2016 14:56');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21819,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 14:51','01/12/2016 14:51');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21818,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 14:46','01/12/2016 14:46');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21817,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 14:41','01/12/2016 14:41');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21816,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 14:36','01/12/2016 14:36');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21815,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 14:31','01/12/2016 14:31');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21814,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 14:26','01/12/2016 14:26');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21813,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 14:21','01/12/2016 14:21');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21812,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 14:16','01/12/2016 14:16');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21811,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 14:11','01/12/2016 14:11');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21810,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 14:06','01/12/2016 14:06');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21809,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 14:01','01/12/2016 14:01');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21808,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 13:56','01/12/2016 13:56');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21807,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 13:51','01/12/2016 13:51');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21806,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 13:46','01/12/2016 13:46');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21805,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 13:41','01/12/2016 13:41');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21804,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 13:36','01/12/2016 13:36');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21803,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 13:31','01/12/2016 13:31');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21802,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 13:26','01/12/2016 13:26');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21801,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 13:22','01/12/2016 13:22');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21800,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 13:17','01/12/2016 13:17');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21799,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 13:12','01/12/2016 13:12');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21798,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 13:07','01/12/2016 13:07');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21797,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 13:02','01/12/2016 13:02');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21796,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 12:57','01/12/2016 12:57');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21795,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 12:52','01/12/2016 12:52');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21794,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 12:47','01/12/2016 12:47');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21793,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 12:42','01/12/2016 12:42');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21792,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 12:37','01/12/2016 12:37');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21791,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 12:32','01/12/2016 12:32');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21790,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 12:27','01/12/2016 12:27');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21789,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 12:22','01/12/2016 12:22');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21788,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 12:17','01/12/2016 12:17');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21787,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 12:12','01/12/2016 12:12');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21786,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 12:07','01/12/2016 12:07');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21785,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 12:02','01/12/2016 12:02');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21784,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 11:57','01/12/2016 11:57');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21783,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 11:52','01/12/2016 11:52');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21782,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 11:47','01/12/2016 11:47');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21781,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 11:42','01/12/2016 11:42');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21780,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 11:37','01/12/2016 11:37');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21779,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 11:32','01/12/2016 11:32');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21778,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 11:27','01/12/2016 11:27');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21777,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 11:22','01/12/2016 11:22');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21776,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 11:17','01/12/2016 11:17');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21775,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 11:12','01/12/2016 11:12');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21774,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 11:07','01/12/2016 11:07');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21773,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 11:02','01/12/2016 11:02');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21772,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 10:57','01/12/2016 10:57');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21771,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 10:52','01/12/2016 10:52');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21770,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 10:47','01/12/2016 10:47');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21769,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 10:42','01/12/2016 10:42');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21768,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 10:37','01/12/2016 10:37');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21767,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 10:32','01/12/2016 10:32');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21766,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 10:27','01/12/2016 10:27');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21765,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 10:22','01/12/2016 10:22');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21764,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 10:17','01/12/2016 10:17');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21763,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 10:12','01/12/2016 10:12');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21762,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 10:07','01/12/2016 10:07');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21761,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 10:02','01/12/2016 10:02');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21760,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 9:57','01/12/2016 9:57');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21759,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 9:52','01/12/2016 9:52');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21758,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 9:47','01/12/2016 9:47');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21757,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 9:42','01/12/2016 9:42');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21756,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 9:37','01/12/2016 9:37');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21755,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 9:32','01/12/2016 9:32');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21754,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 9:27','01/12/2016 9:27');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21753,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 9:22','01/12/2016 9:22');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21752,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 9:17','01/12/2016 9:17');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21751,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 9:12','01/12/2016 9:12');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21750,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 9:07','01/12/2016 9:07');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21749,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 9:02','01/12/2016 9:02');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21748,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 8:57','01/12/2016 8:57');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21747,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 8:52','01/12/2016 8:52');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21746,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 8:47','01/12/2016 8:47');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21745,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 8:42','01/12/2016 8:42');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21744,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 8:37','01/12/2016 8:37');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21743,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 8:32','01/12/2016 8:32');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21742,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 8:27','01/12/2016 8:27');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21741,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 8:22','01/12/2016 8:22');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21740,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 8:17','01/12/2016 8:17');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21739,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 8:12','01/12/2016 8:12');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21738,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 8:07','01/12/2016 8:07');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21737,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 8:02','01/12/2016 8:02');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21736,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 7:57','01/12/2016 7:57');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21735,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 7:52','01/12/2016 7:52');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21734,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 7:47','01/12/2016 7:47');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21733,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 7:42','01/12/2016 7:42');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21732,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 7:37','01/12/2016 7:37');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21731,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 7:32','01/12/2016 7:32');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21730,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 7:27','01/12/2016 7:27');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21729,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 7:22','01/12/2016 7:22');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21728,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 7:18','01/12/2016 7:18');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21727,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 7:13','01/12/2016 7:13');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21726,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 7:08','01/12/2016 7:08');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21725,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 7:03','01/12/2016 7:03');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21724,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 6:58','01/12/2016 6:58');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21723,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 6:53','01/12/2016 6:53');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21722,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 6:48','01/12/2016 6:48');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21721,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 6:43','01/12/2016 6:43');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21720,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 6:38','01/12/2016 6:38');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21719,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 6:33','01/12/2016 6:33');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21718,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 6:28','01/12/2016 6:28');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21717,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 6:23','01/12/2016 6:23');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21716,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 6:18','01/12/2016 6:18');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21715,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 6:13','01/12/2016 6:13');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21714,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 6:08','01/12/2016 6:08');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21713,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 6:03','01/12/2016 6:03');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21712,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 5:58','01/12/2016 5:58');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21711,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 5:53','01/12/2016 5:53');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21710,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 5:48','01/12/2016 5:48');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21709,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 5:43','01/12/2016 5:43');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21708,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 5:38','01/12/2016 5:38');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21707,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 5:33','01/12/2016 5:33');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21706,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 5:28','01/12/2016 5:28');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21705,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 5:23','01/12/2016 5:23');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21704,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 5:18','01/12/2016 5:18');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21703,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 5:13','01/12/2016 5:13');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21702,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 5:08','01/12/2016 5:08');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21701,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 5:03','01/12/2016 5:03');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21700,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 4:58','01/12/2016 4:58');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21699,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 4:53','01/12/2016 4:53');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21698,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 4:48','01/12/2016 4:48');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21697,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 4:43','01/12/2016 4:43');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21696,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 4:38','01/12/2016 4:38');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21695,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 4:33','01/12/2016 4:33');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21694,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 4:28','01/12/2016 4:28');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21693,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 4:23','01/12/2016 4:23');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21692,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 4:18','01/12/2016 4:18');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21691,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 4:13','01/12/2016 4:13');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21690,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 4:08','01/12/2016 4:08');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21689,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 4:03','01/12/2016 4:03');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21688,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 3:58','01/12/2016 3:58');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21687,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 3:53','01/12/2016 3:53');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21686,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 3:48','01/12/2016 3:48');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21685,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 3:43','01/12/2016 3:43');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21684,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 3:38','01/12/2016 3:38');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21683,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 3:33','01/12/2016 3:33');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21682,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 3:28','01/12/2016 3:28');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21681,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 3:23','01/12/2016 3:23');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21680,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 3:18','01/12/2016 3:18');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21679,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 3:13','01/12/2016 3:13');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21678,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 3:08','01/12/2016 3:08');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21677,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 3:03','01/12/2016 3:03');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21676,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 2:58','01/12/2016 2:58');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21675,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 2:53','01/12/2016 2:53');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21674,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 2:48','01/12/2016 2:48');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21673,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 2:43','01/12/2016 2:43');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21672,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 2:38','01/12/2016 2:38');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21671,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 2:33','01/12/2016 2:33');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21670,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 2:28','01/12/2016 2:28');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21669,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 2:23','01/12/2016 2:23');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21668,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 2:18','01/12/2016 2:18');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21667,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 2:13','01/12/2016 2:13');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21666,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 2:08','01/12/2016 2:08');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21665,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 2:03','01/12/2016 2:03');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21664,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 1:58','01/12/2016 1:58');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21663,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 1:53','01/12/2016 1:53');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21662,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 1:48','01/12/2016 1:48');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21661,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 1:43','01/12/2016 1:43');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21660,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 1:38','01/12/2016 1:38');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21659,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 1:33','01/12/2016 1:33');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21658,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 1:28','01/12/2016 1:28');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21657,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 1:23','01/12/2016 1:23');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21656,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 1:19','01/12/2016 1:19');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21655,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 1:14','01/12/2016 1:14');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21654,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 1:09','01/12/2016 1:09');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21653,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 1:04','01/12/2016 1:04');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21652,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 0:59','01/12/2016 0:59');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21651,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 0:54','01/12/2016 0:54');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21650,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 0:49','01/12/2016 0:49');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21649,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 0:44','01/12/2016 0:44');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21648,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 0:39','01/12/2016 0:39');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21647,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 0:34','01/12/2016 0:34');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21646,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 0:29','01/12/2016 0:29');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21645,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 0:24','01/12/2016 0:24');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21644,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 0:19','01/12/2016 0:19');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21643,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 0:14','01/12/2016 0:14');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21642,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 0:09','01/12/2016 0:09');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21641,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','01/12/2016 0:04','01/12/2016 0:04');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21640,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 23:59','30/11/2016 23:59');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21639,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 23:54','30/11/2016 23:54');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21638,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 23:49','30/11/2016 23:49');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21637,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 23:44','30/11/2016 23:44');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21636,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 23:39','30/11/2016 23:39');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21635,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 23:34','30/11/2016 23:34');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21634,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 23:29','30/11/2016 23:29');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21633,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 23:24','30/11/2016 23:24');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21632,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 23:19','30/11/2016 23:19');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21631,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 23:14','30/11/2016 23:14');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21630,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 23:09','30/11/2016 23:09');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21629,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 23:04','30/11/2016 23:04');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21628,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 22:59','30/11/2016 22:59');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21627,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 22:54','30/11/2016 22:54');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21626,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 22:49','30/11/2016 22:49');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21625,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 22:44','30/11/2016 22:44');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21624,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 22:39','30/11/2016 22:39');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21623,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 22:34','30/11/2016 22:34');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21622,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 22:29','30/11/2016 22:29');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21621,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 22:24','30/11/2016 22:24');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21620,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 22:19','30/11/2016 22:19');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21619,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 22:14','30/11/2016 22:14');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21618,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 22:09','30/11/2016 22:09');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21617,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 22:04','30/11/2016 22:04');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21616,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 21:59','30/11/2016 21:59');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21615,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 21:54','30/11/2016 21:54');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21614,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 21:49','30/11/2016 21:49');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21613,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 21:44','30/11/2016 21:44');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21612,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 21:39','30/11/2016 21:39');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21611,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 21:34','30/11/2016 21:34');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21610,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 21:29','30/11/2016 21:29');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21609,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 21:24','30/11/2016 21:24');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21608,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 21:19','30/11/2016 21:19');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21607,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 21:14','30/11/2016 21:14');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21606,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 21:09','30/11/2016 21:09');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21605,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 21:04','30/11/2016 21:04');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21604,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 20:59','30/11/2016 20:59');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21603,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 20:54','30/11/2016 20:54');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21602,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 20:49','30/11/2016 20:49');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21601,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 20:44','30/11/2016 20:44');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21600,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 20:39','30/11/2016 20:39');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21599,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 20:34','30/11/2016 20:34');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21598,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 20:29','30/11/2016 20:29');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21597,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 20:24','30/11/2016 20:24');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21596,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 20:19','30/11/2016 20:19');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21595,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 20:14','30/11/2016 20:14');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21594,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 20:09','30/11/2016 20:09');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21593,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 20:04','30/11/2016 20:04');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21592,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 19:59','30/11/2016 19:59');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21591,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 19:54','30/11/2016 19:54');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21590,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 19:49','30/11/2016 19:49');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21589,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 19:44','30/11/2016 19:44');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21588,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 19:39','30/11/2016 19:39');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21587,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 19:34','30/11/2016 19:34');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21586,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 19:29','30/11/2016 19:29');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21585,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 19:24','30/11/2016 19:24');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21584,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 19:19','30/11/2016 19:19');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21583,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 19:14','30/11/2016 19:14');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21582,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 19:09','30/11/2016 19:09');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21581,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 19:04','30/11/2016 19:04');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21580,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 18:59','30/11/2016 18:59');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21579,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 18:55','30/11/2016 18:55');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21578,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 18:50','30/11/2016 18:50');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21577,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 18:45','30/11/2016 18:45');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21576,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 18:40','30/11/2016 18:40');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21575,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 18:35','30/11/2016 18:35');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21574,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 18:30','30/11/2016 18:30');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21573,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 18:25','30/11/2016 18:25');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21572,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 18:20','30/11/2016 18:20');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21571,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 18:15','30/11/2016 18:15');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21570,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 18:10','30/11/2016 18:10');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21569,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 18:05','30/11/2016 18:05');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21568,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 18:00','30/11/2016 18:00');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21567,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 17:55','30/11/2016 17:55');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21566,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 17:50','30/11/2016 17:50');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21565,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 17:45','30/11/2016 17:45');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21564,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 17:40','30/11/2016 17:40');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21563,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 17:35','30/11/2016 17:35');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21562,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 17:30','30/11/2016 17:30');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21561,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 17:25','30/11/2016 17:25');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21560,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 17:20','30/11/2016 17:20');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21559,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 17:15','30/11/2016 17:15');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21558,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 17:10','30/11/2016 17:10');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21557,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 17:05','30/11/2016 17:05');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21556,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 17:00','30/11/2016 17:00');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21555,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 16:55','30/11/2016 16:55');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21554,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 16:50','30/11/2016 16:50');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21553,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 16:45','30/11/2016 16:45');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21552,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 16:40','30/11/2016 16:40');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21551,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 16:35','30/11/2016 16:35');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21550,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 16:30','30/11/2016 16:30');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21549,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 16:25','30/11/2016 16:25');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21548,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 16:20','30/11/2016 16:20');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21547,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 16:15','30/11/2016 16:15');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21546,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 16:10','30/11/2016 16:10');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21545,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 16:05','30/11/2016 16:05');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21544,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 16:00','30/11/2016 16:00');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21543,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 15:55','30/11/2016 15:55');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21542,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 15:50','30/11/2016 15:50');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21541,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 15:45','30/11/2016 15:45');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21540,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 15:40','30/11/2016 15:40');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21539,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 15:35','30/11/2016 15:35');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21538,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 15:30','30/11/2016 15:30');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21537,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 15:25','30/11/2016 15:25');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21536,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 15:20','30/11/2016 15:20');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21535,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 15:15','30/11/2016 15:15');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21534,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 15:10','30/11/2016 15:10');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21533,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 15:05','30/11/2016 15:05');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21532,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 15:00','30/11/2016 15:00');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21531,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 14:55','30/11/2016 14:55');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21530,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 14:50','30/11/2016 14:50');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21529,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 14:45','30/11/2016 14:45');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21528,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 14:40','30/11/2016 14:40');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21527,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 14:35','30/11/2016 14:35');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21526,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 14:30','30/11/2016 14:30');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21525,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 14:25','30/11/2016 14:25');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21524,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 14:20','30/11/2016 14:20');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21523,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 14:15','30/11/2016 14:15');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21522,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 14:10','30/11/2016 14:10');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21521,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 14:05','30/11/2016 14:05');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21520,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 14:00','30/11/2016 14:00');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21519,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 13:55','30/11/2016 13:55');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21518,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 13:50','30/11/2016 13:50');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21517,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 13:45','30/11/2016 13:45');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21516,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 13:40','30/11/2016 13:40');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21515,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 13:35','30/11/2016 13:35');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21514,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 13:30','30/11/2016 13:30');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21513,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 13:25','30/11/2016 13:25');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21512,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 13:20','30/11/2016 13:20');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21511,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 13:15','30/11/2016 13:15');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21510,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 13:11','30/11/2016 13:11');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21509,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 13:06','30/11/2016 13:06');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21508,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 13:01','30/11/2016 13:01');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21507,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 12:56','30/11/2016 12:56');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21506,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 12:51','30/11/2016 12:51');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21505,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 12:46','30/11/2016 12:46');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21504,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 12:41','30/11/2016 12:41');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21503,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 12:36','30/11/2016 12:36');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21502,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 12:31','30/11/2016 12:31');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21501,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 12:26','30/11/2016 12:26');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21500,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 12:21','30/11/2016 12:21');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21499,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 12:16','30/11/2016 12:16');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21498,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 12:11','30/11/2016 12:11');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21497,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 12:06','30/11/2016 12:06');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21496,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 12:01','30/11/2016 12:01');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21495,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 11:56','30/11/2016 11:56');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21494,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 11:51','30/11/2016 11:51');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21493,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 11:46','30/11/2016 11:46');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21492,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 11:41','30/11/2016 11:41');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21491,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 11:36','30/11/2016 11:36');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21490,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 11:31','30/11/2016 11:31');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21489,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 11:26','30/11/2016 11:26');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21488,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 11:21','30/11/2016 11:21');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21487,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 11:16','30/11/2016 11:16');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21486,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 11:11','30/11/2016 11:11');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21485,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 11:06','30/11/2016 11:06');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21484,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 11:01','30/11/2016 11:01');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21483,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 10:56','30/11/2016 10:56');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21482,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 10:51','30/11/2016 10:51');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21481,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 10:46','30/11/2016 10:46');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21480,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 10:41','30/11/2016 10:41');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21479,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 10:36','30/11/2016 10:36');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21478,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 10:31','30/11/2016 10:31');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21477,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 10:26','30/11/2016 10:26');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21476,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 10:21','30/11/2016 10:21');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21475,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 10:16','30/11/2016 10:16');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21474,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 10:11','30/11/2016 10:11');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21473,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 10:06','30/11/2016 10:06');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21472,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 10:01','30/11/2016 10:01');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21471,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 9:56','30/11/2016 9:56');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21470,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 9:51','30/11/2016 9:51');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21469,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 9:46','30/11/2016 9:46');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21468,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 9:41','30/11/2016 9:41');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21467,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 9:36','30/11/2016 9:36');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21466,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 9:31','30/11/2016 9:31');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21465,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 9:26','30/11/2016 9:26');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21464,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 9:21','30/11/2016 9:21');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21463,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 9:16','30/11/2016 9:16');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21462,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 9:11','30/11/2016 9:11');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21461,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 9:06','30/11/2016 9:06');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21460,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 9:01','30/11/2016 9:01');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21459,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 8:56','30/11/2016 8:56');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21458,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 8:51','30/11/2016 8:51');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21457,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 8:46','30/11/2016 8:46');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21456,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 8:41','30/11/2016 8:41');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21455,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 8:36','30/11/2016 8:36');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21454,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 8:31','30/11/2016 8:31');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21453,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 8:26','30/11/2016 8:26');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21452,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 8:21','30/11/2016 8:21');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21451,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 8:16','30/11/2016 8:16');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21450,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 8:11','30/11/2016 8:11');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21449,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 8:06','30/11/2016 8:06');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21448,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 8:01','30/11/2016 8:01');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21447,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 7:56','30/11/2016 7:56');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21446,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 7:51','30/11/2016 7:51');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21445,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 7:46','30/11/2016 7:46');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21444,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 7:41','30/11/2016 7:41');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21443,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 7:36','30/11/2016 7:36');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21442,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 7:31','30/11/2016 7:31');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21441,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 7:26','30/11/2016 7:26');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21440,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 7:21','30/11/2016 7:21');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21439,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 7:16','30/11/2016 7:16');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21438,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 7:11','30/11/2016 7:11');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21437,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 7:06','30/11/2016 7:06');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21436,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 7:02','30/11/2016 7:02');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21435,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 6:57','30/11/2016 6:57');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21434,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 6:52','30/11/2016 6:52');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21433,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 6:47','30/11/2016 6:47');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21432,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 6:42','30/11/2016 6:42');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21431,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 6:37','30/11/2016 6:37');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21430,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 6:32','30/11/2016 6:32');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21429,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 6:27','30/11/2016 6:27');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21428,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 6:22','30/11/2016 6:22');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21427,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 6:17','30/11/2016 6:17');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21426,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 6:12','30/11/2016 6:12');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21425,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 6:07','30/11/2016 6:07');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21424,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 6:02','30/11/2016 6:02');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21423,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 5:57','30/11/2016 5:57');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21422,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 5:52','30/11/2016 5:52');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21421,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 5:47','30/11/2016 5:47');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21420,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 5:42','30/11/2016 5:42');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21419,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 5:37','30/11/2016 5:37');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21418,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 5:32','30/11/2016 5:32');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21417,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 5:27','30/11/2016 5:27');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21416,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 5:22','30/11/2016 5:22');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21415,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 5:17','30/11/2016 5:17');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21414,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 5:12','30/11/2016 5:12');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21413,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 5:07','30/11/2016 5:07');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21412,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 5:02','30/11/2016 5:02');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21411,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 4:57','30/11/2016 4:57');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21410,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 4:52','30/11/2016 4:52');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21409,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 4:47','30/11/2016 4:47');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21408,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 4:42','30/11/2016 4:42');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21407,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 4:37','30/11/2016 4:37');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21406,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 4:32','30/11/2016 4:32');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21405,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 4:27','30/11/2016 4:27');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21404,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 4:22','30/11/2016 4:22');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21403,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 4:17','30/11/2016 4:17');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21402,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 4:12','30/11/2016 4:12');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21401,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 4:07','30/11/2016 4:07');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21400,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 4:02','30/11/2016 4:02');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21399,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 3:57','30/11/2016 3:57');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21398,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 3:52','30/11/2016 3:52');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21397,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 3:47','30/11/2016 3:47');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21396,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 3:42','30/11/2016 3:42');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21395,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 3:37','30/11/2016 3:37');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21394,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 3:32','30/11/2016 3:32');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21393,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 3:27','30/11/2016 3:27');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21392,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 3:22','30/11/2016 3:22');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21391,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 3:17','30/11/2016 3:17');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21390,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 3:12','30/11/2016 3:12');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21389,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 3:07','30/11/2016 3:07');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21388,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 3:02','30/11/2016 3:02');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21387,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 2:57','30/11/2016 2:57');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21386,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 2:52','30/11/2016 2:52');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21385,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 2:47','30/11/2016 2:47');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21384,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 2:42','30/11/2016 2:42');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21383,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 2:37','30/11/2016 2:37');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21382,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 2:32','30/11/2016 2:32');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21381,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 2:27','30/11/2016 2:27');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21380,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 2:22','30/11/2016 2:22');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21379,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 2:17','30/11/2016 2:17');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21378,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 2:12','30/11/2016 2:12');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21377,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 2:07','30/11/2016 2:07');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21376,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 2:02','30/11/2016 2:02');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21375,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 1:57','30/11/2016 1:57');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21374,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 1:52','30/11/2016 1:52');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21373,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 1:47','30/11/2016 1:47');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21372,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 1:42','30/11/2016 1:42');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21371,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 1:37','30/11/2016 1:37');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21370,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 1:32','30/11/2016 1:32');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21369,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 1:27','30/11/2016 1:27');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21368,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 1:22','30/11/2016 1:22');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21367,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 1:17','30/11/2016 1:17');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21366,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 1:12','30/11/2016 1:12');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21365,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 1:07','30/11/2016 1:07');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21364,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 1:02','30/11/2016 1:02');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21363,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 0:58','30/11/2016 0:58');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21362,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 0:53','30/11/2016 0:53');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21361,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 0:48','30/11/2016 0:48');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21360,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 0:43','30/11/2016 0:43');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21359,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 0:38','30/11/2016 0:38');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21358,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 0:33','30/11/2016 0:33');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21357,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 0:28','30/11/2016 0:28');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21356,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 0:23','30/11/2016 0:23');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21355,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 0:18','30/11/2016 0:18');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21354,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 0:13','30/11/2016 0:13');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21353,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 0:08','30/11/2016 0:08');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21352,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','30/11/2016 0:03','30/11/2016 0:03');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21351,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','29/11/2016 23:58','29/11/2016 23:58');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21350,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','29/11/2016 23:53','29/11/2016 23:53');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21349,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','29/11/2016 23:48','29/11/2016 23:48');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21348,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','29/11/2016 23:43','29/11/2016 23:43');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21347,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','29/11/2016 23:38','29/11/2016 23:38');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21346,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','29/11/2016 23:33','29/11/2016 23:33');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21345,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','29/11/2016 23:28','29/11/2016 23:28');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21344,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','29/11/2016 23:23','29/11/2016 23:23');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21343,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','29/11/2016 23:18','29/11/2016 23:18');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21342,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','29/11/2016 23:13','29/11/2016 23:13');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21341,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','29/11/2016 23:08','29/11/2016 23:08');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21340,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','29/11/2016 23:03','29/11/2016 23:03');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21339,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','29/11/2016 22:58','29/11/2016 22:58');
INSERT INTO `PlatformLogVirus`(`dwNo`,`guidComputer`,`guidCenter`,`dwIP`,`strProcessName`,`strProcessCreater`,`nUnknownFlag`,`nKnowVirusType`,`strVirusName`,`nUnknowVirusType`,`dwVirusCode`,`nDetector`,`nDiskType`,`nDealResult`,`twFindTime`,`twAddTime`) VALUES (21338,'43303030-3932-3137-4532-463200000000','上海','2.36.36.10','C:\SAMPLE\CONFICKER.C','10.68.68.3','0','2','Trojan.Win32.Agent.lkp','0','-234873573','1','36','处理失败','29/11/2016 22:58','29/11/2016 22:57'); | 467.038 | 467 | 0.721654 |
64291da675d3060302b39dce0e8095043a52bfe3 | 160 | sql | SQL | L2J_DataPack/sql/updates/20100528update.sql | Vladislav-Zolotaryov/L2J_Levelless_Custom | fb9fd3d22209679258cddc60cec104d740f13b8c | [
"MIT"
] | null | null | null | L2J_DataPack/sql/updates/20100528update.sql | Vladislav-Zolotaryov/L2J_Levelless_Custom | fb9fd3d22209679258cddc60cec104d740f13b8c | [
"MIT"
] | null | null | null | L2J_DataPack/sql/updates/20100528update.sql | Vladislav-Zolotaryov/L2J_Levelless_Custom | fb9fd3d22209679258cddc60cec104d740f13b8c | [
"MIT"
] | null | null | null | ALTER TABLE `custom_teleport` ADD `itemId` decimal(11,0) NOT NULL default '57' AFTER `fornoble`;
UPDATE `custom_teleport` SET itemId = 13722 WHERE fornoble = 1; | 80 | 96 | 0.7625 |
75e239ab28e34de86dd36e8c1b34209e8c662564 | 1,492 | php | PHP | src/Tracing/TracingServiceProvider.php | webard/lighthouse | 27e4e3698af2698dd0574435190d2165fc39bbdf | [
"MIT"
] | 2,893 | 2016-08-19T20:53:01.000Z | 2022-03-30T21:47:56.000Z | src/Tracing/TracingServiceProvider.php | webard/lighthouse | 27e4e3698af2698dd0574435190d2165fc39bbdf | [
"MIT"
] | 1,513 | 2016-08-29T23:59:06.000Z | 2022-03-28T10:39:16.000Z | src/Tracing/TracingServiceProvider.php | webard/lighthouse | 27e4e3698af2698dd0574435190d2165fc39bbdf | [
"MIT"
] | 541 | 2016-08-29T23:47:59.000Z | 2022-03-31T02:17:26.000Z | <?php
namespace Nuwave\Lighthouse\Tracing;
use GraphQL\Language\Parser;
use Illuminate\Contracts\Events\Dispatcher as EventsDispatcher;
use Illuminate\Support\ServiceProvider;
use Nuwave\Lighthouse\Events\BuildExtensionsResponse;
use Nuwave\Lighthouse\Events\ManipulateAST;
use Nuwave\Lighthouse\Events\RegisterDirectiveNamespaces;
use Nuwave\Lighthouse\Events\StartExecution;
use Nuwave\Lighthouse\Schema\AST\ASTHelper;
class TracingServiceProvider extends ServiceProvider
{
public function register(): void
{
$this->app->singleton(Tracing::class);
}
public function boot(EventsDispatcher $eventsDispatcher): void
{
$eventsDispatcher->listen(
RegisterDirectiveNamespaces::class,
static function (): string {
return __NAMESPACE__;
}
);
$tracingDirective = Parser::constDirective('@tracing');
$eventsDispatcher->listen(
ManipulateAST::class,
static function (ManipulateAST $manipulateAST) use ($tracingDirective): void {
ASTHelper::attachDirectiveToObjectTypeFields($manipulateAST->documentAST, $tracingDirective);
}
);
$eventsDispatcher->listen(
StartExecution::class,
Tracing::class . '@handleStartExecution'
);
$eventsDispatcher->listen(
BuildExtensionsResponse::class,
Tracing::class . '@handleBuildExtensionsResponse'
);
}
}
| 30.44898 | 109 | 0.674263 |
d2a3bee06ed1b91d9f61e87caad9ea1fc367a3ce | 1,865 | php | PHP | app/Http/Controllers/EstadoCuentaReporteController.php | jfrancito/web | 5587dcb9cd29d869c9fc08396f14757551ec81ee | [
"MIT"
] | null | null | null | app/Http/Controllers/EstadoCuentaReporteController.php | jfrancito/web | 5587dcb9cd29d869c9fc08396f14757551ec81ee | [
"MIT"
] | 1 | 2021-01-06T00:54:00.000Z | 2021-01-06T00:54:00.000Z | app/Http/Controllers/EstadoCuentaReporteController.php | jfrancito/web | 5587dcb9cd29d869c9fc08396f14757551ec81ee | [
"MIT"
] | 1 | 2020-03-25T14:08:34.000Z | 2020-03-25T14:08:34.000Z | <?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\DB;
use Illuminate\Validation\Rule;
use Illuminate\Support\Facades\Redirect;
use Illuminate\Support\Facades\Crypt;
use App\WEBListaCliente,App\STDEmpresa;
use View;
use Session;
use PDF;
use Maatwebsite\Excel\Facades\Excel;
class EstadoCuentaReporteController extends Controller
{
public function actionEstadoCuentaVendedor($idopcion)
{
/******************* validar url **********************/
$validarurl = $this->funciones->getUrl($idopcion,'Ver');
if($validarurl <> 'true'){return $validarurl;}
/******************************************************/
$array_id = STDEmpresa::join('CMP.CONTRATO', function ($join) {
$join->on('CMP.CONTRATO.COD_EMPR_CLIENTE', '=', 'STD.EMPRESA.COD_EMPR')
->where('CMP.CONTRATO.COD_ESTADO','=',1)
->where('CMP.CONTRATO.COD_CATEGORIA_TIPO_CONTRATO','=','TCO0000000000068')
->where('CMP.CONTRATO.COD_CATEGORIA_JEFE_VENTA','=',Session::get('usuario')->fuerzaventa_id);
})
->where('STD.EMPRESA.COD_ESTADO','=',1)
->whereIn('CMP.CONTRATO.COD_CATEGORIA_ESTADO_CONTRATO',['ECO0000000000001' ,'ECO0000000000002'])
->groupBy('STD.EMPRESA.COD_EMPR')
->pluck('STD.EMPRESA.COD_EMPR')
->toArray();
$listaclientes = STDEmpresa::whereIn('COD_EMPR',$array_id)
->orderBy('NOM_EMPR', 'asc')
->pluck('NOM_EMPR','COD_EMPR')
->toArray();
$combocliente = array('' => "Seleccione cliente") + $listaclientes;
return View::make('estadocuenta/reporte/estadocuentavendedor',
[
'idopcion' => $idopcion,
'combocliente' => $combocliente,
'inicio' => $this->inicio,
'hoy' => $this->fin,
]);
}
}
| 31.083333 | 112 | 0.598928 |
2a7a8c3931217da3411be4229bab2122e91d56b8 | 171 | java | Java | test/resources/csse2002/submission/src/tms/sensors/SpeedCamera.java | UQTools/chalkbox | 20883292ebfbf5c184d0f789afceec666129c352 | [
"MIT"
] | 1 | 2020-09-02T23:16:09.000Z | 2020-09-02T23:16:09.000Z | test/resources/csse2002/submission/src/tms/sensors/SpeedCamera.java | UQTools/chalkbox | 20883292ebfbf5c184d0f789afceec666129c352 | [
"MIT"
] | 2 | 2021-03-29T23:40:31.000Z | 2021-04-04T08:21:05.000Z | test/resources/csse2002/submission/src/tms/sensors/SpeedCamera.java | UQTools/chalkbox | 20883292ebfbf5c184d0f789afceec666129c352 | [
"MIT"
] | null | null | null | package tms.sensors;
public interface SpeedCamera extends Sensor{
int averageSpeed(); // Returns the observed average speed of vehicles travelling past this sensor
}
| 28.5 | 101 | 0.789474 |
3ce2becf1f32314524e24bf314d8c9206b194655 | 11,946 | lua | Lua | resources/[race]/race_random/random_c.lua | AfuSensi/MTA-Resources | e4a0f3981ddc92c8f15c3d93140196c6a8589fa8 | [
"MIT",
"0BSD"
] | null | null | null | resources/[race]/race_random/random_c.lua | AfuSensi/MTA-Resources | e4a0f3981ddc92c8f15c3d93140196c6a8589fa8 | [
"MIT",
"0BSD"
] | null | null | null | resources/[race]/race_random/random_c.lua | AfuSensi/MTA-Resources | e4a0f3981ddc92c8f15c3d93140196c6a8589fa8 | [
"MIT",
"0BSD"
] | null | null | null | --Sweeper
local function playRunSound()
local sound = playSound("files/run.wma")
end
addEvent("playRunSound", true)
addEventHandler("playRunSound", root, playRunSound)
--Launch in air/Send to Heaven
local function playHallelujahSound()
local sound = playSound("files/hallelujah.wma")
end
addEvent("playHallelujahSound", true)
addEventHandler("playHallelujahSound", root, playHallelujahSound)
--Darkness
local function enableDarkness()
fadeCamera(false, 3, 0, 0, 0)
local function disableDarkness()
fadeCamera(true, 3, 0, 0 , 0)
end
setTimer(disableDarkness, 6000, 1)
end
addEvent("serverDarkness", true)
addEventHandler("serverDarkness", root, enableDarkness)
--Teleport back
local function playTeleportSound()
sound = playSound("files/tpsound.wma")
end
addEvent("playTeleportSound", true)
addEventHandler("playTeleportSound", root, playTeleportSound)
--Turn player around
local function playerTurnAround()
if not (getPedOccupiedVehicle(localPlayer) and isElement(getPedOccupiedVehicle(localPlayer))) then
return
end
local vehicle = getPedOccupiedVehicle(getLocalPlayer())
if not vehicle then
return
end
local RotX, RotY, RotZ = getElementRotation(vehicle)
setElementRotation(vehicle, RotX, RotY, RotZ+180)
end
addEvent("playerTurnAround", true)
addEventHandler("playerTurnAround", root, playerTurnAround)
--Massive Slap
local function playerMassiveSlap()
if not (getPedOccupiedVehicle(localPlayer) and isElement(getPedOccupiedVehicle(localPlayer))) then
return
end
local vehicle = getPedOccupiedVehicle(getLocalPlayer())
setElementVelocity(vehicle, 0, 0, 0.2)
setElementHealth(vehicle, getElementHealth(vehicle) - 100)
end
addEvent("playerMassiveSlap", true)
addEventHandler("playerMassiveSlap", root, playerMassiveSlap)
local function serverM()
if getElementData(localPlayer,"state") ~= "alive" then
local sound = playSound("files/votesound.wav")
end
end
addEvent( "serverN", true )
addEventHandler( "serverN", root, serverM )
local function serverFloat()
local vehicle = getPedOccupiedVehicle(localPlayer)
if not vehicle or not isElement(vehicle) then
return
end
setVehicleGravity(vehicle, 0, 0, 0)
setTimer(setVehicleGravity, 15000, 1, vehicle, 0, 0, -1)
end
addEvent( "serverGravityFloat", true )
addEventHandler( "serverGravityFloat", root, serverFloat )
local function serverFloatStairwell()
local vehicle = getPedOccupiedVehicle(localPlayer)
if not vehicle or not isElement(vehicle) then
return
end
setVehicleGravity(vehicle, 0, 0, 1)
setTimer(setVehicleGravity,8000,1,vehicle,0,0,-1 )
end
addEvent( "serverGravityFloatStairwell", true )
addEventHandler( "serverGravityFloatStairwell", root, serverFloatStairwell )
local function serverSleepWithFish()
local vehicle = getPedOccupiedVehicle(source)
if not vehicle or not isElement(vehicle) then
return
end
for _, object in ipairs(getElementsByType('object')) do
setElementCollidableWith(vehicle, object, false)
end
end
addEvent( "serverSleepWithFish", true )
addEventHandler( "serverSleepWithFish", root, serverSleepWithFish )
function noBrakes()
local time = {
[1] = 10000,
[2] = 12000,
[3] = 14000,
[4] = 16000,
[5] = 20000
} -- revert time
local theTime = time[math.random(1,5)]
toggleControl( "handbrake", false )
toggleControl( "brake_reverse", false )
exports.messages:outputGameMessage("You have no brakes for "..tostring(theTime/1000).." seconds!",2,255,0,0)
setTimer(function()
toggleControl( "handbrake", true )
toggleControl( "brake_reverse", true )
exports.messages:outputGameMessage("Your brakes returned!",2,0,255,0)
end, theTime, 1)
end
addEvent( "serverNoBrakes", true )
addEventHandler( "serverNoBrakes", resourceRoot, noBrakes )
function Nuke(Amount)
playRunSound()
exports.messages:outputGameMessage("There are "..tostring(Amount).." missiles coming your way!",2.5,255,0,0)
setTimer(function()
local veh = getPedOccupiedVehicle( localPlayer )
if veh then
local px,py,pz = getElementPosition( veh )
setTimer(function()
createProjectile( veh, 19, px, py, pz+100, 1,localPlayer,0,0,0,0,0,-45 )
end, 200, 1)
end
end,1000,Amount)
end
addEvent( "serverNuke", true )
addEventHandler( "serverNuke", resourceRoot, Nuke )
addEvent("clientRemovePickups", true)
function c_removePickups()
local pickups = exports["race"]:e_getPickups()
for f, u in pairs(pickups) do
setElementPosition(f, 0,0,-10000) -- Hides colshape to -10000 Z
setElementPosition(u["object"],0,0,-10000) -- Hides pickup to -10000 Z
end
exports.messages:outputGameMessage("All pickups are removed!",2,255,255,255)
end
addEventHandler("clientRemovePickups", resourceRoot, c_removePickups)
addEvent("onRavebreakStart",true)
addEvent("stopRaveBreak",true)
function c_ravebreak(t)
rb_soundVolumes = {}
local rb_sounds = getElementsByType( "sound" )
for _,snd in pairs(rb_sounds) do
rb_soundVolumes[snd] = getSoundVolume( snd )
setSoundVolume( snd, 0 )
end
local screenWidth, screenHeight = guiGetScreenSize()
raveBreakBrowser = createBrowser(screenWidth, screenHeight, true, true)
ravebreak = playSound("files/ravebreak"..tostring(math.random(1,4))..".mp3")
shakeTimer = setTimer ( function()
if getElementData(localPlayer,"state") == "alive" then -- If player's alive, explode under car, otherwise check for camera pos
px,py,pz = getElementPosition(getLocalPlayer())
createExplosion(px, py, pz-30, 0, false, 2.5, false)
else
px,py,pz = getCameraMatrix()
createExplosion(px-30, py-30, pz-30, 0, false, 2.5, false)
end
end, 1000, 0 )
colorTimer = setTimer ( function() fadeCamera(false, 0.9, math.random(0,180), math.random(0,180), math.random(0,180) ) end, 250, 0 )
resetTimer = setTimer ( function() fadeCamera(true, 0.3 ) end, 320, 0 )
end
addEventHandler("onRavebreakStart",root,c_ravebreak)
function renderRaveBreak()
local screenWidth, screenHeight = guiGetScreenSize()
dxDrawImage(0, 0, screenWidth , screenHeight, raveBreakBrowser, 0, 0, 0, tocolor(255,255,255,180), false)
end
addEventHandler("onClientBrowserCreated", root,
function()
if source ~= raveBreakBrowser then return end
loadBrowserURL(raveBreakBrowser, "http://mta/local/ravebreak.html")
addEventHandler("onClientRender", root, renderRaveBreak)
end
)
function stopRaveBreak()
stopSound( ravebreak )
killTimer(shakeTimer)
killTimer(colorTimer)
killTimer(resetTimer)
fadeCamera(true, 0.5 )
for sound,volume in pairs(rb_soundVolumes) do
if isElement(sound) and getElementType(sound) == "sound" and tonumber(volume) then
setSoundVolume( sound, volume )
end
end
removeEventHandler("onClientRender", root, renderRaveBreak)
if isElement(raveBreakBrowser) then
destroyElement(raveBreakBrowser)
end
end
addEventHandler("stopRaveBreak",root,stopRaveBreak)
addCommandHandler("freeravebreak", function()
c_ravebreak()
setTimer ( stopRaveBreak, 10000, 1 )
end)
-- nuked http://community.mtasa.com/index.php?p=resources&s=details&id=71
N_loops = 0
N_cloudRotationAngle = 0
NFlashDelay = 0
stopNFlash = false
function FireN ( x, y, z )
local sound = playSound3D( "files/BOMB_SIREN-BOMB_SIREN-247265934.mp3", x, y, z)
setSoundMaxDistance(sound, 100)
setTimer(destroyElement, 3000, 1, sound)
NBeaconX = x --these are for the render function
NBeaconY = y
NBeaconZ = z
N_Cloud = NBeaconZ
setTimer ( function() setTimer ( NExplosion, 170, 35 ) end, 2700, 1 ) -- wait 2700 seconds then 35 loops @ 170ms
setTimer ( NShot, 500, 1 )
end
addEvent("ClientFireN",true)
addEventHandler("ClientFireN", getRootElement(), FireN)
function NShot ()
NukeObjectA = createObject ( 16340, NBeaconX, NBeaconY, NBeaconZ + 200 )
NukeObjectB = createObject ( 3865, NBeaconX + 0.072265, NBeaconY + 0.013731, NBeaconZ + 196.153122 )
NukeObjectC = createObject ( 1243, NBeaconX + 0.060547, NBeaconY - 0.017578, NBeaconZ + 189.075554 )
setElementRotation ( NukeObjectA, math.deg(3.150001), math.deg(0), math.deg(0.245437) )
setElementRotation ( NukeObjectB, math.deg(-1.575), math.deg(0), math.deg(1.938950) )
setElementRotation ( NukeObjectC, math.deg(0), math.deg(0), math.deg(-1.767145) )
shotpath = NBeaconZ - 200
moveObject ( NukeObjectA, 5000, NBeaconX, NBeaconY, shotpath, 0, 0, 259.9 )
moveObject ( NukeObjectB, 5000, NBeaconX + 0.072265, NBeaconY + 0.013731, shotpath - 3.846878, 0, 0, 259.9 )
moveObject ( NukeObjectC, 5000, NBeaconX + 0.060547, NBeaconY - 0.017578, shotpath - 10.924446, 0, 0, 259.9 )
end
function NExplosion ()
N_loops = N_loops + 1
r = math.random(1.5, 4.5)
angleup = math.random(0, 35999)/100
explosionXCoord = r*math.cos(angleup) + NBeaconX
ExplosionYCoord = r*math.sin(angleup) + NBeaconY
if N_loops == 1 then
N_Cloud = NBeaconZ
createExplosion ( explosionXCoord, ExplosionYCoord, N_Cloud, 7 )
killXPosRadius = NBeaconX + 35
killXNegRadius = NBeaconX - 35
killYPosRadius = NBeaconY + 35
killYNegRadius = NBeaconY - 35 --+/- 35 x/y
killZPosRadius = NBeaconZ + 28-- +28
killZNegRadius = NBeaconZ - 28-- -28
local x, y, z = getElementPosition ( localPlayer )
if ( x < killXPosRadius ) and ( x > killXNegRadius ) and ( y < killYPosRadius ) and ( y > killYNegRadius ) and
( z < killZPosRadius ) and ( z > killZNegRadius ) then
--triggerServerEvent ( "serverKillNukedPlayer", localPlayer )
end
elseif N_loops == 2 then
N_Cloud = NBeaconZ + 4
createExplosion ( explosionXCoord, ExplosionYCoord, N_Cloud, 7 )
destroyElement ( NukeObjectA ) --Exploded, get rid of objects
destroyElement ( NukeObjectB )
destroyElement ( NukeObjectC )
elseif N_loops > 20 then
N_cloudRotationAngle = N_cloudRotationAngle + 22.5
if N_explosionLimiter == false then
N_cloudRadius = 7
explosionXCoord = N_cloudRadius*math.cos(N_cloudRotationAngle) + NBeaconX --recalculate
ExplosionYCoord = N_cloudRadius*math.sin(N_cloudRotationAngle) + NBeaconY --recalculate
createExplosion ( explosionXCoord, ExplosionYCoord, N_Cloud, 7 )
N_explosionLimiter = true
elseif N_explosionLimiter == true then
N_explosionLimiter = false
end
N_cloudRadius2 = 16
explosionXCoord2 = N_cloudRadius2*math.cos(N_cloudRotationAngle) + NBeaconX
ExplosionYCoord2 = N_cloudRadius2*math.sin(N_cloudRotationAngle) + NBeaconY
createExplosion ( explosionXCoord2, ExplosionYCoord2, N_Cloud, 7 )
else
N_Cloud = N_Cloud + 4
createExplosion ( explosionXCoord, ExplosionYCoord, N_Cloud, 7 )
end
if N_loops == 1 then
NExplosionFlash = createMarker ( NBeaconX, NBeaconY, NBeaconZ, "corona", 0, 255, 255, 255, 255 )
N_FlashSize = 1
addEventHandler ( "onClientRender", root, NFlash )
elseif N_loops == 35 then
stopNFlash = true
end
end
function NFlash () --Corona "flare". Grows after cp marker B grows a little
if ( stopNFlash == false ) then
if N_FlashSize > 60 then --beginning flash must grow fast, then delayed
if NFlashDelay == 2 then
N_FlashSize = N_FlashSize + 1
NFlashDelay = 0
else
NFlashDelay = NFlashDelay + 1
end
else
N_FlashSize = N_FlashSize + 1
end
else
N_FlashSize = N_FlashSize - 1
end
setMarkerSize ( NExplosionFlash, N_FlashSize )
if N_FlashSize == 0 then
removeEventHandler ( "onClientRender", root, NFlash )
destroyElement ( NExplosionFlash )
N_loops = 0 --reset stuff
N_cloudRotationAngle = 0 --reset stuff
stopNFlash = false --reset stuff
NFlashDelay = 0 --reset stuff
--triggerServerEvent ( "serverNukeFinished", getRootElement() )
end
end
function serverLowFPS(limit, duration)
setTimer(setFPSLimit, 10 * 1000, 1, getFPSLimit() )
setFPSLimit ( 30 )
end
addEvent( "serverLowFPS", true )
addEventHandler( "serverLowFPS", resourceRoot, serverLowFPS )
-- Quick spectate victims
addEvent("onSpectateVictim",true)
function spectateVictim(name)
if name then
executeCommandHandler("s",name)
end
end
addEventHandler("onSpectateVictim",resourceRoot,spectateVictim) | 31.028571 | 133 | 0.738825 |
3e37e05bb5eca6c42d3e0e26c2b0d3376a645a91 | 272 | c | C | Commons/src/test/resources/test/C/C-1/memoryLimit.c | haribo0915/Judge-Girl | 4e989f7ddb4d7b1072482ed0af93757607e4449b | [
"Apache-2.0"
] | 32 | 2020-12-07T13:39:51.000Z | 2022-02-24T12:06:56.000Z | Commons/src/test/resources/test/C/C-1/memoryLimit.c | minghsu0107/Judge-Girl | cb26fb5441b196089df53b712cccc66b5ee1f377 | [
"Apache-2.0"
] | 216 | 2020-11-20T07:52:17.000Z | 2022-02-07T15:27:14.000Z | Commons/src/test/resources/test/C/C-1/memoryLimit.c | minghsu0107/Judge-Girl | cb26fb5441b196089df53b712cccc66b5ee1f377 | [
"Apache-2.0"
] | 6 | 2021-01-24T07:42:14.000Z | 2021-11-25T16:01:30.000Z | #define CL_USE_DEPRECATED_OPENCL_2_0_APIS
#include <stdio.h>
#include <assert.h>
#include <CL/cl.h>
#define MAXGPU 10
#define MAXK 1024
#define N (1024 * 1024)
int f() {
return f();
}
/* main */
int main(int argc, char *argv[])
{
f();
return 0;
}
/* end */
| 13.6 | 41 | 0.621324 |
18bf297bbf3811b35d80f9a7311224312531d74b | 363 | rb | Ruby | app/controllers/authenticated.rb | mtodd/ramble | ba79dd7ad4d2760a1a6c537b6093f80da66dcba3 | [
"MIT"
] | 1 | 2016-05-08T08:47:18.000Z | 2016-05-08T08:47:18.000Z | app/controllers/authenticated.rb | mtodd/ramble | ba79dd7ad4d2760a1a6c537b6093f80da66dcba3 | [
"MIT"
] | null | null | null | app/controllers/authenticated.rb | mtodd/ramble | ba79dd7ad4d2760a1a6c537b6093f80da66dcba3 | [
"MIT"
] | null | null | null | # = Authenticated Controllers
#
# Helper methods for securing website actions with authentication.
#
class Authenticated < Application
def current_user
@current_user ||= User[session[:authenticated_user_id]] if session[:authenticated_user_id]
end
def authenticated?
if current_user.nil?
redirect url(:new_session)
end
end
end
| 20.166667 | 94 | 0.730028 |
d9d3b6e02e99f4537b873b5c933ffc23770db56f | 1,808 | kt | Kotlin | src/main/kotlin/com/autonomousapps/model/ProjectVariant.kt | SubhrajyotiSen/dependency-analysis-android-gradle-plugin | dd809d426ae6ac09660ed391ee99f941df313d38 | [
"Apache-2.0"
] | null | null | null | src/main/kotlin/com/autonomousapps/model/ProjectVariant.kt | SubhrajyotiSen/dependency-analysis-android-gradle-plugin | dd809d426ae6ac09660ed391ee99f941df313d38 | [
"Apache-2.0"
] | null | null | null | src/main/kotlin/com/autonomousapps/model/ProjectVariant.kt | SubhrajyotiSen/dependency-analysis-android-gradle-plugin | dd809d426ae6ac09660ed391ee99f941df313d38 | [
"Apache-2.0"
] | null | null | null | package com.autonomousapps.model
import com.autonomousapps.internal.unsafeLazy
import com.autonomousapps.internal.utils.flatMapToOrderedSet
import com.autonomousapps.internal.utils.flatMapToSet
import com.autonomousapps.model.CodeSource.Kind
import com.autonomousapps.model.intermediates.Variant
/**
* Represents a variant-specific view of the project under analysis.
*/
data class ProjectVariant(
val coordinates: ProjectCoordinates,
val buildType: String?,
val flavor: String?,
val variant: Variant,
val sources: Set<Source>,
val classpath: Set<Coordinates>,
val annotationProcessors: Set<Coordinates>
) {
val usedClasses: Set<String> by unsafeLazy {
usedClassesByRes + usedClassesBySrc
}
val usedClassesBySrc: Set<String> by unsafeLazy {
codeSource.flatMapToSet {
it.usedClasses
}
}
val usedClassesByRes: Set<String> by unsafeLazy {
androidResSource.flatMapToSet {
it.usedClasses
}
}
val exposedClasses: Set<String> by unsafeLazy {
codeSource.flatMapToSet {
it.exposedClasses
}
}
val implementationClasses: Set<String> by unsafeLazy {
usedClasses - exposedClasses
}
val codeSource: List<CodeSource> by unsafeLazy {
sources.filterIsInstance<CodeSource>()
}
val androidResSource: List<AndroidResSource> by unsafeLazy {
sources.filterIsInstance<AndroidResSource>()
}
val javaImports: Set<String> by unsafeLazy {
codeSource.filter { it.kind == Kind.JAVA }
.flatMapToOrderedSet { it.imports }
}
val kotlinImports: Set<String> by unsafeLazy {
codeSource.filter { it.kind == Kind.KOTLIN }
.flatMapToOrderedSet { it.imports }
}
val imports: Set<String> by unsafeLazy {
sortedSetOf<String>().apply {
addAll(javaImports)
addAll(kotlinImports)
}
}
}
| 24.767123 | 68 | 0.727323 |
98b6e0aad467e8cec2b14ba8117b1b56d914eee4 | 557 | html | HTML | webfonts/javascript.html | ConenCompany/Blogger.io | 548466ea155ff0244df6ef88226758e792919f76 | [
"MIT"
] | 1 | 2020-12-12T00:01:19.000Z | 2020-12-12T00:01:19.000Z | webfonts/javascript.html | ConenCompany/Blogger.io | 548466ea155ff0244df6ef88226758e792919f76 | [
"MIT"
] | null | null | null | webfonts/javascript.html | ConenCompany/Blogger.io | 548466ea155ff0244df6ef88226758e792919f76 | [
"MIT"
] | null | null | null | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Javascript</title>
</head>
<body>
<h2 id="text">Guten Morgen</h2>
<button onclick="alert('welcome Back')">Click Me</button>
<script type="text/javascript">document.getElementById('text').onclick</script>
<script type="text/javascript">document.getElementById("text").innerHTML = "Tschüüß";</script>
<script type="text/javascript">alert('page Is Loaded');</script>
</body>
</html> | 27.85 | 98 | 0.671454 |
58101fc461ed79c1abc8ca4635da7ba9b7eda273 | 316 | h | C | docOPD/Drawer/Source/Helper Classes/About/MyApplication.h | mauryabip/DocOPD | 4b8068f1fd73773ef958d77abc4ba266c683be07 | [
"MIT"
] | null | null | null | docOPD/Drawer/Source/Helper Classes/About/MyApplication.h | mauryabip/DocOPD | 4b8068f1fd73773ef958d77abc4ba266c683be07 | [
"MIT"
] | null | null | null | docOPD/Drawer/Source/Helper Classes/About/MyApplication.h | mauryabip/DocOPD | 4b8068f1fd73773ef958d77abc4ba266c683be07 | [
"MIT"
] | null | null | null | //
// MyApplication.h
// Test
//
// Created by Ashu on 24/04/16.
// Copyright © 2016 Apple. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
@interface MyApplication : UIApplication
-(BOOL)openURL:(NSURL *)url;
-(BOOL)openURL:(NSURL *)url forceOpenInSafari:(BOOL)forceOpenInSafari;
@end
| 19.75 | 70 | 0.705696 |
2470627e591a67143338432eda3a0fca6954ad5c | 194 | kt | Kotlin | app/src/main/java/com/vladislawfox/scout/data/network/request/SessionRequest.kt | vladislawfox/Scout | 71357bb78e34164eca518230457a77c64a38b9c3 | [
"MIT"
] | null | null | null | app/src/main/java/com/vladislawfox/scout/data/network/request/SessionRequest.kt | vladislawfox/Scout | 71357bb78e34164eca518230457a77c64a38b9c3 | [
"MIT"
] | null | null | null | app/src/main/java/com/vladislawfox/scout/data/network/request/SessionRequest.kt | vladislawfox/Scout | 71357bb78e34164eca518230457a77c64a38b9c3 | [
"MIT"
] | null | null | null | package com.vladislawfox.scout.data.network.request
import com.google.gson.annotations.SerializedName
data class SessionRequest(
@SerializedName("request_token") val requestToken: String
) | 27.714286 | 61 | 0.824742 |
d75359a4d0c3adea83af74e821f655bb4d5ed827 | 419 | kt | Kotlin | loginmanager/src/main/java/com/base/library/login/common/constants/LoginConstants.kt | wkxjc/LoginManager | 6c5c7e35c28544752beebbf1d7a26c8c75b663f5 | [
"DOC",
"Apache-2.0"
] | 11 | 2019-03-09T00:55:56.000Z | 2022-02-17T02:37:54.000Z | loginmanager/src/main/java/com/base/library/login/common/constants/LoginConstants.kt | wkxjc/LoginManager | 6c5c7e35c28544752beebbf1d7a26c8c75b663f5 | [
"DOC",
"Apache-2.0"
] | 1 | 2019-07-30T01:58:17.000Z | 2021-01-05T09:58:13.000Z | loginmanager/src/main/java/com/base/library/login/common/constants/LoginConstants.kt | wkxjc/LoginManager | 6c5c7e35c28544752beebbf1d7a26c8c75b663f5 | [
"DOC",
"Apache-2.0"
] | 3 | 2019-07-18T10:47:40.000Z | 2020-05-26T13:22:46.000Z | package com.base.library.login.common.constants
/**
* Description:
* 登录常量类
*
* @author Alpinist Wang
* Date: 2018/11/26
*/
object LoginConstants {
/**Google登录RequestCode*/
const val REQUEST_CODE_GOOGLE_SIGN_IN = 9001
const val GOOGLE_CLIENT_ID = "google_web_client_id"
const val TWITTER_CONSUMER_KEY = "twitter_consumer_key"
const val TWITTER_CONSUMER_SECRET = "twitter_consumer_secret"
} | 26.1875 | 65 | 0.742243 |
b063af9621c085fe9d87be3e0f9946a5380e6991 | 1,489 | rs | Rust | src/identity/bin/password_authenticator/src/keys.rs | allansrc/fuchsia | a2c235b33fc4305044d496354a08775f30cdcf37 | [
"BSD-2-Clause"
] | 2 | 2022-02-24T16:24:29.000Z | 2022-02-25T22:33:10.000Z | src/identity/bin/password_authenticator/src/keys.rs | allansrc/fuchsia | a2c235b33fc4305044d496354a08775f30cdcf37 | [
"BSD-2-Clause"
] | 1 | 2022-03-01T01:12:04.000Z | 2022-03-01T01:17:26.000Z | src/identity/bin/password_authenticator/src/keys.rs | allansrc/fuchsia | a2c235b33fc4305044d496354a08775f30cdcf37 | [
"BSD-2-Clause"
] | null | null | null | // Copyright 2021 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
use {async_trait::async_trait, fidl_fuchsia_identity_account as faccount, thiserror::Error};
#[derive(Debug, Error)]
pub enum KeyError {
// TODO(zarvox): remove once NullKey support is removed
// This is only needed for NullKeyDerivation -- once we no longer have a key derivation that
// would otherwise ignore the password provided, we can simply handle all authentication
// failures by letting the resulting derived-key simply not match what the partition will
// require to be unsealed.
#[error("Password did not meet precondition")]
PasswordError,
#[error("Failed to derive key from password")]
KeyDerivationError,
}
/// A 256-bit key.
pub type Key = [u8; 32];
/// The `KeyDerivation` trait provides a mechanism for deriving a key from a password.
/// The returned key is suitable for use with a zxcrypt volume.
#[async_trait]
pub trait KeyDerivation {
/// Derive a key from the given password. The returned key will be 256 bits long.
async fn derive_key(&self, password: &str) -> Result<Key, KeyError>;
}
impl From<KeyError> for faccount::Error {
fn from(e: KeyError) -> Self {
match e {
KeyError::PasswordError => faccount::Error::FailedAuthentication,
KeyError::KeyDerivationError => faccount::Error::Internal,
}
}
}
| 36.317073 | 96 | 0.706514 |
85fc016bb90b75195aa78fa36b37f64a706b3905 | 205 | h | C | protocols/HFCharacteristicValueReader.h | shaojiankui/iOS10-Runtime-Headers | 6b0d842bed0c52c2a7c1464087b3081af7e10c43 | [
"MIT"
] | 36 | 2016-04-20T04:19:04.000Z | 2018-10-08T04:12:25.000Z | protocols/HFCharacteristicValueReader.h | shaojiankui/iOS10-Runtime-Headers | 6b0d842bed0c52c2a7c1464087b3081af7e10c43 | [
"MIT"
] | null | null | null | protocols/HFCharacteristicValueReader.h | shaojiankui/iOS10-Runtime-Headers | 6b0d842bed0c52c2a7c1464087b3081af7e10c43 | [
"MIT"
] | 10 | 2016-06-16T02:40:44.000Z | 2019-01-15T03:31:45.000Z | /* Generated by RuntimeBrowser.
*/
@protocol HFCharacteristicValueReader <NSObject>
@required
- (HMHome *)hf_home;
- (void)performBatchCharacteristicRequest:(HMCharacteristicBatchRequest *)arg1;
@end
| 17.083333 | 79 | 0.785366 |
f5a4ba587074f47ce4242f73f3a5a070a2be44df | 152 | rs | Rust | src/service/mod.rs | longkai/shadowsocks-rust | 3438a473766bfad133f5b5ad0577f4e88670c75c | [
"MIT"
] | 3,979 | 2017-07-25T00:43:01.000Z | 2022-03-31T23:09:20.000Z | src/service/mod.rs | longkai/shadowsocks-rust | 3438a473766bfad133f5b5ad0577f4e88670c75c | [
"MIT"
] | 539 | 2017-07-24T14:04:17.000Z | 2022-03-31T13:30:30.000Z | src/service/mod.rs | longkai/shadowsocks-rust | 3438a473766bfad133f5b5ad0577f4e88670c75c | [
"MIT"
] | 820 | 2017-07-24T14:11:44.000Z | 2022-03-30T09:59:21.000Z | //! Service launchers
#[cfg(feature = "local")]
pub mod local;
#[cfg(feature = "manager")]
pub mod manager;
#[cfg(feature = "server")]
pub mod server;
| 16.888889 | 27 | 0.657895 |
0ba3c4d7d4d48cd32673696a0d4ce0dedcefcaca | 21,354 | py | Python | pootlestuff/watchables.py | pootle/pootles_utils | bb47103e71ccc4fa01269259b73ca1932184af84 | [
"UPL-1.0"
] | null | null | null | pootlestuff/watchables.py | pootle/pootles_utils | bb47103e71ccc4fa01269259b73ca1932184af84 | [
"UPL-1.0"
] | null | null | null | pootlestuff/watchables.py | pootle/pootles_utils | bb47103e71ccc4fa01269259b73ca1932184af84 | [
"UPL-1.0"
] | null | null | null | """
This module provides classes that support observers, smart value handling and debug functions
All changes to values nominate an agent, and observers nominate the agent making changes they
are interested in.
It supercedes the pvars module
"""
import logging, sys, threading, pathlib, math, json
from enum import Enum, auto as enumauto, Flag
class loglvls(Enum):
"""
A class for logging levels so data is self identfying
"""
VAST = logging.DEBUG-1
DEBUG = logging.DEBUG
INFO = logging.INFO
WARN = logging.WARN
ERROR = logging.ERROR
FATAL = logging.FATAL
NONE = 0
class myagents(Flag):
NONE = 0
app = enumauto()
user = enumauto()
class wflags(Flag):
NONE = 0
DISABLED = enumauto()
class watchable():
"""
provides a 'smart' object that provides basic observer functionality around an object.
Changes to the value can be policed, and updates have to provide an agent that is
performing the update. Observers can then request to be notified when the value is changed
by specific agents.
"""
def __init__(self, value, app, flags=wflags.NONE, loglevel=loglvls.INFO):
"""
creates a new watchable. Initialises the internal value and sets an empty observers list
value: the initial value for the object. Not validated!
app : the app instance for this. Used for logging and for validating agents
"""
self._val=value
self.app=app
self.observers=None
self.oblock=threading.Lock()
self.flags=flags
self.loglevel=loglevel
self.log(loglvls.DEBUG, 'watchable type %s setup with value %s' % (type(self).__name__, self._val))
def setValue(self, value, agent):
"""
Updates the value of a watchable or the loglevel.
if not a loglevel, this validates and converts (if relevant) the requested value.
If the value is valid and different from the current value, checks for and calls
any observers interested in changes by the given agent.
"""
if isinstance(value, loglvls):
self.loglevel = value
return False
if isinstance(value, wflags):
self.flags=value
return False
assert isinstance(agent, self.app.agentclass), 'unexpected value %s of type %s in setValue' % (value, type(value).__name__)
newvalue=self.validValue(value, agent)
if newvalue != self._val:
self.notify(newvalue, agent)
return True
else:
self.log(loglvls.DEBUG,'value unchanged (%s)' % self._val)
return False
def getValue(self):
return self._val
def validValue(self, value, agent=None):
"""
validates the given value and returns the canonical value which will be stored.
Raise an exception if the value is invalid
'Real' classes must implement this
"""
raise NotImplementedError()
def notify(self, newvalue, agent):
if self.observers:
clist=None
with self.oblock:
if agent in self.observers:
clist=self.observers[agent].copy()
oldvalue=self._val
self._val=newvalue
if clist:
for ob in clist:
ob(oldValue=oldvalue, newValue=newvalue, agent=agent, watched=self)
self.log(loglvls.DEBUG,'value changed (%s)- observers called' % self._val)
else:
self._val=newvalue
self.log(loglvls.DEBUG,'value changed (%s)- no observers' % self._val)
def addNotify(self, callback, agent):
assert callable(callback)
assert isinstance(agent, self.app.agentclass)
self.log(loglvls.DEBUG,'added watcher %s' % callback.__name__)
with self.oblock:
if self.observers is None:
self.observers={agent:[callback]}
elif agent in self.observers:
self.observers[agent].append(callback)
else:
self.observers[agent]=[callback]
def dropNotify(self, callback, agent):
with self.oblock:
aglist=self.observers[agent]
ix = aglist.index(callback)
aglist.pop(ix)
def log(self, loglevel, *args, **kwargs):
"""
request a logging operation. This does nothing if the given loglevel is < the loglevel set in the object
"""
if loglevel.value >= self.loglevel.value:
self.app.log(loglevel, *args, **kwargs)
class textWatch(watchable):
"""
A refinement of watchable for text strings.
"""
def validValue(self, value, agent):
"""
value : the requested new value for the field, can be anything that str() takes, but None will fail.
agent : who asked for then change (ignored here)
returns : the valid new value (this is always a str)
raises : Any error that str() can raise
"""
if value is None:
raise ValueError('None is not a valid textVar value')
return str(value)
class floatWatch(watchable):
"""
A refinement of watchable that restricts the value to numbers - simple floating point.
"""
def __init__(self, *, maxv=sys.float_info.max, minv=-sys.float_info.max, clamp=False, allowNaN=True, **kwargs):
"""
Makes a float given min and max values. The value can be set clamped to prevent failures
minv : the lowest allowed value - use 0 to allow only positive numbers
maxv : the highest value allowed
clamp : if True all values that can float() are accepted for updating, but are restricted to be between minv and maxv
"""
self.maxv=float(maxv)
self.minv=float(minv)
self.clamp=clamp==True
self.allowNaN=allowNaN
super().__init__(**kwargs)
def validValue(self, value, agent):
"""
value : the requested new value for the field, can be anything that float(x) can handle that is between minv and maxv
- or if clamp is True, any value
agent : who asked for then change (ignored here)
returns : the valid new value (this is always a float)
raises : ValueError if the provided value is invalid
"""
av=float(value)
if math.isnan(av) and self.allowNaN:
return av
if self.clamp:
return self.minv if av < self.minv else self.maxv if av > self.maxv else av
if self.minv <= av <= self.maxv:
return av
raise ValueError('value {} is outside range {} to {}'.format(value, self.minv, self.maxv))
class intWatch(watchable):
"""
A refinement of watchable that restricts the field value to integer numbers optionally within a range.
"""
def __init__(self, maxv=None, minv=None, clamp=False, **kwargs):
"""
creates an integer var
maxv: None if unbounded maximum else anything that int() accepts
minv: None if unbounded minimum else anything that int() accepts
clamp: if True then value is clamped to maxv and minv (either can be None for unbounded in either 'direction'
"""
self.maxv=maxv if maxv is None else int(maxv)
self.minv=minv if minv is None else int(minv)
self.clamp=clamp==True
super().__init__(**kwargs)
def validValue(self, value, agent):
"""
value : the requested new value for the field, can be anything that int() can handle that is between minv and maxv
- or if clamp is True, any value
agent : who asked for then change (ignored here)
returns : the valid new value (this is always an int)
raises : ValueError if the provided value is invalid
"""
av=int(value)
if self.clamp:
if not self.minv is None and av < self.minv:
return self.minv
if not self.maxv is None and av > self.maxv:
return self.maxv
return av
if (self.minv is None or av >= self.minv) and (self.maxv is None or av <= self.maxv):
return av
raise ValueError('value {} is outside range {} to {} for watchable'.format(value, self.minv, self.maxv))
def increment(self, agent, count=1):
incer=int(count)
newval=self.getValue()+incer
self.setValue(newval, agent)
return newval
class enumWatch(watchable):
"""
a watchable that can only take a specific set of values, and can wrap / clamp values.
It also allows values to be cycled through
"""
def __init__(self, vlist, wrap=True, clamp=False, **kwargs):
self.wrap=wrap == True
self.clamp=clamp == True
self.vlist=vlist
super().__init__(**kwargs)
def validValue(self, value, agent):
if not value in self.vlist:
raise ValueError('value (%s) not valid' % value)
return value
def getIndex(self):
return self.vlist.index(self._val)
def increment(self, agent, inc=1):
newi=self.getIndex()+inc
if 0 <= newi < len(self.vlist):
return self.setValue(self.vlist[newi], agent)
elif self.wrap:
if newi < 0:
useval = self.vlist[-1]
else:
useval = self.vlist[0]
elif self.clamp:
if newi < 0:
useval = self.vlist[0]
else:
useval = self.vlist[-1]
else:
raise ValueError('operation exceeds list boundary')
self.setValue(useval, agent)
def setIndex(self, ival, agent):
if 0 <= ival < len(self.vlist):
return self.setValue(self.vlist[ival], agent)
else:
raise ValueError('index out of range')
class btnWatch(watchable):
"""
For simple click buttons that always notify
"""
def setValue(self, value, agent):
if isinstance(value, loglvls):
self.loglevel = value
return False
if isinstance(value, wflags):
self.flags=value
return False
assert isinstance(agent, self.app.agentclass)
self.notify(self._val, agent)
return True
class folderWatch(watchable):
"""
Internally. the value is a pathlib path to a folder (subfolders are created automatically).
"""
def __init__(self, value, **kwargs):
super().__init__(value=self.validValue(value, None), **kwargs)
def validValue(self, value, agent):
tp=pathlib.Path(value).expanduser()
if tp.exists():
if tp.is_dir():
return tp
else:
raise ValueError('%s is not a folder' % str(tp))
else:
tp.mkdir(parents=True, exist_ok=True)
return tp
def getValue(self):
return str(self._val)
def getFolder(self):
return self._val
def currentfilenames(self, includes=None, excludes=None):
"""
returns names of files currently in this folder
"""
return [pp.name for pp in self.getValue().iterdir() if pp.is_file() and
(True if includes is None else [1 for x in includes if pp.name.endswith(x)]) and
(True if excludes is None else [1 for x in excludes if not pp.name.endswith(x)])]
class watchablegroup(object):
def __init__(self, value, wabledefs, loglevel=None):
"""
value : dict of preferred values for watchables in this activity (e.g. from saved settings file)
wabledefs: a list of 5-tuples that define each watchable with the following entries:
0: name of the watchable
1: class of the watchable
2: default value of the watchable
3: True if the watchable is returned by fetchsettings (as a dict member)
4: kwargs to use when setting up the watchable
"""
self.perslist=[]
self.loglevel=loglvls.INFO if loglevel is None else loglevel
for awable in wabledefs:
ch=self.makeChild(defn=awable, value=awable[2] if value is None else value.get(awable[0], awable[2]))
if ch is None:
raise ValueError('child construction failed - see log')
setattr(self, awable[0], ch)
if awable[3]:
self.perslist.append(awable[0])
def makeChild(self, value, defn):
"""
returns a new object with this object as the app using a definition list
value : value for the
defn: a list of 5-tuples that define each watchable with the following entries:
0: name of the watchable - not used
1: class of the watchable
2: default value of the watchable - only used if value is None
3: True if then watchable is returned by fetchsettings (as a dict member) - not used
4: kwargs to use when setting up the watchable
"""
deflen=len(defn)
if deflen==4:
params={}
elif deflen==5:
params=defn[4]
else:
raise ValueError('there are not 4 or 5 entries in this definition for class %s: %s' % (type(self).__name__, defn))
try:
vv=defn[2] if value is None else value
return defn[1](app=self, value=vv, **params)
except:
print('Exception in makeChild for class %s' % defn[1], ('using defn value (%s)' % defn[2]) if value is None else str(vv))
print('extra keyword args', params)
print('input values:', value)
self.log(loglvls.ERROR,'class %s exception making variable %s' % (type(self).__name__, defn[0]), exc_info=True, stack_info=True)
return None
def fetchsettings(self):
return {kv: getattr(self,kv).getValue() for kv in self.perslist}
def applysettings(self, settings, agent):
for k,v in settings:
if k in self.perslist:
getattr(self, k).setValue(v, agent)
class watchablesmart(watchablegroup):
"""
This class can act as a complete app, or as a part of an app.
For a complete app:
sets up logging for the app
for a component of an app:
passes logging calls up to the app.
value: for the top level (app is None), if a string, this is the file name for json file which should yield a dict with the settings to be applied in construction
otherwise id should be a dict with the settings
lower levels always expect a dict
app: If app is None, this node is the app, otherwise it should be the app object (which provides logging and save / restore settings
"""
def __init__(self, value, app=None, loglevel=loglvls.INFO, **kwargs):
if app==None: # this is the real (top level) app
if loglevel is None or loglevel is loglvls.NONE:
self.logger=None
print('%s no logging' % type(self).__name__)
else:
self.agentclass=myagents
self.logger=logging.getLogger(__loader__.name+'.'+type(self).__name__)
chandler=logging.StreamHandler()
chandler.setFormatter(logging.Formatter(fmt= '%(asctime)s %(levelname)7s (%(process)d)%(threadName)12s %(module)s.%(funcName)s: %(message)s', datefmt= "%M:%S"))
self.logger.addHandler(chandler)
self.logger.setLevel(loglevel.value)
self.log(loglvls.INFO,'logging level is %s' % loglevel)
self.startsettings, lmsg, self.settingsfrom = loadsettings(value)
self.log(loglvls.INFO, lmsg)
else:
self.app=app
self.agentclass=app.agentclass
self.startsettings=value
super().__init__(value=self.startsettings, loglevel=loglevel, **kwargs)
def log(self, level, msg, *args, **kwargs):
if hasattr(self,'app'):
if self.loglevel.value <= level.value:
self.app.log(level, msg, *args, **kwargs)
else:
if self.logger:
self.logger.log(level.value, msg, *args, **kwargs)
elif level.value >= loglvls.WARN:
print(msg)
def savesettings(self, oldValue, newValue, agent, watched):
if hasattr(self, 'app'):
raise ValueError('only the app level can save settings')
try:
setts = self.fetchsettings()
except:
self.log(loglvls.WARN,'fetchsettings failed', exc_info=True, stack_info=True)
setts = None
if not setts is None:
try:
settstr=json.dumps(setts, indent=4)
except:
self.log(loglvls.WARN,'json conversion of these settings failed', exc_info=True, stack_info=True)
self.log(loglvls.WARN,str(setts))
settstr=None
if not settstr is None:
try:
with self.settingsfrom.open('w') as sfo:
sfo.write(settstr)
except:
self.log(loglvls.WARN,'save settings failed to write file', exc_info=True, stack_info=True)
return
self.log(loglvls.INFO,'settings saved to file %s' % str(self.settingsfrom))
class watchablepigpio(watchablesmart):
"""
a root class that adds in pigpio setup to watchablesmart
"""
def __init__(self, app=None, pigp=None, **kwargs):
"""
if the app has a pio attribute, (an instance of pigpio.pi), that is used otherwise one is set up.
"""
if not app is None and hasattr(app,'pio'):
self.pio=app.pio
self.mypio=False
elif pigp is None:
import pigpio
ptest=pigpio.pi()
if not ptest.connected:
raise ValueError('pigpio failed to initialise')
self.pio=ptest
self.mypio=True
else:
self.pio=pigp
self.mypio=False
if not self.pio.connected:
raise ValueError('pigpio is not connected')
super().__init__(app=app, **kwargs)
def close(self):
if self.mypio:
self.pio.stop()
self.mypio=False
self.pio=None
class watchableAct(watchablegroup):
"""
An app can have a number of optional activities (that can have their own threads, watched vars etc.
This class provides useful common bits for such activities. It provides:
A way to set up the watchable variables for the class, using passed in values (for saved settings for example)
with defaults if a value isn't passed.
A way to automatically retrieve values for a subset of watchable variables (e.g. to save values as a known config)
logging via the parent app using Python's standard logging module
"""
def __init__(self, app, **kwargs):
self.app=app
self.agentclass=app.agentclass
super().__init__(**kwargs)
def log(self, loglevel, *args, **kwargs):
"""
request a logging operation. This does nothing if the given loglevel is < the loglevel set in the object
"""
if self.loglevel.value <= loglevel.value:
self.app.log(loglevel, *args, **kwargs)
class watchableApp(object):
def __init__(self, agentclass=myagents, loglevel=None):
self.agentclass=agentclass
if loglevel is None or loglevel is loglvls.NONE:
self.logger=None
print('%s no logging' % type(self).__name__)
else:
self.logger=logging.getLogger(__loader__.name+'.'+type(self).__name__)
chandler=logging.StreamHandler()
chandler.setFormatter(logging.Formatter(fmt= '%(asctime)s %(levelname)7s (%(process)d)%(threadName)12s %(module)s.%(funcName)s: %(message)s', datefmt= "%M:%S"))
self.logger.addHandler(chandler)
self.logger.setLevel(loglevel.value)
def log(self, level, msg, *args, **kwargs):
if self.logger:
self.logger.log(level.value, msg, *args, **kwargs)
def loadsettings(value):
if isinstance(value, str):
spath=pathlib.Path(value).expanduser()
settingsfrom=spath
if spath.is_file():
try:
with spath.open('r') as spo:
startsettings=json.load(spo)
return startsettings, 'app settings loaded from file %s' % spath, spath
except:
return {}, 'failed to load settings from %s - default values used' % spath, spath
else:
return {}, 'app settings file %s not found - default values used' % str(spath), spath
elif hasattr(value,'keys'):
return value, 'using settings from passed object', None
elif value is None:
return {}, 'settings not specified, default values used', None
else:
return {}, 'setings not processed from passed %s' % type(values).__name__, None
| 38.475676 | 177 | 0.594924 |
7b680ca3195040a91f82a2a86a9a2e9b897c63de | 2,198 | css | CSS | static/my/css/login.css | Stylllzy/Blog-1.0 | 0faee8206ae680793cd0741577efe00058212387 | [
"MIT"
] | 2 | 2022-02-16T15:28:22.000Z | 2022-02-16T15:28:26.000Z | static/my/css/login.css | Stylllzy/blog-1.0 | 0faee8206ae680793cd0741577efe00058212387 | [
"MIT"
] | null | null | null | static/my/css/login.css | Stylllzy/blog-1.0 | 0faee8206ae680793cd0741577efe00058212387 | [
"MIT"
] | null | null | null | body {
width: 100%;
height: 100vh;
}
body #app {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
main {
width: 600px;
min-height: 600px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
position: relative;
border-radius: 5px;
display: flex;
flex-direction: column;
}
main .top {
padding: 40px 20px 20px 20px;
}
main .top h2 {
display: flex;
justify-content: center;
}
main .top .title {
text-align: center;
}
main .top .title a {
color: #808595;
}
main .top .title a.active {
color: #6c63ff;
}
main .top .login_forms {
margin-top: 20px;
margin-bottom: 10px;
display: flex;
flex-direction: column;
}
main .top .login_forms > input {
margin-bottom: 20px;
border: none;
outline: none;
height: 40px;
border-radius: 5px;
padding-left: 20px;
transition: all 0.3s;
}
main .top .login_forms > input:focus {
border: 1px solid #6c63ff;
}
main .top .login_forms input.sign_input {
margin-bottom: 15px;
}
main .top .login_forms > button {
border: none;
height: 40px;
cursor: pointer;
color: whitesmoke;
background-color: #6c63ff;
border-radius: 5px;
}
main .top .other_login {
display: flex;
flex-direction: column;
align-items: center;
position: relative;
}
main .top .other_login > p {
font-size: 14px;
color: #808595;
}
main .top .other_login::before {
position: absolute;
content: "";
display: block;
width: 200px;
height: 1px;
background-color: #808595;
left: 0;
top: 8px;
}
main .top .other_login::after {
position: absolute;
content: "";
display: block;
width: 200px;
height: 1px;
background-color: #808595;
right: 0;
top: 8px;
}
main .top .other_login > div {
margin-top: 20px;
}
main .top .other_login > div a {
width: 60px;
margin-right: 10px;
color: #808595;
}
main .top .other_login > div a:last-child {
margin-right: 0;
}
main .bottom img {
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
height: 270px;
}
main .bottom .bottom_img2 {
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
height: 235px;
}
/*# sourceMappingURL=login.css.map */
| 17.584 | 43 | 0.651956 |
2a7760af27cf4754bfb4e87e975041de3906fc51 | 1,241 | java | Java | entry/src/main/java/com/example/jms/entry/controller/ArticleController.java | qanwi1970/jms | d772e6bcd1973d16610a3bd3106bce6ce922098c | [
"MIT"
] | null | null | null | entry/src/main/java/com/example/jms/entry/controller/ArticleController.java | qanwi1970/jms | d772e6bcd1973d16610a3bd3106bce6ce922098c | [
"MIT"
] | null | null | null | entry/src/main/java/com/example/jms/entry/controller/ArticleController.java | qanwi1970/jms | d772e6bcd1973d16610a3bd3106bce6ce922098c | [
"MIT"
] | null | null | null | package com.example.jms.entry.controller;
import com.example.jms.entry.model.Article;
import com.example.jms.entry.service.ArticleService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.*;
import java.util.List;
@Slf4j
@RestController
@RequestMapping("api/articles")
public class ArticleController {
private final ArticleService articleService;
public ArticleController(ArticleService articleService) {
this.articleService = articleService;
}
@GetMapping()
public List<Article> getAllArticles() {
log.debug("Getting all articles");
return articleService.getAllArticles();
}
/**
* In an async workflow, the entity will _eventually_ get created. We don't have a location for it, or a proper
* model with an ID. So, we'll just return a 202 as soon as the service call to put the addition on the queue
* succeeds.
*
* @param article The article to add
*/
@PostMapping()
@ResponseStatus(HttpStatus.ACCEPTED)
public void addArticle(@RequestBody Article article) {
log.debug("Adding an article {}", article);
articleService.addArticle(article);
}
}
| 29.547619 | 115 | 0.714746 |
2671d580716162b4588d4e7ac1647a856f60caf2 | 6,307 | java | Java | snomed/com.b2international.snowowl.snomed.core.rest/src/com/b2international/snowowl/snomed/core/rest/services/SnomedRf2ImportService.java | eranhash/snow-owl | bee466023647e4512e96269f0a380fa1ff3a785a | [
"Apache-2.0"
] | 2 | 2020-02-13T15:51:26.000Z | 2021-09-14T00:44:27.000Z | snomed/com.b2international.snowowl.snomed.core.rest/src/com/b2international/snowowl/snomed/core/rest/services/SnomedRf2ImportService.java | eranhash/snow-owl | bee466023647e4512e96269f0a380fa1ff3a785a | [
"Apache-2.0"
] | 1 | 2020-07-27T14:41:03.000Z | 2020-07-27T14:41:03.000Z | snomed/com.b2international.snowowl.snomed.core.rest/src/com/b2international/snowowl/snomed/core/rest/services/SnomedRf2ImportService.java | eranhash/snow-owl | bee466023647e4512e96269f0a380fa1ff3a785a | [
"Apache-2.0"
] | null | null | null | /*
* Copyright 2011-2020 B2i Healthcare Pte Ltd, http://b2i.sg
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.b2international.snowowl.snomed.core.rest.services;
import static com.b2international.snowowl.snomed.datastore.SnomedDatastoreActivator.REPOSITORY_UUID;
import static com.google.common.base.Preconditions.checkNotNull;
import static java.lang.String.valueOf;
import static java.util.Collections.synchronizedMap;
import static java.util.UUID.randomUUID;
import java.io.InputStream;
import java.util.Map;
import java.util.UUID;
import java.util.concurrent.TimeUnit;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import com.b2international.commons.exceptions.BadRequestException;
import com.b2international.commons.exceptions.NotFoundException;
import com.b2international.commons.validation.ApiValidation;
import com.b2international.snowowl.core.attachments.AttachmentRegistry;
import com.b2international.snowowl.core.repository.RepositoryRequests;
import com.b2international.snowowl.eventbus.IEventBus;
import com.b2international.snowowl.snomed.core.domain.ISnomedImportConfiguration;
import com.b2international.snowowl.snomed.core.domain.ISnomedImportConfiguration.ImportStatus;
import com.b2international.snowowl.snomed.core.domain.Rf2ReleaseType;
import com.b2international.snowowl.snomed.core.rest.domain.SnomedImportConfiguration;
import com.b2international.snowowl.snomed.datastore.SnomedDatastoreActivator;
import com.b2international.snowowl.snomed.datastore.request.SnomedRequests;
import com.google.common.collect.Iterables;
import com.google.common.collect.Maps;
import com.google.inject.Provider;
/**
* {@link ISnomedRf2ImportService SNOMED CT RF2 import service} implementation.
* Used for importing SNOMED CT content into the system from RF2 release archives.
* @deprecated - corresponding REST API has been deprecated, will be removed in 7.6
*/
@Component
public class SnomedRf2ImportService implements ISnomedRf2ImportService {
private static final Logger LOG = LoggerFactory.getLogger(SnomedRf2ImportService.class);
/**
* A mapping between the registered import identifiers and the associated import configurations.
* <p>
* Keys are versions.<br>Values are mapping between the import IDs and the configurations.
*/
private final Map<UUID, ISnomedImportConfiguration> configurationMapping = synchronizedMap(Maps.<UUID, ISnomedImportConfiguration>newHashMap());
@Autowired
private Provider<IEventBus> bus;
@Autowired
private AttachmentRegistry fileRegistry;
@Override
public ISnomedImportConfiguration getImportDetails(final UUID importId) {
final ISnomedImportConfiguration configuration = configurationMapping.get(importId);
if (null == configuration) {
throw new NotFoundException("SNOMED CT import configuration", importId.toString());
}
return configuration;
}
@Override
public void deleteImportDetails(final UUID importId) {
configurationMapping.remove(importId);
}
@Override
public void startImport(final UUID importId, final InputStream inputStream) {
checkNotNull(importId, "SNOMED CT import identifier should be specified.");
checkNotNull(inputStream, "Cannot stream the content of the given SNOMED CT release archive.");
final ISnomedImportConfiguration configuration = getImportDetails(importId);
final ImportStatus currentStatus = configuration.getStatus();
if (!ImportStatus.WAITING_FOR_FILE.equals(currentStatus)) {
final StringBuilder sb = new StringBuilder();
sb.append("Cannot start SNOMED CT import. Import configuration is ");
sb.append(valueOf(currentStatus).toLowerCase());
sb.append(".");
throw new BadRequestException(sb.toString());
}
if (isImportAlreadyRunning()) {
throw new BadRequestException("Cannot perform SNOMED CT import from RF2 archive. "
+ "An import is already in progress. Please try again later.");
}
fileRegistry.upload(importId, inputStream);
SnomedRequests.rf2().prepareImport()
.setRf2ArchiveId(importId)
.setCreateVersions(configuration.shouldCreateVersion())
.setReleaseType(configuration.getRf2ReleaseType())
.build(SnomedDatastoreActivator.REPOSITORY_UUID, configuration.getBranchPath())
.execute(bus.get())
.then(response -> {
final ImportStatus importStatus = response.isSuccess()
? ImportStatus.COMPLETED
: ImportStatus.FAILED;
((SnomedImportConfiguration) configuration).setStatus(importStatus);
return null;
})
.fail(e -> {
LOG.error("Error during the import of: {}", importId, e);
((SnomedImportConfiguration) configuration).setStatus(ImportStatus.FAILED);
return null;
});
((SnomedImportConfiguration) configuration).setStatus(ImportStatus.RUNNING);
}
private boolean isImportAlreadyRunning() {
return Iterables.any(configurationMapping.values(), configuration -> ImportStatus.RUNNING.equals(configuration.getStatus()));
}
@Override
public UUID create(final ISnomedImportConfiguration configuration) {
checkNotNull(configuration, "SNOMED CT import configuration should be specified.");
ApiValidation.checkInput(configuration);
// Check version and branch existence in case of DELTA RF2 import
// FULL AND SNAPSHOT can be import into empty databases
if (Rf2ReleaseType.DELTA == configuration.getRf2ReleaseType()) {
// will throw exception internally if the branch is not found
RepositoryRequests.branching().prepareGet(configuration.getBranchPath()).build(REPOSITORY_UUID).execute(bus.get()).getSync(1, TimeUnit.MINUTES);
}
final UUID importId = randomUUID();
configurationMapping.put(importId, configuration);
return importId;
}
}
| 40.171975 | 147 | 0.787221 |
16b557a1a541f84d1a3882e9a10cb8376758013b | 1,785 | ts | TypeScript | src/record/record.controller.ts | Jrosado16/ewallet-nestjs | 7b5796ae3122b726c703daf572a0833b108ae456 | [
"MIT"
] | null | null | null | src/record/record.controller.ts | Jrosado16/ewallet-nestjs | 7b5796ae3122b726c703daf572a0833b108ae456 | [
"MIT"
] | null | null | null | src/record/record.controller.ts | Jrosado16/ewallet-nestjs | 7b5796ae3122b726c703daf572a0833b108ae456 | [
"MIT"
] | null | null | null | import { Controller, Post, UseGuards, Request, Get, Body, Response, HttpStatus } from '@nestjs/common';
import { JwtAuthGuard } from 'src/auth/jwt-auth.guard';
import { RecordDTO } from './dto/record.dto';
import { RecordService } from './record.service';
@Controller('record')
export class RecordController {
constructor(private readonly recordService: RecordService){}
@UseGuards(JwtAuthGuard)
@Get('/')
async getRecord(@Request() req){
const record = await this.recordService.getRecord(req.user)
return record
}
@UseGuards(JwtAuthGuard)
@Get('/received')
async getRecordReceived(@Request() req){
const record = await this.recordService.getRecordReceived(req.user)
return record
}
@UseGuards(JwtAuthGuard)
@Post('/transfer')
async createTransfer(@Response() res, @Request() req, @Body() record: RecordDTO){
const trsf = await this.recordService.createTransfer(req.user, record)
console.log(trsf)
if(!trsf){
console.log('aqui')
res.status(HttpStatus.NOT_FOUND).json({
trsf
})
}
res.status(HttpStatus.OK).json({
trsf
})
}
@UseGuards(JwtAuthGuard)
@Post('/remove')
async removeBalance(@Request() req, @Body() body){
const { amount } = body;
console.log(amount)
const user = await this.recordService.removeBalance(req.user, amount)
return user;
}
@UseGuards(JwtAuthGuard)
@Post('/add')
async addBalance(@Request() req, @Body() body){
console.log(body)
const { amount } = body;
const user = await this.recordService.addBalance(req.user, amount)
return user;
}
}
| 28.790323 | 103 | 0.610644 |
0ed1be02ae62c0c32bb3c552adb79ef6fd7667e8 | 1,651 | h | C | Specs/Runner/OCHamcrestIOS.framework/Versions/A/Headers/HCIsDictionaryContainingEntries.h | SinnerSchraderMobileMirrors/RestKit | 076382103698254dab7db832f350a21d3301e45c | [
"Apache-2.0"
] | 2 | 2015-04-18T09:10:49.000Z | 2016-05-30T08:08:14.000Z | iOS App Unit Tests/Frameworks/OCHamcrestIOS.framework/headers/HCIsDictionaryContainingEntries.h | mutualmobile/MagicalRecord | 585eccc0078531a774bbeb28e915889cea9259e3 | [
"MIT"
] | null | null | null | iOS App Unit Tests/Frameworks/OCHamcrestIOS.framework/headers/HCIsDictionaryContainingEntries.h | mutualmobile/MagicalRecord | 585eccc0078531a774bbeb28e915889cea9259e3 | [
"MIT"
] | 2 | 2017-09-06T18:02:48.000Z | 2021-02-20T10:21:23.000Z | //
// OCHamcrest - HCIsDictionaryContainingEntries.h
// Copyright 2011 hamcrest.org. See LICENSE.txt
//
// Created by: Jon Reid
//
#import <OCHamcrestIOS/HCBaseMatcher.h>
/**
Matches dictionaries containing key-value pairs satisfying given lists of keys and value
matchers.
@b Factory: @ref hasEntries
@ingroup collection_matchers
*/
@interface HCIsDictionaryContainingEntries : HCBaseMatcher
{
NSArray *keys;
NSArray *valueMatchers;
}
+ (id)isDictionaryContainingKeys:(NSArray *)theKeys
valueMatchers:(NSArray *)theValueMatchers;
- (id)initWithKeys:(NSArray *)theKeys
valueMatchers:(NSArray *)theValueMatchers;
@end
#pragma mark -
/**
Matches dictionaries containing key-value pairs satisfying a given lists of alternating keys and
value matchers.
@b Synonym: @ref hasEntries
@param keysAndValueMatchers Alternating pairs of keys and value matchers - or straight values for @ref equalTo matching.
@see HCIsDictionaryContainingEntries
@ingroup collection_matchers
*/
OBJC_EXPORT id<HCMatcher> HC_hasEntries(id keysAndValueMatchers, ...);
/**
HC_hasEntries(id keysAndValueMatchers, ...) -
Matches dictionaries containing key-value pairs satisfying a given lists of alternating keys and
value matchers.
Synonym for @ref HC_hasEntries, available if @c HC_SHORTHAND is defined.
@param keysAndValueMatchers Alternating pairs of keys and value matchers - or straight values for @ref equalTo matching.
@see HCIsDictionaryContainingEntries
@ingroup collection_matchers
*/
#ifdef HC_SHORTHAND
#define hasEntries HC_hasEntries
#endif
| 27.983051 | 125 | 0.74682 |
4a67ee91447ce787f0f3b06732979750489cf134 | 826 | js | JavaScript | client/src/js/render/clock.js | yg-0103/pomodoro-clone | 1ce5a0edf42927afea2fa41a9b89cca7b0f88d28 | [
"MIT"
] | 1 | 2021-01-15T08:52:00.000Z | 2021-01-15T08:52:00.000Z | client/src/js/render/clock.js | yg-0103/pomodoro-clone | 1ce5a0edf42927afea2fa41a9b89cca7b0f88d28 | [
"MIT"
] | 58 | 2021-01-18T01:23:33.000Z | 2021-01-26T08:39:34.000Z | client/src/js/render/clock.js | yg-0103/pomodoro-clone | 1ce5a0edf42927afea2fa41a9b89cca7b0f88d28 | [
"MIT"
] | 4 | 2021-01-16T03:03:54.000Z | 2021-01-18T17:28:28.000Z | import Pomodoro from '../time';
import fetch from '../axios/fetch';
export default async function () {
// 서버에서 설정된 시간들을 가져온다.
try {
const { long_interval, auto_start } = await fetch.settings();
// 상태에 따라 어떤시간을 렌더링할지 정한다.
// 설정된 시간이 0분이면 1분을 넣어준다.
const curTime = (await fetch.curClockTime()) || 1;
const pomodoro = new Pomodoro(curTime, long_interval, auto_start);
// 설정된 시간을 랜더링한다.
pomodoro.setTimeText();
const $nav = document.querySelector('.main__btn-group');
$nav.addEventListener('click', async (e) => {
if (e.target === e.currentTarget) return;
// 네비게이션 버튼이 클릭되면 현재 설정된 시간으로 초기화 되고 초기화 된 시간을 다시 랜더링한다.
pomodoro.minute = await fetch.curClockTime();
pomodoro.second = 0;
pomodoro.setTimeText();
});
} catch (e) {
console.error(e);
}
}
| 28.482759 | 70 | 0.631961 |
5f2a82f2ff40b71c5e64a87166d0e96c6521e579 | 931 | tsx | TypeScript | part1/ch05/xnote/tsx/note.tsx | aegomez/react-examples | b209b1df5385e2bda8f89b958fa3507d395aeabc | [
"MIT"
] | null | null | null | part1/ch05/xnote/tsx/note.tsx | aegomez/react-examples | b209b1df5385e2bda8f89b958fa3507d395aeabc | [
"MIT"
] | 2 | 2020-07-20T18:03:41.000Z | 2020-07-20T18:03:41.000Z | part1/ch05/xnote/tsx/note.tsx | aegomez/react-examples | b209b1df5385e2bda8f89b958fa3507d395aeabc | [
"MIT"
] | null | null | null | type NoteProps = {
secondsLeft: number
}
class Note extends React.Component<NoteProps> {
confirmLeave(ev: BeforeUnloadEvent) {
// Cancel the event as stated by the standard
ev.preventDefault();
let confirmationMessage = 'Do you really want to close?';
// Gecko, Trident, Chrome 34+
ev.returnValue = confirmationMessage;
// Gecko, Webkit, Chrome <34
return confirmationMessage;
}
componentDidMount() {
console.log('Attaching confirmLeave event listener for beforeunload');
window.addEventListener('beforeunload', this.confirmLeave);
}
componentWillUnmount() {
console.log('Removing confirmLeave event listener for beforeunload');
window.removeEventListener('beforeunload', this.confirmLeave);
}
render() {
console.log('Render');
return <div>
Here will be our input field for notes (parent will remove in {this.props.secondsLeft} seconds)
</div>
}
} | 29.09375 | 101 | 0.706767 |
1d95a435050cf90a899cf2edaed2d105bc1c0d28 | 8,404 | swift | Swift | MobPushDemoSwift/UI/PushDetailViewController.swift | MobClub/MobPush-For-Swift | 28d12a95d4b058d2f6fca5317cc03ba9e4a9f20d | [
"MIT"
] | 1 | 2020-06-17T19:00:41.000Z | 2020-06-17T19:00:41.000Z | MobPushDemoSwift/UI/PushDetailViewController.swift | MobClub/MobPush-For-Swift | 28d12a95d4b058d2f6fca5317cc03ba9e4a9f20d | [
"MIT"
] | null | null | null | MobPushDemoSwift/UI/PushDetailViewController.swift | MobClub/MobPush-For-Swift | 28d12a95d4b058d2f6fca5317cc03ba9e4a9f20d | [
"MIT"
] | null | null | null | //
// PushDetailViewController.swift
// MobPushDemoSwift
//
// Created by LeeJay on 2019/1/22.
// Copyright © 2019 YouZu. All rights reserved.
//
import UIKit
import MBProgressHUD
enum DetailType: Int {
case inApp = 0, remoteNoti, scheduleNoti, localNoti, urlPage, anyPage
}
class PushDetailViewController: UIViewController {
@IBOutlet weak var descLabel: UILabel!
@IBOutlet weak var sendBtn: UIButton!
@IBOutlet weak var customView: CustomView!
@IBOutlet weak var heightConst: NSLayoutConstraint!
var type: DetailType = .inApp
var datas: [SelectModel]?
override class func mobPushPath() -> String {
return "/path/PushDetailViewController"
}
convenience init(mobPushScene params: [AnyHashable: Any]?) {
self.init()
guard let dict = params,
let type = dict["type"] else {
return
}
self.type = DetailType(rawValue: type as! Int)!
}
convenience init(type: DetailType) {
self.init()
self.type = type
}
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
customView.callBack = {(datas) in
self.datas = datas
}
customView.setType(type)
switch type {
case .inApp:
title = "App内推送"
descLabel.text = "点击测试按钮后,你将立即收到一条app内推送"
sendBtn.backgroundColor = MOBFColor.color(withRGB: 0x7B91FF)
heightConst.constant = 100
case .remoteNoti:
title = "通知"
descLabel.text = "点击测试按钮后,5s左右将收到一条测试通知"
sendBtn.backgroundColor = MOBFColor.color(withRGB: 0xFF7D00)
heightConst.constant = 100
case .scheduleNoti:
title = "定时通知"
descLabel.text = "设置时间后点击测试按钮,在到设置时间时将收到一条测试通知"
sendBtn.backgroundColor = MOBFColor.color(withRGB: 0x29C18B)
heightConst.constant = 260
case .localNoti:
title = "本地通知"
descLabel.text = "设置时间后点击测试按钮,在到设置时间时将收到一条测试通知"
sendBtn.backgroundColor = MOBFColor.color(withRGB: 0xFF7D00)
heightConst.constant = 260
case .urlPage:
title = "推送打开指定链接页面"
descLabel.text = "编辑完成后,点击测试按钮后,你将立即收到一条推送消息,点击后可跳转至指定页面。"
sendBtn.backgroundColor = MOBFColor.color(withRGB: 0x7B91FF)
heightConst.constant = 220
case .anyPage:
title = "推送打开应用内指定页面"
descLabel.text = "编辑完成后,点击测试按钮后,你将立即收到一条推送消息,点击后可跳转至指定的应用内页面。"
sendBtn.backgroundColor = MOBFColor.color(withRGB: 0x00D098)
heightConst.constant = 230
}
}
@IBAction func onSelect(_ sender: Any) {
guard let text = customView.textView.text else {
showMessage(title: "请填写推送内容")
return
}
guard text != "" else {
showMessage(title: "请填写推送内容")
return
}
switch type {
case .inApp: // 应用内
sendMessage(type: .custom, text: text, space: 0, extras: nil, linkScheme: nil, linkData: nil)
case .remoteNoti: // 远程通知
sendMessage(type: .apns, text: text, space: 0, extras: nil, linkScheme: nil, linkData: nil)
case .scheduleNoti: // 定时远程通知
var time = 0
guard let dataModels = datas else {
return
}
for i in 0..<dataModels.count {
let model = dataModels[i]
if model.selected {
time = i + 1
break;
}
}
sendMessage(type: .apns, text: text, space: NSNumber.init(value:time), extras: nil, linkScheme: nil, linkData: nil)
case .localNoti: // 定时本地通知
var isInstant = true
var time = 0
guard let dataModels = datas else {
return
}
for i in 0..<dataModels.count {
let model = dataModels[i]
if model.selected {
isInstant = false
time = i + 1
break
}
}
// 创建本地通知
let message = MPushMessage()
message.messageType = .local
let noti = MPushNotification()
noti.body = text
noti.title = "标题"
noti.subTitle = "子标题"
noti.sound = "unbelievable.caf"
noti.badge = UIApplication.shared.applicationIconBadgeNumber < 0 ? 0 : UIApplication.shared.applicationIconBadgeNumber + 1
message.notification = noti;
if isInstant { // 设置立即发送本地推送
message.isInstantMessage = true
} else { // 设置几分钟后发起本地推送
let currentDate = Date.init(timeIntervalSinceNow: 0)
let nowtime = currentDate.timeIntervalSince1970 * 1000
let taskDate = nowtime + Double(time * 60 * 1000)
message.taskDate = taskDate;
}
MobPush.addLocalNotification(message)
case .urlPage: // 跳转指定网页
var urlStr = "http://m.mob.com"
if customView.textField.text != nil && customView.textField.text != "" {
urlStr = customView.textField.text!
}
if !urlStr.hasPrefix("http://") && !urlStr.hasPrefix("https://") {
urlStr = "http://" + urlStr
}
sendMessage(type: .apns, text: text, space: 0, extras: ["url": urlStr], linkScheme: nil, linkData: nil)
case .anyPage: // 跳转任意页面
var linkScheme = ""
var params: [String: Any]?
guard let dataModels = datas else {
return
}
for i in 0..<dataModels.count {
let model = dataModels[i]
if model.selected {
if i == 0 {
linkScheme = "/path/ViewController"
params = nil
} else if i == 1 {
linkScheme = "/path/PushDetailViewController"
params = ["type": 0]
} else if i == 2 {
linkScheme = "/path/PushDetailViewController"
params = ["type": 1]
} else if i == 3 {
linkScheme = "/path/PushDetailViewController"
params = ["type": 2]
}
break
}
}
sendMessage(type: .apns, text: text, space: 0, extras: nil, linkScheme: linkScheme, linkData: MOBFJson.jsonString(from: params))
}
}
// 发送消息
func sendMessage(type: MSendMessageType, text: String, space: NSNumber, extras: [AnyHashable: Any]!, linkScheme: String!, linkData: String!) {
var isPro = true
#if DEBUG
isPro = false
#endif
MBProgressHUD.showAdded(to: view, animated: true)
MobPush.sendMessage(with: type, content: text, space: space, isProductionEnvironment: isPro, extras: extras, linkScheme: linkScheme, linkData: linkData) { (error) in
MBProgressHUD.hide(for: self.view, animated: true)
if error == nil {
self.showMessage(title: "发送成功")
} else {
self.showMessage(title: "发送失败")
}
}
}
func showMessage(title: String) {
let hud = MBProgressHUD.showAdded(to: navigationController!.view, animated: true)
hud.mode = .text
hud.backgroundView.backgroundColor = UIColor.init(white: 0, alpha: 0.5)
hud.bezelView.backgroundColor = UIColor.white;
hud.detailsLabel.textColor = UIColor.black;
hud.detailsLabel.font = UIFont.systemFont(ofSize: 14);
hud.detailsLabel.text = title;
hud.hide(animated: true, afterDelay: 1.5)
}
}
| 33.616 | 173 | 0.511185 |
f01e8e597dc20bba7caf3b9b0fddc57695c216de | 5,316 | py | Python | train.py | ThiruRJST/Deformed-Yolo | c9eb4e8c090dff0e9fc4f8652897ff2c59dce889 | [
"MIT"
] | 1 | 2021-09-10T17:20:09.000Z | 2021-09-10T17:20:09.000Z | train.py | ThiruRJST/Deformed-Yolo | c9eb4e8c090dff0e9fc4f8652897ff2c59dce889 | [
"MIT"
] | 1 | 2021-09-10T17:19:54.000Z | 2021-09-11T08:17:14.000Z | wandb/run-20210904_163431-3lkn6hoe/files/code/train.py | ThiruRJST/Deformed-Yolo | c9eb4e8c090dff0e9fc4f8652897ff2c59dce889 | [
"MIT"
] | null | null | null | from pandas.core.algorithms import mode
import torch
import torch.nn as nn
from albumentations import Compose,Resize,Normalize
from albumentations.pytorch import ToTensorV2
import wandb
import time
import torchvision
import torch.nn.functional as F
import torch.optim as optim
from torch.cuda.amp import autocast,GradScaler
import os
import numpy as np
from tqdm import tqdm
from callbacks import EarlyStopping
import pandas as pd
from torch.utils.data import Dataset, DataLoader
import cv2
import torch.nn.functional as F
import random
from build_model import Deformed_Darknet53
torch.manual_seed(2021)
np.random.seed(2021)
random.seed(2021)
torch.backends.cudnn.benchmark = True
torch.backends.cudnn.deterministic = True
DEVICE = "cuda:0" if torch.cuda.is_available() else "cpu"
TOTAL_EPOCHS = 100
scaler = GradScaler()
early_stop = EarlyStopping()
wandb.init(project='deformed-darknet',entity='tensorthug',name='new-darknet-256x256_32')
print("***** Loading the Model in {} *****".format(DEVICE))
Model = Deformed_Darknet53().to(DEVICE)
print("Model Shipped to {}".format(DEVICE))
data = pd.read_csv("data.csv")
train_loss_fn = nn.BCEWithLogitsLoss()
val_loss_fn = nn.BCEWithLogitsLoss()
optim = torch.optim.Adam(Model.parameters())
wandb.watch(Model)
class dog_cat(Dataset):
def __init__(self,df,mode="train",folds=0,transforms=None):
super(dog_cat,self).__init__()
self.df = df
self.mode = mode
self.folds = folds
self.transforms = transforms
if self.mode == "train":
self.data = self.df[self.df.folds != self.folds].reset_index(drop=True)
else:
self.data = self.df[self.df.folds == self.folds].reset_index(drop=True)
def __len__(self):
return len(self.data)
def __getitem__(self,idx):
img = cv2.imread(self.data.loc[idx,"Paths"])
label = self.data.loc[idx,'Labels']
if self.transforms is not None:
image = self.transforms(image=img)['image']
return image,label
def train_loop(epoch,dataloader,model,loss_fn,optim,device=DEVICE):
model.train()
epoch_loss = 0
epoch_acc = 0
#start_time = time.time()
pbar = tqdm(enumerate(dataloader),total=len(dataloader))
for i,(img,label) in pbar:
optim.zero_grad()
img = img.to(DEVICE).float()
label = label.to(DEVICE).float()
#LOAD_TIME = time.time() - start_time
with autocast():
yhat = model(img)
#Loss Calculation
train_loss = loss_fn(input = yhat.flatten(), target = label)
out = (yhat.flatten().sigmoid() > 0.5).float()
correct = (label == out).float().sum()
scaler.scale(train_loss).backward()
scaler.step(optim)
scaler.update()
epoch_loss += train_loss.item()
epoch_acc += correct.item() / out.shape[0]
train_epoch_loss = epoch_loss / len(dataloader)
train_epoch_acc = epoch_acc / len(dataloader)
wandb.log({"Training_Loss":train_epoch_loss})
wandb.log({"Training_Acc":train_epoch_acc})
#print(f"Epoch:{epoch}/{TOTAL_EPOCHS} Epoch Loss:{epoch_loss / len(dataloader):.4f} Epoch Acc:{epoch_acc / len(dataloader):.4f}")
return train_epoch_loss,train_epoch_acc
def val_loop(epoch,dataloader,model,loss_fn,device = DEVICE):
model.eval()
val_epoch_loss = 0
val_epoch_acc = 0
pbar = tqdm(enumerate(dataloader),total=len(dataloader))
with torch.no_grad():
for i,(img,label) in pbar:
img = img.to(device).float()
label = label.to(device).float()
yhat = model(img)
val_loss = loss_fn(input=yhat.flatten(),target=label)
out = (yhat.flatten().sigmoid()>0.5).float()
correct = (label == out).float().sum()
val_epoch_loss += val_loss.item()
val_epoch_acc += correct.item() / out.shape[0]
val_lossd = val_epoch_loss / len(dataloader)
val_accd = val_epoch_acc / len(dataloader)
wandb.log({"Val_Loss":val_lossd,"Epoch":epoch})
wandb.log({"Val_Acc":val_accd/len(dataloader),"Epoch":epoch})
return val_lossd,val_accd
if __name__ == "__main__":
train_per_epoch_loss,train_per_epoch_acc = [],[]
val_per_epoch_loss,val_per_epoch_acc = [],[]
train = dog_cat(data,transforms=Compose([Resize(256,256),Normalize(),ToTensorV2()]))
val = dog_cat(data,mode='val',transforms=Compose([Resize(256,256),Normalize(),ToTensorV2()]))
train_load = DataLoader(train,batch_size=32,shuffle=True,num_workers=4)
val_load = DataLoader(val,batch_size=32,num_workers=4)
for e in range(TOTAL_EPOCHS):
train_loss,train_acc = train_loop(e,train_load,Model,train_loss_fn,optim)
val_loss,val_acc = val_loop(e,val_load,Model,val_loss_fn)
train_per_epoch_loss.append(train_loss)
train_per_epoch_acc.append(train_acc)
val_per_epoch_loss.append(val_loss)
val_per_epoch_acc.append(val_acc)
print(f"TrainLoss:{train_loss:.4f} TrainAcc:{train_acc:.4f}")
print(f"ValLoss:{val_loss:.4f} ValAcc:{val_acc:.4f}")
early_stop(Model,val_loss)
if early_stop.early_stop:
break
| 29.04918 | 133 | 0.659518 |
ddeb8c20773f924e3812ae484df823b3889e845f | 1,311 | php | PHP | app/Http/Resources/BeaconResource.php | nosuchagency/beacon-bacon-api | c56a638217074df7fe7af4b9d35f58b2a475f679 | [
"MIT"
] | null | null | null | app/Http/Resources/BeaconResource.php | nosuchagency/beacon-bacon-api | c56a638217074df7fe7af4b9d35f58b2a475f679 | [
"MIT"
] | null | null | null | app/Http/Resources/BeaconResource.php | nosuchagency/beacon-bacon-api | c56a638217074df7fe7af4b9d35f58b2a475f679 | [
"MIT"
] | 1 | 2020-02-03T23:11:41.000Z | 2020-02-03T23:11:41.000Z | <?php
namespace App\Http\Resources;
use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\JsonResource;
class BeaconResource extends JsonResource
{
/**
* Transform the resource into an array.
*
* @param Request $request
*
* @return array
*/
public function toArray($request)
{
return [
'id' => $this->id,
'name' => $this->name,
'identifier' => $this->identifier,
'description' => $this->description,
'proximity_uuid' => $this->proximity_uuid,
'major' => $this->major,
'minor' => $this->minor,
'namespace' => $this->namespace,
'instance_id' => $this->instance_id,
'url' => $this->url,
'image' => url('/images/bullseye.png'),
'created_at' => $this->created_at->toDateTimeString(),
'updated_at' => $this->updated_at->toDateTimeString(),
'category' => new CategoryResource($this->whenLoaded('category')),
'locations' => LocationResource::collection($this->whenLoaded('locations')),
'tags' => TagResource::collection($this->whenLoaded('tags')),
'containers' => BeaconContainerResource::collection($this->whenLoaded('containers'))
];
}
}
| 32.775 | 96 | 0.562166 |
0ce58d7de1508c5e2496368e37a432c416830c42 | 2,183 | py | Python | lib_dsp/iir/iir/design/iir.py | PyGears/lib-dsp | a4c80882f5188799233dc9108f91faa4bab0ac57 | [
"MIT"
] | 3 | 2019-08-26T17:32:33.000Z | 2022-03-19T02:05:02.000Z | pygears_dsp/lib/iir.py | bogdanvuk/pygears-dsp | ca107d3f9e8d02023e9ccd27f7bc95f10b5aa995 | [
"MIT"
] | null | null | null | pygears_dsp/lib/iir.py | bogdanvuk/pygears-dsp | ca107d3f9e8d02023e9ccd27f7bc95f10b5aa995 | [
"MIT"
] | 5 | 2019-09-18T18:00:13.000Z | 2022-03-28T11:07:26.000Z | from pygears import gear, Intf
from pygears.lib import dreg, decouple, saturate, qround
@gear
def iir_1dsos(din, *, a, b, gain):
# add input gain and init delayed inputs
zu0 = din * gain
zu1 = zu0 | dreg(init=0)
zu2 = zu1 | dreg(init=0)
# perform b coefficient sum
a1 = (zu1 * b[1]) + (zu2 * b[2])
a2 = a1 + (zu0 * b[0])
# declare output interface and its type
y = Intf(a2.dtype)
# init delayed outputs
zy1 = y | decouple(init=0)
zy2 = zy1 | dreg(init=0)
# perform a coefficient sum
b1 = (zy2 * a[2]) + (zy1 * a[1])
# add both sums and set output
y |= (a2 - b1) | qround(fract=a2.dtype.fract) | saturate(t=a2.dtype)
return y
@gear
def iir_2tsos(din, *, a, b, gain):
# add input gain
x = din * gain
# declare output interface and its type
y = Intf(din.dtype)
# perform first tap multiplication and sum
z0 = ((x * b[2]) - (y * a[2]))
# delay first sum output
z0_delayed = z0 | dreg(init=0)
# perform second tap multiplication and sum
z1 = ((x * b[1]) + z0_delayed - (y * a[1]))
# delay second sum output
z1_delayed = z1 | decouple(init=0)
# perform final sum and set output
y |= ((x * b[0]) + z1_delayed) | qround(fract=din.dtype.fract) | saturate(t=din.dtype)
return y
@gear
def iir_df1dsos(din, *, a, b, gain, ogain):
# init temp
temp = din
# add cascades for all b coefficients
for i in range(len(b)):
# format every cascaded output as input
temp = temp | iir_1dsos(a=a[i], b=b[i], gain=gain[i]) | qround(fract=din.dtype.fract) | saturate(t=din.dtype)
# add output gain and format as input
dout = (temp * ogain) | qround(fract=din.dtype.fract) | saturate(t=din.dtype)
return dout
@gear
def iir_df2tsos(din, *, a, b, gain, ogain):
# init temp
temp = din
# add cascades for all b coefficients
for i in range(len(b)):
# format every cascaded output as input
temp = temp | iir_2tsos(a=a[i], b=b[i], gain=gain[i])
# add output gain and format as input
dout = (temp * ogain) | qround(fract=din.dtype.fract) | saturate(t=din.dtype)
return dout
| 24.255556 | 117 | 0.601466 |
c3850b0d67b8c2d3ad99883e99ff6d7379459326 | 42,135 | rs | Rust | vendor/im-rc/src/nodes/btree.rs | raspbian-packages/cargo | 3b1b88e08c83b03469c9a98c3237317c7eb5c330 | [
"Apache-2.0",
"OpenSSL",
"MIT"
] | null | null | null | vendor/im-rc/src/nodes/btree.rs | raspbian-packages/cargo | 3b1b88e08c83b03469c9a98c3237317c7eb5c330 | [
"Apache-2.0",
"OpenSSL",
"MIT"
] | null | null | null | vendor/im-rc/src/nodes/btree.rs | raspbian-packages/cargo | 3b1b88e08c83b03469c9a98c3237317c7eb5c330 | [
"Apache-2.0",
"OpenSSL",
"MIT"
] | null | null | null | // This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
use std::borrow::Borrow;
use std::cmp::Ordering;
use std::mem;
use std::ops::{Bound, RangeBounds};
use typenum::{Add1, Unsigned};
use crate::config::OrdChunkSize as NodeSize;
use crate::nodes::sized_chunk::Chunk;
use crate::util::{clone_ref, Ref};
use self::Insert::*;
use self::InsertAction::*;
const NODE_SIZE: usize = NodeSize::USIZE;
const MEDIAN: usize = (NODE_SIZE + 1) >> 1;
pub trait BTreeValue {
type Key;
fn ptr_eq(&self, other: &Self) -> bool;
fn search_key<BK>(slice: &[Self], key: &BK) -> Result<usize, usize>
where
BK: Ord + ?Sized,
Self: Sized,
Self::Key: Borrow<BK>;
fn search_value(slice: &[Self], value: &Self) -> Result<usize, usize>
where
Self: Sized;
fn cmp_keys<BK>(&self, other: &BK) -> Ordering
where
BK: Ord + ?Sized,
Self::Key: Borrow<BK>;
fn cmp_values(&self, other: &Self) -> Ordering;
}
pub struct Node<A> {
keys: Chunk<A, NodeSize>,
children: Chunk<Option<Ref<Node<A>>>, Add1<NodeSize>>,
}
pub enum Insert<A> {
Added,
Replaced(A),
Update(Node<A>),
Split(Node<A>, A, Node<A>),
}
enum InsertAction<A> {
AddedAction,
ReplacedAction(A),
InsertAt,
InsertSplit(Node<A>, A, Node<A>),
}
pub enum Remove<A> {
NoChange,
Removed(A),
Update(A, Node<A>),
}
enum RemoveAction {
DeleteAt(usize),
PullUp(usize, usize, usize),
Merge(usize),
StealFromLeft(usize),
StealFromRight(usize),
MergeFirst(usize),
ContinueDown(usize),
}
impl<A> Clone for Node<A>
where
A: Clone,
{
fn clone(&self) -> Self {
Node {
keys: self.keys.clone(),
children: self.children.clone(),
}
}
}
impl<A> Default for Node<A> {
fn default() -> Self {
Node {
keys: Chunk::new(),
children: Chunk::unit(None),
}
}
}
impl<A> Node<A> {
#[inline]
fn has_room(&self) -> bool {
self.keys.len() < NODE_SIZE
}
#[inline]
fn too_small(&self) -> bool {
self.keys.len() < MEDIAN
}
#[inline]
fn is_leaf(&self) -> bool {
self.children[0].is_none()
}
#[inline]
pub fn new() -> Self {
Self::default()
}
#[inline]
pub fn unit(value: A) -> Self {
Node {
keys: Chunk::unit(value),
children: Chunk::pair(None, None),
}
}
#[inline]
pub fn from_split(left: Node<A>, median: A, right: Node<A>) -> Self {
Node {
keys: Chunk::unit(median),
children: Chunk::pair(Some(Ref::from(left)), Some(Ref::from(right))),
}
}
pub fn min(&self) -> Option<&A> {
match self.children.first().unwrap() {
None => self.keys.first(),
Some(ref child) => child.min(),
}
}
pub fn max(&self) -> Option<&A> {
match self.children.last().unwrap() {
None => self.keys.last(),
Some(ref child) => child.max(),
}
}
}
impl<A: BTreeValue> Node<A> {
fn child_contains<BK>(&self, index: usize, key: &BK) -> bool
where
BK: Ord + ?Sized,
A::Key: Borrow<BK>,
{
if let Some(Some(ref child)) = self.children.get(index) {
child.lookup(key).is_some()
} else {
false
}
}
pub fn lookup<BK>(&self, key: &BK) -> Option<&A>
where
BK: Ord + ?Sized,
A::Key: Borrow<BK>,
{
if self.keys.is_empty() {
return None;
}
// Perform a binary search, resulting in either a match or
// the index of the first higher key, meaning we search the
// child to the left of it.
match A::search_key(&self.keys, key) {
Ok(index) => Some(&self.keys[index]),
Err(index) => match self.children[index] {
None => None,
Some(ref node) => node.lookup(key),
},
}
}
pub fn lookup_mut<BK>(&mut self, key: &BK) -> Option<&mut A>
where
A: Clone,
BK: Ord + ?Sized,
A::Key: Borrow<BK>,
{
if self.keys.is_empty() {
return None;
}
// Perform a binary search, resulting in either a match or
// the index of the first higher key, meaning we search the
// child to the left of it.
match A::search_key(&self.keys, key) {
Ok(index) => Some(&mut self.keys[index]),
Err(index) => match self.children[index] {
None => None,
Some(ref mut child_ref) => {
let child = Ref::make_mut(child_ref);
child.lookup_mut(key)
}
},
}
}
pub fn path_first<'a, BK>(
&'a self,
mut path: Vec<(&'a Node<A>, usize)>,
) -> Vec<(&'a Node<A>, usize)>
where
A: 'a,
BK: Ord + ?Sized,
A::Key: Borrow<BK>,
{
if self.keys.is_empty() {
return Vec::new();
}
match self.children[0] {
None => {
path.push((self, 0));
path
}
Some(ref node) => {
path.push((self, 0));
node.path_first(path)
}
}
}
pub fn path_last<'a, BK>(
&'a self,
mut path: Vec<(&'a Node<A>, usize)>,
) -> Vec<(&'a Node<A>, usize)>
where
A: 'a,
BK: Ord + ?Sized,
A::Key: Borrow<BK>,
{
if self.keys.is_empty() {
return Vec::new();
}
let end = self.children.len() - 1;
match self.children[end] {
None => {
path.push((self, end - 1));
path
}
Some(ref node) => {
path.push((self, end));
node.path_last(path)
}
}
}
pub fn path_next<'a, BK>(
&'a self,
key: &BK,
mut path: Vec<(&'a Node<A>, usize)>,
) -> Vec<(&'a Node<A>, usize)>
where
A: 'a,
BK: Ord + ?Sized,
A::Key: Borrow<BK>,
{
if self.keys.is_empty() {
return Vec::new();
}
match A::search_key(&self.keys, key) {
Ok(index) => {
path.push((self, index));
path
}
Err(index) => match self.children[index] {
None => match self.keys.get(index) {
Some(_) => {
path.push((self, index));
path
}
None => Vec::new(),
},
Some(ref node) => {
path.push((self, index));
node.path_next(key, path)
}
},
}
}
pub fn path_prev<'a, BK>(
&'a self,
key: &BK,
mut path: Vec<(&'a Node<A>, usize)>,
) -> Vec<(&'a Node<A>, usize)>
where
A: 'a,
BK: Ord + ?Sized,
A::Key: Borrow<BK>,
{
if self.keys.is_empty() {
return Vec::new();
}
match A::search_key(&self.keys, key) {
Ok(index) => {
path.push((self, index));
path
}
Err(index) => match self.children[index] {
None if index == 0 => Vec::new(),
None => match self.keys.get(index - 1) {
Some(_) => {
path.push((self, index));
path
}
None => Vec::new(),
},
Some(ref node) => {
path.push((self, index));
node.path_prev(key, path)
}
},
}
}
fn split(
&mut self,
value: A,
ins_left: Option<Node<A>>,
ins_right: Option<Node<A>>,
) -> Insert<A> {
let left_child = ins_left.map(Ref::from);
let right_child = ins_right.map(Ref::from);
let index = A::search_value(&self.keys, &value).unwrap_err();
let mut left_keys;
let mut left_children;
let mut right_keys;
let mut right_children;
let median;
if index < MEDIAN {
self.children[index] = left_child;
left_keys = Chunk::from_front(&mut self.keys, index);
left_keys.push_back(value);
left_keys.drain_from_front(&mut self.keys, MEDIAN - index - 1);
left_children = Chunk::from_front(&mut self.children, index + 1);
left_children.push_back(right_child);
left_children.drain_from_front(&mut self.children, MEDIAN - index - 1);
median = self.keys.pop_front();
right_keys = Chunk::drain_from(&mut self.keys);
right_children = Chunk::drain_from(&mut self.children);
} else if index > MEDIAN {
self.children[index] = left_child;
left_keys = Chunk::from_front(&mut self.keys, MEDIAN);
left_children = Chunk::from_front(&mut self.children, MEDIAN + 1);
median = self.keys.pop_front();
right_keys = Chunk::from_front(&mut self.keys, index - MEDIAN - 1);
right_keys.push_back(value);
right_keys.append(&mut self.keys);
right_children = Chunk::from_front(&mut self.children, index - MEDIAN);
right_children.push_back(right_child);
right_children.append(&mut self.children);
} else {
left_keys = Chunk::from_front(&mut self.keys, MEDIAN);
left_children = Chunk::from_front(&mut self.children, MEDIAN);
left_children.push_back(left_child);
median = value;
right_keys = Chunk::drain_from(&mut self.keys);
right_children = Chunk::drain_from(&mut self.children);
right_children[0] = right_child;
}
debug_assert!(left_keys.len() == MEDIAN);
debug_assert!(left_children.len() == MEDIAN + 1);
debug_assert!(right_keys.len() == MEDIAN);
debug_assert!(right_children.len() == MEDIAN + 1);
Split(
Node {
keys: left_keys,
children: left_children,
},
median,
Node {
keys: right_keys,
children: right_children,
},
)
}
fn merge(middle: A, left: Node<A>, mut right: Node<A>) -> Node<A> {
let mut keys = left.keys;
keys.push_back(middle);
keys.append(&mut right.keys);
let mut children = left.children;
children.append(&mut right.children);
Node { keys, children }
}
fn pop_min(&mut self) -> (A, Option<Ref<Node<A>>>) {
let value = self.keys.pop_front();
let child = self.children.pop_front();
(value, child)
}
fn pop_max(&mut self) -> (A, Option<Ref<Node<A>>>) {
let value = self.keys.pop_back();
let child = self.children.pop_back();
(value, child)
}
fn push_min(&mut self, child: Option<Ref<Node<A>>>, value: A) {
self.keys.push_front(value);
self.children.push_front(child);
}
fn push_max(&mut self, child: Option<Ref<Node<A>>>, value: A) {
self.keys.push_back(value);
self.children.push_back(child);
}
pub fn insert(&mut self, value: A) -> Insert<A>
where
A: Clone,
{
if self.keys.is_empty() {
self.keys.push_back(value);
self.children.push_back(None);
return Insert::Added;
}
let (median, left, right) = match A::search_value(&self.keys, &value) {
// Key exists in node
Ok(index) => {
return Insert::Replaced(mem::replace(&mut self.keys[index], value));
}
// Key is adjacent to some key in node
Err(index) => {
let has_room = self.has_room();
let action = match self.children[index] {
// No child at location, this is the target node.
None => InsertAt,
// Child at location, pass it on.
Some(ref mut child_ref) => {
let child = Ref::make_mut(child_ref);
match child.insert(value.clone()) {
Insert::Added => AddedAction,
Insert::Replaced(value) => ReplacedAction(value),
Insert::Update(_) => unreachable!(),
Insert::Split(left, median, right) => InsertSplit(left, median, right),
}
}
};
match action {
ReplacedAction(value) => return Insert::Replaced(value),
AddedAction => {
return Insert::Added;
}
InsertAt => {
if has_room {
self.keys.insert(index, value);
self.children.insert(index + 1, None);
return Insert::Added;
} else {
(value, None, None)
}
}
InsertSplit(left, median, right) => {
if has_room {
self.children[index] = Some(Ref::from(left));
self.keys.insert(index, median);
self.children.insert(index + 1, Some(Ref::from(right)));
return Insert::Added;
} else {
(median, Some(left), Some(right))
}
}
}
}
};
self.split(median, left, right)
}
pub fn remove<BK>(&mut self, key: &BK) -> Remove<A>
where
A: Clone,
BK: Ord + ?Sized,
A::Key: Borrow<BK>,
{
let index = A::search_key(&self.keys, key);
self.remove_index(index, key)
}
fn remove_index<BK>(&mut self, index: Result<usize, usize>, key: &BK) -> Remove<A>
where
A: Clone,
BK: Ord + ?Sized,
A::Key: Borrow<BK>,
{
let action = match index {
// Key exists in node, remove it.
Ok(index) => {
match (&self.children[index], &self.children[index + 1]) {
// If we're a leaf, just delete the entry.
(&None, &None) => RemoveAction::DeleteAt(index),
// If the left hand child has capacity, pull the predecessor up.
(&Some(ref left), _) if !left.too_small() => {
if left.is_leaf() {
RemoveAction::PullUp(left.keys.len() - 1, index, index)
} else {
RemoveAction::StealFromLeft(index + 1)
}
}
// If the right hand child has capacity, pull the successor up.
(_, &Some(ref right)) if !right.too_small() => {
if right.is_leaf() {
RemoveAction::PullUp(0, index, index + 1)
} else {
RemoveAction::StealFromRight(index)
}
}
// If neither child has capacity, we'll have to merge them.
(&Some(_), &Some(_)) => RemoveAction::Merge(index),
// If one child exists and the other doesn't, we're in a bad state.
_ => unreachable!(),
}
}
// Key is adjacent to some key in node
Err(index) => match self.children[index] {
// No child at location means key isn't in map.
None => return Remove::NoChange,
// Child at location, but it's at minimum capacity.
Some(ref child) if child.too_small() => {
let left = if index > 0 {
self.children.get(index - 1)
} else {
None
}; // index is usize and can't be negative, best make sure it never is.
match (left, self.children.get(index + 1)) {
// If it has a left sibling with capacity, steal a key from it.
(Some(&Some(ref old_left)), _) if !old_left.too_small() => {
RemoveAction::StealFromLeft(index)
}
// If it has a right sibling with capacity, same as above.
(_, Some(&Some(ref old_right))) if !old_right.too_small() => {
RemoveAction::StealFromRight(index)
}
// If it has neither, we'll have to merge it with a sibling.
// If we have a right sibling, we'll merge with that.
(_, Some(&Some(_))) => RemoveAction::MergeFirst(index),
// If we have a left sibling, we'll merge with that.
(Some(&Some(_)), _) => RemoveAction::MergeFirst(index - 1),
// If none of the above, we're in a bad state.
_ => unreachable!(),
}
}
// Child at location, and it's big enough, we can recurse down.
Some(_) => RemoveAction::ContinueDown(index),
},
};
match action {
RemoveAction::DeleteAt(index) => {
let pair = self.keys.remove(index);
self.children.remove(index);
Remove::Removed(pair)
}
RemoveAction::PullUp(target_index, pull_to, child_index) => {
let children = &mut self.children;
let mut update = None;
let mut value;
if let Some(&mut Some(ref mut child_ref)) = children.get_mut(child_index) {
let child = Ref::make_mut(child_ref);
match child.remove_index(Ok(target_index), key) {
Remove::NoChange => unreachable!(),
Remove::Removed(pulled_value) => {
value = self.keys.set(pull_to, pulled_value);
}
Remove::Update(pulled_value, new_child) => {
value = self.keys.set(pull_to, pulled_value);
update = Some(new_child);
}
}
} else {
unreachable!()
}
if let Some(new_child) = update {
children[child_index] = Some(Ref::from(new_child));
}
Remove::Removed(value)
}
RemoveAction::Merge(index) => {
let left = self.children.remove(index).unwrap();
let right = mem::replace(&mut self.children[index], None).unwrap();
let value = self.keys.remove(index);
let mut merged_child = Node::merge(value, clone_ref(left), clone_ref(right));
let (removed, new_child) = match merged_child.remove(key) {
Remove::NoChange => unreachable!(),
Remove::Removed(removed) => (removed, merged_child),
Remove::Update(removed, updated_child) => (removed, updated_child),
};
if self.keys.is_empty() {
// If we've depleted the root node, the merged child becomes the root.
Remove::Update(removed, new_child)
} else {
self.children[index] = Some(Ref::from(new_child));
Remove::Removed(removed)
}
}
RemoveAction::StealFromLeft(index) => {
let mut update = None;
let mut out_value;
{
let mut children = self.children.as_mut_slice()[index - 1..=index]
.iter_mut()
.map(|n| {
if let Some(ref mut o) = *n {
o
} else {
unreachable!()
}
});
let left = Ref::make_mut(children.next().unwrap());
let child = Ref::make_mut(children.next().unwrap());
// Prepare the rebalanced node.
child.push_min(
left.children.last().unwrap().clone(),
self.keys[index - 1].clone(),
);
match child.remove(key) {
Remove::NoChange => {
// Key wasn't there, we need to revert the steal.
child.pop_min();
return Remove::NoChange;
}
Remove::Removed(value) => {
// If we did remove something, we complete the rebalancing.
let (left_value, _) = left.pop_max();
self.keys[index - 1] = left_value;
out_value = value;
}
Remove::Update(value, new_child) => {
// If we did remove something, we complete the rebalancing.
let (left_value, _) = left.pop_max();
self.keys[index - 1] = left_value;
update = Some(new_child);
out_value = value;
}
}
}
if let Some(new_child) = update {
self.children[index] = Some(Ref::from(new_child));
}
Remove::Removed(out_value)
}
RemoveAction::StealFromRight(index) => {
let mut update = None;
let mut out_value;
{
let mut children = self.children.as_mut_slice()[index..index + 2]
.iter_mut()
.map(|n| {
if let Some(ref mut o) = *n {
o
} else {
unreachable!()
}
});
let child = Ref::make_mut(children.next().unwrap());
let right = Ref::make_mut(children.next().unwrap());
// Prepare the rebalanced node.
child.push_max(right.children[0].clone(), self.keys[index].clone());
match child.remove(key) {
Remove::NoChange => {
// Key wasn't there, we need to revert the steal.
child.pop_max();
return Remove::NoChange;
}
Remove::Removed(value) => {
// If we did remove something, we complete the rebalancing.
let (right_value, _) = right.pop_min();
self.keys[index] = right_value;
out_value = value;
}
Remove::Update(value, new_child) => {
// If we did remove something, we complete the rebalancing.
let (right_value, _) = right.pop_min();
self.keys[index] = right_value;
update = Some(new_child);
out_value = value;
}
}
}
if let Some(new_child) = update {
self.children[index] = Some(Ref::from(new_child));
}
Remove::Removed(out_value)
}
RemoveAction::MergeFirst(index) => {
if self.keys[index].cmp_keys(key) != Ordering::Equal
&& !self.child_contains(index, key)
&& !self.child_contains(index + 1, key)
{
return Remove::NoChange;
}
let left = self.children.remove(index).unwrap();
let right = mem::replace(&mut self.children[index], None).unwrap();
let middle = self.keys.remove(index);
let mut merged = Node::merge(middle, clone_ref(left), clone_ref(right));
let mut update;
let mut out_value;
match merged.remove(key) {
Remove::NoChange => {
panic!("nodes::btree::Node::remove: caught an absent key too late while merging");
}
Remove::Removed(value) => {
if self.keys.is_empty() {
return Remove::Update(value, merged);
}
update = merged;
out_value = value;
}
Remove::Update(value, new_child) => {
if self.keys.is_empty() {
return Remove::Update(value, new_child);
}
update = new_child;
out_value = value;
}
}
self.children[index] = Some(Ref::from(update));
Remove::Removed(out_value)
}
RemoveAction::ContinueDown(index) => {
let mut update = None;
let mut out_value;
if let Some(&mut Some(ref mut child_ref)) = self.children.get_mut(index) {
let child = Ref::make_mut(child_ref);
match child.remove(key) {
Remove::NoChange => return Remove::NoChange,
Remove::Removed(value) => {
out_value = value;
}
Remove::Update(value, new_child) => {
update = Some(new_child);
out_value = value;
}
}
} else {
unreachable!()
}
if let Some(new_child) = update {
self.children[index] = Some(Ref::from(new_child));
}
Remove::Removed(out_value)
}
}
}
}
// Iterator
pub struct Iter<'a, A: 'a> {
fwd_path: Vec<(&'a Node<A>, usize)>,
back_path: Vec<(&'a Node<A>, usize)>,
pub(crate) remaining: usize,
}
impl<'a, A: 'a + BTreeValue> Iter<'a, A> {
pub fn new<R, BK>(root: &'a Node<A>, size: usize, range: R) -> Self
where
R: RangeBounds<BK>,
A::Key: Borrow<BK>,
BK: Ord + ?Sized,
{
let fwd_path = match range.start_bound() {
Bound::Included(key) => root.path_next(key, Vec::new()),
Bound::Excluded(key) => {
let mut path = root.path_next(key, Vec::new());
if let Some(value) = Self::get(&path) {
if value.cmp_keys(key) == Ordering::Equal {
Self::step_forward(&mut path);
}
}
path
}
Bound::Unbounded => root.path_first(Vec::new()),
};
let back_path = match range.end_bound() {
Bound::Included(key) => root.path_prev(key, Vec::new()),
Bound::Excluded(key) => {
let mut path = root.path_prev(key, Vec::new());
if let Some(value) = Self::get(&path) {
if value.cmp_keys(key) == Ordering::Equal {
Self::step_back(&mut path);
}
}
path
}
Bound::Unbounded => root.path_last(Vec::new()),
};
Iter {
fwd_path,
back_path,
remaining: size,
}
}
fn get(path: &[(&'a Node<A>, usize)]) -> Option<&'a A> {
match path.last() {
Some((node, index)) => Some(&node.keys[*index]),
None => None,
}
}
fn step_forward(path: &mut Vec<(&'a Node<A>, usize)>) -> Option<&'a A> {
match path.pop() {
Some((node, index)) => {
let index = index + 1;
match node.children[index] {
// Child between current and next key -> step down
Some(ref child) => {
path.push((node, index));
path.push((child, 0));
let mut node = child;
while let Some(ref left_child) = node.children[0] {
path.push((left_child, 0));
node = left_child;
}
Some(&node.keys[0])
}
None => match node.keys.get(index) {
// Yield next key
value @ Some(_) => {
path.push((node, index));
value
}
// No more keys -> exhausted level, step up and yield
None => loop {
match path.pop() {
None => {
return None;
}
Some((node, index)) => {
if let value @ Some(_) = node.keys.get(index) {
path.push((node, index));
return value;
}
}
}
},
},
}
}
None => None,
}
}
fn step_back(path: &mut Vec<(&'a Node<A>, usize)>) -> Option<&'a A> {
match path.pop() {
Some((node, index)) => match node.children[index] {
Some(ref child) => {
path.push((node, index));
let mut end = child.keys.len() - 1;
path.push((child, end));
let mut node = child;
while let Some(ref right_child) = node.children[end + 1] {
end = right_child.keys.len() - 1;
path.push((right_child, end));
node = right_child;
}
Some(&node.keys[end])
}
None => {
if index == 0 {
loop {
match path.pop() {
None => {
return None;
}
Some((node, index)) => {
if index > 0 {
let index = index - 1;
path.push((node, index));
return Some(&node.keys[index]);
}
}
}
}
} else {
let index = index - 1;
path.push((node, index));
Some(&node.keys[index])
}
}
},
None => None,
}
}
}
impl<'a, A: 'a + BTreeValue> Iterator for Iter<'a, A> {
type Item = &'a A;
fn next(&mut self) -> Option<Self::Item> {
match Iter::get(&self.fwd_path) {
None => None,
Some(value) => match Iter::get(&self.back_path) {
Some(last_value) if value.cmp_values(last_value) == Ordering::Greater => None,
None => None,
Some(_) => {
Iter::step_forward(&mut self.fwd_path);
self.remaining -= 1;
Some(value)
}
},
}
}
fn size_hint(&self) -> (usize, Option<usize>) {
// (0, Some(self.remaining))
(0, None)
}
}
impl<'a, A: 'a + BTreeValue> DoubleEndedIterator for Iter<'a, A> {
fn next_back(&mut self) -> Option<Self::Item> {
match Iter::get(&self.back_path) {
None => None,
Some(value) => match Iter::get(&self.fwd_path) {
Some(last_value) if value.cmp_values(last_value) == Ordering::Less => None,
None => None,
Some(_) => {
Iter::step_back(&mut self.back_path);
self.remaining -= 1;
Some(value)
}
},
}
}
}
// Consuming iterator
enum ConsumingIterItem<A> {
Consider(Node<A>),
Yield(A),
}
pub struct ConsumingIter<A> {
fwd_last: Option<A>,
fwd_stack: Vec<ConsumingIterItem<A>>,
back_last: Option<A>,
back_stack: Vec<ConsumingIterItem<A>>,
remaining: usize,
}
impl<A: Clone> ConsumingIter<A> {
pub fn new(root: &Node<A>, total: usize) -> Self {
ConsumingIter {
fwd_last: None,
fwd_stack: vec![ConsumingIterItem::Consider(root.clone())],
back_last: None,
back_stack: vec![ConsumingIterItem::Consider(root.clone())],
remaining: total,
}
}
fn push_node(stack: &mut Vec<ConsumingIterItem<A>>, maybe_node: Option<Ref<Node<A>>>) {
if let Some(node) = maybe_node {
stack.push(ConsumingIterItem::Consider(clone_ref(node)))
}
}
fn push(stack: &mut Vec<ConsumingIterItem<A>>, mut node: Node<A>) {
for _n in 0..node.keys.len() {
ConsumingIter::push_node(stack, node.children.pop_back());
stack.push(ConsumingIterItem::Yield(node.keys.pop_back()));
}
ConsumingIter::push_node(stack, node.children.pop_back());
}
fn push_fwd(&mut self, node: Node<A>) {
ConsumingIter::push(&mut self.fwd_stack, node)
}
fn push_node_back(&mut self, maybe_node: Option<Ref<Node<A>>>) {
if let Some(node) = maybe_node {
self.back_stack
.push(ConsumingIterItem::Consider(clone_ref(node)))
}
}
fn push_back(&mut self, mut node: Node<A>) {
for _i in 0..node.keys.len() {
self.push_node_back(node.children.pop_front());
self.back_stack
.push(ConsumingIterItem::Yield(node.keys.pop_front()));
}
self.push_node_back(node.children.pop_back());
}
}
impl<A> Iterator for ConsumingIter<A>
where
A: BTreeValue + Clone,
{
type Item = A;
fn next(&mut self) -> Option<Self::Item> {
loop {
match self.fwd_stack.pop() {
None => {
self.remaining = 0;
return None;
}
Some(ConsumingIterItem::Consider(node)) => self.push_fwd(node),
Some(ConsumingIterItem::Yield(value)) => {
if let Some(ref last) = self.back_last {
if value.cmp_values(last) != Ordering::Less {
self.fwd_stack.clear();
self.back_stack.clear();
self.remaining = 0;
return None;
}
}
self.remaining -= 1;
self.fwd_last = Some(value.clone());
return Some(value);
}
}
}
}
fn size_hint(&self) -> (usize, Option<usize>) {
(self.remaining, Some(self.remaining))
}
}
impl<A> DoubleEndedIterator for ConsumingIter<A>
where
A: BTreeValue + Clone,
{
fn next_back(&mut self) -> Option<Self::Item> {
loop {
match self.back_stack.pop() {
None => {
self.remaining = 0;
return None;
}
Some(ConsumingIterItem::Consider(node)) => self.push_back(node),
Some(ConsumingIterItem::Yield(value)) => {
if let Some(ref last) = self.fwd_last {
if value.cmp_values(last) != Ordering::Greater {
self.fwd_stack.clear();
self.back_stack.clear();
self.remaining = 0;
return None;
}
}
self.remaining -= 1;
self.back_last = Some(value.clone());
return Some(value);
}
}
}
}
}
impl<A: BTreeValue + Clone> ExactSizeIterator for ConsumingIter<A> {}
// DiffIter
pub struct DiffIter<'a, A: 'a> {
old_stack: Vec<IterItem<'a, A>>,
new_stack: Vec<IterItem<'a, A>>,
}
#[derive(PartialEq, Eq)]
pub enum DiffItem<'a, A: 'a> {
Add(&'a A),
Update { old: &'a A, new: &'a A },
Remove(&'a A),
}
enum IterItem<'a, A: 'a> {
Consider(&'a Node<A>),
Yield(&'a A),
}
impl<'a, A: 'a> DiffIter<'a, A> {
pub fn new(old: &'a Node<A>, new: &'a Node<A>) -> Self {
DiffIter {
old_stack: if old.keys.is_empty() {
Vec::new()
} else {
vec![IterItem::Consider(old)]
},
new_stack: if new.keys.is_empty() {
Vec::new()
} else {
vec![IterItem::Consider(new)]
},
}
}
fn push_node(stack: &mut Vec<IterItem<'a, A>>, maybe_node: &'a Option<Ref<Node<A>>>) {
if let Some(ref node) = *maybe_node {
stack.push(IterItem::Consider(&node))
}
}
fn push(stack: &mut Vec<IterItem<'a, A>>, node: &'a Node<A>) {
for n in 0..node.keys.len() {
let i = node.keys.len() - n;
Self::push_node(stack, &node.children[i]);
stack.push(IterItem::Yield(&node.keys[i - 1]));
}
Self::push_node(stack, &node.children[0]);
}
}
impl<'a, A> Iterator for DiffIter<'a, A>
where
A: 'a + BTreeValue + PartialEq,
{
type Item = DiffItem<'a, A>;
fn next(&mut self) -> Option<Self::Item> {
loop {
match (self.old_stack.pop(), self.new_stack.pop()) {
(None, None) => return None,
(None, Some(new)) => match new {
IterItem::Consider(new) => Self::push(&mut self.new_stack, &new),
IterItem::Yield(new) => return Some(DiffItem::Add(new)),
},
(Some(old), None) => match old {
IterItem::Consider(old) => Self::push(&mut self.old_stack, &old),
IterItem::Yield(old) => return Some(DiffItem::Remove(old)),
},
(Some(old), Some(new)) => match (old, new) {
(IterItem::Consider(old), IterItem::Consider(new)) => {
match old.keys[0].cmp_values(&new.keys[0]) {
Ordering::Less => {
Self::push(&mut self.old_stack, &old);
self.new_stack.push(IterItem::Consider(new));
}
Ordering::Greater => {
self.old_stack.push(IterItem::Consider(old));
Self::push(&mut self.new_stack, &new);
}
Ordering::Equal => {
Self::push(&mut self.old_stack, &old);
Self::push(&mut self.new_stack, &new);
}
}
}
(IterItem::Consider(old), IterItem::Yield(new)) => {
Self::push(&mut self.old_stack, &old);
self.new_stack.push(IterItem::Yield(new));
}
(IterItem::Yield(old), IterItem::Consider(new)) => {
self.old_stack.push(IterItem::Yield(old));
Self::push(&mut self.new_stack, &new);
}
(IterItem::Yield(old), IterItem::Yield(new)) => match old.cmp_values(&new) {
Ordering::Less => {
self.new_stack.push(IterItem::Yield(new));
return Some(DiffItem::Remove(old));
}
Ordering::Equal => {
if old != new {
return Some(DiffItem::Update { old, new });
}
}
Ordering::Greater => {
self.old_stack.push(IterItem::Yield(old));
return Some(DiffItem::Add(new));
}
},
},
}
}
}
}
| 35.407563 | 106 | 0.431304 |
dd7904937d71f83e59cb809c16b432d3b25db1ed | 6,532 | php | PHP | application/views/paginas/v_inicio.php | bryane117/ZombiWiFi | 534b6d4156295c47872fdd68305986cb91d5b7b8 | [
"MIT"
] | null | null | null | application/views/paginas/v_inicio.php | bryane117/ZombiWiFi | 534b6d4156295c47872fdd68305986cb91d5b7b8 | [
"MIT"
] | null | null | null | application/views/paginas/v_inicio.php | bryane117/ZombiWiFi | 534b6d4156295c47872fdd68305986cb91d5b7b8 | [
"MIT"
] | null | null | null | <?php
include 'application/views/masterpage/v_navbar.php';
include 'application/views/masterpage/v_aside.php'
?>
<div class="page-wrapper">
<!-- ============================================================== -->
<!-- Bread crumb and right sidebar toggle -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- End Bread crumb and right sidebar toggle -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- Container fluid -->
<!-- ============================================================== -->
<div class="container-fluid">
<!-- ============================================================== -->
<!-- Start Page Content -->
<!-- ============================================================== -->
<div class="row">
<!-- Tarjetas iniciales -->
<!-- ============================================================== -->
<div class="col-md-12">
<div class="row">
<div class="col-lg-4">
<div class="card">
<div class="card-body">
<div class="d-md-flex align-items-center">
<div class="row">
<div class="col-lg-8">
<h4 class="card-title">Cantidad de fichas vendidas</h4>
<h1 class="">45</h1>
</div>
<div class="col-lg-4 d-md-flex align-items-center">
<ion-icon name="pricetags"></ion-icon>
</div>
</div>
<div>
</div>
</div>
<div>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<div class="card-body">
<div class="d-md-flex align-items-center">
<div class="row">
<div class="col-lg-8">
<h4 class="card-title">Cantidad de ganacias obtenidas</h4>
<h1 class="">$23,445</h1>
</div>
<div class="col-lg-4 d-md-flex align-items-center">
<ion-icon name="cash"></ion-icon>
</div>
</div>
<div>
</div>
</div>
<div>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<div class="card-body">
<div class="d-md-flex align-items-center">
<div class="row">
<div class="col-lg-8">
<h4 class="card-title">Numero de distribuidores</h4>
<h1 class="">532</h1>
</div>
<div class="col-lg-4 d-md-flex align-items-center">
<ion-icon name="people"></ion-icon>
</div>
</div>
<div>
</div>
</div>
<div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="row">
<div class="col-lg-12">
<div class="card">
<div class="card-body">
<div class="d-md-flex align-items-center">
<div>
<h4 class="card-title">Marcas de dispositivos recurrentes</h4>
<h5 class="card-subtitle">Datos obetnidos de los ultimos 3 meses</h5>
</div>
</div>
<div style="grafico_uno" id="grafico_uno"></div>
<div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="row">
<div class="col-lg-12">
<div class="card">
<div class="card-body">
<div class="d-md-flex align-items-center">
<div>
<h4 class="card-title">Estatus de conexion de dispositivos</h4>
<h5 class="card-subtitle">Datos obetnidos de los ultimos meses</h5>
</div>
</div>
<div class="row">
<div class="col-lg-6 ">
<div class="d-md-flex align-items-center">
<div class="row">
<div class="col-lg-12">
<h3>Dispositivos conectados</h3>
</div>
<div class="col-lg-12">
<h4>9783</h4>
</div>
<div class="col-lg-12">
<div class="donut" id="donut"></div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 ">
<div class="d-md-flex align-items-center">
<div class="row">
<div class="col-lg-12">
<h3>Status de puntos de acceso</h3>
</div>
<div class="col-lg-12">
<h4>0 fallas reportadas</h4>
</div>
<div class="col-lg-12">
<div class="donut_antenas" id="donut_antenas"></div>
</div>
</div>
</div>
</div>
</div>
<div>
</div>
</div>
</div>
</div>
<div class="col-lg-12">
<div class="card">
<div class="card-body">
<div class="d-md-flex align-items-center">
<div>
<h4 class="card-title">Numero de conexiones</h4>
<h5 class="card-subtitle">Actualizacion cad 5 segundos</h5>
</div>
</div>
<div class="conexiones" id="conexiones"></div>
<div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-12">
<div class="card">
<div class="card-body">
<div class="d-md-flex align-items-center">
<div>
<h4 class="card-title">Estadisticas de ventas por estado</h4>
<h5 class="card-subtitle">Ultimos 3 meses</h5>
</div>
</div>
<div style="stock_ventas" id="stock_ventas"></div>
<div>
</div>
</div>
</div>
</div>
</div>
<!-- ============================================================== -->
<!-- End PAge Content -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- Right sidebar -->
<!-- ============================================================== -->
<!-- .right-sidebar -->
<!-- ============================================================== -->
<!-- End Right sidebar -->
<!-- ============================================================== -->
</div>
<!-- ============================================================== -->
<!-- End Container fluid -->
<!-- ============================================================== -->
<!-- ============================================================== -->
| 24.836502 | 79 | 0.370943 |
0e75cb992c2d968a07c817cb9541765af3fa5cad | 293 | html | HTML | media_tree/templates/admin/media_tree/filenode/includes/widget_preview.html | samluescher/django-media-tree | 5d027b1388189dcd407d017d823cdc5c67191dbc | [
"BSD-3-Clause"
] | 29 | 2015-02-25T03:42:34.000Z | 2021-04-11T11:18:12.000Z | media_tree/templates/admin/media_tree/filenode/includes/widget_preview.html | samluescher/django-media-tree | 5d027b1388189dcd407d017d823cdc5c67191dbc | [
"BSD-3-Clause"
] | 24 | 2015-01-01T17:41:47.000Z | 2022-03-11T23:12:15.000Z | media_tree/templates/admin/media_tree/filenode/includes/widget_preview.html | samluescher/django-media-tree | 5d027b1388189dcd407d017d823cdc5c67191dbc | [
"BSD-3-Clause"
] | 13 | 2015-01-13T06:44:00.000Z | 2018-11-29T16:31:02.000Z | {% spaceless %}{% load i18n %}
<span class="widget-preview">
{% if node %}{% include "admin/media_tree/filenode/includes/preview.html" %}{% else %}<span class="preview"></span>{% endif %}
<strong><span class="name">{% if node %}{{ node }}{% endif %}</span></strong>
</span>
{% endspaceless %}
| 41.857143 | 126 | 0.624573 |
f741681de60a5ad8e3b84765a5cfabafd5d8dec1 | 1,361 | h | C | molequeue/transport/connectionlistenerfactory.h | cjh1/molequeue | 37dffbfe9cdbd2d18fd2c2c9eab6690006f18074 | [
"BSD-3-Clause"
] | null | null | null | molequeue/transport/connectionlistenerfactory.h | cjh1/molequeue | 37dffbfe9cdbd2d18fd2c2c9eab6690006f18074 | [
"BSD-3-Clause"
] | null | null | null | molequeue/transport/connectionlistenerfactory.h | cjh1/molequeue | 37dffbfe9cdbd2d18fd2c2c9eab6690006f18074 | [
"BSD-3-Clause"
] | null | null | null | /******************************************************************************
This source file is part of the MoleQueue project.
Copyright 2012 Kitware, Inc.
This source code is released under the New BSD License, (the "License").
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
******************************************************************************/
#ifndef CONNECTIONLISTENERFACTORY_H_
#define CONNECTIONLISTENERFACTORY_H_
#include <QtCore/QObject>
#include <QtCore/QString>
#include <QtPlugin>
namespace MoleQueue
{
class ConnectionListener;
/// @brief Factory for generating ConnectionListener instances.
class ConnectionListenerFactory
{
public:
virtual ~ConnectionListenerFactory() {};
virtual ConnectionListener *createConnectionListener(QObject *parentObject,
QString connectionString) = 0;
};
} /* namespace MoleQueue */
Q_DECLARE_INTERFACE(MoleQueue::ConnectionListenerFactory,
"org.openchemistry.molequeue.ConnectionListenerFactory/1.0")
#endif /* CONNECTIONLISTENERFACTORY_H_ */
| 30.244444 | 85 | 0.663483 |
c3a03ec052b629dc1168b32aa810e9118907172f | 583 | go | Go | internal/services/discover.go | annymsMthd/kafmesh | 67884d2837c649f28669b4f90b902a872b6ddc1d | [
"MIT"
] | 5 | 2020-05-09T04:07:08.000Z | 2022-01-22T22:28:39.000Z | internal/services/discover.go | annymsMthd/kafmesh | 67884d2837c649f28669b4f90b902a872b6ddc1d | [
"MIT"
] | 36 | 2019-12-08T02:15:07.000Z | 2022-01-26T17:28:14.000Z | internal/services/discover.go | annymsMthd/kafmesh | 67884d2837c649f28669b4f90b902a872b6ddc1d | [
"MIT"
] | 1 | 2021-04-30T19:08:32.000Z | 2021-04-30T19:08:32.000Z | package services
import (
"context"
discoveryv1 "github.com/syncromatics/kafmesh/internal/protos/kafmesh/discovery/v1"
)
// DiscoverAPI provides methods for discovering and reporting kafmesh enabled pod info
type DiscoverAPI struct {
DiscoverInfo *discoveryv1.Service
}
// GetServiceInfo is a RPC method that returns service info for discovery
func (s *DiscoverAPI) GetServiceInfo(ctx context.Context, request *discoveryv1.GetServiceInfoRequest) (*discoveryv1.GetServiceInfoResponse, error) {
return &discoveryv1.GetServiceInfoResponse{
Service: s.DiscoverInfo,
}, nil
}
| 27.761905 | 148 | 0.80446 |
cb2b03db75391398c6e6a59a394358511aa6b999 | 95 | go | Go | GetProgrammingWithGo/lesson27/fn.go | YanhaoXu/golang-learning | dca032c560022f92e968f525a9dae9e815b9e1c2 | [
"MIT"
] | 1 | 2021-12-06T15:17:29.000Z | 2021-12-06T15:17:29.000Z | GetProgrammingWithGo/lesson27/fn.go | YanhaoXu/golang-learning | dca032c560022f92e968f525a9dae9e815b9e1c2 | [
"MIT"
] | null | null | null | GetProgrammingWithGo/lesson27/fn.go | YanhaoXu/golang-learning | dca032c560022f92e968f525a9dae9e815b9e1c2 | [
"MIT"
] | null | null | null | package main
import "fmt"
func main() {
var fn func(a, b int) int
fmt.Println(fn == nil)
}
| 10.555556 | 26 | 0.631579 |
72352eac308cfa7475d88b80208a2f269df1b337 | 4,711 | lua | Lua | Light Sword.lua | xVoid-xyz/Roblox-Scripts | 7eb176fa654f2ea5fbc6bcccced1b15df7ed82c2 | [
"BSD-3-Clause"
] | 70 | 2021-02-09T17:21:32.000Z | 2022-03-28T12:41:42.000Z | Light Sword.lua | xVoid-xyz/Roblox-Scripts | 7eb176fa654f2ea5fbc6bcccced1b15df7ed82c2 | [
"BSD-3-Clause"
] | 4 | 2021-08-19T22:05:58.000Z | 2022-03-19T18:58:01.000Z | Light Sword.lua | xVoid-xyz/Roblox-Scripts | 7eb176fa654f2ea5fbc6bcccced1b15df7ed82c2 | [
"BSD-3-Clause"
] | 325 | 2021-02-26T22:23:41.000Z | 2022-03-31T19:36:12.000Z | Player = game:GetService("Players").LocalPlayer
Cha = Player.Character
RShoulder = Cha.Torso['Right Shoulder']
Tool = Instance.new("HopperBin",Player.Backpack)
Tool.Name = "ice sword"
function onKeyDown(key)
key = key:lower()
if key == "e" then
wal = not wal
if wal == true then
wl=Instance.new("Part",workspace)
wl.BrickColor=BrickColor.new("Toothpaste")
wl.Material="Ice"
wl.Size=Vector3.new(10,7,2)
wl.Anchored=true
wl.CFrame=Cha.Torso.CFrame*CFrame.new(0,0,-5)
wl2=wl:Clone()
wl2.Parent=Workspace
wl2.Size=Vector3.new(2,7,10)
wl2.CFrame=Cha.Torso.CFrame*CFrame.new(-5,0,0)
wl3=wl2:Clone()
wl3.Parent=Workspace
wl3.CFrame=Cha.Torso.CFrame*CFrame.new(5,0,0)
wl4=wl:Clone()
wl4.Parent=Workspace
wl4.CFrame=Cha.Torso.CFrame*CFrame.new(0,0,5)
else
for i=1,10 do wait()
wl.Transparency=wl.Transparency +.1
wl2.Transparency=wl2.Transparency +.1
wl3.Transparency=wl3.Transparency +.1
wl4.Transparency=wl4.Transparency +.1
wait()
end
wl:remove()
wl2:remove()
wl3:remove()
wl4:remove()
end
end
end
function onClicked(mouse)
if (not vDebounce) then
vDebounce = true
wa = Instance.new("Part",Char)
wa.Transparency=1
wa.CanCollide = false
wa.Size = Vector3.new(1, 1, 1)
wa:BreakJoints()
Weld3 = Instance.new("Weld",wa)
Weld3.Part0 = Blade
Weld3.Part1 = wa
Weld3.C0 = CFrame.new(0, 0, -2) * CFrame.Angles(0, 0, 0)
function touch(hit)
if hit.Parent:findFirstChild("Humanoid") ~= nil then
hit.Parent.Humanoid.Health=hit.Parent.Humanoid.Health-5
end end wa.Touched:connect(touch)
animation = Instance.new("Animation")
animation.Name = "SlashAnim"
animation.AnimationId = "http://www.roblox.com/Asset?ID=94161088"
animTrack = Cha.Humanoid:LoadAnimation(animation)
animTrack:Play()
for i = 1,26 do wait()
p = Instance.new("Part",workspace)
p.FormFactor="Custom"
p.Size=Vector3.new(.5,.5,.5)
p.TopSurface = 0
p.BottomSurface = 0
p.BrickColor=BrickColor.new("Toothpaste")
p.Transparency=.3
p.CanCollide=false
p.Anchored=true
p.CFrame =(Blade.CFrame*CFrame.new(0,0,-2))*CFrame.Angles(math.random(-3,3),math.random(-3,3),math.random(-3,3))
game.Debris:AddItem(p,.1)
end
wa:remove()
vDebounce = false
end
end
Tool.Selected:connect(function(mouse)
mouse.Button1Down:connect(function() onClicked(mouse) end)
mouse.KeyDown:connect(onKeyDown)
--==THE ASSIMBLE==--
Char=Instance.new("Model",Cha) -- CHA not CHAR
Handle = Instance.new("Part", Char)
Handle.FormFactor = "Custom"
Handle.Size = Vector3.new(1, -1, 1)
Handle.TopSurface = "Smooth"
Handle.BottomSurface = "Smooth"
Handle.BrickColor = BrickColor.new("Toothpaste")
Handle.Reflectance = 0
Handle:BreakJoints()
Handle.CanCollide=false
Mesh = Instance.new("SpecialMesh", Handle)
Mesh.MeshType = "Cylinder"
Mesh.Scale = Vector3.new(1, 1, 1)
HandleWeld = Instance.new("Weld", Char)
HandleWeld.Part0 = Cha["Right Arm"]
HandleWeld.Part1 = Handle
HandleWeld.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(0, math.pi/2, 0)
Power = Instance.new("Part", Char)
Power.FormFactor = "Custom"
Power.Size = Vector3.new(1, 1, 1)
Power.TopSurface = "Smooth"
Power.BottomSurface = "Smooth"
Power.BrickColor = BrickColor.new("Institutional white")
Power.Reflectance = 0
Power:BreakJoints()
Power.CanCollide=false
Mesh = Instance.new("SpecialMesh", Power)
Mesh.MeshType = "Sphere"
Mesh.Scale = Vector3.new(1, 1, 1)
PowerWeld = Instance.new("Weld", Char)
PowerWeld.Part0 = Cha["Right Arm"]
PowerWeld.Part1 = Power
PowerWeld.C0 = CFrame.new(0, -1, 1) * CFrame.Angles(0, 0, 0)
Detail = Instance.new("Part", Char)
Detail.FormFactor = "Custom"
Detail.Size = Vector3.new(1, -1, 1)
Detail.TopSurface = "Smooth"
Detail.BottomSurface = "Smooth"
Detail.BrickColor = BrickColor.new("Institutional white")
Detail.Reflectance = 0
Detail:BreakJoints()
Detail.CanCollide=false
Mesh = Instance.new("SpecialMesh", Detail)
Mesh.MeshType = "Cylinder"
Mesh.Scale = Vector3.new(1, 1, 1)
DetailWeld = Instance.new("Weld", Char)
DetailWeld.Part0 = Cha["Right Arm"]
DetailWeld.Part1 = Detail
DetailWeld.C0 = CFrame.new(0, -1, math.rad(-30)) * CFrame.Angles(0, 0, math.rad(90))
Blade = Instance.new("Part", Char)
Blade.FormFactor = "Custom"
Blade.Size = Vector3.new(-1, -2, 4)
Blade.TopSurface = "Smooth"
Blade.BottomSurface = "Smooth"
Blade.BrickColor = BrickColor.new("Institutional white")
Blade.Reflectance = 0
Blade:BreakJoints()
Blade.CanCollide=false
Mesh = Instance.new("BlockMesh", Blade)
Mesh.Scale = Vector3.new(1, 1, 1)
BladeWeld = Instance.new("Weld", Char)
BladeWeld.Part0 = Cha["Right Arm"]
BladeWeld.Part1 = Blade
BladeWeld.C0 = CFrame.new(0, -1, -2) * CFrame.Angles(0, 0, math.rad(90))
end)
Tool.Deselected:connect(function(mouse)
Char:remove()
end) | 15.445902 | 112 | 0.714286 |
e6e78a1c20ab15191ca653a6bf0e408cf0dd3af7 | 1,158 | swift | Swift | TwitterMock/Common/Extensions/String+Util.swift | dabaicaifen/MockTwitter | e1d7b1cee453f262ed6d6bc4bee4613785733a0a | [
"MIT"
] | 1 | 2019-06-09T06:53:38.000Z | 2019-06-09T06:53:38.000Z | TwitterMock/Common/Extensions/String+Util.swift | dabaicaifen/MockTwitter | e1d7b1cee453f262ed6d6bc4bee4613785733a0a | [
"MIT"
] | null | null | null | TwitterMock/Common/Extensions/String+Util.swift | dabaicaifen/MockTwitter | e1d7b1cee453f262ed6d6bc4bee4613785733a0a | [
"MIT"
] | null | null | null | //
// String+Util.swift
// TwitterMock
//
// Created by Tracy Wu on 2019-04-04.
// Copyright © 2019 TW. All rights reserved.
//
import UIKit
extension String {
subscript (bounds: CountableClosedRange<Int>) -> String {
let start = index(startIndex, offsetBy: bounds.lowerBound)
let end = index(startIndex, offsetBy: bounds.upperBound)
return String(self[start...end])
}
subscript (bounds: CountableRange<Int>) -> String {
let start = index(startIndex, offsetBy: bounds.lowerBound)
let end = index(startIndex, offsetBy: bounds.upperBound)
return String(self[start..<end])
}
func height(width: CGFloat, font: UIFont) -> CGFloat {
let constraintRect = CGSize(width: width, height: .greatestFiniteMagnitude)
let boundingBox = self.boundingRect(with: constraintRect,
options: [.usesFontLeading, .usesLineFragmentOrigin],
attributes: [NSAttributedString.Key.font: font],
context: nil)
return boundingBox.height
}
}
| 33.085714 | 97 | 0.594991 |
2a625ee5fe375631e5c88c0086d23220621f35c1 | 1,770 | java | Java | blocks/svg/src/org/kabeja/svg/generators/SVGToleranceGenerator.java | andriybohdan/kabeja-0.4 | 585e3daba931a3eb21cbe2f0083a43d178abe665 | [
"Apache-2.0"
] | 9 | 2016-10-13T20:05:58.000Z | 2020-04-09T16:18:19.000Z | src/main/java/org/kabeja/svg/generators/SVGToleranceGenerator.java | antea/kabeja | 680da7a025b6ed176f598cd4ceb808570ba07364 | [
"Apache-1.1"
] | 3 | 2017-01-07T11:32:25.000Z | 2019-03-29T18:34:01.000Z | src/main/java/org/kabeja/svg/generators/SVGToleranceGenerator.java | antea/kabeja | 680da7a025b6ed176f598cd4ceb808570ba07364 | [
"Apache-1.1"
] | 12 | 2016-05-17T08:36:27.000Z | 2020-06-23T03:11:18.000Z | /*
Copyright 2008 Simon Mieth
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.kabeja.svg.generators;
import java.util.Map;
import org.kabeja.dxf.DXFConstants;
import org.kabeja.dxf.DXFDimensionStyle;
import org.kabeja.dxf.DXFEntity;
import org.kabeja.dxf.DXFTolerance;
import org.kabeja.math.MathUtils;
import org.kabeja.math.TransformContext;
import org.xml.sax.ContentHandler;
import org.xml.sax.SAXException;
public class SVGToleranceGenerator extends AbstractSVGSAXGenerator {
public void toSAX(ContentHandler handler, Map svgContext, DXFEntity entity,
TransformContext transformContext) throws SAXException {
//TODO implement the SVG tolerance generator
DXFTolerance tolerance = (DXFTolerance) entity;
DXFDimensionStyle style = tolerance.getDXFDocument()
.getDXFDimensionStyle(tolerance.getStyleID());
double angle = MathUtils.getAngle(tolerance.getXaxisDirection(),
DXFConstants.DEFAULT_X_AXIS_VECTOR);
double textHeight = style.getDoubleProperty(DXFDimensionStyle.PROPERTY_DIMTXT);
double scale = style.getDoubleProperty(DXFDimensionStyle.PROPERTY_DIMSCALE,
1.0);
textHeight *= scale;
}
}
| 38.478261 | 89 | 0.736158 |
2a563c060ab4fe518af698955bbcf55e00e6d2f5 | 96 | java | Java | src/main/java/br/com/delogic/csa/repository/jpa/JpaSqlCommand.java | celiosilva/csa | a475910ba03d45e755eb376eb4f1bc758f24eb1f | [
"Apache-2.0"
] | null | null | null | src/main/java/br/com/delogic/csa/repository/jpa/JpaSqlCommand.java | celiosilva/csa | a475910ba03d45e755eb376eb4f1bc758f24eb1f | [
"Apache-2.0"
] | null | null | null | src/main/java/br/com/delogic/csa/repository/jpa/JpaSqlCommand.java | celiosilva/csa | a475910ba03d45e755eb376eb4f1bc758f24eb1f | [
"Apache-2.0"
] | null | null | null | package br.com.delogic.csa.repository.jpa;
public enum JpaSqlCommand {
SELECT, DELETE;
}
| 12 | 42 | 0.729167 |
fd98b33c9270d8fae85b12cd7d864f54462ef1e0 | 310 | asm | Assembly | programs/oeis/021/A021562.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/021/A021562.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/021/A021562.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A021562: Decimal expansion of 1/558.
; 0,0,1,7,9,2,1,1,4,6,9,5,3,4,0,5,0,1,7,9,2,1,1,4,6,9,5,3,4,0,5,0,1,7,9,2,1,1,4,6,9,5,3,4,0,5,0,1,7,9,2,1,1,4,6,9,5,3,4,0,5,0,1,7,9,2,1,1,4,6,9,5,3,4,0,5,0,1,7,9,2,1,1,4,6,9,5,3,4,0,5,0,1,7,9,2,1,1,4
add $0,1
mov $1,10
pow $1,$0
mul $1,5
div $1,2790
mod $1,10
mov $0,$1
| 28.181818 | 199 | 0.541935 |
bb0fcb48537b709c2893e5f61563bab144438922 | 1,042 | rb | Ruby | test/command_processor_test.rb | jakewilkins/lottery | 216c56783e418bee08d69fe736397c921a360aff | [
"MIT"
] | null | null | null | test/command_processor_test.rb | jakewilkins/lottery | 216c56783e418bee08d69fe736397c921a360aff | [
"MIT"
] | 1 | 2022-03-31T00:58:27.000Z | 2022-03-31T00:58:27.000Z | test/command_processor_test.rb | jakewilkins/lottery | 216c56783e418bee08d69fe736397c921a360aff | [
"MIT"
] | null | null | null | # frozen_string_literal: true
require_relative "test_helper"
class CommandProcessorTest < Minitest::Test
def setup
@meeting = Meeting.new(id: :test, account: :account)
@meeting.cleanup
@person = Person.new(id: "foo", name: "bar")
@redis = DB.pool.checkout
@subject = CommandProcessor
end
def teardown
DB.pool.checkin
@meeting.cleanup
end
def test_draw_command
event = {'accountId' => 'account', 'userId' => 'foo'}
response = @subject.drawn_response("test", event: event)
assert_equal :unknown_meeting_id, response.type
@meeting << @person
response = @subject.drawn_response("test", event: event)
assert_equal :winner, response.type
assert_instance_of Person, response.context[:person]
@meeting.shared(@person)
response = @subject.drawn_response("test", event: event)
assert_equal :empty_draw, response.type
@meeting >> @person
response = @subject.drawn_response("test", event: event)
assert_equal :unknown_meeting_id, response.type
end
end
| 25.414634 | 60 | 0.697697 |
e73476d9926b5ae3b15b017e0ef8755e89054820 | 378 | js | JavaScript | src/context.js | foraproject/isotropy-koa-in-browser | 94cd8dd07871e378a6c1eb089d66df124d192e47 | [
"MIT"
] | null | null | null | src/context.js | foraproject/isotropy-koa-in-browser | 94cd8dd07871e378a6c1eb089d66df124d192e47 | [
"MIT"
] | null | null | null | src/context.js | foraproject/isotropy-koa-in-browser | 94cd8dd07871e378a6c1eb089d66df124d192e47 | [
"MIT"
] | null | null | null | /* @flow */
/**
* Module dependencies.
*/
import createError from 'http-errors';
import delegate from 'delegates';
import statuses from 'statuses';
import Request from "./request";
import Response from "./response";
class Context {
constructor(request: Request, response: Response) {
this.request = request;
this.response = response;
}
}
export default Context;
| 18 | 53 | 0.706349 |
ef824d0a227a9476c25175868010e4065086e9c8 | 495 | swift | Swift | Flavory/Entities/Step+CoreDataProperties.swift | romegab/Flavory-iOS | add258cfb7c1d8b0d9b1f2d25c77c20ee5b464e8 | [
"MIT"
] | null | null | null | Flavory/Entities/Step+CoreDataProperties.swift | romegab/Flavory-iOS | add258cfb7c1d8b0d9b1f2d25c77c20ee5b464e8 | [
"MIT"
] | null | null | null | Flavory/Entities/Step+CoreDataProperties.swift | romegab/Flavory-iOS | add258cfb7c1d8b0d9b1f2d25c77c20ee5b464e8 | [
"MIT"
] | 1 | 2021-10-04T11:46:31.000Z | 2021-10-04T11:46:31.000Z | //
// Step+CoreDataProperties.swift
// Flavory
//
// Created by Ivan Stoilov on 25.10.21.
//
//
import Foundation
import CoreData
extension Step {
@nonobjc public class func fetchRequest() -> NSFetchRequest<Step> {
return NSFetchRequest<Step>(entityName: "Step")
}
@NSManaged public var isChecked: Bool
@NSManaged public var number: Int
@NSManaged public var step: String?
@NSManaged public var origin: RecipeModel?
}
extension Step : Identifiable {
}
| 17.068966 | 71 | 0.688889 |
e7743a77d4b3206b342d3c5f450bd6c0d3218c6d | 1,151 | js | JavaScript | node_modules/@styled-icons/fa-solid/Memory/Memory.esm.js | pome223/pome223.github.io | 1b17fbc68314631808edad773a232be1ed9781ac | [
"MIT"
] | 2 | 2021-10-17T02:32:38.000Z | 2022-01-20T20:04:16.000Z | node_modules/@styled-icons/fa-solid/Memory/Memory.esm.js | pome223/pome223.github.io | 1b17fbc68314631808edad773a232be1ed9781ac | [
"MIT"
] | 1 | 2022-02-15T03:11:23.000Z | 2022-02-15T03:11:23.000Z | node_modules/@styled-icons/fa-solid/Memory/Memory.esm.js | pome223/pome223.github.io | 1b17fbc68314631808edad773a232be1ed9781ac | [
"MIT"
] | 3 | 2021-10-06T13:00:51.000Z | 2021-10-17T06:38:40.000Z | import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Memory = /*#__PURE__*/React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg"
};
return /*#__PURE__*/React.createElement(StyledIconBase, _extends({
iconAttrs: attrs,
iconVerticalAlign: "middle",
iconViewBox: "0 0 640 512"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
fill: "currentColor",
d: "M640 130.94V96c0-17.67-14.33-32-32-32H32C14.33 64 0 78.33 0 96v34.94c18.6 6.61 32 24.19 32 45.06s-13.4 38.45-32 45.06V320h640v-98.94c-18.6-6.61-32-24.19-32-45.06s13.4-38.45 32-45.06zM224 256h-64V128h64v128zm128 0h-64V128h64v128zm128 0h-64V128h64v128zM0 448h64v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h128v-26.67c0-8.84 7.16-16 16-16s16 7.16 16 16V448h64v-96H0v96z"
}));
});
Memory.displayName = 'Memory';
export var MemoryDimensions = {
height: 512,
width: 640
}; | 47.958333 | 477 | 0.697654 |
2a898e9ca996780380ac7e002b690ae74c005d3f | 1,462 | java | Java | chapter_007/src/main/java/ru/job4j/nonblockingcache/NonBlockingCache.java | danailKondov/dkondov | 14b3d2940638b2f69072dbdc0a9d7f8ba1b3748b | [
"Apache-2.0"
] | 1 | 2018-05-24T06:36:30.000Z | 2018-05-24T06:36:30.000Z | chapter_007/src/main/java/ru/job4j/nonblockingcache/NonBlockingCache.java | danailKondov/dkondov | 14b3d2940638b2f69072dbdc0a9d7f8ba1b3748b | [
"Apache-2.0"
] | null | null | null | chapter_007/src/main/java/ru/job4j/nonblockingcache/NonBlockingCache.java | danailKondov/dkondov | 14b3d2940638b2f69072dbdc0a9d7f8ba1b3748b | [
"Apache-2.0"
] | 1 | 2018-11-08T23:33:17.000Z | 2018-11-08T23:33:17.000Z | package ru.job4j.nonblockingcache;
import java.util.concurrent.ConcurrentHashMap;
import java.util.function.BiFunction;
/**
* Class for simple DIY non-blocking cache.
*
* @since 11/10/2017
* @version 1
*/
public class NonBlockingCache {
/**
* Task storage.
*/
private ConcurrentHashMap<Integer, Task> storage = new ConcurrentHashMap<>();
/**
* Adds new task to storage. If task with same ID
* is already present in storage nothing will be added.
*
* @param task to add.
*/
public void add(Task task) {
storage.putIfAbsent(task.getiD(), task);
}
/**
* Deletes task with same ID.
* @param id of task to remove
*/
public void delete(int id) {
storage.remove(id);
}
/**
* Updates task in storage.
* @param task to update
* @throws OptimisticException if task was already modified
*/
public void update(Task task) throws OptimisticException {
Task result = storage.computeIfPresent(task.getiD(), new BiFunction<Integer, Task, Task>() {
@Override
public Task apply(Integer integer, Task oldTask) {
Task result = null;
if(oldTask.getVersion() + 1 == task.getVersion()) {
result = task;
} else {
throw new OptimisticException();
}
return result;
}
});
}
}
| 25.206897 | 100 | 0.570451 |
5b6627bf71fb740a8a76b1113668ad331918795d | 922 | asm | Assembly | libsrc/_DEVELOPMENT/l/sccz80/crt0_long/l_long_case.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 640 | 2017-01-14T23:33:45.000Z | 2022-03-30T11:28:42.000Z | libsrc/_DEVELOPMENT/l/sccz80/crt0_long/l_long_case.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 1,600 | 2017-01-15T16:12:02.000Z | 2022-03-31T12:11:12.000Z | libsrc/_DEVELOPMENT/l/sccz80/crt0_long/l_long_case.asm | jpoikela/z88dk | 7108b2d7e3a98a77de99b30c9a7c9199da9c75cb | [
"ClArtistic"
] | 215 | 2017-01-17T10:43:03.000Z | 2022-03-23T17:25:02.000Z | ; Small C+ Z80 Run time library
; 13/10/98 The new case statement..maybe things will work now!
; 11/2014 Removed use of ix
SECTION code_clib
SECTION code_l_sccz80
PUBLIC l_long_case
l_long_case:
; Case statement for longs
; Enter with dehl = number to check against..
ld c,l
ld b,h
; debc = number to check against
pop hl ; hl = & switch table
loop:
ld a,(hl)
inc hl
or (hl)
inc hl
jr z, end ; if end of table
ld a,(hl)
inc hl
cp c
jr nz, loop_3
ld a,(hl)
inc hl
cp b
jr nz, loop_2
ld a,(hl)
inc hl
cp e
jr nz, loop_1
ld a,(hl)
inc hl
cp d
jr nz, loop
; match
ld bc,-5
add hl,bc
ld a,(hl)
dec hl
ld l,(hl)
ld h,a
end:
jp (hl)
loop_3:
inc hl
loop_2:
inc hl
loop_1:
inc hl
jr loop
| 11.382716 | 68 | 0.510846 |
71a0e28f13af39e6c2986de26230d53f69601f31 | 2,442 | ts | TypeScript | src/knockout/koquestionbase.ts | techbuzzz/surveyjs | 5a6870393929cd1d360c83dae4c24b5bc3af719a | [
"MIT"
] | null | null | null | src/knockout/koquestionbase.ts | techbuzzz/surveyjs | 5a6870393929cd1d360c83dae4c24b5bc3af719a | [
"MIT"
] | null | null | null | src/knockout/koquestionbase.ts | techbuzzz/surveyjs | 5a6870393929cd1d360c83dae4c24b5bc3af719a | [
"MIT"
] | 1 | 2020-01-22T12:55:32.000Z | 2020-01-22T12:55:32.000Z | import * as ko from "knockout";
import {QuestionBase} from "../questionbase";
export class QuestionImplementorBase {
koVisible: any; koErrors: any; koPaddingLeft: any; koPaddingRight: any; koRenderWidth: any;
koTemplateName: any; koElementType: any;
constructor(public question: QuestionBase) {
var self = this;
question.visibilityChangedCallback = function () { self.onVisibilityChanged(); };
question.renderWidthChangedCallback = function () { self.onRenderWidthChanged(); };
this.koTemplateName = ko.pureComputed(function () { return self.getTemplateName(); });
this.koElementType = ko.observable("survey-question");
this.koVisible = ko.observable(this.question.isVisible);
this.koRenderWidth = ko.observable(this.question.renderWidth);
this.koErrors = ko.observableArray();
this.koPaddingLeft = ko.observable(self.getIndentSize(self.question.indent));
this.koPaddingRight = ko.observable(self.getIndentSize(self.question.rightIndent));
this.question["koElementType"] = this.koElementType;
this.question["koTemplateName"] = this.koTemplateName;
this.question["koVisible"] = this.koVisible;
this.question["koRenderWidth"] = this.koRenderWidth;
this.question["koErrors"] = this.koErrors;
this.question["koPaddingLeft"] = this.koPaddingLeft;
this.question["koPaddingRight"] = this.koPaddingRight;
this.question["updateQuestion"] = function () { self.updateQuestion(); }
this.question["koCss"] = ko.pureComputed(function() {return self.question.cssClasses;});
}
protected updateQuestion() { }
protected onVisibilityChanged() {
this.koVisible(this.question.isVisible);
}
protected onRenderWidthChanged() {
this.koRenderWidth(this.question.renderWidth);
this.koPaddingLeft(this.getIndentSize(this.question.indent));
this.koPaddingRight(this.getIndentSize(this.question.rightIndent));
}
private getIndentSize(indent: number): string {
if (indent < 1) return "";
return indent * this.question.cssClasses.indent + "px";
}
private getTemplateName(): string {
if (this.question.customWidget && !this.question.customWidget.widgetJson.isDefaultRender)
return "survey-widget-" + this.question.customWidget.name;
return "survey-question-" + this.question.getType();
}
}
| 51.957447 | 97 | 0.691237 |
74cc9381a11b987d7c4dc503b2a4bcef8b009713 | 540 | js | JavaScript | src/RandomWalkDistribution.js | FlySkyPie/time-travel-caused-by-finger-guessing-experiment | e8662e02a6707ea4c6d3d500592070971ee5e1cf | [
"MIT"
] | null | null | null | src/RandomWalkDistribution.js | FlySkyPie/time-travel-caused-by-finger-guessing-experiment | e8662e02a6707ea4c6d3d500592070971ee5e1cf | [
"MIT"
] | null | null | null | src/RandomWalkDistribution.js | FlySkyPie/time-travel-caused-by-finger-guessing-experiment | e8662e02a6707ea4c6d3d500592070971ee5e1cf | [
"MIT"
] | null | null | null | import NormalDistribution from 'normal-distribution';
export class RandomWalkDistribution {
constructor(trialsNumber) {
this.times = trialsNumber;
this.terms = 7;
}
getPDF(x) {
let value = 0;
for (let i = 0; i < this.terms; i++) {
let standardDeviation = Math.sqrt(this.times / Math.pow(2, i));
let normalDistribution = new NormalDistribution(0, standardDeviation);
value += normalDistribution.pdf(x) / Math.pow(2, i);
}
return value;
}
} | 30 | 82 | 0.594444 |
c3c80a79b861ce9007f26e8463ab326a5ddb90fc | 1,945 | go | Go | portxo/keygen.go | tnakagawa/lit | 57c63ed5cc9584bff083047c8fc0b5be1c4fde2f | [
"MIT"
] | 560 | 2016-11-16T02:10:02.000Z | 2022-03-26T16:28:58.000Z | portxo/keygen.go | tnakagawa/lit | 57c63ed5cc9584bff083047c8fc0b5be1c4fde2f | [
"MIT"
] | 374 | 2016-11-29T21:42:49.000Z | 2021-02-16T13:30:44.000Z | portxo/keygen.go | tnakagawa/lit | 57c63ed5cc9584bff083047c8fc0b5be1c4fde2f | [
"MIT"
] | 126 | 2016-12-15T21:26:19.000Z | 2022-02-22T21:23:03.000Z | package portxo
import (
"bytes"
"encoding/binary"
"fmt"
)
// KeyGen describes how to get to the key from the master / seed.
// it can be used with bip44 or other custom schemes (up to 5 levels deep)
// Depth must be 0 to 5 inclusive. Child indexes of 0 are OK, so we can't just
// terminate at the first 0.
type KeyGen struct {
Depth uint8 `json:"depth"` // how many levels of the path to use. 0 means privkey as-is
Step [5]uint32 `json:"steps"` // bip 32 / 44 path numbers
PrivKey [32]byte `json:"privkey"` // private key
}
// Bytes returns the 53 byte serialized key derivation path.
// always works
func (k KeyGen) Bytes() []byte {
var buf bytes.Buffer
binary.Write(&buf, binary.BigEndian, k.Depth)
binary.Write(&buf, binary.BigEndian, k.Step[0])
binary.Write(&buf, binary.BigEndian, k.Step[1])
binary.Write(&buf, binary.BigEndian, k.Step[2])
binary.Write(&buf, binary.BigEndian, k.Step[3])
binary.Write(&buf, binary.BigEndian, k.Step[4])
buf.Write(k.PrivKey[:])
return buf.Bytes()
}
// KeyGenFromBytes turns a 53 byte array into a key derivation path. Always works
// (note a depth > 5 path is invalid, but this just deserializes & doesn't check)
func KeyGenFromBytes(b [53]byte) (k KeyGen) {
buf := bytes.NewBuffer(b[:])
binary.Read(buf, binary.BigEndian, &k.Depth)
binary.Read(buf, binary.BigEndian, &k.Step[0])
binary.Read(buf, binary.BigEndian, &k.Step[1])
binary.Read(buf, binary.BigEndian, &k.Step[2])
binary.Read(buf, binary.BigEndian, &k.Step[3])
binary.Read(buf, binary.BigEndian, &k.Step[4])
copy(k.PrivKey[:], buf.Next(32))
return
}
// String turns a keygen into a string
func (k KeyGen) String() string {
var s string
// s = fmt.Sprintf("\tkey derivation path: m")
for i := uint8(0); i < k.Depth; i++ {
if k.Step[i]&0x80000000 != 0 { // high bit means hardened
s += fmt.Sprintf("/%d'", k.Step[i]&0x7fffffff)
} else {
s += fmt.Sprintf("/%d", k.Step[i])
}
}
return s
}
| 32.416667 | 96 | 0.677635 |
11d3114207fefd61128b919496aa9b92967a65c9 | 282 | html | HTML | obj/templates/directives/datetime.html | mathCodingClub/mcc-php-backend | 28428eddc0a64ebf6deb333d3896e7393f28c349 | [
"MIT"
] | null | null | null | obj/templates/directives/datetime.html | mathCodingClub/mcc-php-backend | 28428eddc0a64ebf6deb333d3896e7393f28c349 | [
"MIT"
] | null | null | null | obj/templates/directives/datetime.html | mathCodingClub/mcc-php-backend | 28428eddc0a64ebf6deb333d3896e7393f28c349 | [
"MIT"
] | null | null | null | <!-- source: https://github.com/zhaber/angular-js-bootstrap-datetimepicker -->
<datetimepicker
ng-model="timeObject"
starting-day="1"
show-weeks="true"
hour-step="1"
minute-step="10"
show-meridian="false"
date-format="dd.MM.yyyy"
></datetimepicker> | 25.636364 | 78 | 0.652482 |
2ccfab1e77714861637af0f9909c1b0b0c96ed0f | 3,180 | kt | Kotlin | CoughExtractor/app/src/main/java/com/coughextractor/device/CoughDevice.kt | VSU-CS-MCS/CoughRecognition | 5e9236613826cb7bf417704ed238729a9ef0d270 | [
"MIT"
] | 1 | 2020-05-16T08:44:23.000Z | 2020-05-16T08:44:23.000Z | CoughExtractor/app/src/main/java/com/coughextractor/device/CoughDevice.kt | VSU-CS-MCS/CoughRecognition | 5e9236613826cb7bf417704ed238729a9ef0d270 | [
"MIT"
] | null | null | null | CoughExtractor/app/src/main/java/com/coughextractor/device/CoughDevice.kt | VSU-CS-MCS/CoughRecognition | 5e9236613826cb7bf417704ed238729a9ef0d270 | [
"MIT"
] | null | null | null | package com.coughextractor.device
import android.bluetooth.BluetoothAdapter
import android.bluetooth.BluetoothDevice
import android.bluetooth.BluetoothSocket
import android.util.Log
import java.io.IOException
import java.util.*
import javax.inject.Inject
enum class CoughDeviceError {
BluetoothDisabled,
BluetoothAdapterNotFound,
CoughDeviceNotFound,
}
val coughDeviceId = UUID.fromString("00001101-0000-1000-8000-00805F9B34FB")
const val coughDeviceName = "HC-COUGH"
const val TAG = "CoughDevice"
class CoughDevice @Inject constructor(
private val parser: CoughDeviceDataParser,
) {
val deviceId = "0"
private val bluetoothAdapter: BluetoothAdapter? = BluetoothAdapter.getDefaultAdapter()
private var connectThread: ConnectThread? = null
fun connect(): CoughDeviceError? {
val bluetoothError = checkBluetooth()
if (bluetoothError !== null) {
return bluetoothError
}
val coughDevice = bluetoothAdapter!!.bondedDevices.singleOrNull {
it.name == coughDeviceName
}
if (coughDevice === null) {
return CoughDeviceError.CoughDeviceNotFound
}
connectThread = ConnectThread(coughDevice)
connectThread!!.run()
return null
}
fun disconnect() {
try {
connectThread?.cancel()
} catch (e: IOException) {
Log.e(TAG, "Could not close the client socket", e)
}
}
private fun checkBluetooth(): CoughDeviceError? {
if (bluetoothAdapter == null) {
return CoughDeviceError.BluetoothAdapterNotFound
}
if (!bluetoothAdapter.isEnabled) {
return CoughDeviceError.BluetoothDisabled
}
return null
}
private inner class ConnectThread(
val device: BluetoothDevice,
) : Thread() {
private val socket: BluetoothSocket? by lazy(LazyThreadSafetyMode.NONE) {
device.createRfcommSocketToServiceRecord(coughDeviceId)
}
override fun run() {
socket?.use { socket ->
// Connect to the remote device through the socket. This call blocks
// until it succeeds or throws an exception.
socket.connect()
val reader = socket.inputStream.bufferedReader()
while (true) {
val line = try {
reader.readLine()
} catch (e: Throwable) {
Log.e(TAG, "Couldn't read data", e)
break
}
val deviceData = try {
parser.parseLine(line)
} catch (e: Throwable) {
Log.e(TAG, "Couldn't parse data", e)
}
Log.v(TAG, line)
}
}
}
// Closes the client socket and causes the thread to finish.
fun cancel() {
try {
socket?.close()
} catch (e: IOException) {
Log.e(TAG, "Could not close the client socket", e)
}
}
}
}
| 28.392857 | 90 | 0.569497 |
15f5540da198b543137a52f3a7db35252bb43d49 | 2,638 | swift | Swift | Instagram/Controllers/HomeViewController.swift | Kristine92/Instagram | 99a95d8a767271028fbf963053899cba3b74db27 | [
"Apache-2.0"
] | null | null | null | Instagram/Controllers/HomeViewController.swift | Kristine92/Instagram | 99a95d8a767271028fbf963053899cba3b74db27 | [
"Apache-2.0"
] | 1 | 2018-02-28T12:53:50.000Z | 2018-02-28T12:53:50.000Z | Instagram/Controllers/HomeViewController.swift | Kristine92/Instagram | 99a95d8a767271028fbf963053899cba3b74db27 | [
"Apache-2.0"
] | null | null | null | //
// HomeViewController.swift
// Instagram
//
// Created by Kristine Laranjo on 2/25/18.
// Copyright © 2018 Kristine Laranjo. All rights reserved.
//
import UIKit
import Parse
class HomeViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {
@IBOutlet weak var tableView: UITableView!
var posts: [Post] = []
override func viewDidLoad() {
super.viewDidLoad()
tableView.delegate = self
tableView.dataSource = self
// Do any additional setup after loading the view.
let refreshControl = UIRefreshControl()
refreshControl.addTarget(self, action: #selector(fetchPosts), for: UIControlEvents.valueChanged)
// add refresh control to table view
tableView.insertSubview(refreshControl, at: 0)
fetchPosts(refresh: refreshControl)
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
@IBAction func addPhoto(_ sender: Any) {
self.performSegue(withIdentifier: "addPhoto", sender: nil)
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return posts.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "PostTableViewCell", for: indexPath) as! PostTableViewCell
cell.instagramPost = posts[indexPath.row]
return cell
}
@objc func fetchPosts(refresh: UIRefreshControl){
let query = Post.query()
query?.limit = 20
query?.order(byDescending: "_created_at")
query?.findObjectsInBackground(block: { (posts, error) in
if(posts != nil){
self.posts = posts as! [Post]
self.tableView.reloadData()
refresh.endRefreshing()
} else{
print(error?.localizedDescription)
}
})
}
@IBAction func didLogout(_ sender: Any) {
print("Logged out")
NotificationCenter.default.post(name: NSNotification.Name("didLogout"), object: nil)
}
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
let cell = sender as! UITableViewCell
if let indexPath = tableView.indexPath(for: cell) {
let post = posts[indexPath.row]
let detailViewController = segue.destination as! DetailViewController
detailViewController.instagramPost = post
}
}
}
| 32.975 | 123 | 0.639121 |
85bdbc597d8ba42af73b254481cdc2da2315503d | 1,949 | h | C | source/Fenghui_Zhang_Core/inc/renderable_object.h | 9prady9/duotone | 53d5d8daa9a90ca7ca39698766c267d5b03849cb | [
"BSD-3-Clause"
] | null | null | null | source/Fenghui_Zhang_Core/inc/renderable_object.h | 9prady9/duotone | 53d5d8daa9a90ca7ca39698766c267d5b03849cb | [
"BSD-3-Clause"
] | null | null | null | source/Fenghui_Zhang_Core/inc/renderable_object.h | 9prady9/duotone | 53d5d8daa9a90ca7ca39698766c267d5b03849cb | [
"BSD-3-Clause"
] | null | null | null | #ifndef GEOMETRY_RENDERABLE_OBJECT__
#define GEOMETRY_RENDERABLE_OBJECT__
#include "topology_object.h"
#include <map>
#include <vector>
class Face;
class Vertex;
/**
* For regular rendering, we need
* (1) coordinates of each vertex
* (2) list of faces, each of them has a list of vertices (corners)
* (3) the normal of each face for planar modeling
* (4) the normal of each corner for polygonal modeling
* (5) the material of the object, or each face
* (6) color of the object, or each face
* (7) texture
*
* Many of these do not need to be stored with faces or vertices. We
* can use property maps instead. These non-core properties are not
* critical, i.e., they can be replace or reconstructed easily.
*
* The Topological Object keeps tracks of the core component
* (1) vertices (2) edges (3) rotations
* --- Good!
* OR
* (1) vertices (2) faces with vertex-lists.
* --- not good enough, we could have multiple edges between vertices.
* OR
* DLFL --- the current presentation is bad, but can be fixed.
*
* Hence it needs
* (1) add/delete vertices
* (2) add/delete edges
*/
// Object class.
class RenderableObject : public TopologyObject {
public:
RenderableObject();
std::set<Face*> GetFaces();
float* GetVertexCoordinates(Vertex* v);
float* GetFaceNormal(Face* f);
void ReComputeFaces();
bool SetCoords(Vertex* v, float*);
protected:
std::set<Face*> faces_;
// property map to store coordinates.
// vertex_ID -> coordinates.
// TODO: when the vertex is being removed, we have to delete coords pointers.
std::map<Vertex*, float*> coords_;
// face_ID -> normal.
// TODO: when the face is being removed, we have to delete normal pointers.
std::map<Face*, float*> normals_;
// vertex_ID -> vertex_ID -> face_ID.
std::map<Vertex*, std::map<Vertex*, Face*> > face_map_;
// TODO: We need to know if the faces are up to date.
};
#endif // GEOMETRY_RENDERABLE_OBJECT__
| 29.530303 | 79 | 0.694202 |
bcfd4b5338e2eda6675c2cef42cecf509597940b | 1,649 | kt | Kotlin | src/main/kotlin/io/igx/iot/model/SensorData.kt | viniciusccarvalho/kotlin-ecobee-parser | bc7232f5eaa6c200acb70d4a1e0cebe6faeebe81 | [
"Apache-2.0"
] | null | null | null | src/main/kotlin/io/igx/iot/model/SensorData.kt | viniciusccarvalho/kotlin-ecobee-parser | bc7232f5eaa6c200acb70d4a1e0cebe6faeebe81 | [
"Apache-2.0"
] | null | null | null | src/main/kotlin/io/igx/iot/model/SensorData.kt | viniciusccarvalho/kotlin-ecobee-parser | bc7232f5eaa6c200acb70d4a1e0cebe6faeebe81 | [
"Apache-2.0"
] | null | null | null | /*
* Copyright 2017 original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package io.igx.iot.model
import com.fasterxml.jackson.annotation.JsonProperty
import java.time.LocalDate
import java.util.*
/**
* @author Vinicius Carvalho
*/
data class SensorData(val type: String, val name: String, @JsonProperty("@timestamp") val timestamp: Date, val value: Double, val thermostatId: String)
data class Column(val type: String, val position: Int)
data class Report(val device: String, val id: String, val start: LocalDate, val end: LocalDate)
inline fun String.safeFloat() : Float {
return try {
this.toFloat()
} catch (e: NumberFormatException){
0.0f
}
}
inline fun String.safeDouble() : Double {
return try {
this.toDouble()
} catch (e: NumberFormatException){
0.0
}
}
inline fun String.safeInt() : Int {
return try {
this.toInt()
} catch (e: NumberFormatException){
0
}
}
inline fun String.safeLong() : Long{
return try {
this.toLong()
} catch (e: NumberFormatException){
0L
}
}
| 25.765625 | 151 | 0.676774 |
641a300abe70084ff99c26120146518f76f3eb26 | 624 | kt | Kotlin | sdk-base/src/main/java/com/mapbox/maps/plugin/viewport/state/FollowingViewportState.kt | UWDIEYN-NETWORK-DIGITAL-CENTER/mapbox-maps-android | bd11f1a352dd4bcb99dd783cf85fa48252927258 | [
"Apache-2.0",
"BSD-2-Clause"
] | null | null | null | sdk-base/src/main/java/com/mapbox/maps/plugin/viewport/state/FollowingViewportState.kt | UWDIEYN-NETWORK-DIGITAL-CENTER/mapbox-maps-android | bd11f1a352dd4bcb99dd783cf85fa48252927258 | [
"Apache-2.0",
"BSD-2-Clause"
] | null | null | null | sdk-base/src/main/java/com/mapbox/maps/plugin/viewport/state/FollowingViewportState.kt | UWDIEYN-NETWORK-DIGITAL-CENTER/mapbox-maps-android | bd11f1a352dd4bcb99dd783cf85fa48252927258 | [
"Apache-2.0",
"BSD-2-Clause"
] | null | null | null | package com.mapbox.maps.plugin.viewport.state
import com.mapbox.maps.plugin.locationcomponent.LocationComponentPlugin
import com.mapbox.maps.plugin.viewport.data.FollowingViewportStateOptions
/**
* The [ViewportState] that follows user's location.
*
* Note: [LocationComponentPlugin] should be enabled to use this viewport state.
*
* Users are responsible to create the viewport states and keep a reference to these states for
* future operations.
*/
interface FollowingViewportState : ViewportState {
/**
* Describes the configuration options of the state.
*/
var options: FollowingViewportStateOptions
} | 32.842105 | 95 | 0.788462 |
6298cfef83d50e3c288ccabb25265909198db02e | 1,400 | rs | Rust | rust/robot-name/src/lib.rs | TheTonttu/exercism-solutions | 25420fc86d4b4a12e45f14f7472546f10f8864ea | [
"MIT"
] | null | null | null | rust/robot-name/src/lib.rs | TheTonttu/exercism-solutions | 25420fc86d4b4a12e45f14f7472546f10f8864ea | [
"MIT"
] | null | null | null | rust/robot-name/src/lib.rs | TheTonttu/exercism-solutions | 25420fc86d4b4a12e45f14f7472546f10f8864ea | [
"MIT"
] | null | null | null | use once_cell::sync::Lazy;
use rand::Rng;
use std::collections::HashSet;
use std::sync::Mutex;
static NAME_REGISTRY: Lazy<Mutex<HashSet<String>>> = Lazy::new(|| Mutex::new(HashSet::new()));
#[derive(Default)]
pub struct Robot {
name: String,
}
impl Robot {
pub fn new() -> Self {
Self {
name: gen_unique_name(),
}
}
pub fn name(&self) -> &str {
self.name.as_str()
}
pub fn reset_name(&mut self) {
unregister_name(&self.name);
self.name = gen_unique_name();
}
}
// Unregister name when robot goes out of scope.
impl Drop for Robot {
fn drop(&mut self) {
unregister_name(&self.name);
}
}
fn unregister_name(name: &str) {
NAME_REGISTRY.lock().unwrap().remove(name);
}
fn gen_unique_name() -> String {
let mut registry = NAME_REGISTRY.lock().unwrap();
loop {
let new_name = gen_random_name();
if registry.insert(new_name.clone()) {
return new_name;
}
}
}
fn gen_random_name() -> String {
const LETTER_COUNT: usize = 2;
const NUMBER_COUNT: usize = 3;
let mut rng = rand::thread_rng();
let letters: String = (0..LETTER_COUNT)
.map(|_| rng.gen_range('A'..='Z'))
.collect();
let numbers: String = (0..NUMBER_COUNT)
.map(|_| rng.gen_range('0'..='9'))
.collect();
[letters, numbers].concat()
}
| 21.212121 | 94 | 0.580714 |
6134ac0d844ac9974b558b28b509baf7c4869c0f | 107 | css | CSS | webroot/jobs.css | vitaluha/berlinmeasurecampboard | c71d8b3632626d9aed4a6e79bcf54947071c7ee7 | [
"Unlicense"
] | 2 | 2020-06-10T23:07:38.000Z | 2021-02-04T22:02:14.000Z | webroot/jobs.css | vitaluha/berlinmeasurecampboard | c71d8b3632626d9aed4a6e79bcf54947071c7ee7 | [
"Unlicense"
] | 1 | 2020-06-30T18:12:13.000Z | 2020-07-02T11:38:16.000Z | webroot/jobs.css | vitaluha/londonmeasurecampboard | 9d8ca430e43d6cf7d3cac93e3949a4a9791f576a | [
"Unlicense"
] | null | null | null | #demo {
padding-top: 10px;
}
.no-border-table, .no-border-table td {
/* border: none !important; */
}
| 13.375 | 39 | 0.607477 |
f06ab2424ee61abe89041d54314b7a45d992baed | 610 | js | JavaScript | helpers/filter/unitfilter.js | jabardigitalservice/pikobar-pelaporan-backend | 832e7a6b401dc5b42b9075e9bc6112e732a1d4ef | [
"Unlicense"
] | 22 | 2020-03-20T07:34:19.000Z | 2021-04-27T06:21:13.000Z | helpers/filter/unitfilter.js | jabardigitalservice/pikobar-pelaporan-backend | 832e7a6b401dc5b42b9075e9bc6112e732a1d4ef | [
"Unlicense"
] | 494 | 2020-03-24T04:36:46.000Z | 2022-01-26T02:59:48.000Z | helpers/filter/unitfilter.js | jabardigitalservice/pikobar-pelaporan-backend | 832e7a6b401dc5b42b9075e9bc6112e732a1d4ef | [
"Unlicense"
] | 19 | 2020-03-17T03:45:58.000Z | 2021-12-24T05:54:27.000Z | 'use strict'
const filterUnit = (query) => {
let params = {}
if (query.unit_type) {
params.unit_type = query.unit_type
}
if (query.code_district_code) {
params.code_district_code = query.code_district_code
}
return params
}
const filterSearch = (query) => {
let search_params
if (query.search) {
search_params = [
{ unit_code: new RegExp(query.search, "i") },
{ unit_type: new RegExp(query.search, "i") },
{ name: new RegExp(query.search, "i") }
]
} else {
search_params = {}
}
return search_params
}
module.exports = {
filterUnit, filterSearch
} | 21.034483 | 56 | 0.634426 |
4c2d8a57e66c334444fcfe6f60db1ba031f7b3bc | 1,609 | php | PHP | app/Views/user_view.php | KukuhDwiC/tutorial-CI4 | aa274e21683a8499f3ceadb2857dfc51141ad882 | [
"MIT"
] | null | null | null | app/Views/user_view.php | KukuhDwiC/tutorial-CI4 | aa274e21683a8499f3ceadb2857dfc51141ad882 | [
"MIT"
] | 1 | 2020-07-11T15:39:28.000Z | 2020-07-18T07:38:25.000Z | app/Views/user_view.php | KukuhDwiC/tutorial-CI4 | aa274e21683a8499f3ceadb2857dfc51141ad882 | [
"MIT"
] | null | null | null |
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<script>
$(function() {
$('#save').click(function() {
$('#myForm').submit()
$('#tambahdata').modal('hide')
})
})
</script>
<title>User</title>
</head>
<body>
<div class="container mt-1">
<h1>Selamat Datang Di Halaman User, <?= session()->get('user_nama'); ?>.</h1>
<a class="btn btn-dark" href="/user/tambahdata" role="button">Menambahkan Data</a>
<table border=1>
<thead>
<tr>
<th>User ID</th>
<th>Nama</th>
<th>E-mail</th>
<th> Aksi</th>
</tr>
</thead>
<tbody>
<?php foreach($user as $row):?>
<tr>
<td><?=$row['user_id'];?></td>
<td><?=$row['user_nama'];?></td>
<td><?=$row['user_email'];?></td>
<td>
<a class="btn btn-success" href="/user/edit/<?= $row['user_id']; ?>" role="button">Edit</a>
<a class="btn btn-danger text-white" onclick="hapusData(<?= $row['user_id']; ?>)" role="button">Delete</a>
</td>
</tr>
<?php endforeach;?>
</tbody>
</table>
<a class="btn btn-primary btn-lg" href="<?= base_url('login/logout'); ?>" role="button">Logout</a>
</div>
<script>
function hapusData(id) {
message = confirm('are sure want to delete this data ?')
if (message) {
window.location.href = ("<?= base_url('user/delete'); ?>") + "/" + id
} else return false
}
</script>
</body>
</html> | 26.816667 | 112 | 0.510876 |