home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / ESIE.ZIP / ABOARD < prev    next >
Encoding:
Text File  |  1986-07-02  |  8.6 KB  |  281 lines

  1. goal is board.reason
  2.  
  3. legalanswers are yes no *
  4.  
  5. if us_flag is yes
  6.   and foreign_territorial_waters is no
  7.   and government_vessel is no
  8. then board.reason is US.vessel.within.jurisdiction.
  9.                             
  10. if government_vessel is yes 
  11. then board.reason is non-existent...Government.vsls.soveriegn.
  12.  
  13. if us_tw is yes
  14.   and us_flag is no
  15.   and extended_consequences is yes
  16. then board.reason is fully.subject.to.US.law...MLEMan,.M-2
  17.  
  18. if us_tw is yes
  19.   and us_flag is no
  20.   and flag_consul is yes
  21. then board.reason is fully.subject.to.US.law...MLEMan,.M-2
  22.  
  23. if internal_waters is yes
  24.   and us_flag is no
  25.   and extended_consequences is yes
  26. then board.reason is fully.subject.to.US.law...MLEMan,.M-2                     
  27.  
  28. if internal_waters is yes
  29.   and us_flag is no
  30.   and flag_consul is yes
  31. then board.reason is fully.subject.to.US.law...MLEMan,.M-2
  32.  
  33. if foreign_territorial_waters is yes
  34.   and entry_permission is yes
  35.   and statement_objection is yes
  36. then board.reason is based.on.the.permission.of.government.
  37.  
  38. if foreign_territorial_waters is yes
  39.   and puget_sound is yes
  40.   and sockeye_convention is yes
  41.   and hot_pursuit is yes
  42. then board.reason is Fraser.River.Sockeye.convention..16USC776
  43.  
  44. if foreign_territorial_waters is yes
  45.   and entry_permission is no
  46.  then board.reason is non-existent...Need.permission.of.state.
  47.  
  48. if us_flag is no and 
  49.    valid_foreign_flag is yes and
  50.    foreign_territorial_waters is no
  51.    and statement_objection is yes
  52. then board.reason is  Stateless.vessel...International.treaty
  53.  
  54. if contiguous_zone is yes 
  55.   and innocent_passage is no            
  56.   and force_majeure is no
  57.   then board.reason is Customs.laws.
  58.  
  59. if contiguous_zone is yes
  60.   and force_majeure is yes
  61.   and reason_to_believe_crime is no
  62. then board.reason is Verify.Force.Majeure...only
  63.  
  64. if contiguous_zone is yes
  65.   and reason_to_believe_crime is yes
  66. then board.reason is Customs.laws..(Better.warn.the.boss...)
  67.  
  68. if contiguous_zone is yes
  69.    and nite_time is yes
  70.    and vsl_w/o_lites is yes
  71. then board.reason is presumption.of.smuggling.under.19USC.
  72.                      
  73. if contiguous_zone is no           
  74.    and origin_cont_zone is yes
  75.    and hot_pursuit is yes
  76. then board.reason is constructive.presence..19USC1568,1587
  77.  
  78. if contiguous_zone is no
  79.    and contact_boat is yes
  80.    and contact_boat_violation is yes
  81.    and adjacent is yes
  82. then board.reason is constructive.presence...19USC
  83.                  
  84. if atlantic is yes
  85.    then pacific is no
  86.      
  87. if Atlantic is yes and UK_flag is yes and British_treaty_area is yes and 
  88.    statement_objection is yes 
  89. then board.reason is US/UK.agreement.
  90.  
  91. if FCZ is yes
  92.   and engaged_in_fishing is yes
  93.   and highly_migratory_species is no
  94.   and fishery_research is no
  95. then board.reason is Fisheries.Conservation.&.Mgt.Act,.16USC1801.
  96.  
  97. if Pacific is yes
  98.   and INPFC is yes      
  99.   and anadromous_likely_catch is yes
  100.   and fishery_research is no
  101.   and CA_flag is yes
  102. then board.reason is North.Pacific.Fisheries.INPFC,.16USC1021
  103.  
  104. if Pacific is yes
  105.   and INPFC is yes
  106.   and anadromous_likely_catch is yes
  107.   and fishery_research is no
  108.   and JA_flag is yes
  109. then board.reason is North.Pacific.Fisheries.INPFC,.16USC1021
  110.  
  111. if Pacific is yes
  112.   and IPHC is yes
  113.   and CA_flag is yes
  114.   and fishery_research is no
  115.   and foreign_territorial_waters is no
  116. then board.reason is IPHC,.16USC772.&.50CFR.301
  117.  
  118. if FCZ is no
  119.   and engaged_in_fishing is yes
  120.   and over_continental_shelf is yes
  121.   and csfr is yes
  122.   and fishery_research is no
  123. then board.reason is FCMA,.exception...MLE.Manual,.p.3-11
  124.                               
  125. if FCZ is no
  126.   and engaged_in_fishing is yes
  127.   and anadromous_migratory_range is yes
  128.   and anadromous_likely_catch is yes
  129.   and fishery_research is no
  130. then board.reason is FCMA,.exception..MLE.Manual,.p.3-11
  131.                                           
  132.  
  133. if actually_fishing is yes then engaged_in_fishing is yes
  134.  
  135. if fishery_support is yes then engaged_in_fishing is yes
  136.                  
  137. if valid_flag_state is yes
  138.    and foreign_govt_permission is yes
  139.    and statement_objection is yes
  140. then board.reason is board.on.behalf.of.flag.state.and.its.laws.
  141.                              
  142. if master_permission is yes
  143.   and within_30_miles is no
  144.   then board.reason is  consent.boarding...At.master's.pleasure.
  145.  
  146. if master_permission is no
  147.   then board.reason is nil...I've.run.out.of.things.to.check.
  148.  
  149. question master_permission is
  150. "Can you get master's permission for a consent boarding?"
  151.  
  152. question within_30_miles is 
  153. "Are we within 30 miles of this vessel's flag state?"
  154.       
  155. question reason_to_believe_crime is
  156. "Do you have reason to believe that vessel has committed a violation of law?"
  157.                     
  158. question statement_objection is
  159. "Do you have a Statement of No Objection?"
  160.  
  161. question foreign_govt_permission is
  162. "Do you have permission of flag state to board?"
  163.                             
  164. question entry_permission is
  165. "Do you have permission of the state whose territory you wish to enter?"
  166.     
  167. question atlantic is
  168. "Are we in the Atlantic area?"
  169.  
  170. question pacific is
  171. "Are we in the Pacific area?"
  172.                     
  173. question puget_sound is 
  174. "Are we in Puget Sound? (See MLEMan, 3-45 for exact geography)"
  175.  
  176. question sockeye_convention is 
  177. "Are we enforcing the Sockeye Convention?"
  178.  
  179. question hot_pursuit is 
  180. "Do we have a valid hot pursuit case here? Continuous contact since 
  181. detection?" 
  182.                        
  183. question origin_cont_zone is
  184. "Did a violation of US law by this vessel originate in contiguous zone?"
  185.  
  186. question contact_boat is
  187. "Is this vessel in contact with a vessel from the contiguous zone?"
  188.                              
  189. question contact_boat_violation is
  190. "Did contact boat commit a violation of US law within contiguous zone?"
  191.  
  192. question adjacent is
  193. "Is this mother ship in waters ADJACENT to Customs Waters?"
  194.  
  195. question nite_time is
  196. "Is it night out?  (Between sunset and sunrise)"
  197.  
  198. question vsl_w/o_lites is
  199. "Is this bozo running without nav lights? (or any lights)"
  200.  
  201.  
  202. question british_treaty_area is
  203. "Within the US/UK jurisdictional agreement area? (S of Bermuda, W of 35W)"
  204.  
  205. question UK_flag is
  206. "Is this a British flag vessel?"
  207. question CA_flag is
  208. "Is this a Canadian flag vessel?"
  209. question JA_flag is
  210. "Is this a Japanese flag vessel?"
  211.  
  212. question highly_migratory_species is
  213. "Is this a tuna boat (fishing for highly migratory species)?" 
  214.  
  215. question actually_fishing is
  216. "Is this vessel actually fishing or searching for fish?"
  217.  
  218. question fishery_support is
  219. "Does this vessel work in support of fishing vessels?"
  220.  
  221. question over_continental_shelf is
  222.   "Is this foreign fishing vessel over the US continental shelf?"
  223.  
  224. question csfr is
  225.   "Is this vessel fishing in a manner likely to take crab?"
  226.  
  227. question anadromous_migratory_range is
  228.   "Is vessel fishing within the migratory range of anadromous fish (salmon)?"
  229.  
  230. question anadromous_likely_catch is
  231.   "is the vessel fishing in a manner likely to take said anadromous species?"
  232.  
  233. question IPHC is
  234.   "Is this a halibut boat subject to International Pacific Halibut Convention?"
  235.                        
  236. question INPFC is
  237.   "Is this a salmon vessel subject to INPFC in North Pacific?"
  238.  
  239. question fishery_research is 
  240.   "Is this a scientific research venture (non-commercial quantities)?"
  241.  
  242. question us_flag is "Is this vessel of U. S. flag?"
  243.  
  244. question foreign_territorial_waters is 
  245. "Is this vessel in the territorial waters of another country?"       
  246.                              
  247. question government_vessel is
  248. "Is this a government vessel? Such as law enforcement vessels and warships."  
  249.  
  250. question valid_foreign_flag is 
  251. "Does the document check with flag state indicate stateless vessel?"
  252.  
  253. question us_tw is 
  254. "Is vessel in the United States territorial sea (3 miles)?"
  255.                          
  256. question contiguous_zone is 
  257. "Is vessel in the United States Contiguous Zone?"
  258.  
  259. question innocent_passage is 
  260. "Is vessel in innocent passage through US waters?"
  261.                                                                                
  262. question FCZ is 
  263. "Is vessel in the US FCZ?  That is between 3 and 200 miles from the US coast."
  264.  
  265. question force_majeure is 
  266. "Is vessel in US waters as a result of force majeure?"
  267.  
  268. question extended_consequences is 
  269. "Has vessel violated US laws, consequences of which extend beyond vessel 
  270. itself?"
  271.                         
  272. question flag_consul is
  273. "Has consul of the flag state requested US assistance?"
  274.  
  275. question internal_waters is 
  276. "Is vessel within the internal waters of the United States?"
  277.  
  278.  
  279. answer is "Your basis to board is
  280.  " board.reason
  281.