get("#349") -- table functions
get("#380") -- hashImage
get("#121") -- compareTables
get("#348") -- bright and rgb
maxSize = {width=100, height=50}
minSize = {width=4, height=4}
threshold = 0.5
wandSize = 3 -- magic wand size
col1 = col1 or 218
col2 = col2 or 226
local rectangles, _img
function cloneRectangle(r)
  return newRectangle(r.x, r.y, r.width, r.height)
end
function newRectangle(x, y, w, h)
  return {x=x, y=y, width=w, height=h}
end
function contains(r, x, y)
  return x >= r.x and y >= r.y and x < r.x+r.width and y < r.y+r.width
end
function nextX(x, y)
  for r, _ in pairs(rectangles) do
    pTests = pTests+1
    if contains(r, x, y) then
      return r.x+r.width
    end
  end
  return nil
end
pDuplicate, pNew, pSeen, pNotSeen, pTests = 0, 0, 0, 0, 0
-- returns rectangle
function magicWand(image, x, y)
  if image ~= _img then
    _img, rectangles = image, {}
  end
  local nx = nextX(x, y)
  if nx ~= nil then
    pSeen = pSeen+1
    return nil, nx
  end
  pNotSeen = pNotSeen+1
  local r = newRectangle(x, y, wandSize, wandSize)
  
  while true do
    local last = cloneRectangle(r)
    expandLeft(image, r)
    if tooLarge(r) then return nil end
    expandTop(image, r)
    if tooLarge(r) then return nil end
    expandRight(image, r)
    if tooLarge(r) then return nil end
    expandBottom(image, r)
    if tooLarge(r) then return nil end    
    if compareTables(last, r) then
      if r.width >= minSize.width and r.height >= minSize.width then
        if rectangles[r] then
          pDuplicate = pDuplicate+1
        else
          pNew = pNew+1
          rectangles[r] = true
        end
        return r
      else
        return nil
      end
    end
  end
end
function tooLarge(r)
  return maxSize ~= nil and (r.width > maxSize.width or r.height > maxSize.height)
end
function expandLeft(image, r)
  local newX = math.max(r.x - wandSize, 0)
  if newX == r.x then return end
  newX = searchFromLeft(image, newRectangle(newX, r.y, r.x-newX, r.height))
  r.width = r.width+r.x-newX
  r.x = newX
end
function searchFromLeft(image, r)
  for x = r.x, r.x+r.width-1 do
    if regionNotEmpty(image, newRectangle(x, r.y, 1, r.height)) then
      return x
    end
  end
  return r.x+r.width
end
function expandRight(image, r)
  local newX = math.min(r.x + r.width + wandSize, image.width)
  if newX == r.x+r.width then return end
  newX = searchFromRight(image, newRectangle(r.x+r.width, r.y, newX-(r.x+r.width), r.height))
  r.width = newX-r.x
end
function searchFromRight(image, r)
  for x = r.x+r.width-1, r.x, -1 do
    if regionNotEmpty(image, newRectangle(x, r.y, 1, r.height)) then
      return x+1
    end
  end
  return r.x
end
function expandTop(image, r)
  local newY = math.max(r.y - wandSize, 0)
  if newY == r.y then return end
  newY = searchFromTop(image, newRectangle(r.x, newY, r.width, r.y-newY))
  r.height = r.height+r.y-newY
  r.y = newY
end
function searchFromTop(image, r)
  for y = r.y, r.y+r.height-1 do
    if regionNotEmpty(image, newRectangle(r.x, y, r.width, 1)) then
      return y
    end
  end
  return r.y+r.height
end
function expandBottom(image, r)
  local newY = math.min(r.y + r.height + wandSize, image.height)
  if newY == r.y+r.height then return end
  newY = searchFromBottom(image, newRectangle(r.x, r.y + r.height, r.width, newY-(r.y+r.height)))
  r.height = newY-r.y
end
function searchFromBottom(image, r)
  for y = r.y+r.height-1, r.y, -1 do
    if regionNotEmpty(image, newRectangle(r.x, y, r.width, 1)) then
      return y+1
    end
  end
  return r.y
end
-- we're looking for dark pixels this time
function regionNotEmpty(image, r)
  --return image.clip(rectangle).anyPixelBrighterThan(threshold)
  for y=r.y, r.y+r.height-1 do
    for x=r.x, r.x+r.width-1 do
      if x>=0 and y>=0 and x<image.width and y<image.height
        and bright(rgb(image.getInt(x, y))) < threshold then
        return true
      end
    end
  end
  return false
end
function recttostring(r)
  return r.x..", "..r.y..", "..r.x+r.width..", "..r.y+r.height
end
function magicWandColumnRange(image, col1, col2)
  local allrects = {}
  for y = 0, image.height-1, 2 do
    for x = col1, col2, 2 do
      local r = magicWand(image, x, y)
      if r then
        allrects[recttostring(r)] = true
      end
    end
  end
  
  return allrects
end
allrects = magicWandColumnRange(img, col1, col2)
function stringtorect(s)
  local _, _, x1, y1, x2, y2 = string.find(s, "(%d+),%s*(%d+),%s*(%d+),%s*(%d+)")
  x1, y1, x2, y2 = tonumber(x1), tonumber(y1), tonumber(x2), tonumber(y2)
  return newRectangle(x1, y1, x2-x1, y2-y1)
end
result = {}
for s, _ in pairs(allrects) do
  r = stringtorect(s)
  cropped = {width=r.width, height=r.height,
    getInt = function(x, y) return img.getInt(x+r.x, y+r.y) end}
  hash = hashImage(cropped)
  table.insert(result, s.." -> "..hash)
end
result = table.concat(result, "|")
if result ~= '' then
  return "Magic Wand + hashes (wand size="..wandSize..", columns="..col1.."-"..col2.."): "..result
end
Began life as a copy of #404
Travelled to 12 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
| ID | Author/Program | Comment | Date | 
|---|---|---|---|
| 313 | #1000604 (pitcher) | 2015-08-18 00:55:24 | |
| 272 | #1000610 (pitcher) | Edit suggestion: !636 !629 main { static Object androidContext; static String programID; public static void main(String[] args) throws Exception { get("#349") -- table functions get("#380") -- hashImage get("#121") -- compareTables get("#348") -- bright and rgb maxSize = {width=100, height=50} minSize = {width=4, height=4} threshold = 0.5 wandSize = 3 -- magic wand size col1 = col1 or 218 col2 = col2 or 226 local rectangles, _img function cloneRectangle(r) return newRectangle(r.x, r.y, r.width, r.height) end function newRectangle(x, y, w, h) return {x=x, y=y, width=w, height=h} end function contains(r, x, y) return x >= r.x and y >= r.y and x < r.x+r.width and y < r.y+r.width end function nextX(x, y) for r, _ in pairs(rectangles) do pTests = pTests+1 if contains(r, x, y) then return r.x+r.width end end return nil end pDuplicate, pNew, pSeen, pNotSeen, pTests = 0, 0, 0, 0, 0 -- returns rectangle function magicWand(image, x, y) if image ~= _img then _img, rectangles = image, {} end local nx = nextX(x, y) if nx ~= nil then pSeen = pSeen+1 return nil, nx end pNotSeen = pNotSeen+1 local r = newRectangle(x, y, wandSize, wandSize) while true do local last = cloneRectangle(r) expandLeft(image, r) if tooLarge(r) then return nil end expandTop(image, r) if tooLarge(r) then return nil end expandRight(image, r) if tooLarge(r) then return nil end expandBottom(image, r) if tooLarge(r) then return nil end if compareTables(last, r) then if r.width >= minSize.width and r.height >= minSize.width then if rectangles[r] then pDuplicate = pDuplicate+1 else pNew = pNew+1 rectangles[r] = true end return r else return nil end end end end function tooLarge(r) return maxSize ~= nil and (r.width > maxSize.width or r.height > maxSize.height) end function expandLeft(image, r) local newX = math.max(r.x - wandSize, 0) if newX == r.x then return end newX = searchFromLeft(image, newRectangle(newX, r.y, r.x-newX, r.height)) r.width = r.width+r.x-newX r.x = newX end function searchFromLeft(image, r) for x = r.x, r.x+r.width-1 do if regionNotEmpty(image, newRectangle(x, r.y, 1, r.height)) then return x end end return r.x+r.width end function expandRight(image, r) local newX = math.min(r.x + r.width + wandSize, image.width) if newX == r.x+r.width then return end newX = searchFromRight(image, newRectangle(r.x+r.width, r.y, newX-(r.x+r.width), r.height)) r.width = newX-r.x end function searchFromRight(image, r) for x = r.x+r.width-1, r.x, -1 do if regionNotEmpty(image, newRectangle(x, r.y, 1, r.height)) then return x+1 end end return r.x end function expandTop(image, r) local newY = math.max(r.y - wandSize, 0) if newY == r.y then return end newY = searchFromTop(image, newRectangle(r.x, newY, r.width, r.y-newY)) r.height = r.height+r.y-newY r.y = newY end function searchFromTop(image, r) for y = r.y, r.y+r.height-1 do if regionNotEmpty(image, newRectangle(r.x, y, r.width, 1)) then return y end end return r.y+r.height end function expandBottom(image, r) local newY = math.min(r.y + r.height + wandSize, image.height) if newY == r.y+r.height then return end newY = searchFromBottom(image, newRectangle(r.x, r.y + r.height, r.width, newY-(r.y+r.height))) r.height = newY-r.y end function searchFromBottom(image, r) for y = r.y+r.height-1, r.y, -1 do if regionNotEmpty(image, newRectangle(r.x, y, r.width, 1)) then return y+1 end end return r.y end -- we're looking for dark pixels this time function regionNotEmpty(image, r) --return image.clip(rectangle).anyPixelBrighterThan(threshold) for y=r.y, r.y+r.height-1 do for x=r.x, r.x+r.width-1 do if x>=0 and y>=0 and x<image.width and y<image.height and bright(rgb(image.getInt(x, y))) < threshold then return true end end end return false end function recttostring(r) return r.x..", "..r.y..", "..r.x+r.width..", "..r.y+r.height end function magicWandColumnRange(image, col1, col2) local allrects = {} for y = 0, image.height-1, 2 do for x = col1, col2, 2 do local r = magicWand(image, x, y) if r then allrects[recttostring(r)] = true end end end return allrects end allrects = magicWandColumnRange(img, col1, col2) function stringtorect(s) local _, _, x1, y1, x2, y2 = string.find(s, "(%d+),%s*(%d+),%s*(%d+),%s*(%d+)") x1, y1, x2, y2 = tonumber(x1), tonumber(y1), tonumber(x2), tonumber(y2) return newRectangle(x1, y1, x2-x1, y2-y1) end result = {} for s, _ in pairs(allrects) do r = stringtorect(s) cropped = {width=r.width, height=r.height, getInt = function(x, y) return img.getInt(x+r.x, y+r.y) end} hash = hashImage(cropped) table.insert(result, s.." -> "..hash) end result = table.concat(result, "|") if result ~= '' then return "Magic Wand + hashes (wand size="..wandSize..", columns="..col1.."-"..col2.."): "..result end }} | 2015-08-18 00:53:46 | 
| Image | Result | Result calculated | 
|---|---|---|
| #1004090 | java.lang.OutOfMemoryError: Java heap space | 2016-08-07 13:34:09 [raw result] [visualize] | 
| #1000121 | LuaError: #380:11 vm error: java.lang.ArrayIndexOutOfBoundsException: 103124 | 2016-08-06 20:42:06 [raw result] [visualize] | 
| #1000309 | javax.imageio.IIOException: Can't get input stream from URL! | 2016-08-06 20:40:07 [raw result] [visualize] | 
| #1004070 | Magic Wand + hashes (wand size=3, columns=218-226): 219, 278, 234, 289 -> 000a8e99|215, 313, 223, 32... | 2016-08-05 15:10:15 Lua instructions: 22356k [raw result] [visualize] | 
| #1004061 | Magic Wand + hashes (wand size=3, columns=218-226): 202, 132, 223, 144 -> 006f0d68|186, 74, 226, 90 ... | 2016-08-05 13:31:14 Lua instructions: 1582k [raw result] [visualize] | 
| #1004060 | java.lang.OutOfMemoryError: Java heap space | 2016-08-05 13:07:21 [raw result] [visualize] | 
| #1000113 | Magic Wand + hashes (wand size=3, columns=218-226): 153, 74, 227, 90 -> 00dd0518 | 2016-08-03 19:28:08 Lua instructions: 11239k (1129 ms) [raw result] [visualize] | 
| #1004009 | Magic Wand + hashes (wand size=3, columns=218-226): 218, 81, 222, 89 -> 000f8be3|220, 81, 227, 89 ->... | 2016-08-03 17:19:12 Lua instructions: 1734k [raw result] [visualize] | 
| #1000146 | Magic Wand + hashes (wand size=3, columns=218-226): 211, 56, 227, 75 -> 0075fc5f|211, 54, 229, 73 ->... | 2016-08-02 23:14:56 Lua instructions: 56967k (5352 ms) [raw result] [visualize] | 
| #1000576 | Magic Wand + hashes (wand size=3, columns=218-226): 226, 169, 232, 177 -> 00175b4b|226, 168, 232, 17... | 2016-08-01 20:02:09 Lua instructions: 23808k (2203 ms) [raw result] [visualize] | 
| #1000556 | Magic Wand + hashes (wand size=3, columns=218-226): 206, 396, 238, 413 -> 002bbfa1|206, 396, 222, 40... | 2016-08-01 19:49:44 Lua instructions: 45764k (4355 ms) [raw result] [visualize] | 
| #1000555 | Magic Wand + hashes (wand size=3, columns=218-226): 218, 209, 222, 213 -> 0001b228|218, 148, 222, 15... | 2016-08-01 19:41:53 Lua instructions: 25227k (2405 ms) [raw result] [visualize] | 
| #1000554 | Magic Wand + hashes (wand size=3, columns=218-226): 192, 16, 232, 26 -> 00c00c4c|212, 408, 244, 432 ... | 2016-08-01 19:36:12 Lua instructions: 10402k (1008 ms) [raw result] [visualize] | 
| #1000553 | Magic Wand + hashes (wand size=3, columns=218-226): 224, 248, 232, 253 -> 00014b44|226, 132, 232, 14... | 2016-08-01 19:31:28 Lua instructions: 28002k (2725 ms) [raw result] [visualize] | 
| #1000547 | Magic Wand + hashes (wand size=3, columns=218-226): 211, 151, 223, 163 -> 000883ba|212, 235, 234, 26... | 2016-08-01 19:20:31 Lua instructions: 62907k (5812 ms) [raw result] [visualize] | 
| #1000546 | Magic Wand + hashes (wand size=3, columns=218-226): 216, 100, 221, 105 -> 000558ce | 2016-08-01 19:13:48 Lua instructions: 9119k (874 ms) [raw result] [visualize] | 
| #1000544 | Magic Wand + hashes (wand size=3, columns=218-226): 214, 14, 229, 19 -> 000da6ee|224, 212, 247, 217 ... | 2016-08-01 19:06:00 Lua instructions: 46232k (4629 ms) [raw result] [visualize] | 
| #1000519 | Magic Wand + hashes (wand size=3, columns=218-226): 216, 750, 230, 767 -> 000c90d9|216, 62, 223, 67 ... | 2016-08-01 18:39:31 Lua instructions: 24874k (2526 ms) [raw result] [visualize] | 
| #1000444 | Magic Wand + hashes (wand size=3, columns=218-226): 213, 280, 223, 330 -> 008ad675|213, 280, 221, 33... | 2016-08-01 18:30:56 Lua instructions: 28043k (2686 ms) [raw result] [visualize] | 
| #1000425 | Magic Wand + hashes (wand size=3, columns=218-226): 225, 156, 229, 162 -> 0007375d | 2016-08-01 18:22:48 Lua instructions: 8230k (835 ms) [raw result] [visualize] | 
| #1000418 | Magic Wand + hashes (wand size=3, columns=218-226): 147, 192, 239, 205 -> 015acd99|221, 316, 239, 32... | 2016-08-01 18:04:53 Lua instructions: 9008k (861 ms) [raw result] [visualize] | 
| #1000359 | Magic Wand + hashes (wand size=3, columns=218-226): 216, 79, 221, 83 -> 00013545|217, 293, 221, 297 ... | 2016-08-01 18:04:29 Lua instructions: 17273k (1594 ms) [raw result] [visualize] | 
| #1000336 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-08-01 17:48:38 [raw result] [visualize] | 
| #1000330 | java.lang.OutOfMemoryError: Java heap space | 2016-08-01 17:36:36 [raw result] [visualize] | 
| #1000328 | Magic Wand + hashes (wand size=3, columns=218-226): 192, 10, 230, 27 -> 005c187a | 2016-08-01 17:08:13 Lua instructions: 1540k (156 ms) [raw result] [visualize] | 
| #1000326 | java.lang.OutOfMemoryError: Java heap space | 2016-08-01 16:53:25 [raw result] [visualize] | 
| #1000321 | Magic Wand + hashes (wand size=3, columns=218-226): 201, 296, 221, 312 -> 0053a970|201, 298, 225, 31... | 2016-08-01 15:37:07 Lua instructions: 13654k (1283 ms) [raw result] [visualize] | 
| #1000316 | Magic Wand + hashes (wand size=3, columns=218-226): 218, 45, 228, 65 -> 006c13fd|218, 45, 228, 61 ->... | 2016-08-01 14:56:33 Lua instructions: 8018k (793 ms) [raw result] [visualize] | 
| #1000314 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-08-01 14:52:22 [raw result] [visualize] | 
| #1000310 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-08-01 14:21:21 [raw result] [visualize] | 
| #1000311 | java.lang.OutOfMemoryError: Java heap space | 2016-08-01 14:21:04 [raw result] [visualize] | 
| #1000284 | Magic Wand + hashes (wand size=3, columns=218-226): 218, 434, 222, 440 -> 000342b4|218, 436, 225, 44... | 2016-08-01 13:57:47 Lua instructions: 44839k (4339 ms) [raw result] [visualize] | 
| #1000285 | Magic Wand + hashes (wand size=3, columns=218-226): 159, 283, 233, 303 -> 00479165 | 2016-08-01 13:57:34 Lua instructions: 15022k (1498 ms) [raw result] [visualize] | 
| #1000275 | Magic Wand + hashes (wand size=3, columns=218-226): 223, 450, 229, 468 -> 002d8ae3|224, 262, 230, 27... | 2016-08-01 13:25:58 Lua instructions: 28383k (2941 ms) [raw result] [visualize] | 
| #1000269 | Magic Wand + hashes (wand size=3, columns=218-226): 209, 64, 225, 74 -> 0016e298 | 2016-08-01 13:05:01 Lua instructions: 8820k (901 ms) [raw result] [visualize] | 
| #1000262 | Magic Wand + hashes (wand size=3, columns=218-226): 212, 365, 221, 380 -> 0036ea33|213, 348, 221, 35... | 2016-08-01 12:21:26 Lua instructions: 20913k (2008 ms) [raw result] [visualize] | 
| #1000261 | Magic Wand + hashes (wand size=3, columns=218-226): 218, 448, 224, 452 -> 0002aaf8 | 2016-08-01 12:08:24 Lua instructions: 18040k (1759 ms) [raw result] [visualize] | 
| #1000259 | Magic Wand + hashes (wand size=3, columns=218-226): 143, 66, 221, 79 -> 019e8a88 | 2016-08-01 11:48:18 Lua instructions: 14628k (1486 ms) [raw result] [visualize] | 
| #1000253 | Magic Wand + hashes (wand size=3, columns=218-226): 225, 233, 229, 237 -> 00015f48|224, 351, 230, 35... | 2016-08-01 11:38:23 Lua instructions: 44082k (4000 ms) [raw result] [visualize] | 
| #1000248 | Magic Wand + hashes (wand size=3, columns=218-226): 211, 750, 225, 762 -> 002b9ae8|211, 750, 304, 76... | 2016-08-01 11:08:29 Lua instructions: 32867k (3270 ms) [raw result] [visualize] | 
| #1000247 | Magic Wand + hashes (wand size=3, columns=218-226): 215, 142, 221, 147 -> 000f5f5b|211, 41, 225, 54 ... | 2016-08-01 11:06:25 Lua instructions: 20661k (2025 ms) [raw result] [visualize] | 
| #1000245 | Magic Wand + hashes (wand size=3, columns=218-226): 211, 56, 227, 75 -> 0075fc5f|211, 54, 229, 73 ->... | 2016-08-01 10:46:00 Lua instructions: 59626k (5658 ms) [raw result] [visualize] | 
| #1000246 | Magic Wand + hashes (wand size=3, columns=218-226): 211, 56, 227, 75 -> 0075fc5f|211, 54, 229, 73 ->... | 2016-08-01 10:36:58 Lua instructions: 59625k (5697 ms) [raw result] [visualize] | 
| #1000244 | Magic Wand + hashes (wand size=3, columns=218-226): 220, 266, 233, 283 -> 000266ca|225, 266, 233, 28... | 2016-08-01 09:48:26 Lua instructions: 33660k (3313 ms) [raw result] [visualize] | 
| #1000243 | Magic Wand + hashes (wand size=3, columns=218-226): 216, 177, 227, 194 -> 00632895|216, 177, 223, 19... | 2016-08-01 09:38:42 Lua instructions: 61320k (5847 ms) [raw result] [visualize] | 
| #1000235 | Magic Wand + hashes (wand size=3, columns=218-226): 139, 63, 230, 75 -> 0076f57c|222, 749, 237, 763 ... | 2016-08-01 08:59:28 Lua instructions: 13840k (1508 ms) [raw result] [visualize] | 
| #1000212 | java.lang.OutOfMemoryError: Java heap space | 2016-08-01 08:53:55 [raw result] [visualize] | 
| #1000230 | Magic Wand + hashes (wand size=3, columns=218-226): 220, 0, 232, 28 -> 001b8ae9|222, 0, 232, 28 -> 0... | 2016-08-01 08:41:46 Lua instructions: 24628k (2445 ms) [raw result] [visualize] | 
| #1000232 | Magic Wand + hashes (wand size=3, columns=218-226): 220, 480, 225, 484 -> 0002e2e9|224, 480, 229, 48... | 2016-08-01 08:37:40 Lua instructions: 28571k (2617 ms) [raw result] [visualize] | 
| #499 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-08-01 08:35:10 [raw result] [visualize] | 
| #500 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-08-01 08:35:10 [raw result] [visualize] | 
| #488 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-08-01 08:35:10 [raw result] [visualize] | 
| #1000187 | Magic Wand + hashes (wand size=3, columns=218-226): 211, 30, 241, 47 -> 00ca3f87|222, 748, 239, 765 ... | 2016-08-01 08:35:03 Lua instructions: 18746k (1890 ms) [raw result] [visualize] | 
| #1000218 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-08-01 08:35:00 [raw result] [visualize] | 
| #1000178 | Magic Wand + hashes (wand size=3, columns=218-226): 210, 708, 221, 720 -> 003cfa2e|210, 710, 221, 72... | 2016-08-01 02:37:01 Lua instructions: 30826k (3030 ms) [raw result] [visualize] | 
| #1000176 | Magic Wand + hashes (wand size=3, columns=218-226): 222, 746, 229, 759 -> 003ffc43|216, 748, 229, 76... | 2016-08-01 02:17:11 Lua instructions: 16044k (1752 ms) [raw result] [visualize] | 
| #1000175 | Magic Wand + hashes (wand size=3, columns=218-226): 218, 8, 222, 12 -> 00066be2|174, 52, 242, 69 -> ... | 2016-08-01 02:02:40 Lua instructions: 4109k (521 ms) [raw result] [visualize] | 
| #1000172 | Magic Wand + hashes (wand size=3, columns=218-226): 214, 102, 250, 125 -> 00b58cd0 | 2016-08-01 01:55:56 Lua instructions: 865k (211 ms) [raw result] [visualize] | 
| #1000173 | Magic Wand + hashes (wand size=3, columns=218-226): 214, 102, 250, 125 -> 00a132dd | 2016-08-01 01:55:32 Lua instructions: 865k (229 ms) [raw result] [visualize] | 
| #1000171 | Magic Wand + hashes (wand size=3, columns=218-226): 212, 1, 247, 39 -> 037323ae|212, 0, 247, 34 -> 0... | 2016-08-01 01:48:37 Lua instructions: 989k (200 ms) [raw result] [visualize] | 
| #1000170 | Magic Wand + hashes (wand size=3, columns=218-226): 213, 266, 227, 279 -> 006b035b|199, 208, 223, 23... | 2016-08-01 01:47:43 Lua instructions: 8811k (995 ms) [raw result] [visualize] | 
| #1000169 | Magic Wand + hashes (wand size=3, columns=218-226): 226, 30, 274, 43 -> 00ed2665|224, 30, 274, 43 ->... | 2016-08-01 01:26:58 Lua instructions: 729k (172 ms) [raw result] [visualize] | 
| #1003828 | Magic Wand + hashes (wand size=3, columns=218-226): 220, 142, 228, 150 -> 001de2f2|213, 100, 225, 10... | 2016-08-01 00:55:52 Lua instructions: 8890k [raw result] [visualize] | 
| #1000163 | java.lang.OutOfMemoryError: Java heap space | 2016-08-01 00:39:29 [raw result] [visualize] | 
| #1000162 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 23:21:04 [raw result] [visualize] | 
| #1000157 | Magic Wand + hashes (wand size=3, columns=218-226): 215, 440, 230, 456 -> 00385cf0|226, 438, 230, 45... | 2016-07-31 22:55:48 Lua instructions: 5511k (647 ms) [raw result] [visualize] | 
| #1000155 | Magic Wand + hashes (wand size=3, columns=218-226): 220, 0, 240, 11 -> 0015481d|215, 2, 240, 13 -> 0... | 2016-07-31 22:30:23 Lua instructions: 828k (203 ms) [raw result] [visualize] | 
| #1000154 | Magic Wand + hashes (wand size=3, columns=218-226): 155, 22, 229, 38 -> 00ff52d0 | 2016-07-31 22:30:23 Lua instructions: 1208k (244 ms) [raw result] [visualize] | 
| #1000150 | Magic Wand + hashes (wand size=3, columns=218-226): 152, 28, 229, 41 -> 00059e63|152, 24, 226, 41 ->... | 2016-07-31 22:25:21 Lua instructions: 1637k (279 ms) [raw result] [visualize] | 
| #1000149 | Magic Wand + hashes (wand size=3, columns=218-226): 150, 22, 224, 39 -> 01dfca0a|150, 26, 227, 39 ->... | 2016-07-31 22:25:21 Lua instructions: 1191k (227 ms) [raw result] [visualize] | 
| #1000153 | Magic Wand + hashes (wand size=3, columns=218-226): 215, 4, 223, 13 -> 000e43d3|222, 5, 247, 12 -> 0... | 2016-07-31 22:25:20 Lua instructions: 3198k (334 ms) [raw result] [visualize] | 
| #1000152 | Magic Wand + hashes (wand size=3, columns=218-226): 152, 28, 229, 41 -> 00059e63|152, 24, 226, 41 ->... | 2016-07-31 22:25:20 Lua instructions: 1637k (295 ms) [raw result] [visualize] | 
| #1000145 | Magic Wand + hashes (wand size=3, columns=218-226): 198, 646, 236, 656 -> 00fca128 | 2016-07-31 21:42:26 Lua instructions: 16638k (1734 ms) [raw result] [visualize] | 
| #1000143 | Magic Wand + hashes (wand size=3, columns=218-226): 218, 102, 227, 119 -> 003adbe6|204, 32, 237, 46 ... | 2016-07-31 21:31:35 Lua instructions: 5631k (540 ms) [raw result] [visualize] | 
| #1000142 | Magic Wand + hashes (wand size=3, columns=218-226): 224, 548, 246, 562 -> 004e906d|218, 102, 227, 11... | 2016-07-31 21:20:55 Lua instructions: 5748k (695 ms) [raw result] [visualize] | 
| #1000140 | Magic Wand + hashes (wand size=3, columns=218-226): 211, 56, 227, 75 -> 0075fc5f|211, 54, 229, 73 ->... | 2016-07-31 20:58:34 Lua instructions: 57365k (5454 ms) [raw result] [visualize] | 
| #1000137 | Magic Wand + hashes (wand size=3, columns=218-226): 218, 0, 233, 4 -> 00098a3e | 2016-07-31 20:55:06 Lua instructions: 3513k (341 ms) [raw result] [visualize] | 
| #1000139 | Magic Wand + hashes (wand size=3, columns=218-226): 218, 0, 233, 4 -> 00098a3e | 2016-07-31 20:55:06 Lua instructions: 3513k (350 ms) [raw result] [visualize] | 
| #1000132 | Magic Wand + hashes (wand size=3, columns=218-226): 208, 62, 221, 72 -> 00337878|190, 322, 234, 336 ... | 2016-07-31 20:46:08 Lua instructions: 56357k (5286 ms) [raw result] [visualize] | 
| #1000131 | Magic Wand + hashes (wand size=3, columns=218-226): 224, 30, 274, 43 -> 008bbce2|181, 272, 229, 284 ... | 2016-07-31 20:37:21 Lua instructions: 61808k (5807 ms) [raw result] [visualize] | 
| #1000130 | Magic Wand + hashes (wand size=3, columns=218-226): 226, 488, 252, 502 -> 007c6151|226, 638, 252, 65... | 2016-07-31 20:27:31 Lua instructions: 54141k (5174 ms) [raw result] [visualize] | 
| #1000125 | Magic Wand + hashes (wand size=3, columns=218-226): 226, 231, 237, 247 -> 002fed31|226, 231, 237, 24... | 2016-07-31 20:10:07 Lua instructions: 12413k (1251 ms) [raw result] [visualize] | 
| #1000124 | Magic Wand + hashes (wand size=3, columns=218-226): 225, 40, 229, 56 -> 000f1c08|171, 106, 228, 122 ... | 2016-07-31 20:06:13 Lua instructions: 86353k (8087 ms) [raw result] [visualize] | 
| #1000123 | Magic Wand + hashes (wand size=3, columns=218-226): 208, 69, 272, 80 -> 010d1881|207, 26, 256, 38 ->... | 2016-07-31 20:03:49 Lua instructions: 2107k (324 ms) [raw result] [visualize] | 
| #1000122 | Magic Wand + hashes (wand size=3, columns=218-226): 226, 368, 267, 378 -> 00a4afa1|187, 0, 268, 18 -... | 2016-07-31 20:02:35 Lua instructions: 2594k (289 ms) [raw result] [visualize] | 
| #419 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 20:02:18 [raw result] [visualize] | 
| #1000119 | Magic Wand + hashes (wand size=3, columns=218-226): 226, 93, 234, 105 -> 000d021d|220, 2, 242, 13 ->... | 2016-07-31 20:01:24 Lua instructions: 2667k (429 ms) [raw result] [visualize] | 
| #1000118 | LuaError: #380:11 vm error: java.lang.ArrayIndexOutOfBoundsException: 103124 | 2016-07-31 20:00:48 [raw result] [visualize] | 
| #1000114 | java.lang.OutOfMemoryError: Java heap space | 2016-07-31 19:54:19 [raw result] [visualize] | 
| #1000116 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:54:05 [raw result] [visualize] | 
| #1000035 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:50:51 [raw result] [visualize] | 
| #1000018 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:50 [raw result] [visualize] | 
| #1000038 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:50 [raw result] [visualize] | 
| #1000020 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:50 [raw result] [visualize] | 
| #1000039 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:49 [raw result] [visualize] | 
| #1000040 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:46 [raw result] [visualize] | 
| #309 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:50:45 [raw result] [visualize] | 
| #1000003 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:50:45 [raw result] [visualize] | 
| #1000021 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:45 [raw result] [visualize] | 
| #1000041 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:45 [raw result] [visualize] | 
| #1000024 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:44 [raw result] [visualize] | 
| #100 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:50:44 [raw result] [visualize] | 
| #1000013 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:50:44 [raw result] [visualize] | 
| #1000054 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:43 [raw result] [visualize] | 
| #1000010 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:50:43 [raw result] [visualize] | 
| #1000027 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:43 [raw result] [visualize] | 
| #1000086 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:37 [raw result] [visualize] | 
| #1000097 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:37 [raw result] [visualize] | 
| #1000104 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:36 [raw result] [visualize] | 
| #1000036 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:36 [raw result] [visualize] | 
| #1000055 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:36 [raw result] [visualize] | 
| #1000073 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:36 [raw result] [visualize] | 
| #1000076 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:36 [raw result] [visualize] | 
| #84 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:50:36 [raw result] [visualize] | 
| #1000084 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:36 [raw result] [visualize] | 
| #1000079 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:36 [raw result] [visualize] | 
| #1000083 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:36 [raw result] [visualize] | 
| #1000043 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:35 [raw result] [visualize] | 
| #1000109 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:35 [raw result] [visualize] | 
| #1000014 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:35 [raw result] [visualize] | 
| #1000056 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:35 [raw result] [visualize] | 
| #1000082 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:35 [raw result] [visualize] | 
| #1000062 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:35 [raw result] [visualize] | 
| #1000092 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:35 [raw result] [visualize] | 
| #1000093 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:35 [raw result] [visualize] | 
| #1000106 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:35 [raw result] [visualize] | 
| #1000087 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:35 [raw result] [visualize] | 
| #1000091 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:35 [raw result] [visualize] | 
| #1000088 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:35 [raw result] [visualize] | 
| #1000074 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:35 [raw result] [visualize] | 
| #1000081 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:35 [raw result] [visualize] | 
| #1000105 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:35 [raw result] [visualize] | 
| #1000042 | java.lang.OutOfMemoryError: Java heap space | 2016-07-31 19:50:34 [raw result] [visualize] | 
| #1000064 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:34 [raw result] [visualize] | 
| #1000028 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:34 [raw result] [visualize] | 
| #1000075 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:34 [raw result] [visualize] | 
| #1000031 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:34 [raw result] [visualize] | 
| #145 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:50:34 [raw result] [visualize] | 
| #1000030 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:34 [raw result] [visualize] | 
| #1000080 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:34 [raw result] [visualize] | 
| #1000045 | java.lang.OutOfMemoryError: Java heap space | 2016-07-31 19:50:33 [raw result] [visualize] | 
| #1000085 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:33 [raw result] [visualize] | 
| #1000102 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:33 [raw result] [visualize] | 
| #1000061 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:33 [raw result] [visualize] | 
| #1000107 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:33 [raw result] [visualize] | 
| #1000029 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:33 [raw result] [visualize] | 
| #1000047 | java.lang.OutOfMemoryError: Java heap space | 2016-07-31 19:50:32 [raw result] [visualize] | 
| #182 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:50:32 [raw result] [visualize] | 
| #1000032 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:32 [raw result] [visualize] | 
| #113 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:50:32 [raw result] [visualize] | 
| #178 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:50:32 [raw result] [visualize] | 
| #1000052 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:32 [raw result] [visualize] | 
| #1000096 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:32 [raw result] [visualize] | 
| #1000100 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:32 [raw result] [visualize] | 
| #115 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:50:32 [raw result] [visualize] | 
| #1000077 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:32 [raw result] [visualize] | 
| #92 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:50:32 [raw result] [visualize] | 
| #93 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:50:32 [raw result] [visualize] | 
| #87 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:50:32 [raw result] [visualize] | 
| #1000103 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:32 [raw result] [visualize] | 
| #1000101 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:32 [raw result] [visualize] | 
| #1000033 | java.lang.OutOfMemoryError: Java heap space | 2016-07-31 19:50:31 [raw result] [visualize] | 
| #1000089 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:31 [raw result] [visualize] | 
| #1000044 | java.lang.OutOfMemoryError: Java heap space | 2016-07-31 19:50:31 [raw result] [visualize] | 
| #1000053 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:50:31 [raw result] [visualize] | 
| #1000025 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:50:31 [raw result] [visualize] | 
| #1000012 | java.lang.OutOfMemoryError: Java heap space | 2016-07-31 19:50:30 [raw result] [visualize] | 
| #1000095 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:30 [raw result] [visualize] | 
| #1000019 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:30 [raw result] [visualize] | 
| #1000017 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:50:30 [raw result] [visualize] | 
| #1000108 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:30 [raw result] [visualize] | 
| #1000051 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:30 [raw result] [visualize] | 
| #1000112 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:29 [raw result] [visualize] | 
| #48 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 19:50:29 [raw result] [visualize] | 
| #1000111 | LuaError: #406:2 vm error: java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientCon... | 2016-07-31 19:50:29 [raw result] [visualize] | 
| #1000219 | java.lang.OutOfMemoryError: Java heap space | 2016-07-31 18:51:28 [raw result] [visualize] | 
| #1003745 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 18:51:22 [raw result] [visualize] | 
| #489 | java.io.IOException: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: No operat... | 2016-07-31 18:51:22 [raw result] [visualize] | 
| #1000141 | Magic Wand + hashes (wand size=3, columns=218-226): 217, 726, 222, 740 -> 0007dd00|198, 32, 246, 46 ... | 2016-07-31 18:42:49 Lua instructions: 5560k (656 ms) [raw result] [visualize] | 
| #1003958 | java.lang.OutOfMemoryError: Java heap space | 2016-07-31 18:31:57 [raw result] [visualize] | 
| #1000338 | Magic Wand + hashes (wand size=3, columns=218-226): 200, 99, 221, 111 -> 00496124 | 2015-08-03 21:11:22 Lua instructions: 8981k (873 ms) [raw result] [visualize] | 
| #183 | Magic Wand + hashes (wand size=3, columns=218-226): 226, 2, 238, 33 -> 00f25b50|226, 2, 238, 30 -> 0... | 2015-07-18 02:29:24 Lua instructions: 1210k (127 ms) [raw result] [visualize] | 
| #1000026 | Magic Wand + hashes (wand size=3, columns=218-226): 217, 6, 294, 18 -> 01ded4ab | 2015-07-18 02:23:35 Lua instructions: 13086k (1243 ms) [raw result] [visualize] | 
| #1000034 | Magic Wand + hashes (wand size=3, columns=218-226): 222, 1181, 243, 1195 -> 0073c3ae|224, 1180, 243,... | 2015-07-18 02:14:21 Lua instructions: 9757k (957 ms) [raw result] [visualize] | 
| #1000331 | Magic Wand + hashes (wand size=3, columns=218-226): 226, 256, 239, 262 -> 00089c0c|217, 260, 231, 26... | 2015-07-15 01:49:19 Lua instructions: 24979k (2274 ms) [raw result] [visualize] | 
| #1000301 | javax.imageio.IIOException: Can't get input stream from URL! | 2015-07-13 15:28:34 [raw result] [visualize] | 
| #1000327 | Magic Wand + hashes (wand size=3, columns=218-226): 222, 486, 226, 493 -> 00049aaf|214, 478, 221, 48... | 2015-07-12 19:32:50 Lua instructions: 24976k (2500 ms) [raw result] [visualize] | 
| #1000022 | Magic Wand + hashes (wand size=3, columns=218-226): 203, 6, 227, 19 -> 006a96a4|215, 38, 252, 53 -> ... | 2015-07-08 08:15:37 Lua instructions: 4728k (496 ms) [raw result] [visualize] | 
| #1000320 | Magic Wand + hashes (wand size=3, columns=218-226): 217, 8, 237, 22 -> 0025a479 | 2015-07-04 15:39:17 Lua instructions: 17034k (1630 ms) [raw result] [visualize] | 
| #1000315 | Magic Wand + hashes (wand size=3, columns=218-226): 218, 298, 225, 307 -> 0017941a|210, 230, 221, 23... | 2015-07-03 21:15:04 Lua instructions: 44729k (4334 ms) [raw result] [visualize] | 
| #1000313 | Magic Wand + hashes (wand size=3, columns=218-226): 218, 170, 228, 182 -> 0011c12a|218, 175, 228, 18... | 2015-07-03 19:20:38 Lua instructions: 49251k (4563 ms) [raw result] [visualize] | 
| #1000138 | Magic Wand + hashes (wand size=3, columns=218-226): 218, 0, 233, 4 -> 00098a3e | 2015-05-14 01:04:38 Lua instructions: 3513k (372 ms) [raw result] [visualize] | 
| #1000239 | Magic Wand + hashes (wand size=3, columns=218-226): 201, 214, 229, 243 -> 012251be|201, 218, 229, 24... | 2015-05-08 08:57:52 Lua instructions: 80247k (7475 ms) [raw result] [visualize] | 
| #1000205 | java.lang.OutOfMemoryError: Java heap space | 2015-05-03 08:41:09 [raw result] [visualize] | 
| #1000229 | Magic Wand + hashes (wand size=3, columns=218-226): 216, 180, 221, 184 -> 00054d62|209, 568, 232, 57... | 2015-05-02 11:05:41 Lua instructions: 26290k (2628 ms) [raw result] [visualize] | 
| #1000144 | Magic Wand + hashes (wand size=3, columns=218-226): 198, 646, 236, 656 -> 00fca128 | 2015-05-02 07:00:45 Lua instructions: 4826k (704 ms) [raw result] [visualize] | 
| #1000151 | Magic Wand + hashes (wand size=3, columns=218-226): 215, 4, 223, 13 -> 001c0fd0|222, 5, 247, 12 -> 0... | 2015-04-30 23:25:11 Lua instructions: 3198k (446 ms) [raw result] [visualize] | 
| #1000046 | Magic Wand + hashes (wand size=3, columns=218-226): 216, 0, 239, 4 -> 00102f96 | 2015-04-30 01:40:41 Lua instructions: 17548k (1753 ms) [raw result] [visualize] | 
| #1000238 | Magic Wand + hashes (wand size=3, columns=218-226): 152, 596, 229, 613 -> 03a71135|170, 196, 247, 21... | 2015-04-28 20:50:47 Lua instructions: 175745k (16113 ms) [raw result] [visualize] | 
| #1000233 | Magic Wand + hashes (wand size=3, columns=218-226): 222, 749, 237, 763 -> 007ec6ff|224, 748, 237, 76... | 2015-04-27 08:38:18 Lua instructions: 13919k (1390 ms) [raw result] [visualize] | 
| #1000241 | java.lang.IllegalArgumentException: image == null! | 2015-04-27 08:38:16 [raw result] [visualize] | 
| #1000078 | Magic Wand + hashes (wand size=3, columns=218-226): 201, 8, 229, 44 -> 0071f011|201, 9, 229, 44 -> 0... | 2015-04-13 20:31:18 Lua instructions: 4813k (589 ms) [raw result] [visualize] | 
| Snippet ID: | #406 | 
| Snippet name: | Magic Wand + Hashes (special case recognizer) | 
| Eternal ID of this version: | #406/1 | 
| Text MD5: | 72b272c3322fe4540c3fce5b47a37ac4 | 
| Author: | stefan | 
| Category: | image recognition | 
| Type: | Lua code - Image recognition | 
| Public (visible to everyone): | Yes | 
| Archived (hidden from active list): | No | 
| Created/modified: | 2015-02-05 19:56:36 | 
| Source code size: | 5199 bytes / 202 lines | 
| Pitched / IR pitched: | No / Yes | 
| Views / Downloads: | 2640 / 236 | 
| Referenced in: | [show references] |