どちらも、ご予約無しの飛び乗りOKでお待ちしてます。
午後は、夕釣りアオリイカ船(中オモリ使用)で受付中です。
13日(火)のマダイ五目船は、マダイ中心で富浦沖へ行きます。受付中です。
乗合船の予定表です。
○は受付中。◎は出船確定。×は出船無し。〆は締切。
アオリイカ船の、中は中オモリでテはティップランです。
[table id=3 /]
ご予約は090-6086-3239か090-3228-6370へ、AM4:00~PM8:30にお願いします。
●マダイ五目船● 5時半集合
マダイ 0.3-4.3kg 1-3枚
イナダ 1kg強 4-10本
ワラサ 不発
外道に、イサキ・イトヨリダイ・ハタ・アマダイ
勝山-金谷沖 40-55m
勝山沖でマダイとイナダを釣ってからメインのポイントへ。
着いてすぐにイナダの入れ食い!
マダイも交じって賑やか♪
揚げたりバレたりそれぞれでしたが、みなさん楽しそう♪
食わなくなって南下。
マダイとイナダをダブルで取ったり、貸し竿の方がマダイをゲットしたり
明日も気合充分で行って来ます。
マダイ狙いの後、ワラサやイナダも狙います。
ハリス4~6号 ビシL型80号

●カワハギ船●5時半集合
受付中。
オモリ25~30号 アサリ¥1100
●午後カワハギ船● 12時半集合
土日休日で受付ます。
オモリ25~30号 アサリ¥1100
●スルメ&ヤリ船● 5時半集合
23-32cm 1-15杯
川名前-白浜沖160-190m
川名前でスルメを見てから、白浜沖に移動しました。
反応が無くて東へ東へ…。
ようやく反応を見てからは、ポツポツ拾えました。
海が悪いし渋いしで、ぞろぞろと墨や足ばかりで溜まりませんでした。
トップは蓮田市の高橋さんでした。
プラヅノ11~18cm 5本から好きなだけ オモリ120~150号

●夕釣りアオリイカ船● 14時集合
未読5198件 – Yahoo!メール// <![CDATA[
/* // Replace attachEvent/detachEvent (IE) or addEventListener/removeEventListener (non-IE) // so we can spy on all events. Recent events get saved into globals.events so they'll // be available for detailed error logs. // I'd like to do this only if NeoConfig says to report detailed error logs, but NeoConfig // doesn't exist yet. // // There's some useful debugging code in here, which has been commented out. Uncomment code // labelled "Debug 1" to write all events to the console. Uncomment code labelled "Debug 2" // to write all add/remove/attach/detach event handlers to the console. */ function interceptEventHandlers() { var myListener, /*listenerId = 0,*/ /* Used for both Debug 1: Show all events & Debug 2: Track event handlers */ w = window, doc = document, globals = w.globals = { }, events = globals.events = [ ], /* An array to store recent events. The whole point of this code. */ ep = Element.prototype, elementAttach = ep.attachEvent, /* The original attach, detach, add, remove handlers */ elementDetach = ep.detachEvent, /* for window, document and element. */ /*windowAttach = w.attachEvent,*/ /*windowDetach = w.detachEvent,*/ documentDetach = doc.detachEvent, documentAttach = doc.attachEvent, elementAdd = ep.addEventListener, elementRemove = ep.removeEventListener, windowAdd = w.addEventListener, windowRemove = w.removeEventListener, documentAdd = doc.addEventListener, documentRemove = doc.removeEventListener, handlers = [ ]; /* Stores handler intercept func to user func mapping */ /* Where to write the next event in the array, so we can use it as a circular buffer. */ events.idx = 0; /* Intercept the appropriate calls, depending on the browser. */ if (elementAttach) { ep.attachEvent = getAttach(elementAttach); ep.detachEvent = getDetach(elementDetach); doc.attachEvent = getAttach(documentAttach); doc.detachEvent = getDetach(documentDetach); /* Can't do this for some reason… I was having a similar problem with element.prototype, but it magically went away. The problem with window might be fixable, but we don't attach many handlers to it, so I'm not going to worry about it. w.attachEvent = getAttach(windowAttach); w.detachEvent = getDetach(windowDetach); */ } /* Don't use 'else' here – I think IE9 supports both event models. I don't know which model Neo uses, so just hook both. */ if (elementAdd) { /* Modifying Element.prototype doesn't work on Firefox. */ ep.addEventListener = getAdd(elementAdd); ep.removeEventListener = getRemove(elementRemove); w.addEventListener = getAdd(windowAdd); w.removeEventListener = getRemove(windowRemove); doc.addEventListener = getAdd(documentAdd); doc.removeEventListener = getRemove(documentRemove); } /* Get a function to intercept attachEvent */ function getAttach(fn) { return function(type, listener) { myListener = getMyListener(listener); handlers.push([ type, listener, 0, myListener ]); /* Debug 2: Track event handlers window.console && console.log("Adding event handler " + (listenerId-1) + " for " + type + " on " + getElId(this)); handlers[handlers.length-1][4] = getElId(this); handlers[handlers.length-1][5] = listenerId-1; */ return fn.call(this, type, myListener); }; } /* Get a function to intercept detachEvent */ function getDetach(fn) { return function(type, listener) { listener = removeHandler(type, listener, 0); return fn.call(this, type, listener); }; } /* Get a function to intercept addEventListener */ function getAdd(fn) { return function(type, listener, capture) { /* Debug 2: Track event handlers var h, i = 0; while (h = handlers[i++]) { if ((h[0] == type) && ((h[1] == listener) || (h[3] == listener)) && (h[2] == capture)) window.console && console.error("Adding an identical handler for " + type + " on " + getElId(this)); } */ myListener = getMyListener(listener); handlers.push([ type, listener, capture, myListener ]); /* Debug 2: Track event handlers window.console && console.log("Adding event handler " + (listenerId-1) + " for " + type + " on " + getElId(this)); handlers[handlers.length-1][4] = getElId(this); handlers[handlers.length-1][5] = listenerId-1; */ fn.call(this, type, myListener, capture); }; } /* Get a function to intercept removeEventListener */ function getRemove(fn) { return function(type, listener, capture) { listener = removeHandler(type, listener, capture); fn.call(this, type, listener, capture); }; } /* Remove a handler from our array. */ function removeHandler(type, listener, capture) { var h, i = 0; /* Find the right handler and remove it from our array. */ while (h = handlers[i]) { if ((h[0] == type) && ((h[1] == listener) || (h[3] == listener)) && (h[2] == capture)) { handlers.splice(i, 1); break; } i++; } /* Debug 2: Track event handlers if (!h) window.console && console.error("Unable to remove handler for " + type + " – not found. Has it already been removed?"); else window.console && console.log("Removing event handler " + h[5] + " for " + h[0] + " on " + h[4] + ". " + handlers.length + " handlers still attached."); */ return h ? h[3] : listener; } /* Get an xpath to the given element This path may not uniquely identify the element, e.g. all list view items will return the same path. Use: iterator = document.evaluate(xpath, document, null, XPathResult.ANY_TYPE, null); while (node = iterator.iterateNext()) window.console && console.log(node); To see all matched elements. */ function getElId(el) { var p, i, index, id, next = el, sel = ""; while (next) { if (p) { for (i = 0; i
19) events.idx = 0; events[events.idx] = rec; } /* Wrap the call to the event handler in a try/catch so we can get the call stack if an exception occurs. */ try { /* Skype’s plugin subscribes to events with an object that implements the EventListener interface */ if (typeof listener == “object”) return listener.handleEvent(e); if (listener.call) return listener.call(this, e); /* Firebug’s console event handler function doesn’t have a ‘call’ method. Just call the function directly when call() isn’t available. */ return listener(e); } catch (ex) { yui.use(‘common-utils-error’, function(Y) { Y.common.Utils.error.report(‘Exception in event handler: ‘ + ex.toString(), ‘WRAPPED_UNHANDLED_EXCEPTION’, 1, 1, 1); }); } } } } /* Intercept setTimeout() & setInterval(), just so we can wrap the callbacks in try/catch, so we can get the stack. */ function interceptTimeouts(Y) { var originalSetTimeout = setTimeout, originalSetInterval = setInterval; window.setTimeout = function(f, t) { var saveEx; /* TODO: Don’t do this on IE. It won’t hurt anything, but IE */ /* (at least 8 & below) doesn’t put the stack on the exception */ try { throw new Error(“dummy exception to get stack”); } catch (setEx) { saveEx = setEx; } return originalSetTimeout(function() { try { typeof f == “function” && f(); typeof f == “string” && eval(f); } catch (ex) { yui.use(‘common-utils-error’, function(Y) { Y.common.Utils.error.report(‘Exception in setTimeout callback: ‘ + ex.toString(), ‘WRAPPED_UNHANDLED_EXCEPTION’, 1, 1, 1, saveEx); }); } }, t); }; window.setInterval = function(f, t) { var saveEx; /* TODO: Don’t do this on IE. It won’t hurt anything, but IE */ /* (at least 8 & below) doesn’t put the stack on the exception */ try { throw new Error(“dummy exception to get stack”); } catch (setEx) { saveEx = setEx; } return originalSetInterval(function() { try { typeof f == “function” && f(); typeof f == “string” && eval(f); } catch (ex) { yui.use(‘common-utils-error’, function(Y) { Y.common.Utils.error.report(‘Exception in setInterval callback: ‘ + ex.toString(), ‘WRAPPED_UNHANDLED_EXCEPTION’, 1, 1, 1, saveEx); }); } }, t); }; } /* IE7 doesn’t define window.Element. */ window.Element && interceptEventHandlers(); interceptTimeouts();
// ]]>// 0) {;} } window.NeoGV = window.NeoGV || {}; NeoGV.startTime = (new Date()).getTime();
// ]]>

– – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – –
探見丸が使えます。
新盛丸の探見丸は、ちゃんと深場のイカも映ります。
両船ともスマホで見れるようになりました。アプリの探見丸スマートをお使い下さい。
しょう(艫居正悟)は、FacebookとLINEもやってます。絡んでください(^^)
従業員募集
船頭兼中乗り(50歳以下)を募集します。
船頭を3人体制にして更なるサービスの向上を目指します。
お電話をお待ちしてます。
◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆
*…*…*…*…*…*…*…*…*…*…*…*…*…*…*…
新盛丸
http://www.sinseimaru.com/
━━━━━━━━━━━━━━━━━━━━
住所:千葉県安房郡鋸南町勝山 273-1
TEL:.090-6086-3239
*…*…*…*…*…*…*…*…*…*…*…*…*…*…*…
◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆
引用元:12月11日(日) スルメ&ヤリイカ マダイ五目 晴れ・・・