code stringlengths 2 1.05M | repo_name stringlengths 5 101 | path stringlengths 4 991 | language stringclasses 3 values | license stringclasses 5 values | size int64 2 1.05M |
|---|---|---|---|---|---|
<div class="col-xs-8 t-center">
<div class="btn-group">
<a href="#/{{previousDate | date:'yyyy-MM-dd'}}/diaries" class="btn btn-default">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<button type="button" class="btn btn-default">{{date | date:'EEEE d MMMM'}}</button>
<a href="#/{{nextDate | date:'yyyy-MM-dd'}}/diaries" class="btn btn-default">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
</div>
<div class="col-xs-3 t-center">
<div class="btn-group" id="btn-copy-day">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
Copier <span class="caret"></span>
</button>
<ul class="dropdown-menu dropdown-menu-right" role="menu">
<li ng-repeat="date in lastDates"><a href="#" ng-click="copyDay($event, date)">{{date | date:'EEEE d MMMM'}}</a></li>
<li class="divider"></li>
<li><a href="#"
datepicker-popup="'yyyy-MM-dd'"
ng-model="dtCopyDay"
is-open="openDTCopyDay"
show-button-bar="false"
show-weeks="false"
ng-click="showDTCopyDay($event)">Autre</a></li>
</ul>
</div>
</div>
<div style="display: none;">
<datepicker ng-model="dtCopyDay"></datepicker>
</div>
<!-- Diaries table -->
<table class="table">
<tbody ng-repeat="(mealId, meal) in meals" class="diaries_body">
<!-- Diaries header -->
<tr ng-switch on="mealId" class="diaries_header">
<td colspan="2">
<b>{{meal}}</b>
</td>
<!-- <td>
<div class="btn-group">
<button type="button" class="btn btn-default btn-sm" ng-click="copyMeal($event, mealId, previousDate)">Copier hier</button>
</div>
<div class="btn-group">
<button type="button" class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown">
Copier depuis date <span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu">
<li ng-repeat="date in lastDates"><a href="#" ng-click="copyMeal($event, mealId, date)">{{date | date:'EEEE dd MMMM'}}</a></li>
<li class="divider"></li>
<li><a href="#">Autre</a></li>
</ul>
</div>
</td> -->
<td ng-switch-when="1">Q</td>
<td ng-switch-when="1">C</td>
<!-- <td ng-switch-when="1">Protéines</td>
<td ng-switch-when="1">Glucides</td>
<td ng-switch-when="1">Lipides</td> -->
</tr>
<!-- Diaries lines -->
<tr ng-repeat="d in diaries[mealId] track by $index" ng-dblclick="editQuantity[d.id] = true;">
<td>{{d.brand_name}}</td>
<td>{{d.name}}</td>
<td ng-show="!editQuantity[d.id]">{{d.quantity | noZeroDecimal}} {{d.unit}}<span ng-if="d.unit != '' && d.quantity > 1 && d.unit !== null && ['g', 'ml'].indexOf(d.unit) == -1">s</span></td>
<td ng-show="editQuantity[d.id]" style="padding: 4px 8px">
<div class="form-inline">
<input type="text" class="form-control input-sm add_food_quantity" ng-model="d.quantity" ng-enter="saveEdit($event, d.id, mealId)" style="height: 30px">
<a href="#" ng-click="saveEdit($event, d.id, mealId)" style="padding-top: 2px"><span class="glyphicon glyphicon-ok"></span></a>
</div>
</td>
<td>{{Math.round(d.calories) | noZeroDecimal}}</td>
<!-- <td>{{Math.round(d.proteins) | noZeroDecimal}}</td>
<td>{{Math.round(d.carbohydrates) | noZeroDecimal}}</td>
<td>{{Math.round(d.lipids) | noZeroDecimal}}</td> -->
<td class="diary_action">
<div class="btn-group">
<a class="dropdown-toggle" data-toggle="dropdown" class="pointer">
<span class="glyphicon glyphicon-list"></span>
</a>
<ul class="dropdown-menu pull-right" role="menu">
<li ng-repeat="(mId, mName) in meals" ng-if="mId != mealId" ng-click="copy($event, d.id, mealId, mId)"><a href="#">Copier -> {{mName}}</a></li>
<li class="divider"></li>
<li ng-repeat="(mId, mName) in meals" ng-if="mId != mealId" ng-click="move($event, d.id, mealId, mId)"><a href="#">Déplacer -> {{mName}}</a></li>
</ul>
</div>
</td>
<td class="diary_action"><a href="#" ng-click="showEdit($event, d.id, mealId)"><span class="glyphicon glyphicon-pencil"></span></a></td>
<td class="diary_action"><a href="#" ng-click="delete($event, d.id, mealId)"><span class="glyphicon glyphicon-trash"></span></a></td>
</tr>
<!-- Add manual line -->
<tr ng-show="formAddFood[mealId] == 'manual'">
<td></td>
<td class="manual_diary_line"><input type="text" ng-model="manualDiary[mealId].name" class="form-control input-sm manual_diary_input" ng-enter="addManual($event, mealId)" placeholder="Plat" show-focus="focus == ('manual' + mealId)"></td>
<td class="manual_diary_line">
<!-- <div class="form-inline"> -->
<input type="text" ng-model="manualDiary[mealId].quantity" class="form-control input-sm manual_diary_input" style="width: 100px" placeholder="100 g" ng-enter="addManual($event, mealId)">
<!-- </div> -->
</td>
<td class="manual_diary_line"><input type="text" ng-model="manualDiary[mealId].calories" class="form-control input-sm manual_diary_input" style="width: 50px" placeholder="kcal" ng-enter="addManual($event, mealId)"></td>
<td class="manual_diary_line"><input type="text" ng-model="manualDiary[mealId].proteins" class="form-control input-sm manual_diary_input" style="width: 50px" placeholder="g" ng-enter="addManual($event, mealId)"></td>
<td class="manual_diary_line"><input type="text" ng-model="manualDiary[mealId].carbohydrates" class="form-control input-sm manual_diary_input" style="width: 50px" placeholder="g" ng-enter="addManual($event, mealId)"></td>
<td class="manual_diary_line"><input type="text" ng-model="manualDiary[mealId].lipids" class="form-control input-sm manual_diary_input" style="width: 50px" placeholder="g" ng-enter="addManual($event, mealId)"></td>
<td class="diary_action">
<a href="#" style="padding-top: 2px" ng-click="addManual($event, mealId)"><span class="glyphicon glyphicon-ok"></span></a>
</td>
<td colspan="2"></td>
</tr>
<!-- Total meal -->
<tr class="line_total">
<td class="line_total_td">
<div class="btn-group">
<button type="button" class="btn btn-sm btn-default dropdown-toggle" data-toggle="dropdown">
<span ng-if="formAddFood[mealId] == 'food'" class="glyphicon glyphicon-list"></span>
<span ng-if="formAddFood[mealId] == 'recipe'" class="glyphicon glyphicon-cutlery"></span>
<span ng-if="formAddFood[mealId] == 'manual'" class="glyphicon glyphicon-wrench"></span>
<span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu">
<li><a href="#" ng-click="changeForm('food', mealId, $event)">Aliments</li>
<li><a href="#" ng-click="changeForm('recipe', mealId, $event)">Recettes</li>
<li><a href="#" ng-click="changeForm('manual', mealId, $event)">Manuel</li>
</ul>
</div>
</td>
<td>
<!-- Foods search and recipes list -->
<input type="text" class="form-control input-sm" ng-model="food[mealId]" typeahead="food as food.name for food in foodsList | filter:{name: $viewValue}:autocompleteComparator" ng-show="formAddFood[mealId] == 'food'" placeholder="Aliment" typeahead-on-select="onSelectFood(mealId)" show-focus="focus == ('food' + mealId)">
<input type="text" class="form-control input-sm" ng-model="recipe[mealId]" typeahead="recipe as recipe.name for recipe in recipes | filter:$viewValue:autocompleteComparator" ng-show="formAddFood[mealId] == 'recipe'" placeholder="Recette" typeahead-on-select="onSelectRecipe(mealId)" show-focus="focus == ('recipe' + mealId)">
</td>
<td>
<div class="form-inline" ng-show="formAddFood[mealId] == 'food'">
<input type="text" class="form-control input-sm add_food_quantity" ng-model="quantity[mealId]" ng-enter="addFood($event, mealId)" placeholder="100 g" show-focus="focus == ('foodQuantity' + mealId)">
<a href="#" ng-click="addFood($event, mealId)"><span class="glyphicon glyphicon-ok"></span></a>
</div>
<div class="form-inline" ng-show="formAddFood[mealId] == 'recipe'">
<input type="text" class="form-control input-sm add_food_quantity" ng-model="quantity[mealId]" ng-enter="addRecipe($event, mealId)" placeholder="1 part" show-focus="focus == ('recipeQuantity' + mealId)">
<a href="#" ng-click="addRecipe($event, mealId)"><span class="glyphicon glyphicon-ok"></span></a>
</div>
</td>
<td>{{totalMeals[mealId].calories | noZeroDecimal}}</td>
<!-- <td>{{totalMeals[mealId].proteins | noZeroDecimal}}</td>
<td>{{totalMeals[mealId].carbohydrates | noZeroDecimal}}</td>
<td>{{totalMeals[mealId].lipids | noZeroDecimal}}</td> -->
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
<!-- Total -->
<tbody class="diaries_body">
<tr id="diaries_total">
<td colspan="2"></td>
<td>Total</td>
<td>{{total.calories}}</td>
<!-- <td>{{total.proteins}}</td>
<td>{{total.carbohydrates}}</td>
<td>{{total.lipids}}</td>
<td colspan="3"></td> -->
<td colspan="6"></td>
</tr>
<tr>
<td colspan="2"></td>
<td>Objectifs</td>
<td>{{goal.calories | noZeroDecimal}}</td>
<!-- <td>{{goal.proteins | noZeroDecimal}}</td>
<td>{{goal.carbohydrates | noZeroDecimal}}</td>
<td>{{goal.lipids | noZeroDecimal}}</td>
<td colspan="3"></td> -->
<td colspan="6"></td>
</tr>
<tr>
<td colspan="2"></td>
<td>Restant</td>
<td>{{goal.calories - total.calories}}</td>
<!-- <td>{{goal.proteins - total.proteins}}</td>
<td>{{goal.carbohydrates - total.carbohydrates}}</td>
<td>{{goal.lipids - total.lipids}}</td>
<td colspan="3"></td> -->
<td colspan="6"></td>
</tr>
</tbody>
</table>
| skurty/nutrition | app/views/diaries/m_index.html | HTML | mit | 9,751 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc on Thu Jul 25 13:03:58 EDT 2013-->
<TITLE>
Javadocs: ComputationalGeometry
</TITLE>
<SCRIPT type="text/javascript">
targetPage = "" + window.location.search;
if (targetPage != "" && targetPage != "undefined")
targetPage = targetPage.substring(1);
if (targetPage.indexOf(":") != -1 || (targetPage != "" && !validURL(targetPage)))
targetPage = "undefined";
function validURL(url) {
var pos = url.indexOf(".html");
if (pos == -1 || pos != url.length - 5)
return false;
var allowNumber = false;
var allowSep = false;
var seenDot = false;
for (var i = 0; i < url.length - 5; i++) {
var ch = url.charAt(i);
if ('a' <= ch && ch <= 'z' ||
'A' <= ch && ch <= 'Z' ||
ch == '$' ||
ch == '_') {
allowNumber = true;
allowSep = true;
} else if ('0' <= ch && ch <= '9'
|| ch == '-') {
if (!allowNumber)
return false;
} else if (ch == '/' || ch == '.') {
if (!allowSep)
return false;
allowNumber = false;
allowSep = false;
if (ch == '.')
seenDot = true;
if (ch == '/' && seenDot)
return false;
} else {
return false;
}
}
return true;
}
function loadFrames() {
if (targetPage != "" && targetPage != "undefined")
top.classFrame.location = top.targetPage;
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<FRAMESET cols="20%,80%" title="" onLoad="top.loadFrames()">
<FRAMESET rows="30%,70%" title="" onLoad="top.loadFrames()">
<FRAME src="overview-frame.html" name="packageListFrame" title="All Packages">
<FRAME src="allclasses-frame.html" name="packageFrame" title="All classes and interfaces (except non-static nested types)">
</FRAMESET>
<FRAME src="overview-summary.html" name="classFrame" title="Package, class and interface descriptions" scrolling="yes">
<NOFRAMES>
<H2>
Frame Alert</H2>
<P>
This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client.
<BR>
Link to<A HREF="overview-summary.html">Non-frame version.</A>
</NOFRAMES>
</FRAMESET>
</HTML>
| manorius/Processing | libraries/ComputationalGeometry/reference/index.html | HTML | mit | 2,587 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>LeetCode | Edit Distance in Python - Java, Python, Machine Learning, LeetCode</title>
<meta name="keywords" content="Java, Python, Machine Learning, LeetCode">
<meta name="description" content="The personal site of Alain, MLer and programmer. I write about Java, Python, Machine Learning and my code on LeetCode Here.">
<meta name="author" content="Alain">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="/static/favicon.ico" rel="shortcut icon">
<link href="/static/css/bootstrap.css" rel="stylesheet" type="text/css" media="all">
<link href="/static/css/font-awesome.css" rel="stylesheet" type="text/css" media="all">
<link href="/static/google-code-prettify/prettify.css" rel="stylesheet" type="text/css" media="all">
<link href="/static/css/application.css" rel="stylesheet" type="text/css" media="all">
<script src="/static/js/jquery.js" type="text/javascript"></script>
<!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</head>
<body>
<div class="page-container">
<div class="page-heading">
<div class="page-brand">
<h1><a href="/">Alain</a></h1>
<h2><a href="/tags.html">Java Intermediate, Python Beginner, Machine Learning Fan</a></h2>
</div>
<div class="page-navbar">
<div class="page-navbar-container">
<ul class="page-nav">
<li><a href="/">Home</a></li>
<!-- <li><a href="/about.html">About</a></li> -->
<li><a href="/categories.html">Categories</a></li>
<li><a href="/tags.html">Tags</a></li>
<li><a href="/archive.html">Archives</a></li>
</ul>
</div>
</div>
</div>
<div class="page-article">
<div class="page-content">
<div class="post-heading">
LeetCode | Edit Distance in Python
</div>
<div class="post-meta">
<!-- <span>
date:
<a href="/markdown-leetcode-edit-distance/">10/2014</a>
</span>
<span><i class="fa fa-ellipsis-v"></i></span> -->
<span>
category:
<a href="/categories.html#leetcode-ref">leetcode</a>
</span>
<span><i class="fa fa-ellipsis-v"></i></span>
<span>
tag:
<a href="/tags.html#Python-ref">Python</a>
<span>
</div>
<div class="post-entry">
<!-- import js for mathjax -->
<script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=default"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}
});
</script>
<pre>
'''
Question:
Given two words word1 and word2, find the minimum number of steps required to convert word1 to word2. (each operation is counted as 1 step.) You have the following 3 operations permitted on a word:
a) Insert a character
b) Delete a character
c) Replace a character
Algorithm:
DP
DP[i][j] = min(DP[i-1][j]+1, DP[i][j-1]+1, (DP[i-1][j-1] + (0 if word1[i-1] == word2[j-1] else 1)))
'''
class Solution:
# @return an integer
def minDistance(self, word1, word2):
l1, l2 = len(word1), len(word2)
DP = [[0 for itr in xrange(l2+1)] for itr2 in xrange(l1+1)]
for i in xrange(1, l2+1):
DP[0][i] = DP[0][i-1] + 1
for i in xrange(1, l1+1):
DP[i][0] = DP[i-1][0] + 1
for i in xrange(1, l1+1):
for j in xrange(1, l2+1):
DP[i][j] = min(DP[i-1][j]+1, DP[i][j-1]+1, (DP[i-1][j-1] + (0 if word1[i-1] == word2[j-1] else 1)))
return DP[l1][l2]
</pre>
</div>
</div>
<div class="post-blank post-pager">
<ul class="pager">
<li class="previous"><a href="/markdown-leetcode-decode-ways/">← previous post</a></li>
<li class="next"><a href="/markdown-leetcode-first-missing-positive/">next post →</a></li>
</ul>
</div>
<div class="page-blank">
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_shortname = 'heaiinfo';
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>
Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a>
</noscript>
</div>
</div>
<div class="page-footer">
<span>
Powered by <a href="https://github.com/mojombo/jekyll">Jekyll</a>
| Hosted by <a href="http://github.com">Github.com</a>
| <span class="page-generator-time">11/03/2014 </span>
</span>
</div>
</div>
<script src="/static/js/bootstrap.js" type="text/javascript"></script>
<script src="/static/google-code-prettify/prettify.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$('pre').addClass('prettyprint linenums').attr('style', 'overflow:auto');
prettyPrint();
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-56332595-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>
| Alain-ai/Alain-ai.github.io | _site/markdown-leetcode-edit-distance/index.html | HTML | mit | 6,012 |
<!DOCTYPE html>
<html>
<head>
<title>WebRTC Cropped Screen Sharing using RTCMultiConnection</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<link rel="author" type="text/html" href="https://plus.google.com/+MuazKhan">
<meta name="author" content="Muaz Khan">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<script src="https://cdn.webrtc-experiment.com/RTCMultiConnection.js"></script>
<script src="https://cdn.webrtc-experiment.com/firebase.js"></script>
</head>
<body>
<h1>WebRTC Cropped Screen Sharing using <a href="http://www.RTCMultiConnection.org/">RTCMultiConnection</a></h1>
<p>
This example explains how to crop remote stream. Cropping code is taken from <a href="https://github.com/andersevenrud/webrtc-screenshare-crop-demo">this link</a>. See <a href="https://plus.google.com/+WebRTC-Experiment/posts/SPsk2hCaiuj" target="_blank">how to test this demo?</a>.
</p>
<div id="edit-panel">
<div>
<label for="x">X</label>
<input type="number" name="x" id="x" value="0" />
</div>
<div>
<label for="y">Y</label>
<input type="number" name="y" id="y" value="0" />
</div>
<div>
<label for="w">Width (-1 = Full size)</label>
<input type="number" name="w" id="w" value="-1" />
</div>
<div>
<label for="h">Height (-1 = Full size)</label>
<input type="number" name="h" id="h" value="-1" />
</div>
<div>
<button id="update">Update</button>
</div>
</div>
<h2>Cropped Screen:</h2>
<div id="LocalVideo"></div>
<script>
// this script tag is taken from: https://github.com/andersevenrud/webrtc-screenshare-crop-demo
var CROP_X = 10;
var CROP_Y = 20;
var CROP_W = 320; // default width
var CROP_H = 240; // default height
var VIDEO_WIDTH = 0;
var VIDEO_HEIGHT = 0;
var MAX_VIDEO_WIDTH = 1920;
var MAX_VIDEO_HEIGHT = 1080;
var _canvas;
var _context;
// Form elements
document.getElementById("x").value = CROP_X;
document.getElementById("y").value = CROP_Y;
document.getElementById("w").value = CROP_W;
document.getElementById("h").value = CROP_H;
document.getElementById("update").addEventListener('click', function() {
var x = document.getElementById("x").value << 0;
var y = document.getElementById("y").value << 0;
var w = document.getElementById("w").value << 0;
var h = document.getElementById("h").value << 0;
if (x >= 0) {
CROP_X = x;
}
if (y >= 0) {
CROP_Y = y;
}
CROP_W = w || 0;
CROP_H = h || 0;
if (_canvas) {
if (_canvas.parentNode) {
_canvas.parentNode.removeChild(_canvas);
}
_canvas = null;
_context = null;
}
connection.send({
CROP_X: CROP_X,
CROP_Y: CROP_Y,
CROP_W: CROP_W,
CROP_H: CROP_H
});
});
/**
* Crops a video frame and shows it to the user
*/
function CropFrame(ev, stream, video, callback) {
if (!_canvas) {
if (CROP_X < 0) {
CROP_X = 0;
}
if (CROP_Y < 0) {
CROP_Y = 0;
}
if (CROP_W <= 0) {
CROP_W = VIDEO_WIDTH;
}
if (CROP_H <= 0) {
CROP_H = VIDEO_HEIGHT;
}
if (CROP_W > MAX_VIDEO_WIDTH) {
CROP_W = MAX_VIDEO_WIDTH;
}
if (CROP_H > MAX_VIDEO_HEIGHT) {
CROP_W = MAX_VIDEO_HEIGHT;
}
_canvas = document.createElement('canvas');
_canvas.width = CROP_W;
_canvas.height = CROP_H;
_context = _canvas.getContext('2d');
document.getElementById("LocalVideo").appendChild(_canvas);
}
_context.drawImage(video, CROP_X, CROP_Y, CROP_W, CROP_H, 0, 0, CROP_W, CROP_H);
// We need to scale down the image or else we get HTTP 414 Errors
// Also we scale down because of RTC message length restriction
var scanvas = document.createElement('canvas');
scanvas.width = _canvas.width;
scanvas.height = _canvas.height;
var wRatio = _canvas.width / 320;
var hRatio = _canvas.height / 240;
var maxRatio = Math.max(wRatio, hRatio);
if (maxRatio > 1) {
scanvas.width = _canvas.width / maxRatio;
scanvas.height = _canvas.height / maxRatio;
}
scanvas.getContext('2d').drawImage(_canvas, 0, 0, scanvas.width, scanvas.height);
callback(scanvas.toDataURL("image/jpeg"));
}
</script>
<script>
(function() {
var params = {},
r = /([^&=]+)=?([^&]*)/g;
function d(s) {
return decodeURIComponent(s.replace(/\+/g, ' '));
}
var match, search = window.location.search;
while (match = r.exec(search.substring(1)))
params[d(match[1])] = d(match[2]);
window.params = params;
})();
var connection = new RTCMultiConnection();
connection.session = {
screen: true,
data: true,
oneway: true
};
connection.onmessage = function(event) {
CROP_X = event.data.CROP_X;
CROP_Y = event.data.CROP_Y;
CROP_W = event.data.CROP_W;
CROP_H = event.data.CROP_H;
if (!_canvas) return;
_canvas.width = CROP_W;
_canvas.height = CROP_H;
};
connection.onstream = function(event) {
var inited = false;
event.mediaElement.addEventListener('timeupdate', function(ev) {
if (!inited) {
VIDEO_WIDTH = event.mediaElement.offsetWidth;
VIDEO_HEIGHT = event.mediaElement.offsetHeight;
event.mediaElement.style.display = 'none';
event.mediaElement.style.visibility = 'hidden';
inited = true;
}
CropFrame(ev, event.stream, event.mediaElement);
});
};
if (params.sessionid) {
// for participants
connection.channel = connection.sessionid = params.sessionid;
connection.join({
sessionid: params.sessionid,
userid: params.sessionid,
extra: {},
session: connection.session
});
document.getElementById('edit-panel').style.display = 'none';
} else {
// for initiator
connection.channel = connection.sessionid = connection.userid;
connection.open({
dontTransmit: true,
onMediaCaptured: function() {
var domain = 'https://www.webrtc-experiment.com';
var resultingURL = domain + '/RTCMultiConnection/cropped-screen-sharing.html?sessionid=' + connection.sessionid;
document.querySelector('h1').innerHTML = '<a href="' + resultingURL + '" target="_blank">Share this private room URL</a>';
}
});
}
</script>
</body>
</html> | Reptoh/RTCMultiConnection | demos/cropped-screen-sharing.html | HTML | mit | 7,968 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>AnimateJs Examples</title>
<link rel="stylesheet" href="./visualizer.css"/>
<script type="text/javascript" src="../animate.js"></script>
<script type="text/javascript" src="./visualizer.js"></script>
</head>
<body>
</body>
</html>
| archcomet/animateJs | examples/index.html | HTML | mit | 312 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_55) on Sun Oct 26 05:56:34 EDT 2014 -->
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<title>Uses of Class org.apache.solr.response.transform.TransformerFactory (Solr 4.10.2 API)</title>
<meta name="date" content="2014-10-26">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.solr.response.transform.TransformerFactory (Solr 4.10.2 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../org/apache/solr/response/transform/TransformerFactory.html" title="class in org.apache.solr.response.transform">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/apache/solr/response/transform/class-use/TransformerFactory.html" target="_top">Frames</a></li>
<li><a href="TransformerFactory.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class org.apache.solr.response.transform.TransformerFactory" class="title">Uses of Class<br>org.apache.solr.response.transform.TransformerFactory</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../../../org/apache/solr/response/transform/TransformerFactory.html" title="class in org.apache.solr.response.transform">TransformerFactory</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#org.apache.solr.core">org.apache.solr.core</a></td>
<td class="colLast">
<div class="block">
Core classes implementin Solr internals and the management of <a href="../../../../../../org/apache/solr/core/SolrCore.html" title="class in org.apache.solr.core"><code>SolrCore</code></a>s</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#org.apache.solr.response.transform">org.apache.solr.response.transform</a></td>
<td class="colLast">
<div class="block">
APIs and implementations of <a href="../../../../../../org/apache/solr/response/transform/DocTransformer.html" title="class in org.apache.solr.response.transform"><code>DocTransformer</code></a> for modifying documents in Solr request responses</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.apache.solr.core">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/apache/solr/response/transform/TransformerFactory.html" title="class in org.apache.solr.response.transform">TransformerFactory</a> in <a href="../../../../../../org/apache/solr/core/package-summary.html">org.apache.solr.core</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../org/apache/solr/core/package-summary.html">org.apache.solr.core</a> that return <a href="../../../../../../org/apache/solr/response/transform/TransformerFactory.html" title="class in org.apache.solr.response.transform">TransformerFactory</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../../../org/apache/solr/response/transform/TransformerFactory.html" title="class in org.apache.solr.response.transform">TransformerFactory</a></code></td>
<td class="colLast"><span class="strong">SolrCore.</span><code><strong><a href="../../../../../../org/apache/solr/core/SolrCore.html#getTransformerFactory(java.lang.String)">getTransformerFactory</a></strong>(<a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name)</code> </td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../../org/apache/solr/core/package-summary.html">org.apache.solr.core</a> with parameters of type <a href="../../../../../../org/apache/solr/response/transform/TransformerFactory.html" title="class in org.apache.solr.response.transform">TransformerFactory</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="strong">SolrCore.</span><code><strong><a href="../../../../../../org/apache/solr/core/SolrCore.html#addTransformerFactory(java.lang.String, org.apache.solr.response.transform.TransformerFactory)">addTransformerFactory</a></strong>(<a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name,
<a href="../../../../../../org/apache/solr/response/transform/TransformerFactory.html" title="class in org.apache.solr.response.transform">TransformerFactory</a> factory)</code> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.apache.solr.response.transform">
<!-- -->
</a>
<h3>Uses of <a href="../../../../../../org/apache/solr/response/transform/TransformerFactory.html" title="class in org.apache.solr.response.transform">TransformerFactory</a> in <a href="../../../../../../org/apache/solr/response/transform/package-summary.html">org.apache.solr.response.transform</a></h3>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation">
<caption><span>Subclasses of <a href="../../../../../../org/apache/solr/response/transform/TransformerFactory.html" title="class in org.apache.solr.response.transform">TransformerFactory</a> in <a href="../../../../../../org/apache/solr/response/transform/package-summary.html">org.apache.solr.response.transform</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Class and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../../../org/apache/solr/response/transform/ChildDocTransformerFactory.html" title="class in org.apache.solr.response.transform">ChildDocTransformerFactory</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../../../org/apache/solr/response/transform/DocIdAugmenterFactory.html" title="class in org.apache.solr.response.transform">DocIdAugmenterFactory</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../../../org/apache/solr/response/transform/ElevatedMarkerFactory.html" title="class in org.apache.solr.response.transform">ElevatedMarkerFactory</a></strong></code>
<div class="block">Used to mark whether a document has been elevated or not</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../../../org/apache/solr/response/transform/ExcludedMarkerFactory.html" title="class in org.apache.solr.response.transform">ExcludedMarkerFactory</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../../../org/apache/solr/response/transform/ExplainAugmenterFactory.html" title="class in org.apache.solr.response.transform">ExplainAugmenterFactory</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../../../org/apache/solr/response/transform/ShardAugmenterFactory.html" title="class in org.apache.solr.response.transform">ShardAugmenterFactory</a></strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><strong><a href="../../../../../../org/apache/solr/response/transform/ValueAugmenterFactory.html" title="class in org.apache.solr.response.transform">ValueAugmenterFactory</a></strong></code> </td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation">
<caption><span>Fields in <a href="../../../../../../org/apache/solr/response/transform/package-summary.html">org.apache.solr.response.transform</a> with type parameters of type <a href="../../../../../../org/apache/solr/response/transform/TransformerFactory.html" title="class in org.apache.solr.response.transform">TransformerFactory</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static <a href="http://download.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="../../../../../../org/apache/solr/response/transform/TransformerFactory.html" title="class in org.apache.solr.response.transform">TransformerFactory</a>></code></td>
<td class="colLast"><span class="strong">TransformerFactory.</span><code><strong><a href="../../../../../../org/apache/solr/response/transform/TransformerFactory.html#defaultFactories">defaultFactories</a></strong></code> </td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../org/apache/solr/response/transform/TransformerFactory.html" title="class in org.apache.solr.response.transform">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/apache/solr/response/transform/class-use/TransformerFactory.html" target="_top">Frames</a></li>
<li><a href="TransformerFactory.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>
<i>Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.</i>
<script src='../../../../../../prettify.js' type='text/javascript'></script>
<script type='text/javascript'>
(function(){
var oldonload = window.onload;
if (typeof oldonload != 'function') {
window.onload = prettyPrint;
} else {
window.onload = function() {
oldonload();
prettyPrint();
}
}
})();
</script>
</small></p>
</body>
</html>
| kilfu0701/Solr4-Scaffold | solr-4.10.2/docs/solr-core/org/apache/solr/response/transform/class-use/TransformerFactory.html | HTML | mit | 14,140 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Generate LaTeX Content</title>
</head>
<body>
<form action="generate.php" method="post">
<p><input type="submit" value="Generate"/></p>
</form>
</body>
</html> | phense/AttendanceList | index.html | HTML | mit | 294 |
<!doctype html>
<html lang="en">
<head>
<title>Spelling</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/sweet-alert.css">
<link rel="stylesheet" href="css/spelling.css">
</head>
<body>
<div class="container">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="js/sweet-alert.min.js"></script>
<script src="js/buzz.min.js"></script>
<script>
var words = ['cleric', 'druid', 'mage', 'sorcerer', 'warlock'];
var ascenders = ['t','d','f','h','k','l','b'];
var descenders = ['q','y','p','g','j'];
var error = new buzz.sound( "sounds/error", {
formats: [ "mp3" ]
});
var win = new buzz.sound( "sounds/win", {
formats: [ "mp3" ]
});
for (i = 0; i < words.length; ++i) {
output = '<div class="word-box" data-errors="0">';
for (j = 0; j < words[i].length; ++j) {
var letter = words[i][j];
var classname = 'normal';
if (ascenders.indexOf(letter) != -1) {
classname = 'asc';
}
if (descenders.indexOf(letter) != -1) {
classname = 'desc';
}
output += '<input data-letter="' + letter + '" class="' + classname + '" size="1" maxlength="1" />';
}
output += '<\/div>';
$(".container").append(output);
}
$("input").on('input', function() {
var box = $(this).parents(".word-box").first();
$(this).removeClass('correct incorrect bounceIn shake');
if ($(this).val() === $(this).data('letter')) {
$(this).addClass('correct animated bounceIn');
$(this).nextAll('input').first().focus();
}
else {
$(this).addClass('inc orrect animated shake');
$(this).val("");
error.play();
errors = $(box).data("errors");
$(box).data("errors", ++errors);
}
if ($("input", box).length == $(".correct", box).length) {
sweetAlert("Well done!", "You got it right! Awesome!", "success");
win.play();
$(box).append('<span class="glyphicon glyphicon-ok animated fadeIn" aria-hidden="true"><\/span>');
errors = $(box).data("errors");
if (errors < 1) {
$(box).append('<span class="glyphicon glyphicon-star animated fadeIn" aria-hidden="true"><\/span>');
}
}
});
</script>
</div>
</body>
</html>
| scronide/spellcasting | index.html | HTML | mit | 2,401 |
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: "Segoe UI","Roboto",'Helvetica Neue','Helvetica','Segoe UI',sans-serif;
font-size: 14px;
padding: 8px;
line-height: 18px;
}
hr {margin-top: 26px;}
.btn {
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16), 0 2px 10px rgba(0, 0, 0, 0.12);
border: 0;
text-transform: uppercase;
margin-bottom: 0;
font-weight: 400;
text-align: center;
vertical-align: middle;
touch-action: manipulation;
cursor: pointer;
color: white;
border: 1px solid transparent;
white-space: nowrap;
padding: 6px 12px;
font-size: 13px;
line-height: 1.42857143;
border-radius: 2px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
min-width: 250px;
margin-top: 16px;
}
.btn-pause {background-color: #03A9F4;}
.btn-go {background-color: #4CAF50;}
.btn-start {background-color: #673AB7;}
</style>
<script type="text/javascript" src="https://dl.frontapp.com/libs/frontjs.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
</head>
<body>
<div style="text-align: center;">
<p>
<strong>Pause</strong> and <strong>unpause</strong> your bot while an agent is speaking.
</p>
<div><strong>Smooch ID:</strong> <span id="smooch-id">N/A</span></div>
<hr>
<div><strong>Status:</strong> <span id="bot-status"></span></div>
<button class='btn btn-pause' onClick="pause_flow()">Pause Bot</button>
<button class='btn btn-go' onclick="unpause_flow()">Unpause Bot</button>
<hr>
<div><strong>Started: </strong><span id="flow-start"></span></div>
<!-- This is where the magic happens -->
<button class='btn btn-start' onclick="start_flow('auth')">Auth customer</button>
<button class='btn btn-start' onclick="start_flow('vip')">Upgrade VIP</button>
<button class='btn btn-start' onclick="start_flow('gold')">Upgrade Gold</button>
<button class='btn btn-start' onclick="start_flow('espn')">Add ESPN</button>
<button class='btn btn-start' onclick="start_flow('cancel')">Cancel account</button>
</div>
</body>
<script type="text/javascript">
var conversation;
var front_data;
var is_bot_active = true;
var meya_base_url = "https://meya.ai/webhook/";
var meya_api_key = 'YOUR_MEYA_WEBHOOK_API_KEY';
var meya_bot_id = 'YOUR_MEYA_BOT_ID'; // Bxxxxxxxx
Front.on('conversation', function (data) {
// triggered when a conversation is loaded
$('#smooch-id').text(data.contact.handle);
front_data = data;
conversation = data.conversation;
update_status();
});
function get_basic_auth(user, password) {
var tok = user + ':' + password;
var hash = btoa(tok);
return "Basic " + hash;
};
function update_status(flow_name='') {
$.ajax({
type: "POST",
url: get_meya_url('status'),
data: {"user_id": front_data.contact.handle, "integration": "smooch"},
beforeSend: function (xhr){
xhr.setRequestHeader('Authorization', get_basic_auth(meya_api_key, ""));
},
success: function(data){
is_bot_active = data.active;
bot_status = is_bot_active ? 'Active' : 'Paused';
if (flow_name)
$('#flow-start').text(flow_name);
$('#bot-status').text(bot_status);
},
error: function(data){
alert("Error! There was a problem getting your bot status!");
}
});
}
function get_meya_url(method) {
return meya_base_url.concat(method, '/', meya_bot_id);
}
function pause_flow(){
$.ajax({
type: "POST",
url: get_meya_url('pause'),
data: {
"user_id": front_data.contact.handle,
"integration": "smooch",
"cancel_flows": true
},
beforeSend: function (xhr){
xhr.setRequestHeader('Authorization', get_basic_auth(meya_api_key, ""));
},
success: function(data){
update_status();
console.log("Success! Your bot is paused and won't answer.");
},
error: function(data){
alert("Error! There was a problem pausing your bot.");
}
});
};
function unpause_flow(){
$.ajax({
type: "POST",
url: get_meya_url('unpause'),
data: {
"user_id": front_data.contact.handle,
"integration": "smooch"
},
beforeSend: function (xhr){
xhr.setRequestHeader('Authorization', get_basic_auth(meya_api_key, ""));
},
success: function(data){
update_status();
console.log("Success! Your bot is live again.");
},
error: function(data){
alert("Error! There was a problem unpausing your bot!");
}
});
};
function start_flow(flow_name){
$.ajax({
type: "POST",
url: get_meya_url('start'),
data: {
"user_id": front_data.contact.handle,
"integration": "smooch",
"flow": flow_name
},
beforeSend: function (xhr){
xhr.setRequestHeader('Authorization', get_basic_auth(meya_api_key, ""));
},
success: function(data){
update_status(flow_name);
console.log("Started the flow: " + flow_name);
},
error: function(data){
alert("Error! There was a problem starting the flow: " + flow_name);
}
});
};
</script>
</html> | meya-ai/community | examples/timecast/front_plugins/front.html | HTML | mit | 5,903 |
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script>
var t = "";
var pos = [0,0,0,0,0,0,0];
var dir = ['down','down','down','down','down','down','down',];
function bounce(num) {
t = setInterval("upAndDown("+num+")", 1);
}
function upAndDown(num) {
if (dir[num] == 'down') { pos[num] += 2; }
else if (dir[num] == 'up') { pos[num] -= 2; }
if (pos[num] == 500) { dir[num] = 'up'; }
else if (pos[num] == 0) { dir[num] = 'down'; }
position = pos[num] + "px";
$('div#0'+num).css("top", position);
}
</script>
<style>
div.bouncer {
height: 100px;
width: 100px;
background-color: yellow;
margin: 10px;
float: left;
position: relative;
}
</style>
</head>
<body>
<h1>Bounce those divvies up and down!</h1>
<h2>Your processor will go round and round</h2>
<div class="bouncer" id="01" onclick="bounce('01')"></div>
<div class="bouncer" id="02" onclick="bounce('02')"></div>
<div class="bouncer" id="03" onclick="bounce('03')"></div>
<div class="bouncer" id="04" onclick="bounce('04')"></div>
<div class="bouncer" id="05" onclick="bounce('05')"></div>
<div class="bouncer" id="06" onclick="bounce('06')"></div>
</body>
</html> | markdev/canvasGames | ex008_bouncyDivs.html | HTML | mit | 1,315 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Coq bench</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../../..">Unstable</a></li>
<li><a href=".">8.4.5 / contrib:reflexive-first-order 8.4.dev</a></li>
<li class="active"><a href="">2015-01-07 21:12:13</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="../../../../../about.html">About</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href=".">« Up</a>
<h1>
contrib:reflexive-first-order
<small>
8.4.dev
<span class="label label-danger">Error</span>
</small>
</h1>
<p><em><script>document.write(moment("2015-01-07 21:12:13 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2015-01-07 21:12:13 UTC)</em><p>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>ruby lint.rb unstable ../unstable/packages/coq:contrib:reflexive-first-order/coq:contrib:reflexive-first-order.8.4.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
<dt>Output</dt>
<dd><pre>The package is valid.
</pre></dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --dry-run coq:contrib:reflexive-first-order.8.4.dev coq.8.4.5</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>2 s</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.4.5).
The following actions will be performed:
- install coq:contrib:reflexive-first-order.8.4.dev
=== 1 to install ===
=-=- Synchronizing package archives -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
=-=- Installing packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Building coq:contrib:reflexive-first-order.8.4.dev:
coq_makefile -f Make -o Makefile
make -j4
make install
Installing coq:contrib:reflexive-first-order.8.4.dev.
</pre></dd>
</dl>
<p>Dry install without Coq, to test if the problem was incompatibility with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>ulimit -Sv 2000000; opam install -y --deps-only coq:contrib:reflexive-first-order.8.4.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>2 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>ulimit -Sv 2000000; opam install -y --verbose coq:contrib:reflexive-first-order.8.4.dev</code></dd>
<dt>Return code</dt>
<dd>1024</dd>
<dt>Duration</dt>
<dd>2 s</dd>
<dt>Output</dt>
<dd><pre>The following actions will be performed:
- install coq:contrib:reflexive-first-order.8.4.dev
=== 1 to install ===
=-=- Synchronizing package archives -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[coq:contrib:reflexive-first-order] Fetching https://gforge.inria.fr/git/coq-contribs/reflexive-first-order.git#v8.4
Initialized empty Git repository in /home/bench/.opam/packages.dev/coq:contrib:reflexive-first-order.8.4.dev/.git/
[master (root-commit) e0b13e3] opam-git-init
fatal: Couldn't find remote ref v8.4
[ERROR] Could not download archives of coq:contrib:reflexive-first-order.8.4.dev
'opam install -y --verbose coq:contrib:reflexive-first-order.8.4.dev' failed.
</pre></dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html> | coq-bench/coq-bench.github.io-old | clean/Linux-x86_64-4.02.1-1.2.0/unstable/8.4.5/contrib:reflexive-first-order/8.4.dev/2015-01-07_21-12-13.html | HTML | mit | 6,869 |
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<!-- BASICS -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>SKOTT - 여행의 즐거움 </title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="/static/tem_css/isotope.css" media="screen" />
<link rel="stylesheet" href="/static/tem_js/fancybox/jquery.fancybox.css" type="text/css" media="screen" />
<link rel="stylesheet" href="/static/tem_css/bootstrap.css">
<link rel="stylesheet" href="/static/tem_css/bootstrap-theme.css">
<link href="/static/tem_css/responsive-slider.css" rel="stylesheet">
<link rel="stylesheet" href="/static/tem_css/animate.css">
<link rel="stylesheet" href="/static/tem_css/style.css">
<link rel="stylesheet" href="/static/tem_css/font-awesome.min.css">
<!-- skin -->
<link rel="stylesheet" href="/static/tem_skin/default.css">
<!-- <link rel="stylesheet" type="text/css" href="/static/Semantic/semantic.min.css">
<script
src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous">
</script>
<script src="/static/Semantic/semantic.min.js"></script>
-->
</head>
<style type="text/css">
.img_service {
width : 100%;
height : 100%;
}
.img_logo {
margin-top: 15px;
width : 90px;
height: 40px;
background:url('/static/image/header/logo.png');
background-size: 100% 100%;
}
.credits a {
text-decoration: none;
}
@media (min-width: 768px) {
#start_button {
display: none;
}
}
</style>
<body>
<div class="header">
<section id="header" class="appear">
<div class="navbar navbar-fixed-top" role="navigation" data-0="line-height:100px; height:80px; background-color:rgba(0,0,0,0.3);" data-300="line-height:60px; height:60px; background-color:rgba(0,0,0,1);">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="fa fa-bars color-white"></span>
</button>
<h1><a class="navbar-brand" href="/mains" data-0="line-height:90px;" data-300="line-height:50px;"> <div class = "img_logo" data-0="margin-top:20px;" data-300="margin-top:10px;"></div>
</a></h1>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav" data-0="margin-top:20px;" data-300="margin-top:5px;">
<li class="active"><a href="#header">홈</a></li>
<li><a href="/map/map_v">지도보기</a></li>
<li><a href="#section-about">SKOTT</a></li>
<li><a href="#services">추천코스</a></li>
<li><a href="#line-pricing">서비스 소개</a></li>
<li><a href="#section-works" style="color:white">지역별 관광지</a></li>
<?php
if ($this->session->userdata('is_login')){
?>
<li><a href="/Login/logout">로그아웃</a></li>
<li><a href="/User/user"><?php echo $this->session->userdata('name') ?> 님</a></li>
<?php
} else {
?>
<li><a class="Gnb-item login small" style="cursor: pointer" href="/Login">로그인</a></li>
<?php
}
?>
</ul>
</div><!--/.navbar-collapse -->
</div>
</section>
</div>
<div class="slider">
<div id="about-slider">
<div id="carousel-slider" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators visible-xs">
<li data-target="#carousel-slider" data-slide-to="0" class="active"></li>
<li data-target="#carousel-slider" data-slide-to="1"></li>
<li data-target="#carousel-slider" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="item active">
<img src="/static/image/pic4.jpg" class="img-responsive" alt="">
<div class="carousel-caption">
<div class="wow fadeInUp" data-wow-offset="0" data-wow-delay="0.3s">
<h2><span>SKOTT</span></h2>
</div>
<div class="col-md-10 col-md-offset-1">
<div class="wow fadeInUp" data-wow-offset="0" data-wow-delay="0.6s">
<p><strong>S</strong>afty <strong>KO</strong>rea <strong>T</strong>axi <strong>T</strong>our </p>
</div>
</div>
<div class="wow fadeInUp" data-wow-offset="0" data-wow-delay="0.9s">
<form class="form-inline">
<div class="form-group">
<button type="livedemo" name="Live Demo" class="btn btn-primary btn-lg" required="required">SKOTT</button>
</div>
<div class="form-group">
<button type="getnow" class="btn btn-primary btn-lg" required="required"><a href="/map/map_v">START TOUR</a></button>
</div>
</form>
</div>
</div>
</div>
<div class="item">
<img src="/static/image/pic6.jpg" class="img-responsive" alt="">
<div class="carousel-caption">
<div class="wow fadeInUp" data-wow-offset="0" data-wow-delay="1.0s">
<h2>SKOTT</h2>
</div>
<div class="col-md-10 col-md-offset-1">
<div class="wow fadeInUp" data-wow-offset="0" data-wow-delay="0.6s">
<p><strong>S</strong>afty <strong>Ko</strong>rea <strong>T</strong>axi <strong>T</strong>our </p>
</div>
</div>
<div class="wow fadeInUp" data-wow-offset="0" data-wow-delay="1.6s">
<form class="form-inline">
<div class="form-group">
<button type="livedemo" name="purchase" class="btn btn-primary btn-lg" required="required">Live Demo</button>
</div>
<div class="form-group">
<button type="getnow" name="subscribe" class="btn btn-primary btn-lg" required="required">Get Now</button>
</div>
</form>
</div>
</div>
</div>
</div>
<a class="left carousel-control hidden-xs" href="#carousel-slider" data-slide="prev">
<i class="fa fa-angle-left"></i>
</a>
<a class=" right carousel-control hidden-xs" href="#carousel-slider" data-slide="next">
<i class="fa fa-angle-right"></i>
</a>
</div> <!--/#carousel-slider-->
</div><!--/#about-slider-->
</div><!--/#slider-->
<!--about-->
<section id="section-about">
<div class="container">
<div class="about">
<div class="row mar-bot40">
<div class="col-md-offset-3 col-md-6">
<div class="title">
<div class="wow bounceIn">
<h2 class="section-heading animated" data-animation="bounceInUp">SKOTT < 여행 > </h2>
</div>
</div>
</div>
</div>
<div class="row">
<div class="row-slider">
<div class="col-lg-6 mar-bot30">
<div class="responsive-slider" data-spy="responsive-slider" data-autoplay="true">
<div class="slides" data-group="slides">
<ul>
<div class="slide-body" data-group="slide">
<li><img alt="" class="img-responsive" src="/static/image/seoul/1.jpg" width="100%" height="350"/></li>
<li><img alt="" class="img-responsive" src="/static/image/seoul/13.jpg" width="100%" height="350"/></li>
<li><img alt="" class="img-responsive" src="/static/image/seoul/15.jpg" width="100%" height="350"/></li>
</div>
</ul>
<a class="slider-control left" href="#" data-jump="prev"><i class="fa fa-angle-left fa-2x"></i></a>
<a class="slider-control right" href="#" data-jump="next"><i class="fa fa-angle-right fa-2x"></i></a>
</div>
</div>
</div>
<div class="col-lg-6 ">
<div class="company mar-left10">
<h4>"SKOTT"이란... </h4>
<p>"SKOTT" 은 Safty KOrea Taxi Tour 의 약자로 한국으로 여행하는 외국인들 대상으로 만든 사이트이다. 한국으로 놀러오는 외국인들이 택시를 탈때 바가지요금을 방지하기 위한 택시 플랫폼이다.</p>
</div>
<div class="list-style">
<div class="row">
<div class="col-lg-6 col-sm-6 col-xs-12">
<ul>
<li>SKOTT</li>
<li>지역별 관광지</li>
<li>관광지 조회</li>
</ul>
</div>
<div class="col-lg-6 col-sm-6 col-xs-12">
<ul>
<li>SKOTT</li>
<li>한국 관광객</li>
<li>외국인 관광객</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<hr>
</section>
<!--/about-->
<!-- services -->
<section id="services" class="section pad-bot5 bg-white">
<div class="container">
<div class="row mar-bot5">
<div class="col-md-offset-3 col-md-6">
<div class="section-header">
<div class="wow bounceIn"data-animation-delay="7.8s">
<h2 class="section-heading animated" >SKOTT < 관광지 ></h2>
<h4>추천 관광지 TOP3</h4>
</div>
</div>
</div>
</div>
<div class="row mar-bot40">
<div class="col-lg-4" >
<div class="wow bounceIn">
<div class="align-center">
<div class="wow rotateIn">
<div class="service-col" style="height: 550px;">
<div class="service-icon" style = "width : 230px; height : 230px;">
<img class = "img_service" src="/static/image/mains/TOP3/8.jpg">
</div>
<h2><a href="#">TOP1<br> < 이태원 > </a></h2>
<p>서울특별시 용산구 이태원동 일대로서 주한 미군을 비롯한 외국인, 외국 상품, 외국 문화의 모습 조선시대에 이곳에 있었던 이태원(梨泰院)이란 역원(驛院)에서 동명이 유래되었다</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="align-center">
<div class="wow bounceIn">
<div class="wow rotateIn">
<div class="service-col" style="height: 550px;">
<div class="service-icon" style = "width : 230px; height : 230px;">
<img class = "img_service" src="/static/image/mains/TOP3/4.jpg">
</div>
<h2><a href="#">TOP2<br> < 남산 > </a></h2>
<p>서울 시가지 팽창으로 교통문제를 초래하게 되어 1·2·3호 터널이 뚫려 있다. 남산골 한옥마을, 장충단공원, 정도 600년 타임캡슐 등이 주변의 명소들이다.</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4" >
<div class="align-center">
<div class="wow bounceIn">
<div class="service-col" style="height: 550px;">
<div class="service-icon" style = "width : 230px; height : 230px;">
<img class = "img_service" src="/static/image/mains/TOP3/9.jpg">
</div>
<h2><a href="#">TOP3<br> < 홍대입구 > </a></h2>
<p>홍대(弘大)는 서울특별시 마포구 서울 지하철 2호선 홍대입구역과 홍익대학교 정문을 잇는 지역 및 이 일대에 있는 번화가를 말한다. '홍대'는 홍익대학교의 한국어 약칭으로 이 지역의 정식 지명이 아닌 통용 명칭이다.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="line-pricing" class="line-section line-center">
<div class="container pad-top50">
<div class="row mar-bot10 ">
<div class="col-md-offset-3 col-md-6">
<div class="section-header">
<div class="wow bounceIn">
<h2 class="section-heading animated" data-animation="bounceInUp">SKOTT < 이용방법 > </h2>
<p>How to use SKOTT</p>
</div>
</div>
</div>
</div>
<div class="line-wrap">
<div class="line-pricing-table">
<div class="pricing-table-wrap" data-scrollreveal="enter top over 0.5s after 0.3s" style="width: 380px;">
<ul>
<li class="line-head-row">
지도보기
</li>
<li class="line-price-row">
<p>
<span class="symbol"></span>
<span>STEP1</span>
</p>
<small>Map Begging</small>
</li>
<li>
01. 페이지 상단 이동
</li>
<li>
02. 지도보기버튼 클릭
</li>
<li>
03. 지역별 관광지정보 확인
</li>
<li class="line-btn-row">
<!-- <a href="" class="line-btn light">Get Started</a> -->
</li>
</ul>
</div>
<div class="pricing-table-wrap" data-scrollreveal="enter top over 0.5s after 0.5s" style="width: 380px;">
<ul class="line-highlight">
<li class="line-head-row">
검색
</li>
<li class="line-price-row">
<p>
<span class="symbol"></span>
<span>STEP2</span>
</p>
<small>Search</small>
</li>
<li>
01. 관굉지 정보 확인
</li>
<li>
02. 관광지 검색
</li>
<li class="line-btn-row">
<!-- <a href="" class="line-btn green">Get Started</a> -->
</li>
</ul>
</div>
<div class="pricing-table-wrap" data-scrollreveal="enter top over 0.5s after 0.7s" style="width: 380px;">
<ul>
<li class="line-head-row">
관광지 클릭
</li>
<li class="line-price-row">
<p>
<span class="symbol"></span>
<span>STEP3</span>
</p>
<small>Tour Search</small>
</li>
<li>
01. 지도상에 관광지 위치 표시
</li>
<li>
02. 관광지 상세페이지 이동
</li>
<li>
03. 관광지 예상거리, 예상택시비 표시
</li>
<li class="line-btn-row">
<!-- <a href="" class="line-btn light">Get Started</a> -->
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- section works -->
<section id="section-works" class="section appear clearfix">
<div class="container">
<div class="row mar-bot40">
<div class="col-md-offset-3 col-md-6">
<div class="section-header">
<h2 class="section-heading animated" data-animation="bounceInUp">지역별 관광지</h2>
<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet consectetur, adipisci velit, sed quia non numquam.</p>
</div>
</div>
</div>
<div class="row">
<nav id="filter" class="col-md-12 text-center">
<ul>
<li><a href="#" class="current btn-theme btn-small" data-filter="*">전체</a></li>
<li><a href="#" class="btn-theme btn-small" data-filter=".webdesign" >경기권</a></li>
<li><a href="#" class="btn-theme btn-small" data-filter=".photography">전라권</a></li>
<li ><a href="#" class="btn-theme btn-small" data-filter=".print">제주권</a></li>
</ul>
</nav>
<div class="col-md-12">
<div class="row">
<div class="portfolio-items isotopeWrapper clearfix" id="3">
<article class="col-md-4 isotopeItem webdesign">
<div class="portfolio-item">
<div class="wow rotateInUpLeft" data-animation-delay="4.8s">
<img src="/static/image/seoul1/1.jpg" alt="welcome" />
</div>
<div class="portfolio-desc align-center">
<div class="folio-info">
<h5><a href="#">Project name 1</a></h5>
<a href="/static/image/seoul1/1.jpg" class="fancybox"><i class="fa fa-external-link fa-2x"></i></a>
</div>
</div>
</div>
</article>
<article class="col-md-4 isotopeItem photography">
<div class="portfolio-item">
<div class="wow bounceIn">
<img src="/static/image/seoul1/2.jpg" alt="" />
</div>
<div class="portfolio-desc align-center">
<div class="folio-info">
<h5><a href="#">Project name 2</a></h5>
<a href="/static/image/seoul1/2.jpg" class="fancybox"><i class="fa fa-external-link fa-2x"></i></a>
</div>
</div>
</div>
</article>
<article class="col-md-4 isotopeItem photography">
<div class="portfolio-item">
<div class="wow rotateInDownRight">
<img src="/static/image/seoul1/3.jpg" alt="" />
</div>
<div class="portfolio-desc align-center">
<div class="folio-info">
<h5><a href="#">Project name 3</a></h5>
<a href="/static/image/seoul1/3.jpg" class="fancybox"><i class="fa fa-external-link fa-2x"></i></a>
</div>
</div>
</div>
</article>
<article class="col-md-4 isotopeItem print">
<div class="portfolio-item">
<div class="wow rotateInUpLeft">
<img src="/static/image/seoul1/15.jpg" alt="" />
</div>
<div class="portfolio-desc align-center">
<div class="folio-info">
<h5><a href="#">Project name 4</a></h5>
<a href="/static/image/seoul1/15.jpg" class="fancybox"><i class="fa fa-external-link fa-2x"></i></a>
</div>
</div>
</div>
</article>
<article class="col-md-4 isotopeItem photography">
<div class="portfolio-item">
<div class="wow bounceIn">
<img src="/static/image/seoul1/5.jpg" alt="" />
</div>
<div class="portfolio-desc align-center">
<div class="folio-info">
<h5><a href="#">Project name 5</a></h5>
<a href="/static/image/seoul1/5.jpg" class="fancybox"><i class="fa fa-external-link fa-2x"></i></a>
</div>
</div>
</div>
</article>
<article class="col-md-4 isotopeItem webdesign">
<div class="portfolio-item">
<div class="wow rotateInDownRight">
<img src="/static/image/seoul1/6.jpg" alt="" />
</div>
<div class="portfolio-desc align-center">
<div class="folio-info">
<h5><a href="#">Project name 6</a></h5>
<a href="/static/image/seoul1/6.jpg" class="fancybox"><i class="fa fa-external-link fa-2x"></i></a>
</div>
</div>
</div>
</article>
<article class="col-md-4 isotopeItem print">
<div class="portfolio-item">
<div class="wow rotateInUpLeft">
<img src="/static/image/seoul1/7.jpg" alt="" />
</div>
<div class="portfolio-desc align-center">
<div class="folio-info">
<h5><a href="#">Project name 7</a></h5>
<a href="/static/image/seoul1/7.jpg" class="fancybox"><i class="fa fa-external-link fa-2x"></i></a>
</div>
</div>
</div>
</article>
<article class="col-md-4 isotopeItem photography">
<div class="portfolio-item">
<div class="wow bounceIn">
<img src="/static/image/seoul1/8.jpg" alt="" />
</div>
<div class="portfolio-desc align-center">
<div class="folio-info">
<h5><a href="#">Project name 8</a></h5>
<a href="/static/image/seoul1/8.jpg" class="fancybox"><i class="fa fa-external-link fa-2x"></i></a>
</div>
</div>
</div>
</article>
<article class="col-md-4 isotopeItem print">
<div class="portfolio-item">
<div class="wow rotateInDownRight">
<img src="/static/image/seoul1/9.jpg" alt="" />
</div>
<div class="portfolio-desc align-center">
<div class="folio-info">
<h5><a href="#">Project name 9</a></h5>
<a href="/static/image/seoul1/9.jpg" class="fancybox"><i class="fa fa-external-link fa-2x"></i></a>
</div>
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- team -->
<!-- <section id="team" class="team-section appear clearfix">
<div class="container">
<div class="row mar-bot10">
<div class="col-md-offset-3 col-md-6">
<div class="section-header">
<div class="wow bounceIn">
<h2 class="section-heading animated" data-animation="bounceInUp">SKOTT < 팀 > </h2>
<p>Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet consectetur, adipisci velit, sed quia non numquam.</p>
</div>
</div>
</div>
</div>
<div class="row align-center mar-bot45">
<div class="col-md-4">
<div class="wow bounceIn" data-animation-delay="4.8s">
<div class="team-member">
<div class="profile-picture">
<figure><img src="/static/image/mains/TEAM/kim.jpg" alt=""></figure>
<div class="profile-overlay"></div>
<div class="profile-social">
<div class="icons-wrapper">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
<a href="#"><i class="fa fa-pinterest"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
</div>
</div>
</div>
<div class="team-detail">
<br><h4>김정환</h4>
<span>Web developer</span>
</div>
<div class="team-bio">
<p>프론트엔트, 백엔트 개발자</p>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="wow bounceIn">
<div class="team-member">
<div class="profile-picture">
<figure><img src="/static/image/mains/TEAM/songg.jpg" alt=""></figure>
<div class="profile-overlay"></div>
<div class="profile-social">
<div class="icons-wrapper">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
<a href="#"><i class="fa fa-pinterest"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
</div>
</div>
</div>
<div class="team-detail">
<br><h4>송창환</h4>
<span>Web developer</span>
</div>
<div class="team-bio">
<p>프론트엔트, 백엔트 개발자</p>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="wow bounceIn">
<div class="team-member">
<div class="profile-picture">
<figure><img src="/static/image/mains/TEAM/guk.jpg" alt=""></figure>
<div class="profile-overlay"></div>
<div class="profile-social">
<div class="icons-wrapper">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
<a href="#"><i class="fa fa-pinterest"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
</div>
</div>
</div>
<div class="team-detail">
<br><h4>국다혜</h4>
<span>Web designer</span>
</div>
<div class="team-bio">
<p>프론트엔트 개발자</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- /team -->
<!-- map -->
<section id="footer" class="section footer">
<button id ="start_button" onclick="location.href='/map/map_v'" >START SKOTT</button>
<div class="container">
<div class="row animated opacity mar-bot0" data-andown="fadeIn" data-animation="animation">
<div class="col-sm-12 align-center">
<ul class="social-network social-circle">
<li><a href="#" class="icoRss" title="Rss"><i class="fa fa-rss"></i></a></li>
<li><a href="#" class="icoFacebook" title="Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a href="#" class="icoTwitter" title="Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a href="#" class="icoGoogle" title="Google +"><i class="fa fa-google-plus"></i></a></li>
<li><a href="#" class="icoLinkedin" title="Linkedin"><i class="fa fa-linkedin"></i></a></li>
</ul>
</div>
</div>
<div class="row align-center copyright">
<div class="col-sm-12">
<p>© SKOTT Theme</p>
<div class="credits">
<!--
All the links in the footer should remainoncl intact.
You can delete the links only if you purchased the pro version.
Licensing information: https://bootstrapmade.com/license/
Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/buy/?theme=Green
-->
<a href="/mains">SKOTT</a> by <a href="https://www.bc.ac.kr">BucheonU.S MADE</a>
</div>
</div>
</div>
</div>
</section>
<a href="#header" class="scrollup"><i class="fa fa-chevron-up"></i></a>
<script src="/static/tem_js/modernizr-2.6.2-respond-1.1.0.min.js"></script>
<script src="/static/tem_js/jquery.js"></script>
<script src="/static/tem_js/jquery.easing.1.3.js"></script>
<script src="/static/tem_js/bootstrap.min.js"></script>
<script src="/static/tem_js/jquery.isotope.min.js"></script>
<script src="/static/tem_js/jquery.nicescroll.min.js"></script>
<script src="/static/tem_js/fancybox/jquery.fancybox.pack.js"></script>
<script src="/static/tem_js/skrollr.min.js"></script>
<script src="/static/tem_js/jquery.scrollTo-1.4.3.1-min.js"></script>
<script src="/static/tem_js/jquery.localscroll-1.2.7-min.js"></script>
<script src="/static/tem_js/stellar.js"></script>
<script src="/static/tem_js/responsive-slider.js"></script>
<script src="/static/tem_js/jquery.appear.js"></script>
<script src="/static/tem_js/grid.js"></script>
<script src="/static/tem_js/main.js"></script>
<script src="/static/tem_js/wow.min.js"></script>
<script>wow = new WOW({}).init();</script>
<script src="/static/tem_contactform/contactform.js"></script>
</body>
</html> | GukDaHEA/SKOTT | application/views/welcome.html | HTML | mit | 37,403 |
{include file="./inc/header.html"}
<?php
$this->_var['pagecss'][] = $this->_var['TMPL_REAL']."/css/goods_information.css";
$this->_var['pagecss'][] = $this->_var['TMPL_REAL']."/css/public.css";
?>
<link rel="stylesheet" type="text/css" href="{function name="parse_css" v="$pagecss"}" />
<!--商品详情-->
<div class="blank15"></div>
<div class="goods_information_bor0">
<div class="show_img"><img src="{$data.img}"/></div>
<h5>{$data.goods.name}</h5>
<ul class="Property">
<li>所属类别:{$data.goods.cate_name}</li>
<li>所需积分:<span class="c_ff4a4a">{if $data.goods.score gt 0}{$data.goods.score}{else}0{/if}</span>/分</li>
<li>剩余数量:<span class="c_ff4a4a">{$data.goods.max_bought_format}</span>/份</li>
<li>兑换人数:{if $data.goods.invented_number gt 0}{$data.goods.invented_number}{else}0{/if}人</li>
</ul>
<div class="blank5"></div>
<ul class="Property_choose">
<li>
<span class="name">兑换数量</span>
<div class="nun_choose clearfix">
<span class="Minus f_l">−</span>
<input type="text" name="number" id="number" value="1" class="nun f_l"/>
<span class="Plus f_l">+</span>
</div>
</li>
<!--
<li>
<span class="name">选择型号</span>
<label for="0" class="Model">x0<input id="0" type="radio" class="mt" name="Model"></label>
<label for="1" class="Model">x1<input id="1" type="radio" class="mt" name="Model"></label>
<label for="2" class="Model">x2<input id="2" type="radio" class="mt" name="Model"></label>
<label for="3" class="Model">x3<input id="3" type="radio" class="mt" name="Model"></label>
<label for="4" class="Model">x4<input id="4" type="radio" class="mt" name="Model"></label>
<label for="5" class="Model">x5<input id="5" type="radio" class="mt" name="Model"></label>
<label for="6" class="Model">x6<input id="6" type="radio" class="mt" name="Model"></label>
<label for="7" class="Model">x7<input id="7" type="radio" class="mt" name="Model"></label>
<label for="8" class="Model">x8<input id="8" type="radio" class="mt" name="Model"></label>
<label for="9" class="Model">x9<input id="9" type="radio" class="mt" name="Model"></label>
<label for="10" class="Model">x10<input id="10" type="radio" class="mt" name="Model"></label>
</li>
<li>
<span class="name">选择颜色</span>
<label for="c_0" class="Model">赤<input id="c_0" type="radio" class="mt" name="Model"></label>
<label for="c_1" class="Model">澄<input id="c_1" type="radio" class="mt" name="Model"></label>
<label for="c_2" class="Model">黄<input id="c_2" type="radio" class="mt" name="Model"></label>
<label for="c_3" class="Model">绿<input id="c_3" type="radio" class="mt" name="Model"></label>
<label for="c_4" class="Model">青<input id="c_4" type="radio" class="mt" name="Model"></label>
<label for="c_5" class="Model">蓝<input id="c_5" type="radio" class="mt" name="Model"></label>
<label for="c_6" class="Model">紫<input id="c_6" type="radio" class="mt" name="Model"></label>
<label for="c_7" class="Model">白<input id="c_7" type="radio" class="mt" name="Model"></label>
<label for="c_8" class="Model">棕<input id="c_8" type="radio" class="mt" name="Model"></label>
<label for="c_9" class="Model">褐<input id="c_9" type="radio" class="mt" name="Model"></label>
<label for="c_10" class="Model">粉<input id="c_10" type="radio" class="mt" name="Model"></label>
</li> -->
</ul>
<div class="new-but-block ">
<div class="but-block">
<input id="goods_id" name="goods_id" type="hidden" value="{$data.goods.id}" />
<button id="submitt" class="but_sure">立即兑换</button>
</div>
</div>
</div>
<div class="blank15"></div>
<div class="Product_Details">
<h5>商品详情</h5>
<div class="Details"><!--此处是输出后天编辑材料,没有按图写代码-->
{$data.goods.description}
</div>
</div>
<div class="blank15"></div>
<div class="float_block" style=" display:none;"><!--本是隐藏,先显示,看具体情况处理-->
<div class="float_background"></div>
<div class="choose_address">
<h5>
<span class="name">收货地址</span>
<span class="close"><i class="fa fa-close"></i></span>
</h5>
<div class="a_nav">
<span class="y">选择地址</span>
<a href="#" class="add">新增地址</a>
</div>
<div class="address_list">
<label class="y">
<i class="fa fa-toggle-off"></i>
<i class="fa fa-toggle-on"></i>
<input type="radio" checked="checked" name="address" />
群升国际E区111
</label>
<label>
<i class="fa fa-toggle-off"></i>
<i class="fa fa-toggle-on"></i>
<input type="radio" name="address" />
群升国际E区111
</label>
<label>
<i class="fa fa-toggle-off"></i>
<i class="fa fa-toggle-on"></i>
<input type="radio" name="address" />
群升国际E区111
</label>
</div>
<div class="blank10"></div>
<div class="sure_block">
<div class="sure_but">
<button>确认</button>
</div>
<span class="Cancel_but close">取消</span>
</div>
</div>
</div>
<script>
// $(".address_list label").click(function(){
// $(this).siblings().removeClass("y");
// $(this).addClass("y");
// });
// $(".choose_address .close").click(function(){
// $(this).parents(".float_block").hide();
// });
</script>
<script>
$(document).ready(function(){
$(".Model").click(function(){
if( !$(this).hasClass("y"))
{
$(this).siblings().removeClass("y");
$(this).addClass("y");
}
});
$(".Minus").click(function(){
var x=$(".nun_choose .nun").val();
if(x>1)
{
x-=1;
$(".nun_choose .nun").val(x);
}
else
{
alert("数量不能小于1");
$(".nun_choose .nun").val(1);
}
});
$(".Plus").click(function(){
var x=$(".nun_choose .nun").val();
var y={$data.user_can_buy_number};//20暂代库存
// var y=20;
if(x>(y-1))
{
alert("数量不能大于库存");
$(".nun_choose .nun").val(y);
}
else
{
x=parseInt(x) + 1;
$(".nun_choose .nun").val(x);
}
});
});
</script>
<script type="text/javascript">
$("#submitt").click(function(){
var ajaxurl = '{wap_url a="index" r="goods_exchange"}';
var id = $.trim($("#goods_id").val());
var number = $.trim($("#number").val());
var query = new Object();
query.number = $.trim($("#number").val());
query.id = $.trim($("#goods_id").val());
query.post_type = "json";
$.ajax({
url:ajaxurl,
data:query,
type:"Post",
dataType:"json",
success:function(data){
//alert(data.show_err);
if(data.response_code == 0){
alert(data.show_err);
window.location.href = '{wap_url a="index" r="login" }';
}else{
window.location.href = '{wap_url a="index" r="goods_exchange" p="id=$data.goods.id"}&number='+number;
}
}
});
});
</script>
{include file="./inc/footer.html"}
| dayphosphor/xiaoniu | p2p/wap/tpl/fanwe/goods_information.html | HTML | mit | 7,222 |
<table width="90%" border="0"><tr><td><script>function openfile(url) {fullwin = window.open(url, "fulltext", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");}</script><div class="layoutclass_pic"><div class="layoutclass_first_pic"><table class="ztable"><tr><th class="ztd1"><b>成語 </b></th><td class="ztd2">棒喝當頭</td></tr>
<tr><th class="ztd1"><b>典源 </b></th><td class="ztd2"> 此處所列為「<a href="/cgi-bin/cydic/gsweb.cgi?o=dcydic&schfmt=text&gourl=%3De0%26sec%3Dsec1%26op%3Dsid%3D%22CW0000000340%22.%26v%3D-1" class="clink" target=_blank>當頭棒喝</a>」之典源,提供參考。</font> <font class="dianuan_mark">《五燈會元.卷一一.臨濟義玄禪師》</font><br>上堂,僧問:「如何是佛法大意?」師豎起拂子<font size=-2 color="#999900"><font class="dianyuanfont"><b><i>1></i></b></font></font>,僧便喝,師便打。又僧問:「如何是佛法大意?」師亦豎拂子,僧便喝,師亦喝。僧擬議,師便打,<font size=4 color="#808080">乃曰:「大眾!夫為法者,不避喪身失命。我於黃檗先師處,三度問佛法的的大意,三度被打,如蒿枝拂相似。如今更思一頓,誰為下手?」時有僧出曰:「某甲下手。」師度與拄杖,僧擬接,師便打。</font></font> <br><font class="dianuan_mark2">〔注解〕</font><br></font>
<div class="Rulediv"><font class="english_word">(1)</font> 拂子:驅除蚊蠅的用具。禪家喜以拂子作為莊嚴具,住持等手持拂子上堂為大眾說法,即所謂「秉拂」,所以拂子即為說法的象徵。拂,音ㄈㄨˊ。</font></div>
</td></tr>
</td></tr></table></div> <!-- layoutclass_first_pic --><div class="layoutclass_second_pic"></div> <!-- layoutclass_second_pic --></div> <!-- layoutclass_pic --></td></tr></table>
| BuzzAcademy/idioms-moe-unformatted-data | all-data/3000-3999/3550-31.html | HTML | mit | 1,873 |
<table width="90%" border="0"><tr><td><script>function openfile(url) {fullwin = window.open(url, "fulltext", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");}</script><div class="layoutclass_pic"><div class="layoutclass_first_pic"><table class="ztable"><tr><th class="ztd1"><b>成語 </b></th><td class="ztd2">吞聲飲氣</td></tr>
<tr><th class="ztd1"><b>注音 </b></th><td class="ztd2">ㄊㄨㄣ ㄕㄥ |ㄣ<sup class="subfont">ˇ</sup> ㄑ|<sup class="subfont">ˋ</sup></td></tr>
<tr><th class="ztd1"><b>漢語拼音 </b></th><td class="ztd2"><font class="english_word">tūn shēng yǐn qì</font></td></tr>
<tr><th class="ztd1"><b>釋義 </b></th><td class="ztd2"> 義參「<a href="/cgi-bin/cydic/gsweb.cgi?o=dcydic&schfmt=text&gourl=%3De0%26sec%3Dsec1%26op%3Dsid%3D%22CW0000000307%22.%26v%3D-1" class="clink" target=_blank>忍氣吞聲</a>」。見「<a href="/cgi-bin/cydic/gsweb.cgi?o=dcydic&schfmt=text&gourl=%3De0%26sec%3Dsec1%26op%3Dsid%3D%22CW0000000307%22.%26v%3D-1" class="clink" target=_blank>忍氣吞聲</a>」條。</font></td></tr>
<tr><th class="ztd1"><b><style>.tableoutfmt2 .std1{width:3%;}</style></b></th><td class="ztd2"><table class="fmt16_table"><tr><td width=150 style="text-align:left;" class="fmt16_td1" ><b>參考詞語︰</b></td><td width=150 style="text-align:left;" class="fmt16_td2" ><a href="/cgi-bin/cydic/gsweb.cgi?o=dcydic&schfmt=text&gourl=%3De0%26sec%3Dsec1%26op%3Dsid%3D%22CW0000000307%22.%26v%3D-1" class="clink" target=_blank>忍氣吞聲</a></td></tr><tr><td width=150 style="text-align:left;" class="fmt16_td1" ><b>注音︰</b></td><td width=150 style="text-align:left;" class="fmt16_td2" >ㄖㄣ<sup class="subfont">ˇ</sup> ㄑ|<sup class="subfont">ˋ</sup> ㄊㄨㄣ ㄕㄥ</td></tr><tr><td width=150 style="text-align:left;" class="fmt16_td1" ><b>漢語拼音︰</b></td><td width=150 style="text-align:left;" class="fmt16_td2" ><font class="english_word">rěn qì tūn shēng</font></td></tr></table><br><br></td></tr>
</td></tr></table></div> <!-- layoutclass_first_pic --><div class="layoutclass_second_pic"></div> <!-- layoutclass_second_pic --></div> <!-- layoutclass_pic --></td></tr></table>
| BuzzAcademy/idioms-moe-unformatted-data | all-data/2000-2999/2155-34.html | HTML | mit | 2,234 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Coq bench</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../../..">Unstable</a></li>
<li><a href=".">8.4.5 / contrib:izf 8.4.dev</a></li>
<li class="active"><a href="">2014-11-29 23:17:27</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="../../../../../about.html">About</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href=".">« Up</a>
<h1>
contrib:izf
<small>
8.4.dev
<span class="label label-success">2 s</span>
</small>
</h1>
<p><em><script>document.write(moment("2014-11-29 23:17:27 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2014-11-29 23:17:27 UTC)</em><p>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>ruby lint.rb unstable ../unstable/packages/coq:contrib:izf/coq:contrib:izf.8.4.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
<dt>Output</dt>
<dd><pre>The package is valid.
</pre></dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --dry-run coq:contrib:izf.8.4.dev coq.8.4.5</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>1 s</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.4.5).
The following actions will be performed:
- install coq:contrib:izf.8.4.dev
=== 1 to install ===
=-=- Synchronizing package archives -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
=-=- Installing packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Building coq:contrib:izf.8.4.dev:
coq_makefile -f Make -o Makefile
make -j4
make install
Installing coq:contrib:izf.8.4.dev.
</pre></dd>
</dl>
<p>Dry install without Coq, to test if the problem was incompatibility with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --deps-only coq:contrib:izf.8.4.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>1 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --verbose coq:contrib:izf.8.4.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>2 s</dd>
<dt>Output</dt>
<dd><pre>The following actions will be performed:
- install coq:contrib:izf.8.4.dev
=== 1 to install ===
=-=- Synchronizing package archives -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[coq:contrib:izf] Fetching https://gforge.inria.fr/git/coq-contribs/izf.git#v8.4
Initialized empty Git repository in /home/bench/.opam/packages.dev/coq:contrib:izf.8.4.dev/.git/
[master (root-commit) e8a077b] opam-git-init
From https://gforge.inria.fr/git/coq-contribs/izf
* [new branch] v8.4 -> opam-ref
* [new branch] v8.4 -> origin/v8.4
IZF_base.v
IZF_coll.v
IZF_logic.v
IZF_nat.v
IZF_omega.v
IZF_pair.v
IZF_power.v
IZF_select.v
IZF_union.v
LICENSE
Make
Makefile
README
bench.log
description
HEAD is now at 7ce22b5 Using coqdoc comments so that the contrib's doc is browsable from the coq site.
=-=- Installing packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Building coq:contrib:izf.8.4.dev:
coq_makefile -f Make -o Makefile
make -j4
make install
"coqdep" -c -slash -R . IZF "IZF_base.v" > "IZF_base.v.d" || ( RV=$?; rm -f "IZF_base.v.d"; exit ${RV} )
"coqdep" -c -slash -R . IZF "IZF_coll.v" > "IZF_coll.v.d" || ( RV=$?; rm -f "IZF_coll.v.d"; exit ${RV} )
"coqdep" -c -slash -R . IZF "IZF_logic.v" > "IZF_logic.v.d" || ( RV=$?; rm -f "IZF_logic.v.d"; exit ${RV} )
"coqdep" -c -slash -R . IZF "IZF_nat.v" > "IZF_nat.v.d" || ( RV=$?; rm -f "IZF_nat.v.d"; exit ${RV} )
"coqdep" -c -slash -R . IZF "IZF_omega.v" > "IZF_omega.v.d" || ( RV=$?; rm -f "IZF_omega.v.d"; exit ${RV} )
"coqdep" -c -slash -R . IZF "IZF_pair.v" > "IZF_pair.v.d" || ( RV=$?; rm -f "IZF_pair.v.d"; exit ${RV} )
"coqdep" -c -slash -R . IZF "IZF_power.v" > "IZF_power.v.d" || ( RV=$?; rm -f "IZF_power.v.d"; exit ${RV} )
"coqdep" -c -slash -R . IZF "IZF_select.v" > "IZF_select.v.d" || ( RV=$?; rm -f "IZF_select.v.d"; exit ${RV} )
"coqdep" -c -slash -R . IZF "IZF_union.v" > "IZF_union.v.d" || ( RV=$?; rm -f "IZF_union.v.d"; exit ${RV} )
"coqc" -q -R . IZF IZF_logic
"coqc" -q -R . IZF IZF_base
"coqc" -q -R . IZF IZF_nat
"coqc" -q -R . IZF IZF_union
"coqc" -q -R . IZF IZF_select
"coqc" -q -R . IZF IZF_power
"coqc" -q -R . IZF IZF_pair
"coqc" -q -R . IZF IZF_coll
"coqc" -q -R . IZF IZF_omega
for i in IZF_union.vo IZF_select.vo IZF_power.vo IZF_pair.vo IZF_omega.vo IZF_nat.vo IZF_logic.vo IZF_coll.vo IZF_base.vo; do \
install -d `dirname "/home/bench/.opam/system/lib/coq/user-contrib"/IZF/$i`; \
install -m 0644 $i "/home/bench/.opam/system/lib/coq/user-contrib"/IZF/$i; \
done
Installing coq:contrib:izf.8.4.dev.
</pre></dd>
</dl>
<h2>Installation size</h2>
<p>Data not available in this bench.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq:contrib:izf.8.4.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>1 s</dd>
<dt>Output</dt>
<dd><pre>The following actions will be performed:
- remove coq:contrib:izf.8.4.dev
=== 1 to remove ===
=-=- Synchronizing package archives -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[coq:contrib:izf] Fetching https://gforge.inria.fr/git/coq-contribs/izf.git#v8.4
=-=- Removing Packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Removing coq:contrib:izf.8.4.dev.
rm -R /home/bench/.opam/system/lib/coq/user-contrib/IZF
</pre></dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html> | coq-bench/coq-bench.github.io-old | clean/Linux-x86_64-4.02.1-1.2.0/unstable/8.4.5/contrib:izf/8.4.dev/2014-11-29_23-17-27.html | HTML | mit | 9,568 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>noflo-suncalc in browser</title>
<link rel="stylesheet" href="../node_modules/mocha/mocha.css">
<style type="text/css">
#fixtures {
display: none;
}
</style>
</head>
<body>
<div id="mocha"></div>
<div id="fixtures"></div>
<script src="../browser/noflo-sensors.js"></script>
<script src="http://chaijs.com/chai.js"></script>
<script src="../node_modules/mocha/mocha.js"></script>
<script>mocha.setup('bdd');</script>
<script src="./BatteryStatus.js"></script>
<script src="./DeviceMotion.js"></script>
<script src="./DeviceOrientation.js"></script>
<script src="./Geolocation.js"></script>
<script src="./SpeechSynthasis.js"></script>
<script src="./WebSocket.js"></script>
<script>
if (window.mochaPhantomJS) {
mochaPhantomJS.run();
} else {
var runner = mocha.run();
runner.on('end', function(){
window.mochaResults = runner.stats;
});
}
</script>
</body>
</html> | oliverhruby/noflo-sensors | spec/runner.html | HTML | mit | 1,088 |
---
layout: home
title: OUICE · A set of design patterns, components and templates for a consistent user experience.
---
<main class="bs-docs-masthead" id="content" tabindex="-1">
<div class="container">
<p class="lead">OU ICE is a set of design patterns, components and templates to provide our students with a consistent user experience.</p>
<p>It is a part of the same family of work as the design used for the OU public website but is more tailored to the requirements of our students and their study journey. This is the fifth version of the framework (v4).</p>
<p class="lead">
<a href="getting-started#download" class="btn btn-outline-inverse btn-lg" onclick="ga('send', 'event', 'Jumbotron actions', 'Download', 'Download {{ site.current_version }}');">Download OU ICE</a>
</p>
<p class="version">Currently v{{ site.current_version }}</p>
</div>
</main>
<div class="bs-docs-featurette">
<div class="container">
<p class="lead">OUICE is open source. It's hosted, developed, and maintained on GitHub.</p>
<a href="{{ site.repo }}" class="btn btn-outline btn-lg">View the GitHub project</a>
</div>
</div>
| the-open-university/ouice-bootstrap | docs/index.html | HTML | mit | 1,162 |
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<title>View bike location on map</title>
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<style>
html, body, #map-canvas {
height: 100%;
margin: 0px;
padding: 0px
}
</style>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script>
function initialize() {
var mapOptions = {
zoom: 13,
center: new google.maps.LatLng(47.3782, 8.53603),
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(document.getElementById('map-canvas'),
mapOptions);
setMarkers(map, points);
}
var points = [
['bike location', 47.3782, 8.53603, 2, 'images/flag_bike.png'],
['your location', 47.389183, 8.515088, 1, 'images/flag_person.png']
];
function setMarkers(map, locations) {
var shape = {
coord: [1, 1, 1, 32, 37, 32, 37 , 1],
type: 'poly'
};
for (var i = 0; i < locations.length; i++) {
var marker = locations[i];
var image = {
url: marker[4],
// This marker is 32 pixels wide by 37 pixels tall.
size: new google.maps.Size(37, 32),
// The origin for this image is 0,0.
origin: new google.maps.Point(0,0),
// The anchor for this image is the base of the flagpole at 0,16.
anchor: new google.maps.Point(0, 15)
};
var myLatLng = new google.maps.LatLng(marker[1], marker[2]);
var marker = new google.maps.Marker({
position: myLatLng,
map: map,
icon: image,
shape: shape,
title: marker[0],
zIndex: marker[3]
});
}
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
<a href="view_borrowed.html">
<button type="button" class="btn btn-default btn-lg btn-block">
back to bike
</button>
</a>
<div id="map-canvas"></div>
</body>
</html>
| electric-feel/localbike | client/template_shit/bootstrap/show_on_map.html | HTML | mit | 2,049 |
<!doctype html>
<html lang="en">
<head>
<title>Code coverage report for lib/resource/ResourceFactory.js</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="../../prettify.css" />
<link rel="stylesheet" href="../../base.css" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type='text/css'>
.coverage-summary .sorter {
background-image: url(../../sort-arrow-sprite.png);
}
</style>
</head>
<body>
<div class='wrapper'>
<div class='pad1'>
<h1>
<a href="../../index.html">all files</a> / <a href="index.html">lib/resource/</a> ResourceFactory.js
</h1>
<div class='clearfix'>
<div class='fl pad1y space-right2'>
<span class="strong">94.44% </span>
<span class="quiet">Statements</span>
<span class='fraction'>17/18</span>
</div>
<div class='fl pad1y space-right2'>
<span class="strong">75% </span>
<span class="quiet">Branches</span>
<span class='fraction'>6/8</span>
</div>
<div class='fl pad1y space-right2'>
<span class="strong">100% </span>
<span class="quiet">Functions</span>
<span class='fraction'>1/1</span>
</div>
<div class='fl pad1y space-right2'>
<span class="strong">94.44% </span>
<span class="quiet">Lines</span>
<span class='fraction'>17/18</span>
</div>
</div>
</div>
<div class='status-line high'></div>
<pre><table class="coverage">
<tr><td class="line-count quiet">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50</td><td class="line-coverage quiet"><span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1×</span>
<span class="cline-any cline-yes">1×</span>
<span class="cline-any cline-yes">1×</span>
<span class="cline-any cline-yes">1×</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1×</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">948×</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">948×</span>
<span class="cline-any cline-no"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">948×</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">948×</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">948×</span>
<span class="cline-any cline-yes">948×</span>
<span class="cline-any cline-yes">18×</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">930×</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">948×</span>
<span class="cline-any cline-yes">418×</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">948×</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-yes">1×</span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span>
<span class="cline-any cline-neutral"> </span></td><td class="text"><pre class="prettyprint lang-js">'use strict';
var CollectionResource = require('./CollectionResource');
var CustomData = require('./CustomData');
var InstanceResource = require('./InstanceResource');
var utils = require('../utils');
/**
* A factory function that creates and returns a new Resource instance. The server is not contacted in any way -
* this function merely instantiates the object in memory and returns it. Callers are responsible for persisting
* the returned instance's state to the server if desired.
*
* @param InstanceConstructor the specific Resource constructor to call when creating the instance.
* @param data the data acquired from the server
* @param query any query that was provided to the server when acquiring the data
* @param dataStore the dataStore used by the resource to communicate with the server. required for all resources.
* @returns a new Resource memory instance
*/
function instantiate(InstanceConstructor, data, query, dataStore) {
var Ctor = utils.valueOf(InstanceConstructor, InstanceResource);
<span class="missing-if-branch" title="if path not taken" >I</span>if (utils.isAssignableFrom(CollectionResource, Ctor)) {
<span class="cstat-no" title="statement not covered" > throw new Error("InstanceConstructor argument cannot be a CollectionResource.");</span>
}
var q = utils.valueOf(query);
var resource = null;
<span class="missing-if-branch" title="else path not taken" >E</span>if (data) {
if (utils.isCollectionData(data)) {
resource = new CollectionResource(data, q, Ctor, dataStore);
} else {
resource = new Ctor(data, dataStore);
}
if(resource.customData){
resource.customData = instantiate(CustomData, resource.customData, q, dataStore);
}
}
return resource;
}
module.exports = {
instantiate: instantiate
};
</pre></td></tr>
</table></pre>
<div class='push'></div><!-- for sticky footer -->
</div><!-- /wrapper -->
<div class='footer quiet pad2 space-top1 center small'>
Code coverage
generated by <a href="http://istanbul-js.org/" target="_blank">istanbul</a> at Fri Nov 20 2015 09:26:49 GMT-0800 (PST)
</div>
</div>
<script src="../../prettify.js"></script>
<script>
window.onload = function () {
if (typeof prettyPrint === 'function') {
prettyPrint();
}
};
</script>
<script src="../../sorter.js"></script>
</body>
</html>
| aledotgomez/starkinsights | node_modules/express-stormpath/node_modules/stormpath/coverage/lcov-report/lib/resource/ResourceFactory.js.html | HTML | mit | 6,713 |
<!-- Footer -->
<footer class="text-center">
<div class="footer-above">
<div class="container">
<div class="row">
<div class="col-lg-8 offset-lg-2 text-center">
<ul class="list-inline">
<li class="list-inline-item">
<a href="https://github.com/ramsondon" class="btn-social btn-outline"><span class="sr-only">Github</span><i class="fa fa-fw fa-3x fa-github"></i></a>
</li>
<li class="list-inline-item">
<a href="https://plus.google.com/118297625216840496476" class="btn-social btn-outline"><span class="sr-only">Google Plus</span><i class="fa fa-fw fa-3x fa-google-plus"></i></a>
</li>
<li class="list-inline-item">
<a href="https://twitter.com/ramsondon" class="btn-social btn-outline"><span class="sr-only">Twitter</span><i class="fa fa-fw fa-3x fa-twitter"></i></a>
</li>
<li class="list-inline-item">
<a href="https://www.linkedin.com/in/ramsondon" class="btn-social btn-outline"><span class="sr-only">Linked In</span><i class="fa fa-fw fa-3x fa-linkedin"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="footer-below">
<div class="container">
<div class="row">
<div class="col-lg-6">
<a class="btn btn-lg twitter-follow-button" href="https://twitter.com/ramsondon" data-size="large">
<i class="fa fa-twitter"></i> Follow @ramsondon
</a>
<a class="btn btn-lg github-button" href="https://github.com/ramsondon/xng/subscription" data-size="large" data-show-count="true" aria-label="Watch ramsondon/xng on GitHub">Watch</a>
<a class="nav-link github-button" href="https://github.com/ramsondon/xng/fork" data-size="large" data-show-count="true" aria-label="Fork ramsondon/xng on GitHub">Fork</a>
<a class="nav-link github-button" href="https://github.com/ramsondon/xng/star" data-size="large" data-show-count="false" aria-label="Star ramsondon/xng on GitHub">Star</a>
</div>
<div class="col-lg-6">
Copyright © Matthias Schmid, M.Sc. 2017
</div>
</div>
</div>
</div>
</footer>
| ramsondon/xng | docs/web/tpl/footer.tpl.html | HTML | mit | 2,063 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>User agent detail - Mozilla/5.0 (Linux; U; Android 4.0.3; de-de; HTC_Desire_C-orange-LS Build/IML74K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="../circle.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="section">
<h1 class="header center orange-text">User agent detail</h1>
<div class="row center">
<h5 class="header light">
Mozilla/5.0 (Linux; U; Android 4.0.3; de-de; HTC_Desire_C-orange-LS Build/IML74K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30
</h5>
</div>
</div>
<div class="section">
<table class="striped"><tr><th></th><th colspan="3">General</th><th colspan="5">Device</th><th colspan="3">Bot</th><th colspan="2"></th></tr><tr><th>Provider</th><th>Browser</th><th>Engine</th><th>OS</th><th>Brand</th><th>Model</th><th>Type</th><th>Is mobile</th><th>Is touch</th><th>Is bot</th><th>Name</th><th>Type</th><th>Parse time</th><th>Actions</th></tr><tr><th colspan="14" class="green lighten-3">Test suite</th></tr><tr><td>UAParser<br /><small>v0.5.0.2</small><br /><small>vendor/thadafinser/uap-core/tests/test_device.yaml</small></td><td> </td><td><i class="material-icons">close</i></td><td> </td><td style="border-left: 1px solid #555">HTC</td><td>Desire C-orange-LS</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-cfed3005-df48-4fa8-bf03-4f6ef8988f59">Detail</a>
<!-- Modal Structure -->
<div id="modal-cfed3005-df48-4fa8-bf03-4f6ef8988f59" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>UAParser result detail</h4>
<p><pre><code class="php">Array
(
[user_agent_string] => Mozilla/5.0 (Linux; U; Android 4.0.3; de-de; HTC_Desire_C-orange-LS Build/IML74K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30
[family] => HTC Desire C-orange-LS
[brand] => HTC
[model] => Desire C-orange-LS
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><th colspan="14" class="green lighten-3">Providers</th></tr><tr><td>BrowscapFull<br /><small>6014</small><br /></td><td>Android 4.0</td><td>WebKit </td><td>Android 4.0</td><td style="border-left: 1px solid #555">HTC</td><td>Desire C</td><td>Mobile Phone</td><td>yes</td><td>yes</td><td style="border-left: 1px solid #555"></td><td></td><td></td><td>0.013</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-47a9cd06-e213-4882-bc34-db6aed664223">Detail</a>
<!-- Modal Structure -->
<div id="modal-47a9cd06-e213-4882-bc34-db6aed664223" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>BrowscapFull result detail</h4>
<p><pre><code class="php">stdClass Object
(
[browser_name_regex] => /^mozilla\/5\.0 \(.*linux.*android.4\.0.*htc_desire_c.* build\/.*\) applewebkit\/.* \(khtml,.*like gecko.*\) version\/4\.0.*safari.*$/
[browser_name_pattern] => mozilla/5.0 (*linux*android?4.0*htc_desire_c* build/*) applewebkit/* (khtml,*like gecko*) version/4.0*safari*
[parent] => Android Browser 4.0
[comment] => Android Browser 4.0
[browser] => Android
[browser_type] => Browser
[browser_bits] => 32
[browser_maker] => Google Inc
[browser_modus] => unknown
[version] => 4.0
[majorver] => 4
[minorver] => 0
[platform] => Android
[platform_version] => 4.0
[platform_description] => Android OS
[platform_bits] => 32
[platform_maker] => Google Inc
[alpha] =>
[beta] =>
[win16] =>
[win32] =>
[win64] =>
[frames] => 1
[iframes] => 1
[tables] => 1
[cookies] => 1
[backgroundsounds] =>
[javascript] => 1
[vbscript] =>
[javaapplets] => 1
[activexcontrols] =>
[ismobiledevice] => 1
[istablet] =>
[issyndicationreader] =>
[crawler] =>
[isfake] =>
[isanonymized] =>
[ismodified] =>
[cssversion] => 3
[aolversion] => 0
[device_name] => Desire C
[device_maker] => HTC
[device_type] => Mobile Phone
[device_pointing_method] => touchscreen
[device_code_name] => 1000C
[device_brand_name] => HTC
[renderingengine_name] => WebKit
[renderingengine_version] => unknown
[renderingengine_description] => For Google Chrome, iOS (including both mobile Safari, WebViews within third-party apps, and web clips), Safari, Arora, Midori, OmniWeb, Shiira, iCab since version 4, Web, SRWare Iron, Rekonq, and in Maxthon 3.
[renderingengine_maker] => Apple Inc
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>BrowscapLite<br /><small>6014</small><br /></td><td>Android 4.0</td><td><i class="material-icons">close</i></td><td>Android </td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>Mobile Phone</td><td>yes</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0.005</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-42bb56ba-b834-47c5-bea0-c0270e9ab371">Detail</a>
<!-- Modal Structure -->
<div id="modal-42bb56ba-b834-47c5-bea0-c0270e9ab371" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>BrowscapLite result detail</h4>
<p><pre><code class="php">stdClass Object
(
[browser_name_regex] => /^mozilla\/5\.0 \(.*linux.*android.* build\/.*\).*applewebkit\/.*\(.*khtml,.*like gecko.*\).*version\/4\.0.*safari.*$/
[browser_name_pattern] => mozilla/5.0 (*linux*android* build/*)*applewebkit/*(*khtml,*like gecko*)*version/4.0*safari*
[parent] => Android Browser 4.0
[comment] => Android Browser 4.0
[browser] => Android
[browser_type] => unknown
[browser_bits] => 0
[browser_maker] => unknown
[browser_modus] => unknown
[version] => 4.0
[majorver] => 0
[minorver] => 0
[platform] => Android
[platform_version] => unknown
[platform_description] => unknown
[platform_bits] => 0
[platform_maker] => unknown
[alpha] => false
[beta] => false
[win16] => false
[win32] => false
[win64] => false
[frames] => false
[iframes] => false
[tables] => false
[cookies] => false
[backgroundsounds] => false
[javascript] => false
[vbscript] => false
[javaapplets] => false
[activexcontrols] => false
[ismobiledevice] => 1
[istablet] =>
[issyndicationreader] => false
[crawler] => false
[isfake] => false
[isanonymized] => false
[ismodified] => false
[cssversion] => 0
[aolversion] => 0
[device_name] => unknown
[device_maker] => unknown
[device_type] => Mobile Phone
[device_pointing_method] => unknown
[device_code_name] => unknown
[device_brand_name] => unknown
[renderingengine_name] => unknown
[renderingengine_version] => unknown
[renderingengine_description] => unknown
[renderingengine_maker] => unknown
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>BrowscapPhp<br /><small>6014</small><br /></td><td>Android 4.0</td><td><i class="material-icons">close</i></td><td>Android </td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>Mobile Phone</td><td>yes</td><td>yes</td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.018</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-ad0041a2-b0f4-43f6-a70d-cad1443caa68">Detail</a>
<!-- Modal Structure -->
<div id="modal-ad0041a2-b0f4-43f6-a70d-cad1443caa68" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>BrowscapPhp result detail</h4>
<p><pre><code class="php">stdClass Object
(
[browser_name_regex] => /^mozilla\/5\.0 \(.*linux.*android.* build\/.*\).*applewebkit\/.*\(.*khtml,.*like gecko.*\).*version\/4\.0.*safari.*$/
[browser_name_pattern] => mozilla/5.0 (*linux*android* build/*)*applewebkit/*(*khtml,*like gecko*)*version/4.0*safari*
[parent] => Android Browser 4.0
[comment] => Android Browser 4.0
[browser] => Android
[browser_type] => unknown
[browser_bits] => 0
[browser_maker] => Google Inc
[browser_modus] => unknown
[version] => 4.0
[majorver] => 4
[minorver] => 0
[platform] => Android
[platform_version] => unknown
[platform_description] => unknown
[platform_bits] => 0
[platform_maker] => unknown
[alpha] => false
[beta] => false
[win16] => false
[win32] => false
[win64] => false
[frames] => false
[iframes] => false
[tables] => false
[cookies] => false
[backgroundsounds] => false
[javascript] => false
[vbscript] => false
[javaapplets] => false
[activexcontrols] => false
[ismobiledevice] => 1
[istablet] =>
[issyndicationreader] => false
[crawler] =>
[isfake] => false
[isanonymized] => false
[ismodified] => false
[cssversion] => 0
[aolversion] => 0
[device_name] => unknown
[device_maker] => unknown
[device_type] => Mobile Phone
[device_pointing_method] => touchscreen
[device_code_name] => unknown
[device_brand_name] => unknown
[renderingengine_name] => unknown
[renderingengine_version] => unknown
[renderingengine_description] => unknown
[renderingengine_maker] => unknown
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>DonatjUAParser<br /><small>v0.5.1</small><br /></td><td>Android Browser 4.0</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-15fbc1f0-2615-4d42-b5d9-a30dd647b050">Detail</a>
<!-- Modal Structure -->
<div id="modal-15fbc1f0-2615-4d42-b5d9-a30dd647b050" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>DonatjUAParser result detail</h4>
<p><pre><code class="php">Array
(
[platform] => Android
[browser] => Android Browser
[version] => 4.0
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>JenssegersAgent<br /><small>v2.3.3</small><br /></td><td>Safari 4.0</td><td><i class="material-icons">close</i></td><td>AndroidOS 4.0.3</td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>yes</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.001</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-b85a2b91-6a55-4436-a82c-1ea0d46e2e51">Detail</a>
<!-- Modal Structure -->
<div id="modal-b85a2b91-6a55-4436-a82c-1ea0d46e2e51" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>JenssegersAgent result detail</h4>
<p><pre><code class="php">Array
(
[browserName] => Safari
[browserVersion] => 4.0
[osName] => AndroidOS
[osVersion] => 4.0.3
[deviceModel] => HTC
[isMobile] => 1
[isRobot] =>
[botName] =>
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>NeutrinoApiCom<br /><small></small><br /></td><td>Android Webkit 4.0</td><td><i class="material-icons">close</i></td><td>Android 4.0.3</td><td style="border-left: 1px solid #555">HTC</td><td>1000C</td><td>mobile-browser</td><td>yes</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.34702</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-8c2a7a4e-3fbf-4df2-8d61-5e730422f67b">Detail</a>
<!-- Modal Structure -->
<div id="modal-8c2a7a4e-3fbf-4df2-8d61-5e730422f67b" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>NeutrinoApiCom result detail</h4>
<p><pre><code class="php">stdClass Object
(
[mobile_screen_height] => 480
[is_mobile] => 1
[type] => mobile-browser
[mobile_brand] => HTC
[mobile_model] => 1000C
[version] => 4.0
[is_android] => 1
[browser_name] => Android Webkit
[operating_system_family] => Android
[operating_system_version] => 4.0.3
[is_ios] =>
[producer] => Google Inc.
[operating_system] => Android 4.0.x Ice Cream Sandwich
[mobile_screen_width] => 320
[mobile_browser] => Android Webkit
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>PiwikDeviceDetector<br /><small>3.6.1</small><br /></td><td>Android Browser </td><td>WebKit </td><td>Android 4.0</td><td style="border-left: 1px solid #555">HTC</td><td>Desire C-orange-LS</td><td>smartphone</td><td>yes</td><td></td><td style="border-left: 1px solid #555"></td><td></td><td></td><td>0.002</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-4a941d34-a8d3-4914-9724-346f60ad7046">Detail</a>
<!-- Modal Structure -->
<div id="modal-4a941d34-a8d3-4914-9724-346f60ad7046" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>PiwikDeviceDetector result detail</h4>
<p><pre><code class="php">Array
(
[client] => Array
(
[type] => browser
[name] => Android Browser
[short_name] => AN
[version] =>
[engine] => WebKit
)
[operatingSystem] => Array
(
[name] => Android
[short_name] => AND
[version] => 4.0
[platform] =>
)
[device] => Array
(
[brand] => HT
[brandName] => HTC
[model] => Desire C-orange-LS
[device] => 1
[deviceName] => smartphone
)
[bot] =>
[extra] => Array
(
[isBot] =>
[isBrowser] => 1
[isFeedReader] =>
[isMobileApp] =>
[isPIM] =>
[isLibrary] =>
[isMediaPlayer] =>
[isCamera] =>
[isCarBrowser] =>
[isConsole] =>
[isFeaturePhone] =>
[isPhablet] =>
[isPortableMediaPlayer] =>
[isSmartDisplay] =>
[isSmartphone] => 1
[isTablet] =>
[isTV] =>
[isDesktop] =>
[isMobile] => 1
[isTouchEnabled] =>
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>SinergiBrowserDetector<br /><small>6.0.1</small><br /></td><td>Navigator 4.0</td><td><i class="material-icons">close</i></td><td>Android 4.0.3</td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td></td><td><i class="material-icons">close</i></td><td>yes</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-ec1cd248-02b0-457e-8a9d-35bb99af008c">Detail</a>
<!-- Modal Structure -->
<div id="modal-ec1cd248-02b0-457e-8a9d-35bb99af008c" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>SinergiBrowserDetector result detail</h4>
<p><pre><code class="php">Array
(
[browser] => Sinergi\BrowserDetector\Browser Object
(
[userAgent:Sinergi\BrowserDetector\Browser:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (Linux; U; Android 4.0.3; de-de; HTC_Desire_C-orange-LS Build/IML74K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30
)
[name:Sinergi\BrowserDetector\Browser:private] => Navigator
[version:Sinergi\BrowserDetector\Browser:private] => 4.0
[isRobot:Sinergi\BrowserDetector\Browser:private] =>
[isChromeFrame:Sinergi\BrowserDetector\Browser:private] =>
[isFacebookWebView:Sinergi\BrowserDetector\Browser:private] =>
[isCompatibilityMode:Sinergi\BrowserDetector\Browser:private] =>
)
[operatingSystem] => Sinergi\BrowserDetector\Os Object
(
[name:Sinergi\BrowserDetector\Os:private] => Android
[version:Sinergi\BrowserDetector\Os:private] => 4.0.3
[isMobile:Sinergi\BrowserDetector\Os:private] => 1
[userAgent:Sinergi\BrowserDetector\Os:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (Linux; U; Android 4.0.3; de-de; HTC_Desire_C-orange-LS Build/IML74K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30
)
)
[device] => Sinergi\BrowserDetector\Device Object
(
[name:Sinergi\BrowserDetector\Device:private] => unknown
[userAgent:Sinergi\BrowserDetector\Device:private] => Sinergi\BrowserDetector\UserAgent Object
(
[userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (Linux; U; Android 4.0.3; de-de; HTC_Desire_C-orange-LS Build/IML74K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30
)
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>UAParser<br /><small>v3.4.5</small><br /></td><td>Android 4.0.3</td><td><i class="material-icons">close</i></td><td>Android 4.0.3</td><td style="border-left: 1px solid #555">HTC</td><td>Desire C-orange-LS</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-3160e405-8a8f-46dd-8f47-5115f06462d2">Detail</a>
<!-- Modal Structure -->
<div id="modal-3160e405-8a8f-46dd-8f47-5115f06462d2" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>UAParser result detail</h4>
<p><pre><code class="php">UAParser\Result\Client Object
(
[ua] => UAParser\Result\UserAgent Object
(
[major] => 4
[minor] => 0
[patch] => 3
[family] => Android
)
[os] => UAParser\Result\OperatingSystem Object
(
[major] => 4
[minor] => 0
[patch] => 3
[patchMinor] =>
[family] => Android
)
[device] => UAParser\Result\Device Object
(
[brand] => HTC
[model] => Desire C-orange-LS
[family] => HTC Desire C-orange-LS
)
[originalUserAgent] => Mozilla/5.0 (Linux; U; Android 4.0.3; de-de; HTC_Desire_C-orange-LS Build/IML74K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>UserAgentApiCom<br /><small></small><br /></td><td>Safari 534.30</td><td>WebKit 534.30</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>Mobile</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.16901</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-afeb05fb-26b9-4509-b8ac-0c604a9e97d6">Detail</a>
<!-- Modal Structure -->
<div id="modal-afeb05fb-26b9-4509-b8ac-0c604a9e97d6" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>UserAgentApiCom result detail</h4>
<p><pre><code class="php">stdClass Object
(
[platform_name] => HTC
[platform_version] => 74
[platform_type] => Mobile
[browser_name] => Safari
[browser_version] => 534.30
[engine_name] => WebKit
[engine_version] => 534.30
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>UserAgentStringCom<br /><small></small><br /></td><td>Android Webkit Browser </td><td><i class="material-icons">close</i></td><td>Android 4.0.3</td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td></td><td>0.16101</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-08a9ddfb-838f-48d7-9ede-1d132306b2ee">Detail</a>
<!-- Modal Structure -->
<div id="modal-08a9ddfb-838f-48d7-9ede-1d132306b2ee" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>UserAgentStringCom result detail</h4>
<p><pre><code class="php">stdClass Object
(
[agent_type] => Browser
[agent_name] => Android Webkit Browser
[agent_version] => --
[os_type] => Android
[os_name] => Android
[os_versionName] =>
[os_versionNumber] => 4.0.3
[os_producer] =>
[os_producerURL] =>
[linux_distibution] => Null
[agent_language] => German - Germany
[agent_languageTag] => de-de
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>WhatIsMyBrowserCom<br /><small></small><br /></td><td>Android Browser 4.0</td><td>WebKit 534.30</td><td>Android 4.0.3</td><td style="border-left: 1px solid #555"></td><td>HTC Desire C</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0.22901</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-5fc1ff22-a74d-481b-9ad1-fcfde73ded9c">Detail</a>
<!-- Modal Structure -->
<div id="modal-5fc1ff22-a74d-481b-9ad1-fcfde73ded9c" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>WhatIsMyBrowserCom result detail</h4>
<p><pre><code class="php">stdClass Object
(
[operating_system_name] => Android
[simple_sub_description_string] =>
[simple_browser_string] => Android Browser 4 on Android (Ice Cream Sandwich)
[browser_version] => 4
[extra_info] => Array
(
)
[operating_platform] => HTC Desire C
[extra_info_table] => stdClass Object
(
[System Build] => IML74K
)
[layout_engine_name] => WebKit
[detected_addons] => Array
(
)
[operating_system_flavour_code] =>
[hardware_architecture] =>
[operating_system_flavour] =>
[operating_system_frameworks] => Array
(
)
[browser_name_code] => android-browser
[operating_system_version] => Ice Cream Sandwich
[simple_operating_platform_string] => HTC Desire C
[is_abusive] =>
[layout_engine_version] => 534.30
[browser_capabilities] => Array
(
)
[operating_platform_vendor_name] =>
[operating_system] => Android (Ice Cream Sandwich)
[operating_system_version_full] => 4.0.3
[operating_platform_code] =>
[browser_name] => Android Browser
[operating_system_name_code] => android
[user_agent] => Mozilla/5.0 (Linux; U; Android 4.0.3; de-de; HTC_Desire_C-orange-LS Build/IML74K) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30
[browser_version_full] => 4.0
[browser] => Android Browser 4
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>WhichBrowser<br /><small>v2.0.18</small><br /></td><td>Android Browser </td><td>Webkit 534.30</td><td>Android 4.0.3</td><td style="border-left: 1px solid #555">HTC</td><td>Desire C</td><td>mobile:smart</td><td>yes</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.004</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-083a336f-5d73-4505-84f3-c5fc9bb78652">Detail</a>
<!-- Modal Structure -->
<div id="modal-083a336f-5d73-4505-84f3-c5fc9bb78652" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>WhichBrowser result detail</h4>
<p><pre><code class="php">Array
(
[browser] => Array
(
[name] => Android Browser
)
[engine] => Array
(
[name] => Webkit
[version] => 534.30
)
[os] => Array
(
[name] => Android
[version] => 4.0.3
)
[device] => Array
(
[type] => mobile
[subtype] => smart
[manufacturer] => HTC
[model] => Desire C
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>Woothee<br /><small>v1.2.0</small><br /></td><td>Safari 4.0</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>smartphone</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-f00e7198-0e22-49fe-bad0-dbb3a9cde9b9">Detail</a>
<!-- Modal Structure -->
<div id="modal-f00e7198-0e22-49fe-bad0-dbb3a9cde9b9" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Woothee result detail</h4>
<p><pre><code class="php">Array
(
[name] => Safari
[vendor] => Apple
[version] => 4.0
[category] => smartphone
[os] => Android
[os_version] => 4.0.3
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>Wurfl<br /><small>1.7.1.0</small><br /></td><td>Android Webkit 4.0.3</td><td><i class="material-icons">close</i></td><td>Android 4.0.3</td><td style="border-left: 1px solid #555">HTC</td><td>1000C</td><td>Smartphone</td><td>yes</td><td>yes</td><td style="border-left: 1px solid #555"></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0.02</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-a2bedf8c-4a95-42a7-96c5-aaf233b2ac50">Detail</a>
<!-- Modal Structure -->
<div id="modal-a2bedf8c-4a95-42a7-96c5-aaf233b2ac50" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Wurfl result detail</h4>
<p><pre><code class="php">Array
(
[virtual] => Array
(
[is_android] => true
[is_ios] => false
[is_windows_phone] => false
[is_app] => false
[is_full_desktop] => false
[is_largescreen] => false
[is_mobile] => true
[is_robot] => false
[is_smartphone] => true
[is_touchscreen] => true
[is_wml_preferred] => false
[is_xhtmlmp_preferred] => false
[is_html_preferred] => true
[advertised_device_os] => Android
[advertised_device_os_version] => 4.0.3
[advertised_browser] => Android Webkit
[advertised_browser_version] => 4.0.3
[complete_device_name] => HTC 1000C (Desire C)
[device_name] => HTC Desire C
[form_factor] => Smartphone
[is_phone] => true
[is_app_webview] => false
)
[all] => Array
(
[brand_name] => HTC
[model_name] => 1000C
[unique] => true
[ununiqueness_handler] =>
[is_wireless_device] => true
[device_claims_web_support] => true
[has_qwerty_keyboard] => true
[can_skip_aligned_link_row] => true
[uaprof] => http://www.htcmms.com.tw/Android/Common/L01/ua-profile.xml
[uaprof2] =>
[uaprof3] =>
[nokia_series] => 0
[nokia_edition] => 0
[device_os] => Android
[mobile_browser] => Android Webkit
[mobile_browser_version] =>
[device_os_version] => 4.0
[pointing_method] => touchscreen
[release_date] => 2012_june
[marketing_name] => Desire C
[model_extra_info] =>
[nokia_feature_pack] => 0
[can_assign_phone_number] => true
[is_tablet] => false
[manufacturer_name] =>
[is_bot] => false
[is_google_glass] => false
[proportional_font] => false
[built_in_back_button_support] => false
[card_title_support] => true
[softkey_support] => false
[table_support] => true
[numbered_menus] => false
[menu_with_select_element_recommended] => false
[menu_with_list_of_links_recommended] => true
[icons_on_menu_items_support] => false
[break_list_of_links_with_br_element_recommended] => true
[access_key_support] => false
[wrap_mode_support] => false
[times_square_mode_support] => false
[deck_prefetch_support] => false
[elective_forms_recommended] => true
[wizards_recommended] => false
[image_as_link_support] => false
[insert_br_element_after_widget_recommended] => false
[wml_can_display_images_and_text_on_same_line] => false
[wml_displays_image_in_center] => false
[opwv_wml_extensions_support] => false
[wml_make_phone_call_string] => wtai://wp/mc;
[chtml_display_accesskey] => false
[emoji] => false
[chtml_can_display_images_and_text_on_same_line] => false
[chtml_displays_image_in_center] => false
[imode_region] => none
[chtml_make_phone_call_string] => tel:
[chtml_table_support] => false
[xhtml_honors_bgcolor] => true
[xhtml_supports_forms_in_table] => true
[xhtml_support_wml2_namespace] => false
[xhtml_autoexpand_select] => false
[xhtml_select_as_dropdown] => false
[xhtml_select_as_radiobutton] => false
[xhtml_select_as_popup] => false
[xhtml_display_accesskey] => false
[xhtml_supports_invisible_text] => false
[xhtml_supports_inline_input] => false
[xhtml_supports_monospace_font] => false
[xhtml_supports_table_for_layout] => true
[xhtml_supports_css_cell_table_coloring] => true
[xhtml_format_as_css_property] => false
[xhtml_format_as_attribute] => false
[xhtml_nowrap_mode] => false
[xhtml_marquee_as_css_property] => false
[xhtml_readable_background_color1] => #FFFFFF
[xhtml_readable_background_color2] => #FFFFFF
[xhtml_allows_disabled_form_elements] => true
[xhtml_document_title_support] => true
[xhtml_preferred_charset] => iso-8859-1
[opwv_xhtml_extensions_support] => false
[xhtml_make_phone_call_string] => tel:
[xhtmlmp_preferred_mime_type] => text/html
[xhtml_table_support] => true
[xhtml_send_sms_string] => sms:
[xhtml_send_mms_string] => mms:
[xhtml_file_upload] => supported
[cookie_support] => true
[accept_third_party_cookie] => true
[xhtml_supports_iframe] => full
[xhtml_avoid_accesskeys] => true
[xhtml_can_embed_video] => none
[ajax_support_javascript] => true
[ajax_manipulate_css] => true
[ajax_support_getelementbyid] => true
[ajax_support_inner_html] => true
[ajax_xhr_type] => standard
[ajax_manipulate_dom] => true
[ajax_support_events] => true
[ajax_support_event_listener] => true
[ajax_preferred_geoloc_api] => w3c_api
[xhtml_support_level] => 4
[preferred_markup] => html_web_4_0
[wml_1_1] => true
[wml_1_2] => false
[wml_1_3] => false
[html_wi_w3_xhtmlbasic] => true
[html_wi_oma_xhtmlmp_1_0] => true
[html_wi_imode_html_1] => false
[html_wi_imode_html_2] => false
[html_wi_imode_html_3] => false
[html_wi_imode_html_4] => false
[html_wi_imode_html_5] => false
[html_wi_imode_htmlx_1] => false
[html_wi_imode_htmlx_1_1] => false
[html_wi_imode_compact_generic] => false
[html_web_3_2] => true
[html_web_4_0] => true
[voicexml] => false
[multipart_support] => false
[total_cache_disable_support] => false
[time_to_live_support] => false
[resolution_width] => 320
[resolution_height] => 480
[columns] => 25
[max_image_width] => 320
[max_image_height] => 280
[rows] => 21
[physical_screen_width] => 50
[physical_screen_height] => 74
[dual_orientation] => true
[density_class] => 1.0
[wbmp] => true
[bmp] => true
[epoc_bmp] => false
[gif_animated] => false
[jpg] => true
[png] => true
[tiff] => false
[transparent_png_alpha] => true
[transparent_png_index] => true
[svgt_1_1] => true
[svgt_1_1_plus] => false
[greyscale] => false
[gif] => true
[colors] => 65536
[webp_lossy_support] => true
[webp_lossless_support] => false
[post_method_support] => true
[basic_authentication_support] => true
[empty_option_value_support] => true
[emptyok] => false
[nokia_voice_call] => false
[wta_voice_call] => false
[wta_phonebook] => false
[wta_misc] => false
[wta_pdc] => false
[https_support] => true
[phone_id_provided] => false
[max_data_rate] => 3600
[wifi] => true
[sdio] => false
[vpn] => false
[has_cellular_radio] => true
[max_deck_size] => 2000000
[max_url_length_in_requests] => 256
[max_url_length_homepage] => 0
[max_url_length_bookmark] => 0
[max_url_length_cached_page] => 0
[max_no_of_connection_settings] => 0
[max_no_of_bookmarks] => 0
[max_length_of_username] => 0
[max_length_of_password] => 0
[max_object_size] => 0
[downloadfun_support] => false
[directdownload_support] => true
[inline_support] => false
[oma_support] => true
[ringtone] => false
[ringtone_3gpp] => false
[ringtone_midi_monophonic] => false
[ringtone_midi_polyphonic] => false
[ringtone_imelody] => false
[ringtone_digiplug] => false
[ringtone_compactmidi] => false
[ringtone_mmf] => false
[ringtone_rmf] => false
[ringtone_xmf] => false
[ringtone_amr] => false
[ringtone_awb] => false
[ringtone_aac] => false
[ringtone_wav] => false
[ringtone_mp3] => false
[ringtone_spmidi] => false
[ringtone_qcelp] => false
[ringtone_voices] => 1
[ringtone_df_size_limit] => 0
[ringtone_directdownload_size_limit] => 0
[ringtone_inline_size_limit] => 0
[ringtone_oma_size_limit] => 0
[wallpaper] => false
[wallpaper_max_width] => 0
[wallpaper_max_height] => 0
[wallpaper_preferred_width] => 0
[wallpaper_preferred_height] => 0
[wallpaper_resize] => none
[wallpaper_wbmp] => false
[wallpaper_bmp] => false
[wallpaper_gif] => false
[wallpaper_jpg] => false
[wallpaper_png] => false
[wallpaper_tiff] => false
[wallpaper_greyscale] => false
[wallpaper_colors] => 2
[wallpaper_df_size_limit] => 0
[wallpaper_directdownload_size_limit] => 0
[wallpaper_inline_size_limit] => 0
[wallpaper_oma_size_limit] => 0
[screensaver] => false
[screensaver_max_width] => 0
[screensaver_max_height] => 0
[screensaver_preferred_width] => 0
[screensaver_preferred_height] => 0
[screensaver_resize] => none
[screensaver_wbmp] => false
[screensaver_bmp] => false
[screensaver_gif] => false
[screensaver_jpg] => false
[screensaver_png] => false
[screensaver_greyscale] => false
[screensaver_colors] => 2
[screensaver_df_size_limit] => 0
[screensaver_directdownload_size_limit] => 0
[screensaver_inline_size_limit] => 0
[screensaver_oma_size_limit] => 0
[picture] => false
[picture_max_width] => 0
[picture_max_height] => 0
[picture_preferred_width] => 0
[picture_preferred_height] => 0
[picture_resize] => none
[picture_wbmp] => false
[picture_bmp] => false
[picture_gif] => false
[picture_jpg] => false
[picture_png] => false
[picture_greyscale] => false
[picture_colors] => 2
[picture_df_size_limit] => 0
[picture_directdownload_size_limit] => 0
[picture_inline_size_limit] => 0
[picture_oma_size_limit] => 0
[video] => false
[oma_v_1_0_forwardlock] => false
[oma_v_1_0_combined_delivery] => false
[oma_v_1_0_separate_delivery] => false
[streaming_video] => true
[streaming_3gpp] => true
[streaming_mp4] => true
[streaming_mov] => false
[streaming_video_size_limit] => 0
[streaming_real_media] => none
[streaming_flv] => false
[streaming_3g2] => false
[streaming_vcodec_h263_0] => 45
[streaming_vcodec_h263_3] => -1
[streaming_vcodec_mpeg4_sp] => 0
[streaming_vcodec_mpeg4_asp] => -1
[streaming_vcodec_h264_bp] => 1
[streaming_acodec_amr] => nb
[streaming_acodec_aac] => lc
[streaming_wmv] => none
[streaming_preferred_protocol] => rtsp
[streaming_preferred_http_protocol] => apple_live_streaming
[wap_push_support] => true
[connectionless_service_indication] => false
[connectionless_service_load] => false
[connectionless_cache_operation] => false
[connectionoriented_unconfirmed_service_indication] => false
[connectionoriented_unconfirmed_service_load] => false
[connectionoriented_unconfirmed_cache_operation] => false
[connectionoriented_confirmed_service_indication] => false
[connectionoriented_confirmed_service_load] => false
[connectionoriented_confirmed_cache_operation] => false
[utf8_support] => true
[ascii_support] => false
[iso8859_support] => false
[expiration_date] => false
[j2me_cldc_1_0] => false
[j2me_cldc_1_1] => false
[j2me_midp_1_0] => false
[j2me_midp_2_0] => false
[doja_1_0] => false
[doja_1_5] => false
[doja_2_0] => false
[doja_2_1] => false
[doja_2_2] => false
[doja_3_0] => false
[doja_3_5] => false
[doja_4_0] => false
[j2me_jtwi] => false
[j2me_mmapi_1_0] => false
[j2me_mmapi_1_1] => false
[j2me_wmapi_1_0] => false
[j2me_wmapi_1_1] => false
[j2me_wmapi_2_0] => false
[j2me_btapi] => false
[j2me_3dapi] => false
[j2me_locapi] => false
[j2me_nokia_ui] => false
[j2me_motorola_lwt] => false
[j2me_siemens_color_game] => false
[j2me_siemens_extension] => false
[j2me_heap_size] => 0
[j2me_max_jar_size] => 0
[j2me_storage_size] => 0
[j2me_max_record_store_size] => 0
[j2me_screen_width] => 0
[j2me_screen_height] => 0
[j2me_canvas_width] => 0
[j2me_canvas_height] => 0
[j2me_bits_per_pixel] => 0
[j2me_audio_capture_enabled] => false
[j2me_video_capture_enabled] => false
[j2me_photo_capture_enabled] => false
[j2me_capture_image_formats] => none
[j2me_http] => false
[j2me_https] => false
[j2me_socket] => false
[j2me_udp] => false
[j2me_serial] => false
[j2me_gif] => false
[j2me_gif89a] => false
[j2me_jpg] => false
[j2me_png] => false
[j2me_bmp] => false
[j2me_bmp3] => false
[j2me_wbmp] => false
[j2me_midi] => false
[j2me_wav] => false
[j2me_amr] => false
[j2me_mp3] => false
[j2me_mp4] => false
[j2me_imelody] => false
[j2me_rmf] => false
[j2me_au] => false
[j2me_aac] => false
[j2me_realaudio] => false
[j2me_xmf] => false
[j2me_wma] => false
[j2me_3gpp] => false
[j2me_h263] => false
[j2me_svgt] => false
[j2me_mpeg4] => false
[j2me_realvideo] => false
[j2me_real8] => false
[j2me_realmedia] => false
[j2me_left_softkey_code] => 0
[j2me_right_softkey_code] => 0
[j2me_middle_softkey_code] => 0
[j2me_select_key_code] => 0
[j2me_return_key_code] => 0
[j2me_clear_key_code] => 0
[j2me_datefield_no_accepts_null_date] => false
[j2me_datefield_broken] => false
[receiver] => true
[sender] => true
[mms_max_size] => 307200
[mms_max_height] => 1840
[mms_max_width] => 3264
[built_in_recorder] => false
[built_in_camera] => true
[mms_jpeg_baseline] => true
[mms_jpeg_progressive] => false
[mms_gif_static] => true
[mms_gif_animated] => true
[mms_png] => true
[mms_bmp] => true
[mms_wbmp] => true
[mms_amr] => true
[mms_wav] => true
[mms_midi_monophonic] => true
[mms_midi_polyphonic] => false
[mms_midi_polyphonic_voices] => 0
[mms_spmidi] => false
[mms_mmf] => false
[mms_mp3] => true
[mms_evrc] => false
[mms_qcelp] => false
[mms_ota_bitmap] => false
[mms_nokia_wallpaper] => false
[mms_nokia_operatorlogo] => false
[mms_nokia_3dscreensaver] => false
[mms_nokia_ringingtone] => false
[mms_rmf] => false
[mms_xmf] => false
[mms_symbian_install] => false
[mms_jar] => false
[mms_jad] => false
[mms_vcard] => true
[mms_vcalendar] => true
[mms_wml] => false
[mms_wbxml] => false
[mms_wmlc] => false
[mms_video] => true
[mms_mp4] => true
[mms_3gpp] => true
[mms_3gpp2] => true
[mms_max_frame_rate] => 0
[nokiaring] => false
[picturemessage] => false
[operatorlogo] => false
[largeoperatorlogo] => false
[callericon] => false
[nokiavcard] => false
[nokiavcal] => false
[sckl_ringtone] => false
[sckl_operatorlogo] => false
[sckl_groupgraphic] => false
[sckl_vcard] => false
[sckl_vcalendar] => false
[text_imelody] => false
[ems] => false
[ems_variablesizedpictures] => false
[ems_imelody] => false
[ems_odi] => false
[ems_upi] => false
[ems_version] => 0
[siemens_ota] => false
[siemens_logo_width] => 101
[siemens_logo_height] => 29
[siemens_screensaver_width] => 101
[siemens_screensaver_height] => 50
[gprtf] => false
[sagem_v1] => false
[sagem_v2] => false
[panasonic] => false
[sms_enabled] => true
[wav] => true
[mmf] => false
[smf] => false
[mld] => false
[midi_monophonic] => true
[midi_polyphonic] => false
[sp_midi] => false
[rmf] => false
[xmf] => false
[compactmidi] => false
[digiplug] => false
[nokia_ringtone] => false
[imelody] => true
[au] => false
[amr] => true
[awb] => false
[aac] => true
[mp3] => true
[voices] => 1
[qcelp] => false
[evrc] => false
[flash_lite_version] =>
[fl_wallpaper] => false
[fl_screensaver] => false
[fl_standalone] => false
[fl_browser] => false
[fl_sub_lcd] => false
[full_flash_support] => true
[css_supports_width_as_percentage] => true
[css_border_image] => webkit
[css_rounded_corners] => webkit
[css_gradient] => none
[css_spriting] => true
[css_gradient_linear] => none
[is_transcoder] => false
[transcoder_ua_header] => user-agent
[rss_support] => false
[pdf_support] => true
[progressive_download] => true
[playback_vcodec_h263_0] => 10
[playback_vcodec_h263_3] => -1
[playback_vcodec_mpeg4_sp] => 0
[playback_vcodec_mpeg4_asp] => -1
[playback_vcodec_h264_bp] => 3.0
[playback_real_media] => none
[playback_3gpp] => true
[playback_3g2] => false
[playback_mp4] => true
[playback_mov] => false
[playback_acodec_amr] => nb
[playback_acodec_aac] => none
[playback_df_size_limit] => 0
[playback_directdownload_size_limit] => 0
[playback_inline_size_limit] => 0
[playback_oma_size_limit] => 0
[playback_acodec_qcelp] => false
[playback_wmv] => none
[hinted_progressive_download] => true
[html_preferred_dtd] => html4
[viewport_supported] => true
[viewport_width] => device_width_token
[viewport_userscalable] => no
[viewport_initial_scale] =>
[viewport_maximum_scale] =>
[viewport_minimum_scale] =>
[mobileoptimized] => false
[handheldfriendly] => false
[canvas_support] => full
[image_inlining] => true
[is_smarttv] => false
[is_console] => false
[nfc_support] => true
[ux_full_desktop] => false
[jqm_grade] => A
[is_sencha_touch_ok] => false
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr><tr><td>Zsxsoft<br /><small>1.3</small><br /></td><td>Android Webkit 4.0</td><td><i class="material-icons">close</i></td><td>Android 4.0.3</td><td style="border-left: 1px solid #555">HTC Desire</td><td></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0.001</td><td>
<!-- Modal Trigger -->
<a class="modal-trigger btn waves-effect waves-light" href="#modal-5d43e024-b46c-44f6-8914-529b05569bc2">Detail</a>
<!-- Modal Structure -->
<div id="modal-5d43e024-b46c-44f6-8914-529b05569bc2" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Zsxsoft result detail</h4>
<p><pre><code class="php">Array
(
[browser] => Array
(
[link] => http://developer.android.com/reference/android/webkit/package-summary.html
[title] => Android Webkit 4.0
[name] => Android Webkit
[version] => 4.0
[code] => android-webkit
[image] => img/16/browser/android-webkit.png
)
[os] => Array
(
[link] => http://www.android.com/
[name] => Android
[version] => 4.0.3
[code] => android
[x64] =>
[title] => Android 4.0.3
[type] => os
[dir] => os
[image] => img/16/os/android.png
)
[device] => Array
(
[link] => http://en.wikipedia.org/wiki/HTC_Desire
[title] => HTC Desire
[model] =>
[brand] => HTC Desire
[code] => htc
[dir] => device
[type] => device
[image] => img/16/device/htc.png
)
[platform] => Array
(
[link] => http://en.wikipedia.org/wiki/HTC_Desire
[title] => HTC Desire
[model] =>
[brand] => HTC Desire
[code] => htc
[dir] => device
[type] => device
[image] => img/16/device/htc.png
)
)
</code></pre></p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a>
</div>
</div>
</td></tr></table>
</div>
<div class="section">
<h1 class="header center orange-text">About this comparison</h1>
<div class="row center">
<h5 class="header light">
The primary goal of this project is simple<br />
I wanted to know which user agent parser is the most accurate in each part - device detection, bot detection and so on...<br />
<br />
The secondary goal is to provide a source for all user agent parsers to improve their detection based on this results.<br />
<br />
You can also improve this further, by suggesting ideas at <a href="https://github.com/ThaDafinser/UserAgentParserComparison">ThaDafinser/UserAgentParserComparison</a><br />
<br />
The comparison is based on the abstraction by <a href="https://github.com/ThaDafinser/UserAgentParser">ThaDafinser/UserAgentParser</a>
</h5>
</div>
</div>
<div class="card">
<div class="card-content">
Comparison created <i>2016-05-10 08:02:40</i> | by
<a href="https://github.com/ThaDafinser">ThaDafinser</a>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/js/materialize.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/list.js/1.2.0/list.min.js"></script>
<script>
$(document).ready(function(){
// the "href" attribute of .modal-trigger must specify the modal ID that wants to be triggered
$('.modal-trigger').leanModal();
});
</script>
</body>
</html> | ThaDafinser/UserAgentParserComparison | v5/user-agent-detail/90/e0/90e00d5f-9975-4c30-9f9e-3efa6ea7e33d.html | HTML | mit | 56,833 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"></meta>
<title>1415-73-2.smi.png.html</title>
</head>
<body>ID1415-73-2<br/>
<img border="0" src="1415-73-2.smi.png" alt="1415-73-2.smi.png"></img><br/>
<br/>
<table border="1">
<tr>
<td></td><td>ID</td><td>Formula</td><td>FW</td><td>DSSTox_CID</td><td>DSSTox_RID</td><td>DSSTox_GSID</td><td>DSSTox_FileID_Sort</td><td>TS_ChemName</td><td>TS_ChemName_Synonyms</td><td>TS_CASRN</td><td>CASRN_ChemName_Relationship</td><td>TS_Description</td><td>ChemNote</td><td>STRUCTURE_Shown</td><td>STRUCTURE_Formula</td><td>STRUCTURE_MW</td><td>STRUCTURE_ChemType</td><td>STRUCTURE_DefinedOrganicForm</td><td>STRUCTURE_IUPAC</td><td>STRUCTURE_SMILES</td><td>STRUCTURE_SMILES_Desalt</td><td>Substance_modify_yyyymmdd</td></tr>
<tr>
<td>8015-61-0</td><td>11330</td><td>C21H22O9</td><td>418.394</td><td>25967</td><td>82951</td><td>48755</td><td>7628</td><td>Aloin</td><td></td><td>8015-61-0</td><td>primary</td><td>mixture or formulation</td><td>complex mixture obtained by treating aloe plants with sulfuric acid</td><td>representative component</td><td>C21H22O9</td><td>418.394</td><td>defined organic</td><td>parent</td><td>(1S)-1,5-anhydro-1-[(9S)-4,5-dihydroxy-2-(hydroxymethyl)-10-oxo-9,10-dihydroanthracen-9-yl]-D-glucitol</td><td>O[C@H]1[C@H](O)[C@@H](O)[C@@H](O[C@@H]1CO)[C@H]4c2cccc(O)c2C(=O)c3c(O)cc(CO)cc34</td><td>O[C@H]1[C@H](O)[C@@H](O)[C@@H](O[C@@H]1CO)[C@H]4c2cccc(O)c2C(=O)c3c(O)cc(CO)cc34</td><td>20111130</td></tr>
</table>
<br/><br/><font size="-2">(Page generated on Wed Sep 17 04:04:30 2014 by <a href="http://www.embl.de/~gpau/hwriter/index.html">hwriter</a> 1.3)</font><br/>
</body></html> | andrewdefries/ToxCast | Figure3/Tox21_nnm/WorkHere/1415-73-2.smi.png.html | HTML | mit | 1,865 |
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
<link href="http://gmpg.org/xfn/11" rel="profile">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<!-- Enable responsiveness on mobile devices-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<meta name="keywords" content="共享分布式锁">
<meta name="description" content="">
<meta name="author" content="Reage">
<title>
共享分布式锁 · Reage blog
</title>
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="/public/css/poole.min.css" />
<link rel="stylesheet" type="text/css" href="/public/css/lanyon.min.css"/>
<link rel="stylesheet" type="text/css" href="/public/css/pygment.min.css"/>
<link rel="stylesheet" type="text/css" href="/public/css/font.min.css"/>
<link rel="stylesheet" type="text/css" href="/public/css/fontawesome.min.css"/>
<link rel="stylesheet" type="text/css" href="/public/css/timeline.min.css"/>
<!-- Icons -->
<link rel="shortcut icon" href="/public/favicon.ico"/>
<!-- RSS -->
<link rel="alternate" type="application/rss+xml" title="RSS" href="/atom.xml"/>
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "//hm.baidu.com/hm.js?255eea8e4f351751c55384cb560b5a53";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</head>
<body>
<!-- Target for toggling the sidebar `.sidebar-checkbox` is for regular
styles, `#sidebar-checkbox` for behavior. -->
<input type="checkbox" class="sidebar-checkbox" id="sidebar-checkbox">
<!-- Toggleable sidebar -->
<div class="sidebar" id="sidebar">
<div class="sidebar-item">
<p></p>
</div>
<nav class="sidebar-nav">
<a class="sidebar-nav-item" href="/">首页</a>
<a class="sidebar-nav-item" href="/about.html">关于</a>
<a class="sidebar-nav-item" href="/categories.html">分类</a>
<a class="sidebar-nav-item" href="/message.html">留言</a>
<a class="sidebar-nav-item" href="/posts/">文档</a>
<a class="sidebar-nav-item" href="/tags/">标签</a>
</nav>
<div class="sidebar-item">
<p>
© Design by <a href="http://www.ireage.com" target="_blank">Reage</a>
</p>
</div>
</div>
<!-- Wrap is the content to shift when toggling the sidebar. We wrap the
content to avoid any CSS collisions with our real content. -->
<div class="wrap">
<div class="masthead">
<div class="container">
<h3 class="masthead-title">
<a href="/" title="Home">Reage blog</a>
<small></small>
<a href="/atom.xml" target="_blank" class="icons" style="margin-left:15px;"><i class="fa fa-rss"></i></a>
<a href="https://github.com/rentiansheng" target="_blank" class="icons"><i class="fa fa-github"></i></a>
</h3>
</div>
</div>
<div class="container content" style="margin-top:2rem">
<div class="post">
<h1 class="post-title">共享分布式锁</h1>
<div class="post-date">
<span><i class="fa fa-clock-o"></i> 2018-09-02</span>
<span class="extra-right"><i class="fa fa-tags"></i> distributed lock
</span>
</div>
<h4 id="前提">前提</h4>
<p>分布式锁是在分布式系统中,我们为了保证分布式系统的效率和数据的正确性,在相同工作的多个节点中不被重复处理而采用的技术的。</p>
<h4 id="使用场景">使用场景</h4>
<p>现在看网上的分布式锁都是现在资源限制。 锁的使用者限定到当前服务使用者。 在分层的web锁无法继承。
在系统设计中我们经常会才分层设计, 会有负责处理逻辑的层,处理数据的存储层。为了保证服务的高可用每一个服务我们都会部署多个实例。
为了保证数据的完整性,我们需要在逻辑锁住资源, 在数据处理层修改数据。 这里面就涉及到两个问题</p>
<ol>
<li>锁如何共享?</li>
<li>如何获取锁?</li>
</ol>
<h4 id="实现">实现</h4>
<h6 id="分布式锁实现">分布式锁实现</h6>
<p>为了保证分布式锁的正确性,我们可以选择以下方案。</p>
<ol>
<li>redis SETNX 方案</li>
<li>redisLock 方案</li>
<li>zookeeper 顺序节点</li>
</ol>
<h5 id="锁的结构设计">锁的结构设计</h5>
<p>注解:由于锁是在分布式事务中事务,其中定义变量与实务相关, 代码是golang</p>
<pre><code>
锁的结构
type Lock struct {
// 当前锁的标记。 是开启事务得到的事务ID, 事务主ID,不可以为空
TxnID string `json:"txnID"`
// 锁资源的子事务ID, 可以为空, 为空将自动生成改项目
SubTxnID string `json:"subTxnID"`
// 被锁资源的标记或者名字
LockName string `json:"lockName"`
// 锁的超时时间
Expire time.Duration `json:"expire"`
// 锁的创建时间
Createtime time.Time `json:"createTime"`
}
锁的返回值, 无法锁住资源时,返回nil (就是空NULL)
type LockResult struct {
// 锁资源的子事务ID,
SubTxnID string `json:"subTxnID"`
// 获取lock 传入的TxnID事务中是否有子事务拥有锁,
Locked bool `json:"locked"`
// 拥有锁的子事务ID, 及时第一lock资源的子事务ID
LockSubTxnID string `json:"lockSubTxnID"`
}
</code></pre>
<h5 id="如何获取锁">如何获取锁</h5>
<ul>
<li>用户需要携带TxnID 和 SubTxnID, TxnID必填, SubTxnID非必填,如果SubTxnID没有填写,则自动生成。</li>
<li>使用原子操作写入原子锁, 如果写入成功,则表示当前TxnID和SubTxnID拥有锁。</li>
<li>使用原子操作写入原子锁, 如果写入失败,获取当前锁的内容, 先判断锁中的TxnID是否与传入的TxnID相等, 如何不等于返回无法锁住资源, <br />
否则TxnID等于TxnID, 继续执行</li>
<li>判断SubTxnID是否等于传入的SubTxnID, 等于则返回当前TxnID和SubTxnID拥有锁, 否则返回TxnID拥有锁, SubTxnID不拥有锁</li>
</ul>
<h4 id="如何共享锁">如何共享锁</h4>
<p>逻辑层调用存储层的时候通过HTTP header 将TxnID 透传下去</p>
<div class="post-affix">
<a href="http://www.ireage.com"> articles from reage blog -- http://www.ireage.com</a>
</div>
</div>
<div class="read-more">
<div class="read-more-header">
<a href="/golang/go%20test/2018/07/24/gotest.html" class="read-more-btn">Read More</a>
</div><!-- /.read-more-header -->
<div class="read-more-content">
<h3><a href="http://www.ireage.com/telegraf/2021/11/22/telegraf_agent.html" title="telegraf agent 源码分析">telegraf agent 源码分析</a></h3>
</div><!-- /.read-more-content -->
<div class="read-more-list">
<div class="list-item">
<h4><a href="/go/2021/08/19/go_fork_pipe.html" title="go exec.Command使用pipe做数据交换遇到的问题">go exec.Command使用pipe做数据交换遇到的问题</a></h4>
<span><i class="fa fa-clock-o"></i> 2021-08-19</span>
</div><!-- /.list-item -->
<div class="list-item">
<h4><a href="/qa/2021/04/02/qa.html" title="遇到问题集合">遇到问题集合</a></h4>
<span><i class="fa fa-clock-o"></i> 2021-04-02</span>
</div><!-- /.list-item -->
</div><!-- /.read-more-list -->
</div><!-- /.read-more -->
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "//hm.baidu.com/hm.js?255eea8e4f351751c55384cb560b5a53";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<div id="disqus_thread"></div>
<script>
var disqus_config = function () {
this.page.url = window.location.href;
};
(function() {
var d = document, s = d.createElement('script');
s.src = 'https://reage.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
</div>
</div>
<label for="sidebar-checkbox" class="sidebar-toggle"></label>
<script>
(function(document) {
var toggle = document.querySelector('.sidebar-toggle');
var sidebar = document.querySelector('#sidebar');
var checkbox = document.querySelector('#sidebar-checkbox');
document.addEventListener('click', function(e) {
var target = e.target;
if(!checkbox.checked ||
sidebar.contains(target) ||
(target === checkbox || target === toggle)) return;
checkbox.checked = false;
}, false);
})(document);
</script>
</body>
</html>
| rentiansheng/rentiansheng.github.com | _site/distributed lock/2018/09/02/distributedlock.html | HTML | mit | 9,471 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Coq bench</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../../..">Unstable</a></li>
<li><a href=".">8.4.5 / contrib:circuits dev</a></li>
<li class="active"><a href="">2014-12-04 12:24:54</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="../../../../../about.html">About</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href=".">« Up</a>
<h1>
contrib:circuits
<small>
dev
<span class="label label-info">Not compatible with this Coq</span>
</small>
</h1>
<p><em><script>document.write(moment("2014-12-04 12:24:54 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2014-12-04 12:24:54 UTC)</em><p>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>ruby lint.rb unstable ../unstable/packages/coq:contrib:circuits/coq:contrib:circuits.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
<dt>Output</dt>
<dd><pre>The package is valid.
</pre></dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --dry-run coq:contrib:circuits.dev coq.8.4.5</code></dd>
<dt>Return code</dt>
<dd>768</dd>
<dt>Duration</dt>
<dd>1 s</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.4.5).
Your request can't be satisfied:
- No package matches coq:contrib:circuits.
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq, to test if the problem was incompatibility with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --dry-run coq:contrib:circuits.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>3 s</dd>
<dt>Output</dt>
<dd><pre>The following actions will be performed:
- remove coq.8.4.5
=== 1 to remove ===
=-=- Removing Packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Removing coq.8.4.5.
[WARNING] Directory /home/bench/.opam/system/lib/coq is not empty, not removing
[WARNING] Directory /home/bench/.opam/system/share/coq is not empty, not removing
The following actions will be performed:
- install coq.hott [required by coq:contrib:circuits]
- install coq:contrib:circuits.dev
=== 2 to install ===
=-=- Synchronizing package archives -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
=-=- Installing packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Building coq.hott:
./configure -configdir /home/bench/.opam/system/lib/coq/config -mandir /home/bench/.opam/system/man -docdir /home/bench/.opam/system/doc -prefix /home/bench/.opam/system -usecamlp5 -camlp5dir /home/bench/.opam/system/lib/camlp5 -coqide no
make -j4
make install
Installing coq.hott.
Building coq:contrib:circuits.dev:
coq_makefile -f Make -o Makefile
make -j4
make install
Installing coq:contrib:circuits.dev.
</pre></dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html> | coq-bench/coq-bench.github.io-old | clean/Linux-x86_64-4.01.0-1.2.0/unstable/8.4.5/contrib:circuits/dev/2014-12-04_12-24-54.html | HTML | mit | 6,821 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.7"/>
<title>FiveRing for PHP: Namespace List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { searchBox.OnSelectItem(0); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">FiveRing for PHP
 <span id="projectnumber">1</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.7 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li class="current"><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li class="current"><a href="namespaces.html"><span>Namespace List</span></a></li>
<li><a href="namespacemembers.html"><span>Namespace Members</span></a></li>
</ul>
</div>
</div><!-- top -->
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Namespaces</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark"> </span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark"> </span>Functions</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="headertitle">
<div class="title">Namespace List</div> </div>
</div><!--header-->
<div class="contents">
<div class="textblock">Here is a list of all namespaces with brief descriptions:</div><div class="directory">
<div class="levels">[detail level <span onclick="javascript:toggleLevel(1);">1</span><span onclick="javascript:toggleLevel(2);">2</span>]</div><table class="directory">
<tr id="row_0_" class="even"><td class="entry"><span style="width:0px;display:inline-block;"> </span><span id="arr_0_" class="arrow" onclick="toggleFolder('0_')">▼</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespacetetraring.html" target="_self">tetraring</a></td><td class="desc"></td></tr>
<tr id="row_0_0_"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespacetetraring_1_1dir.html" target="_self">dir</a></td><td class="desc"></td></tr>
<tr id="row_0_1_" class="even"><td class="entry"><span style="width:32px;display:inline-block;"> </span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespacetetraring_1_1file.html" target="_self">file</a></td><td class="desc"></td></tr>
</table>
</div><!-- directory -->
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Sun Aug 28 2016 00:45:12 for FiveRing for PHP by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.7
</small></address>
</body>
</html>
| simpart/tetraring4php | doc/html/namespaces.html | HTML | mit | 5,424 |
<!DOCTYPE html><html lang="en-us" >
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="generator" content="Wowchemy 5.0.0-beta.1 for Hugo">
<meta name="description" content="Head of Computational Biology">
<link rel="alternate" hreflang="en-us" href="http://lpantano.github.io/author/aroa-soriano/">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<meta name="theme-color" content="#2962ff">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/academicons/1.9.0/css/academicons.min.css" integrity="sha512-W4yqoT1+8NLkinBLBZko+dFB2ZbHsYLDdr50VElllRcNt2Q4/GSs6u71UHKxB7S6JEMCp5Ve4xjh3eGQl/HRvg==" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css" integrity="sha256-FMvZuGapsJLjouA6k7Eo2lusoAX9i0ShlWFG6qt7SLc=" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.5.7/jquery.fancybox.min.css" integrity="sha256-Vzbj7sDDS/woiFS3uNKo8eIuni59rjyNGtXfstRzStA=" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.2.0/styles/github.min.css" crossorigin="anonymous" title="hl-light">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.2.0/styles/dracula.min.css" crossorigin="anonymous" title="hl-dark" disabled>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.7.1/leaflet.min.css" integrity="sha512-1xoFisiGdy9nvho8EgXuXvnpR5GAMSjFwp40gSRE3NwdUdIMIKuPa7bqoUhLD0O/5tPNhteAsE5XyyMi5reQVA==" crossorigin="anonymous">
<script src="https://cdnjs.cloudflare.com/ajax/libs/lazysizes/5.2.2/lazysizes.min.js" integrity="sha512-TmDwFLhg3UA4ZG0Eb4MIyT1O1Mb+Oww5kFG0uHqXsdbyZz9DcvYQhKpGgNkamAI6h2lGGZq2X8ftOJvF/XjTUg==" crossorigin="anonymous" async></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:400,700%7CRoboto:400,400italic,700%7CRoboto+Mono&display=swap">
<link rel="stylesheet" href="/css/wowchemy.min.f3326a6b1f183ed2ef84fcba003be54b.css">
<link rel="alternate" href="/author/aroa-soriano/index.xml" type="application/rss+xml" title="My bits">
<link rel="manifest" href="/index.webmanifest">
<link rel="icon" type="image/png" href="/images/icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_32x32_fill_lanczos_center_3.png">
<link rel="apple-touch-icon" type="image/png" href="/images/icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_192x192_fill_lanczos_center_3.png">
<link rel="canonical" href="http://lpantano.github.io/author/aroa-soriano/">
<meta property="twitter:card" content="summary">
<meta property="twitter:site" content="@lopantano">
<meta property="twitter:creator" content="@lopantano">
<meta property="og:site_name" content="My bits">
<meta property="og:url" content="http://lpantano.github.io/author/aroa-soriano/">
<meta property="og:title" content="Aroa Soriano | My bits">
<meta property="og:description" content="Head of Computational Biology"><meta property="og:image" content="http://lpantano.github.io/images/icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_512x512_fill_lanczos_center_3.png">
<meta property="twitter:image" content="http://lpantano.github.io/images/icon_hu0b7a4cb9992c9ac0e91bd28ffd38dd00_9727_512x512_fill_lanczos_center_3.png"><meta property="og:locale" content="en-us">
<meta property="og:updated_time" content="2019-06-01T00:00:00+00:00">
<title>Aroa Soriano | My bits</title>
</head>
<body id="top" data-spy="scroll" data-offset="70" data-target="#TableOfContents" class="page-wrapper ">
<script src="/js/wowchemy-init.js"></script>
<aside class="search-results" id="search">
<div class="container">
<section class="search-header">
<div class="row no-gutters justify-content-between mb-3">
<div class="col-6">
<h1>Search</h1>
</div>
<div class="col-6 col-search-close">
<a class="js-search" href="#"><i class="fas fa-times-circle text-muted" aria-hidden="true"></i></a>
</div>
</div>
<div id="search-box">
<input name="q" id="search-query" placeholder="Search..." autocapitalize="off"
autocomplete="off" autocorrect="off" spellcheck="false" type="search" class="form-control">
</div>
</section>
<section class="section-search-results">
<div id="search-hits">
</div>
</section>
</div>
</aside>
<div class="page-header">
<nav class="navbar navbar-expand-lg navbar-light compensate-for-scrollbar" id="navbar-main">
<div class="container">
<div class="d-none d-lg-inline-flex">
<a class="navbar-brand" href="/">My bits</a>
</div>
<button type="button" class="navbar-toggler" data-toggle="collapse"
data-target="#navbar-content" aria-controls="navbar" aria-expanded="false" aria-label="Toggle navigation">
<span><i class="fas fa-bars"></i></span>
</button>
<div class="navbar-brand-mobile-wrapper d-inline-flex d-lg-none">
<a class="navbar-brand" href="/">My bits</a>
</div>
<div class="navbar-collapse main-menu-item collapse justify-content-start" id="navbar-content">
<ul class="navbar-nav d-md-inline-flex">
<li class="nav-item">
<a class="nav-link " href="/#about"><span>Home</span></a>
</li>
<li class="nav-item">
<a class="nav-link " href="/#posts"><span>Posts</span></a>
</li>
<li class="nav-item">
<a class="nav-link " href="/#talks"><span>Talks</span></a>
</li>
<li class="nav-item">
<a class="nav-link " href="/#featured"><span>Publications</span></a>
</li>
<li class="nav-item">
<a class="nav-link " href="/#contact"><span>Contact</span></a>
</li>
</ul>
</div>
<ul class="nav-icons navbar-nav flex-row ml-auto d-flex pl-md-2">
<li class="nav-item">
<a class="nav-link js-search" href="#" aria-label="Search"><i class="fas fa-search" aria-hidden="true"></i></a>
</li>
<li class="nav-item dropdown theme-dropdown">
<a href="#" class="nav-link" data-toggle="dropdown" aria-haspopup="true" aria-label="Display preferences">
<i class="fas fa-moon" aria-hidden="true"></i>
</a>
<div class="dropdown-menu">
<a href="#" class="dropdown-item js-set-theme-light">
<span>Light</span>
</a>
<a href="#" class="dropdown-item js-set-theme-dark">
<span>Dark</span>
</a>
<a href="#" class="dropdown-item js-set-theme-auto">
<span>Automatic</span>
</a>
</div>
</li>
</ul>
</div>
</nav>
</div>
<div class="page-body">
<div class="universal-wrapper pt-3">
<h1>Aroa Soriano</h1>
</div>
<section id="profile-page" class="pt-5">
<div class="container">
<div class="article-widget content-widget-hr">
<h3>Latest</h3>
<ul>
<li>
<a href="/publication/pallarsalbanell-2019/">A High-Throughput Screening Identifies MicroRNA Inhibitors That Influence Neuronal Maintenance and/or Response to Oxidative Stress.</a>
</li>
</ul>
</div>
</div>
</section>
</div>
<div class="page-footer">
<div class="container">
<footer class="site-footer">
<p class="powered-by">
</p>
<p class="powered-by">
Published with
<a href="https://wowchemy.com" target="_blank" rel="noopener">Wowchemy</a> —
the free, <a href="https://github.com/wowchemy/wowchemy-hugo-modules" target="_blank" rel="noopener">
open source</a> website builder that empowers creators.
</p>
</footer>
</div>
</div>
<div id="modal" class="modal fade" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Cite</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<pre><code class="tex hljs"></code></pre>
</div>
<div class="modal-footer">
<a class="btn btn-outline-primary my-1 js-copy-cite" href="#" target="_blank">
<i class="fas fa-copy"></i> Copy
</a>
<a class="btn btn-outline-primary my-1 js-download-cite" href="#" target="_blank">
<i class="fas fa-download"></i> Download
</a>
<div id="modal-error"></div>
</div>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.imagesloaded/4.1.4/imagesloaded.pkgd.min.js" integrity="sha256-lqvxZrPLtfffUl2G/e7szqSvPBILGbwmsGE1MKlOi0Q=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.isotope/3.0.6/isotope.pkgd.min.js" integrity="sha256-CBrpuqrMhXwcLLUd5tvQ4euBHCdh7wGlDfNz8vbu/iI=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.5.7/jquery.fancybox.min.js" integrity="sha256-yt2kYMy0w8AbtF89WXb2P1rfjcP/HTHLT7097U8Y5b8=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/instant.page/5.1.0/instantpage.min.js" integrity="sha512-1+qUtKoh9XZW7j+6LhRMAyOrgSQKenQ4mluTR+cvxXjP1Z54RxZuzstR/H9kgPXQsVB8IW7DMDFUJpzLjvhGSQ==" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.2.0/highlight.min.js" integrity="sha512-TDKKr+IvoqZnPzc3l35hdjpHD0m+b2EC2SrLEgKDRWpxf2rFCxemkgvJ5kfU48ip+Y+m2XVKyOCD85ybtlZDmw==" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.2.0/languages/r.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.7.1/leaflet.min.js" integrity="sha512-SeiQaaDh73yrb56sTW/RgVdi/mMqNeM2oBwubFHagc5BkixSpP1fvqF47mKzPGWYSSy4RwbBunrJBQ4Co8fRWA==" crossorigin="anonymous"></script>
<script>const code_highlighting = true;</script>
<script>
const search_config = {"indexURI":"/index.json","minLength":1,"threshold":0.3};
const i18n = {"no_results":"No results found","placeholder":"Search...","results":"results found"};
const content_type = {
'post': "Posts",
'project': "Projects",
'publication' : "Publications",
'talk' : "Talks",
'slides' : "Slides"
};
</script>
<script id="search-hit-fuse-template" type="text/x-template">
<div class="search-hit" id="summary-{{key}}">
<div class="search-hit-content">
<div class="search-hit-name">
<a href="{{relpermalink}}">{{title}}</a>
<div class="article-metadata search-hit-type">{{type}}</div>
<p class="search-hit-description">{{snippet}}</p>
</div>
</div>
</div>
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fuse.js/3.2.1/fuse.min.js" integrity="sha256-VzgmKYmhsGNNN4Ph1kMW+BjoYJM2jV5i4IlFoeZA9XI=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mark.js/8.11.1/jquery.mark.min.js" integrity="sha256-4HLtjeVgH0eIB3aZ9mLYF6E8oU5chNdjU6p6rrXpl9U=" crossorigin="anonymous"></script>
<script src="/js/wowchemy.min.62addc90a3e2146a1bd07ee878b86bc0.js"></script>
</body>
</html>
| lpantano/lpantano.github.io | author/aroa-soriano/index.html | HTML | mit | 14,856 |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>AJAX | HTTPRequest</title>
</head>
<body>
<span id="ajaxButton" style="cursor: pointer; text-decoration: underline">
Fazer Pedido
</span>
<script type="text/javascript">
(function() {
var httpRequest;
document.getElementById("ajaxButton").onclick = function() { makeRequest('texto.txt'); };
function makeRequest(url) {
if (window.XMLHttpRequest) { // Mozilla, Safari, ...
httpRequest = new XMLHttpRequest();
} else if (window.ActiveXObject) { // IE
try {
httpRequest = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
httpRequest = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {}
}
}
if (!httpRequest) {
alert('Desistindo :( Não é possível criar uma instância XMLHTTP');
return false;
}
httpRequest.onreadystatechange = alertContents;
httpRequest.open('GET', url);
httpRequest.send();
}
function alertContents() {
try {
if (httpRequest.readyState === 4) {
if (httpRequest.status === 200) {
alert(httpRequest.responseText);
alert("Metodo GET");
} else {
alert('Houve um problema com o pedido.');
}
}
} catch( e ) {
alert('Exceção travada: ' + e.description);
}
}
})();
</script>
</body>
</html> | Ronneesley/redesocial | pesquisas/Ajax Puro/recursos/codigo/requisicao_simples_txt.html | HTML | mit | 1,417 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>metacoq-erasure: 4 m 43 s 🏆</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.9.1 / metacoq-erasure - 1.0~alpha1+8.9</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
metacoq-erasure
<small>
1.0~alpha1+8.9
<span class="label label-success">4 m 43 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-23 15:45:32 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-23 15:45:32 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.9.1 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.04.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.04.2 Official 4.04.2 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "matthieu.sozeau@inria.fr"
homepage: "https://metacoq.github.io/metacoq"
dev-repo: "git+https://github.com/MetaCoq/metacoq.git#coq-8.8"
bug-reports: "https://github.com/MetaCoq/metacoq/issues"
authors: ["Abhishek Anand <aa755@cs.cornell.edu>"
"Simon Boulier <simon.boulier@inria.fr>"
"Cyril Cohen <cyril.cohen@inria.fr>"
"Yannick Forster <forster@ps.uni-saarland.de>"
"Fabian Kunze <fkunze@fakusb.de>"
"Gregory Malecha <gmalecha@gmail.com>"
"Matthieu Sozeau <matthieu.sozeau@inria.fr>"
"Nicolas Tabareau <nicolas.tabareau@inria.fr>"
"Théo Winterhalter <theo.winterhalter@inria.fr>"
]
license: "MIT"
build: [
["sh" "./configure.sh"]
[make "-j%{jobs}%" "-C" "erasure"]
[make "test-suite"] {with-test}
]
install: [
[make "-C" "erasure" "install"]
]
depends: [
"ocaml" {> "4.02.3"}
"coq" {>= "8.9" & < "8.10~"}
"coq-metacoq-template" {= version}
"coq-metacoq-checker" {= version}
"coq-metacoq-pcuic" {= version}
"coq-metacoq-safechecker" {= version}
]
synopsis: "Implementation and verification of an erasure procedure for Coq"
description: """
MetaCoq is a meta-programming framework for Coq.
The Erasure module provides a complete specification of Coq's so-called
\"extraction\" procedure, starting from the PCUIC calculus and targeting
untyped call-by-value lambda-calculus.
The `erasure` function translates types and proofs in well-typed terms
into a dummy `tBox` constructor, following closely P. Letouzey's PhD
thesis.
"""
url {
src: "https://github.com/MetaCoq/metacoq/archive/1.0-alpha+8.9.tar.gz"
checksum: "sha256=899ef4ee73b1684a0f1d2e37ab9ab0f9b24424f6d8a10a10efd474c0ed93488e"
}</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-metacoq-erasure.1.0~alpha1+8.9 coq.8.9.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-metacoq-erasure.1.0~alpha1+8.9 coq.8.9.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>34 m 46 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 4h opam install -y -v coq-metacoq-erasure.1.0~alpha1+8.9 coq.8.9.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>4 m 43 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 13 M</p>
<ul>
<li>3 M <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ErasureFunction.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ErasureCorrectness.vo</code></li>
<li>1 M <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/SafeErasureFunction.vo</code></li>
<li>979 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ESubstitution.vo</code></li>
<li>897 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/metacoq_erasure_plugin.cmxs</code></li>
<li>866 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/SafeTemplateErasure.vo</code></li>
<li>824 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/Prelim.vo</code></li>
<li>794 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EArities.vo</code></li>
<li>793 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/Extraction.vo</code></li>
<li>756 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EInversion.vo</code></li>
<li>364 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ELiftSubst.vo</code></li>
<li>177 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/metacoq_erasure_plugin.cmi</code></li>
<li>172 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/Extract.vo</code></li>
<li>158 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ErasureCorrectness.glob</code></li>
<li>123 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ELiftSubst.glob</code></li>
<li>114 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EAll.vo</code></li>
<li>114 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EWcbvEval.vo</code></li>
<li>108 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ErasureFunction.glob</code></li>
<li>97 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EAstUtils.vo</code></li>
<li>79 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EArities.glob</code></li>
<li>77 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/SafeErasureFunction.glob</code></li>
<li>70 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/metacoq_erasure_plugin.cmx</code></li>
<li>68 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EWcbvEval.glob</code></li>
<li>66 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ESubstitution.glob</code></li>
<li>63 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EAst.vo</code></li>
<li>63 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EPretty.vo</code></li>
<li>53 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ETyping.vo</code></li>
<li>49 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/Prelim.glob</code></li>
<li>49 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ErasureCorrectness.v</code></li>
<li>42 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EInduction.vo</code></li>
<li>38 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/Extract.glob</code></li>
<li>37 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EAstUtils.glob</code></li>
<li>36 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EWndEval.vo</code></li>
<li>34 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/Loader.vo</code></li>
<li>30 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ErasureFunction.v</code></li>
<li>26 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/SafeErasureFunction.v</code></li>
<li>26 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/SafeTemplateErasure.glob</code></li>
<li>26 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EPretty.glob</code></li>
<li>23 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EWcbvEval.v</code></li>
<li>22 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EArities.v</code></li>
<li>22 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EInversion.glob</code></li>
<li>17 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ELiftSubst.v</code></li>
<li>15 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ESubstitution.v</code></li>
<li>13 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EAst.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/Prelim.v</code></li>
<li>11 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ETyping.glob</code></li>
<li>9 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/SafeTemplateErasure.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EAstUtils.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EInduction.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/Extract.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EPretty.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/metacoq_erasure_plugin.cmxa</code></li>
<li>6 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EAst.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/ETyping.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EWndEval.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EInversion.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EInduction.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EWndEval.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/Extraction.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/Extraction.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EAll.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/Loader.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/Loader.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.04.2/lib/coq/user-contrib/MetaCoq/Erasure/EAll.v</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-metacoq-erasure.1.0~alpha1+8.9</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.04.2-2.0.5/released/8.9.1/metacoq-erasure/1.0~alpha1+8.9.html | HTML | mit | 15,768 |
<div class="Ss-header">
<nav class="navbar navbar-default Ss-header-wrapper">
<div class="container-fluid Ss-header-content">
<div class="navbar-header">
</div>
<div class="nav navbar-nav navbar-left">
<ul class="navHome">
<a ui-sref="root.Home" class="btn btn-success" aria-label="Left Align">
<span class="glyphicon glyphicon-home" aria-hidden="true"></span>
</a>
<a ui-sref="root.Home" href="#" style="text-effect: none;text-decoration:none;color:#000000;">Welcome to Student Shopper</a>
</ul>
</div>
<ul class="nav navbar-nav navbar-right">
<a class="btn btn-success navbar-btn" ui-sref="root.Login"> <span class="glyphicon glyphicon-log-in" aria-hidden="true"></span> Login</a>
<a class="btn btn-success navbar-btn" ui-sref="root.Signup">Sign Up</a>
</ul>
</div>
</nav>
</div>
<div ui-view class="Ss"></div> | AppliedSoftwareManagement-Team8/student-shopper-fe | app/views/main.header.html | HTML | mit | 1,036 |
<div>
<h3>Some useful links</h3>
<ul>
<li><a href="https://pypi.python.org/pypi/buildthedocs">Download @ PyPI</a></li>
<li><a href="https://github.com/pietroalbini/buildthedocs">Source code @ GitHub</a></li>
<li><a href="https://github.com/pietroalbini/buildthedocs/issues">Issue tracker @ GitHub</a></li>
</ul>
</div>
| pietroalbini/buildthedocs | docs/_templates/links.html | HTML | mit | 355 |
<html><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>Filibuster</title> <link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet">
<body><h1>Results for "file_extension"</h1>
<p><a href="index.html">Index</a></p>
<p class="blurb">jpeg</p>
<p class="blurb">HTML</p>
<p class="blurb">HTML</p>
<p class="blurb">html</p>
<p class="blurb">docm</p>
<p class="blurb">html</p>
<p class="blurb">PSD</p>
<p class="blurb">HTML</p>
<p class="blurb">PHP</p>
<p class="blurb">png</p>
<p class="blurb">docx</p>
<p class="blurb">JS</p>
<p class="blurb">htm</p>
<p class="blurb">JPEG</p>
<p class="blurb">CSS</p>
<p class="blurb">HTML</p>
<p class="blurb">DOCX</p>
<p class="blurb">jpeg</p>
<p class="blurb">pdf</p>
<p class="blurb">PNG</p>
</body></html> | LettError/filibuster | test/file_extension.html | HTML | mit | 835 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_22) on Thu Nov 11 09:12:09 EST 2010 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
JSON.Generator (Jetty Server Project 6.1.26 API)
</TITLE>
<META NAME="date" CONTENT="2010-11-11">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../javadoc.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="JSON.Generator (Jetty Server Project 6.1.26 API)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/JSON.Generator.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../org/mortbay/util/ajax/JSON.Convertor.html" title="interface in org.mortbay.util.ajax"><B>PREV CLASS</B></A>
<A HREF="../../../../org/mortbay/util/ajax/JSON.Literal.html" title="class in org.mortbay.util.ajax"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?org/mortbay/util/ajax/JSON.Generator.html" target="_top"><B>FRAMES</B></A>
<A HREF="JSON.Generator.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
org.mortbay.util.ajax</FONT>
<BR>
Interface JSON.Generator</H2>
<DL>
<DT><B>All Known Implementing Classes:</B> <DD><A HREF="../../../../org/mortbay/util/ajax/JSON.Literal.html" title="class in org.mortbay.util.ajax">JSON.Literal</A>, <A HREF="../../../../org/mortbay/cometd/MessageImpl.html" title="class in org.mortbay.cometd">MessageImpl</A></DD>
</DL>
<DL>
<DT><B>Enclosing class:</B><DD><A HREF="../../../../org/mortbay/util/ajax/JSON.html" title="class in org.mortbay.util.ajax">JSON</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public static interface <B>JSON.Generator</B></DL>
</PRE>
<P>
JSON Generator.
A class that can add it's JSON representation directly to a StringBuffer.
This is useful for object instances that are frequently converted and wish to
avoid multiple Conversions
<P>
<P>
<HR>
<P>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Method Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/mortbay/util/ajax/JSON.Generator.html#addJSON(java.lang.StringBuffer)">addJSON</A></B>(java.lang.StringBuffer buffer)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<P>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="addJSON(java.lang.StringBuffer)"><!-- --></A><H3>
addJSON</H3>
<PRE>
void <B>addJSON</B>(java.lang.StringBuffer buffer)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/JSON.Generator.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../org/mortbay/util/ajax/JSON.Convertor.html" title="interface in org.mortbay.util.ajax"><B>PREV CLASS</B></A>
<A HREF="../../../../org/mortbay/util/ajax/JSON.Literal.html" title="class in org.mortbay.util.ajax"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?org/mortbay/util/ajax/JSON.Generator.html" target="_top"><B>FRAMES</B></A>
<A HREF="JSON.Generator.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright © 1995-2010 <a href="http://www.mortbay.com">Mort Bay Consulting</a>. All Rights Reserved.
</BODY>
</HTML>
| napcs/qedserver | jetty/javadoc/org/mortbay/util/ajax/JSON.Generator.html | HTML | mit | 8,963 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>paramcoq: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.8.0 / paramcoq - 1.0.5</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
paramcoq
<small>
1.0.5
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-09-14 18:10:41 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-09-14 18:10:41 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.13 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.8.0 Formal proof management system.
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "abhishek.anand.iitg@gmail.com"
homepage: "https://github.com/aa755/paramcoq"
dev-repo: "git+https://github.com/aa755/paramcoq"
authors: ["Chantal Keller" "Marc Lasson"]
bug-reports: "https://github.com/aa755/paramcoq/issues"
license: "MIT"
build: [
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
depends: [
"ocaml"
"coq" {>= "8.7" & < "8.7.2"}
]
synopsis: "Keller, Chantal, and Marc Lasson. “Parametricity in an Impredicative Sort.” Computer Science Logic, September 27, 2012. https://doi.org/10.4230/LIPIcs.CSL.2012.399"
description: "Originally implemented by the above authors."
url {
src: "https://github.com/aa755/paramcoq/archive/v1.0.5.tar.gz"
checksum: "md5=fe453f3983c0c711257b73e8f15fc255"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-paramcoq.1.0.5 coq.8.8.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.8.0).
The following dependencies couldn't be met:
- coq-paramcoq -> coq < 8.7.2 -> ocaml < 4.03.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-paramcoq.1.0.5</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.05.0-2.0.6/released/8.8.0/paramcoq/1.0.5.html | HTML | mit | 6,778 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>
{% block title %}
SPA
{% endblock title %}
</title>
<link rel="stylesheet" href="{{ STATIC_URL }}css/styles.css" type="text/css" />
<link rel="stylesheet" href="{{ STATIC_URL }}css/uni-form.css" media="all" />
<!--[if IE]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/jquery/ui-lightness/jquery-ui-1.8.23.custom.css" />
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/jquery/timepicker.css" />
<script type="text/javascript" src="{{ STATIC_URL }}js/jquery/jquery-1.8.0.min.js"></script>
<script type="text/javascript" src="{{ STATIC_URL }}js/jquery/jquery-ui-1.8.23.custom.min.js"></script>
<script type="text/javascript" src="{{ STATIC_URL }}js/jquery/jquery-ui-timepicker-addon.js"></script>
<script type="text/javascript" src="{{ STATIC_URL }}js/startup/startup.js"></script>
</head>
<body>
<div id="wrapper"><!-- #wrapper -->
<nav><!-- top nav -->
<div class="menu">
<ul>
<li><a href="/">Home</a></li>
<li><a href="{% url 'list-pools' %}">Pools</a></li>
{% if user.is_authenticated %}
<li><a href="{% url 'auth_logout' %}">Log out</a></li>
{% else %}
<li><a href="{% url 'auth_login' %}">Log in</a></li>
{% endif %}
</ul>
</div>
</nav><!-- end of top nav -->
<header><!-- header -->
<h1><a href="/">SPA</a></h1>
</header><!-- end of header -->
<section id="main"><!-- #main content and sidebar area -->
<section id="content"><!-- #content -->
{% block content %}{% endblock %}
<!-- <article>
<h2><a href="#">First Article Title</a></h2>
<img src="images/girlwindow.jpg" alt="" class="alignleft" /><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. <a href="#">Duis sagittis ipsum</a>. Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet. Praesent mauris. Fusce nec tellus sed augue semper porta. Mauris massa. Vestibulum lacinia arcu eget nulla. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Curabitur sodales ligula in libero. Sed dignissim lacinia nunc. Duo partem graeco repudiare ne, vix cu graeci nostrud blandit. Agam graecis omnesque usu ut, veniam commune ne sit, vide lucilius complectitur at ius.</p>
<p>Eu eirmod interesset temporibus eum, sea cu amet reque quaestio. Qui erroribus assentior disputando an, quo quot accumsan menandri te, accumsan aliquando dissentias mei ea. Autem verear molestiae an mel, nominavi expetenda similique sit ei. Commodo utroque scribentur id nam, an ferri eruditi perpetua his, et has esse facer nominavi. Mei et essent dictas aliquip. Saepe eligendi phaedrum ne vix, sit putant eruditi eloquentiam at.</p>
</article> -->
</section><!-- end of #content -->
<aside id="sidebar"><!-- sidebar -->
{% block sidebar %}{% endblock %}
</aside><!-- end of sidebar -->
</section><!-- end of #main content and sidebar-->
<footer>
<section id="footer-area">
<section id="footer-outer-block">
<aside class="footer-segment">
<h4>Links</h4>
<ul>
<li><a href="/">Home</a></li>
<li><a href="{% url 'list-pools' %}">Pools</a></li>
</ul>
</aside><!-- end of #first footer segment -->
</section><!-- end of footer-outer-block -->
</section><!-- end of footer-area -->
</footer>
</div><!-- #wrapper -->
<!-- Free template created by http://freehtml5templates.com -->
</body>
</html>
| mbad/kitabu | example_project/spa/templates/base.html | HTML | mit | 4,143 |
<!DOCTYPE html>
<html class="theme-next pisces use-motion" lang="zh-CN">
<head><meta name="generator" content="Hexo 3.8.0">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2">
<meta name="theme-color" content="#222">
<link rel="stylesheet" href="/lib/font-awesome/css/font-awesome.min.css?v=4.7.0">
<link rel="stylesheet" href="/css/main.css?v=7.1.2">
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png?v=7.1.2">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png?v=7.1.2">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png?v=7.1.2">
<link rel="mask-icon" href="/images/logo.svg?v=7.1.2" color="#222">
<script id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Pisces',
version: '7.1.2',
sidebar: {"position":"left","display":"post","offset":12,"onmobile":false,"dimmer":false},
back2top: true,
back2top_sidebar: false,
fancybox: false,
fastclick: false,
lazyload: false,
tabs: true,
motion: {"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},
algolia: {
applicationID: '',
apiKey: '',
indexName: '',
hits: {"per_page":10},
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
}
};
</script>
<meta name="description" content="赵耘谊的博客">
<meta property="og:type" content="website">
<meta property="og:title" content="Zhaoyunyi's Blog">
<meta property="og:url" content="https://lrecord.cn/archives/page/3/index.html">
<meta property="og:site_name" content="Zhaoyunyi's Blog">
<meta property="og:description" content="赵耘谊的博客">
<meta property="og:locale" content="zh-CN">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Zhaoyunyi's Blog">
<meta name="twitter:description" content="赵耘谊的博客">
<link rel="canonical" href="https://lrecord.cn/archives/page/3/">
<script id="page.configurations">
CONFIG.page = {
sidebar: "",
};
</script>
<title>归档 | Zhaoyunyi's Blog</title>
<noscript>
<style>
.use-motion .motion-element,
.use-motion .brand,
.use-motion .menu-item,
.sidebar-inner,
.use-motion .post-block,
.use-motion .pagination,
.use-motion .comments,
.use-motion .post-header,
.use-motion .post-body,
.use-motion .collection-title { opacity: initial; }
.use-motion .logo,
.use-motion .site-title,
.use-motion .site-subtitle {
opacity: initial;
top: initial;
}
.use-motion .logo-line-before i { left: initial; }
.use-motion .logo-line-after i { right: initial; }
</style>
</noscript>
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="zh-CN">
<div class="container sidebar-position-left page-archive">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-wrapper">
<div class="site-meta">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">Zhaoyunyi's Blog</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle">Stay Hungry, Stay Foolish</p>
</div>
<div class="site-nav-toggle">
<button aria-label="切换导航栏">
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section"><i class="menu-item-icon fa fa-fw fa-home"></i> <br>首页</a>
</li>
<li class="menu-item menu-item-archives menu-item-active">
<a href="/archives/" rel="section"><i class="menu-item-icon fa fa-fw fa-archive"></i> <br>归档</a>
</li>
</ul>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<div class="post-block archive">
<div id="posts" class="posts-collapse">
<span class="archive-move-on"></span>
<span class="archive-page-counter">
嗯..! 目前共计 22 篇日志。 继续努力。
</span>
<div class="collection-title">
<h1 class="archive-year" id="archive-year-2017">2017</h1>
</div>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2017/01/04/2017-1-4-搭好自己的博客/" itemprop="url">
<span itemprop="name">“搭好自己的博客”</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated" datetime="2017-01-04T00:00:00+08:00" content="2017-01-04">
01-04
</time>
</div>
</header>
</article>
<div class="collection-title">
<h1 class="archive-year" id="archive-year-2016">2016</h1>
</div>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h2 class="post-title">
<a class="post-title-link" href="/2016/12/13/2016-12-13-iOS 制作framework/" itemprop="url">
<span itemprop="name">“iOS Swfit 制作framework”</span>
</a>
</h2>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated" datetime="2016-12-13T00:00:00+08:00" content="2016-12-13">
12-13
</time>
</div>
</header>
</article>
</div>
</div>
<nav class="pagination">
<a class="extend prev" rel="prev" href="/archives/page/2/"><i class="fa fa-angle-left" aria-label="上一页"></i></a><a class="page-number" href="/archives/">1</a><a class="page-number" href="/archives/page/2/">2</a><span class="page-number current">3</span>
</nav>
</div>
</div>
<div class="sidebar-toggle">
<div class="sidebar-toggle-line-wrap">
<span class="sidebar-toggle-line sidebar-toggle-line-first"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-middle"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-last"></span>
</div>
</div>
<aside id="sidebar" class="sidebar">
<div class="sidebar-inner">
<div class="site-overview-wrap sidebar-panel sidebar-panel-active">
<div class="site-overview">
<div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person">
<p class="site-author-name" itemprop="name">Zhaoyunyi</p>
<div class="site-description motion-element" itemprop="description">赵耘谊的博客</div>
</div>
<nav class="site-state motion-element">
<div class="site-state-item site-state-posts">
<a href="/archives/">
<span class="site-state-item-count">22</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
<div class="site-state-item site-state-categories">
<span class="site-state-item-count">6</span>
<span class="site-state-item-name">分类</span>
</div>
<div class="site-state-item site-state-tags">
<span class="site-state-item-count">10</span>
<span class="site-state-item-name">标签</span>
</div>
</nav>
</div>
</div>
</div>
</aside>
</div>
</main>
<footer id="footer" class="footer">
<div class="footer-inner">
<div class="copyright">© <span itemprop="copyrightYear">2021</span>
<span class="with-love" id="animate">
<i class="fa fa-user"></i>
</span>
<span class="author" itemprop="copyrightHolder">Zhaoyunyi</span>
</div>
<div class="powered-by">由 <a href="https://hexo.io" class="theme-link" rel="noopener" target="_blank">Hexo</a> 强力驱动 v3.8.0</div>
<span class="post-meta-divider">|</span>
<div class="theme-info">主题 – <a href="https://theme-next.org" class="theme-link" rel="noopener" target="_blank">NexT.Pisces</a> v7.1.2</div>
</div>
</footer>
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
</div>
</div>
<script>
if (Object.prototype.toString.call(window.Promise) !== '[object Function]') {
window.Promise = null;
}
</script>
<script src="/lib/jquery/index.js?v=3.4.1"></script>
<script src="/lib/velocity/velocity.min.js?v=1.2.1"></script>
<script src="/lib/velocity/velocity.ui.min.js?v=1.2.1"></script>
<script src="/js/utils.js?v=7.1.2"></script>
<script src="/js/motion.js?v=7.1.2"></script>
<script src="/js/affix.js?v=7.1.2"></script>
<script src="/js/schemes/pisces.js?v=7.1.2"></script>
<script src="/js/next-boot.js?v=7.1.2"></script>
</body>
</html>
| zhaoyunyi/zhaoyunyi.github.io | archives/page/3/index.html | HTML | mit | 11,867 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="robots" content="index, follow, all" />
<title>HealthCareAbroad\HelperBundle\Repository\PhotoRepository | HealthCareAbroad API</title>
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
</head>
<body id="class">
<div class="header">
<ul>
<li><a href="../../../classes.html">Classes</a></li>
<li><a href="../../../namespaces.html">Namespaces</a></li>
<li><a href="../../../interfaces.html">Interfaces</a></li>
<li><a href="../../../doc-index.html">Index</a></li>
</ul>
<div id="title">HealthCareAbroad API</div>
<div class="type">Class</div>
<h1><a href="../../../HealthCareAbroad/HelperBundle/Repository.html">HealthCareAbroad\HelperBundle\Repository</a>\PhotoRepository</h1>
</div>
<div class="content">
<p>class <strong>PhotoRepository</strong> extends <abbr title="Doctrine\ORM\EntityRepository">EntityRepository</abbr></p>
<div class="description">
<p>PhotoRepository</p>
<p>This class was generated by the Doctrine ORM. Add your own custom<br />
repository methods below.</p>
</div>
</div>
<div id="footer">
Generated by <a href="http://sami.sensiolabs.org/" target="_top">Sami, the API Documentation Generator</a>.
</div>
</body>
</html>
| richtermarkbaay/MEDTrip | doc/HealthCareAbroad/HelperBundle/Repository/PhotoRepository.html | HTML | mit | 1,607 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_31) on Wed Dec 17 20:48:22 PST 2014 -->
<title>compact3 - java.util (Java Platform SE 8 )</title>
<meta name="date" content="2014-12-17">
<meta name="keywords" content="java.util package">
<link rel="stylesheet" type="text/css" href="../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../script.js"></script>
</head>
<body>
<h1 class="bar"><a href="../../compact3-summary.html" target="classFrame">compact3</a> - <a href="../../java/util/compact3-package-summary.html" target="classFrame">java.util</a></h1>
<div class="indexContainer">
<h2 title="Interfaces">Interfaces</h2>
<ul title="Interfaces">
<li><a href="Collection.html" title="interface in java.util" target="classFrame"><span class="interfaceName">Collection</span></a></li>
<li><a href="Comparator.html" title="interface in java.util" target="classFrame"><span class="interfaceName">Comparator</span></a></li>
<li><a href="Deque.html" title="interface in java.util" target="classFrame"><span class="interfaceName">Deque</span></a></li>
<li><a href="Enumeration.html" title="interface in java.util" target="classFrame"><span class="interfaceName">Enumeration</span></a></li>
<li><a href="EventListener.html" title="interface in java.util" target="classFrame"><span class="interfaceName">EventListener</span></a></li>
<li><a href="Formattable.html" title="interface in java.util" target="classFrame"><span class="interfaceName">Formattable</span></a></li>
<li><a href="Iterator.html" title="interface in java.util" target="classFrame"><span class="interfaceName">Iterator</span></a></li>
<li><a href="List.html" title="interface in java.util" target="classFrame"><span class="interfaceName">List</span></a></li>
<li><a href="ListIterator.html" title="interface in java.util" target="classFrame"><span class="interfaceName">ListIterator</span></a></li>
<li><a href="Map.html" title="interface in java.util" target="classFrame"><span class="interfaceName">Map</span></a></li>
<li><a href="Map.Entry.html" title="interface in java.util" target="classFrame"><span class="interfaceName">Map.Entry</span></a></li>
<li><a href="NavigableMap.html" title="interface in java.util" target="classFrame"><span class="interfaceName">NavigableMap</span></a></li>
<li><a href="NavigableSet.html" title="interface in java.util" target="classFrame"><span class="interfaceName">NavigableSet</span></a></li>
<li><a href="Observer.html" title="interface in java.util" target="classFrame"><span class="interfaceName">Observer</span></a></li>
<li><a href="PrimitiveIterator.html" title="interface in java.util" target="classFrame"><span class="interfaceName">PrimitiveIterator</span></a></li>
<li><a href="PrimitiveIterator.OfDouble.html" title="interface in java.util" target="classFrame"><span class="interfaceName">PrimitiveIterator.OfDouble</span></a></li>
<li><a href="PrimitiveIterator.OfInt.html" title="interface in java.util" target="classFrame"><span class="interfaceName">PrimitiveIterator.OfInt</span></a></li>
<li><a href="PrimitiveIterator.OfLong.html" title="interface in java.util" target="classFrame"><span class="interfaceName">PrimitiveIterator.OfLong</span></a></li>
<li><a href="Queue.html" title="interface in java.util" target="classFrame"><span class="interfaceName">Queue</span></a></li>
<li><a href="RandomAccess.html" title="interface in java.util" target="classFrame"><span class="interfaceName">RandomAccess</span></a></li>
<li><a href="Set.html" title="interface in java.util" target="classFrame"><span class="interfaceName">Set</span></a></li>
<li><a href="SortedMap.html" title="interface in java.util" target="classFrame"><span class="interfaceName">SortedMap</span></a></li>
<li><a href="SortedSet.html" title="interface in java.util" target="classFrame"><span class="interfaceName">SortedSet</span></a></li>
<li><a href="Spliterator.html" title="interface in java.util" target="classFrame"><span class="interfaceName">Spliterator</span></a></li>
<li><a href="Spliterator.OfDouble.html" title="interface in java.util" target="classFrame"><span class="interfaceName">Spliterator.OfDouble</span></a></li>
<li><a href="Spliterator.OfInt.html" title="interface in java.util" target="classFrame"><span class="interfaceName">Spliterator.OfInt</span></a></li>
<li><a href="Spliterator.OfLong.html" title="interface in java.util" target="classFrame"><span class="interfaceName">Spliterator.OfLong</span></a></li>
<li><a href="Spliterator.OfPrimitive.html" title="interface in java.util" target="classFrame"><span class="interfaceName">Spliterator.OfPrimitive</span></a></li>
</ul>
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="AbstractCollection.html" title="class in java.util" target="classFrame">AbstractCollection</a></li>
<li><a href="AbstractList.html" title="class in java.util" target="classFrame">AbstractList</a></li>
<li><a href="AbstractMap.html" title="class in java.util" target="classFrame">AbstractMap</a></li>
<li><a href="AbstractMap.SimpleEntry.html" title="class in java.util" target="classFrame">AbstractMap.SimpleEntry</a></li>
<li><a href="AbstractMap.SimpleImmutableEntry.html" title="class in java.util" target="classFrame">AbstractMap.SimpleImmutableEntry</a></li>
<li><a href="AbstractQueue.html" title="class in java.util" target="classFrame">AbstractQueue</a></li>
<li><a href="AbstractSequentialList.html" title="class in java.util" target="classFrame">AbstractSequentialList</a></li>
<li><a href="AbstractSet.html" title="class in java.util" target="classFrame">AbstractSet</a></li>
<li><a href="ArrayDeque.html" title="class in java.util" target="classFrame">ArrayDeque</a></li>
<li><a href="ArrayList.html" title="class in java.util" target="classFrame">ArrayList</a></li>
<li><a href="Arrays.html" title="class in java.util" target="classFrame">Arrays</a></li>
<li><a href="Base64.html" title="class in java.util" target="classFrame">Base64</a></li>
<li><a href="Base64.Decoder.html" title="class in java.util" target="classFrame">Base64.Decoder</a></li>
<li><a href="Base64.Encoder.html" title="class in java.util" target="classFrame">Base64.Encoder</a></li>
<li><a href="BitSet.html" title="class in java.util" target="classFrame">BitSet</a></li>
<li><a href="Calendar.html" title="class in java.util" target="classFrame">Calendar</a></li>
<li><a href="Calendar.Builder.html" title="class in java.util" target="classFrame">Calendar.Builder</a></li>
<li><a href="Collections.html" title="class in java.util" target="classFrame">Collections</a></li>
<li><a href="Currency.html" title="class in java.util" target="classFrame">Currency</a></li>
<li><a href="Date.html" title="class in java.util" target="classFrame">Date</a></li>
<li><a href="Dictionary.html" title="class in java.util" target="classFrame">Dictionary</a></li>
<li><a href="DoubleSummaryStatistics.html" title="class in java.util" target="classFrame">DoubleSummaryStatistics</a></li>
<li><a href="EnumMap.html" title="class in java.util" target="classFrame">EnumMap</a></li>
<li><a href="EnumSet.html" title="class in java.util" target="classFrame">EnumSet</a></li>
<li><a href="EventListenerProxy.html" title="class in java.util" target="classFrame">EventListenerProxy</a></li>
<li><a href="EventObject.html" title="class in java.util" target="classFrame">EventObject</a></li>
<li><a href="FormattableFlags.html" title="class in java.util" target="classFrame">FormattableFlags</a></li>
<li><a href="Formatter.html" title="class in java.util" target="classFrame">Formatter</a></li>
<li><a href="GregorianCalendar.html" title="class in java.util" target="classFrame">GregorianCalendar</a></li>
<li><a href="HashMap.html" title="class in java.util" target="classFrame">HashMap</a></li>
<li><a href="HashSet.html" title="class in java.util" target="classFrame">HashSet</a></li>
<li><a href="Hashtable.html" title="class in java.util" target="classFrame">Hashtable</a></li>
<li><a href="IdentityHashMap.html" title="class in java.util" target="classFrame">IdentityHashMap</a></li>
<li><a href="IntSummaryStatistics.html" title="class in java.util" target="classFrame">IntSummaryStatistics</a></li>
<li><a href="LinkedHashMap.html" title="class in java.util" target="classFrame">LinkedHashMap</a></li>
<li><a href="LinkedHashSet.html" title="class in java.util" target="classFrame">LinkedHashSet</a></li>
<li><a href="LinkedList.html" title="class in java.util" target="classFrame">LinkedList</a></li>
<li><a href="ListResourceBundle.html" title="class in java.util" target="classFrame">ListResourceBundle</a></li>
<li><a href="Locale.html" title="class in java.util" target="classFrame">Locale</a></li>
<li><a href="Locale.Builder.html" title="class in java.util" target="classFrame">Locale.Builder</a></li>
<li><a href="Locale.LanguageRange.html" title="class in java.util" target="classFrame">Locale.LanguageRange</a></li>
<li><a href="LongSummaryStatistics.html" title="class in java.util" target="classFrame">LongSummaryStatistics</a></li>
<li><a href="Objects.html" title="class in java.util" target="classFrame">Objects</a></li>
<li><a href="Observable.html" title="class in java.util" target="classFrame">Observable</a></li>
<li><a href="Optional.html" title="class in java.util" target="classFrame">Optional</a></li>
<li><a href="OptionalDouble.html" title="class in java.util" target="classFrame">OptionalDouble</a></li>
<li><a href="OptionalInt.html" title="class in java.util" target="classFrame">OptionalInt</a></li>
<li><a href="OptionalLong.html" title="class in java.util" target="classFrame">OptionalLong</a></li>
<li><a href="PriorityQueue.html" title="class in java.util" target="classFrame">PriorityQueue</a></li>
<li><a href="Properties.html" title="class in java.util" target="classFrame">Properties</a></li>
<li><a href="PropertyPermission.html" title="class in java.util" target="classFrame">PropertyPermission</a></li>
<li><a href="PropertyResourceBundle.html" title="class in java.util" target="classFrame">PropertyResourceBundle</a></li>
<li><a href="Random.html" title="class in java.util" target="classFrame">Random</a></li>
<li><a href="ResourceBundle.html" title="class in java.util" target="classFrame">ResourceBundle</a></li>
<li><a href="ResourceBundle.Control.html" title="class in java.util" target="classFrame">ResourceBundle.Control</a></li>
<li><a href="Scanner.html" title="class in java.util" target="classFrame">Scanner</a></li>
<li><a href="ServiceLoader.html" title="class in java.util" target="classFrame">ServiceLoader</a></li>
<li><a href="SimpleTimeZone.html" title="class in java.util" target="classFrame">SimpleTimeZone</a></li>
<li><a href="Spliterators.html" title="class in java.util" target="classFrame">Spliterators</a></li>
<li><a href="Spliterators.AbstractDoubleSpliterator.html" title="class in java.util" target="classFrame">Spliterators.AbstractDoubleSpliterator</a></li>
<li><a href="Spliterators.AbstractIntSpliterator.html" title="class in java.util" target="classFrame">Spliterators.AbstractIntSpliterator</a></li>
<li><a href="Spliterators.AbstractLongSpliterator.html" title="class in java.util" target="classFrame">Spliterators.AbstractLongSpliterator</a></li>
<li><a href="Spliterators.AbstractSpliterator.html" title="class in java.util" target="classFrame">Spliterators.AbstractSpliterator</a></li>
<li><a href="SplittableRandom.html" title="class in java.util" target="classFrame">SplittableRandom</a></li>
<li><a href="Stack.html" title="class in java.util" target="classFrame">Stack</a></li>
<li><a href="StringJoiner.html" title="class in java.util" target="classFrame">StringJoiner</a></li>
<li><a href="StringTokenizer.html" title="class in java.util" target="classFrame">StringTokenizer</a></li>
<li><a href="Timer.html" title="class in java.util" target="classFrame">Timer</a></li>
<li><a href="TimerTask.html" title="class in java.util" target="classFrame">TimerTask</a></li>
<li><a href="TimeZone.html" title="class in java.util" target="classFrame">TimeZone</a></li>
<li><a href="TreeMap.html" title="class in java.util" target="classFrame">TreeMap</a></li>
<li><a href="TreeSet.html" title="class in java.util" target="classFrame">TreeSet</a></li>
<li><a href="UUID.html" title="class in java.util" target="classFrame">UUID</a></li>
<li><a href="Vector.html" title="class in java.util" target="classFrame">Vector</a></li>
<li><a href="WeakHashMap.html" title="class in java.util" target="classFrame">WeakHashMap</a></li>
</ul>
<h2 title="Enums">Enums</h2>
<ul title="Enums">
<li><a href="Formatter.BigDecimalLayoutForm.html" title="enum in java.util" target="classFrame">Formatter.BigDecimalLayoutForm</a></li>
<li><a href="Locale.Category.html" title="enum in java.util" target="classFrame">Locale.Category</a></li>
<li><a href="Locale.FilteringMode.html" title="enum in java.util" target="classFrame">Locale.FilteringMode</a></li>
</ul>
<h2 title="Exceptions">Exceptions</h2>
<ul title="Exceptions">
<li><a href="ConcurrentModificationException.html" title="class in java.util" target="classFrame">ConcurrentModificationException</a></li>
<li><a href="DuplicateFormatFlagsException.html" title="class in java.util" target="classFrame">DuplicateFormatFlagsException</a></li>
<li><a href="EmptyStackException.html" title="class in java.util" target="classFrame">EmptyStackException</a></li>
<li><a href="FormatFlagsConversionMismatchException.html" title="class in java.util" target="classFrame">FormatFlagsConversionMismatchException</a></li>
<li><a href="FormatterClosedException.html" title="class in java.util" target="classFrame">FormatterClosedException</a></li>
<li><a href="IllegalFormatCodePointException.html" title="class in java.util" target="classFrame">IllegalFormatCodePointException</a></li>
<li><a href="IllegalFormatConversionException.html" title="class in java.util" target="classFrame">IllegalFormatConversionException</a></li>
<li><a href="IllegalFormatException.html" title="class in java.util" target="classFrame">IllegalFormatException</a></li>
<li><a href="IllegalFormatFlagsException.html" title="class in java.util" target="classFrame">IllegalFormatFlagsException</a></li>
<li><a href="IllegalFormatPrecisionException.html" title="class in java.util" target="classFrame">IllegalFormatPrecisionException</a></li>
<li><a href="IllegalFormatWidthException.html" title="class in java.util" target="classFrame">IllegalFormatWidthException</a></li>
<li><a href="IllformedLocaleException.html" title="class in java.util" target="classFrame">IllformedLocaleException</a></li>
<li><a href="InputMismatchException.html" title="class in java.util" target="classFrame">InputMismatchException</a></li>
<li><a href="InvalidPropertiesFormatException.html" title="class in java.util" target="classFrame">InvalidPropertiesFormatException</a></li>
<li><a href="MissingFormatArgumentException.html" title="class in java.util" target="classFrame">MissingFormatArgumentException</a></li>
<li><a href="MissingFormatWidthException.html" title="class in java.util" target="classFrame">MissingFormatWidthException</a></li>
<li><a href="MissingResourceException.html" title="class in java.util" target="classFrame">MissingResourceException</a></li>
<li><a href="NoSuchElementException.html" title="class in java.util" target="classFrame">NoSuchElementException</a></li>
<li><a href="TooManyListenersException.html" title="class in java.util" target="classFrame">TooManyListenersException</a></li>
<li><a href="UnknownFormatConversionException.html" title="class in java.util" target="classFrame">UnknownFormatConversionException</a></li>
<li><a href="UnknownFormatFlagsException.html" title="class in java.util" target="classFrame">UnknownFormatFlagsException</a></li>
</ul>
<h2 title="Errors">Errors</h2>
<ul title="Errors">
<li><a href="ServiceConfigurationError.html" title="class in java.util" target="classFrame">ServiceConfigurationError</a></li>
</ul>
</div>
</body>
</html>
| fbiville/annotation-processing-ftw | doc/java/jdk8/java/util/compact3-package-frame.html | HTML | mit | 16,046 |
{% extends 'base.html' %}
{% block navigation %}
<li> </li>
{% endblock %}
{% block content %}
<div class="ink-grid">
<div class="column-group">
<div class="all-50 small-100 tiny-100">
<h2>Stories assigned to you</h2>
<ul class="editable-stories unstyled">
{% for story in upcoming_stories %}
<li class="{{ 'unedited' if story['revision_ids']|length }}">
<div class="story_overview">
<a href="/story/{{ loop.index - 1 }}/edit">
{% if story['locked'] == True %}
<i class="fa fa-lg fa-lock locked"></i>
{% endif %}
{{ story['title'] }}
</a>
{{ story['comments'] }}<i class="fa fa-comments-o"></i>
</div>
</li>
{% endfor %}
</ul>
<a href="/upcoming-stories">Actually you have (12) more...</a>
</div>
<div class="all-50 small-100 tiny-100">
<h2>Unassigned stories</h2>
<ul>
<li class="row">
<a href="/edit" class="six columns">Public-key 24 hour collaboration for engineer back-end e-commerce</a>
</li>
<li class="row">
<a href="/edit" class="six columns">Persistent actuating concept on engage ubiquitous e-services</a>
</li>
<li class="row">
<a href="/edit" class="six columns">Adaptive reciprocal model for redefine B2B metrics</a>
</li>
<li class="row">
<a href="/edit" class="six columns">Universal stable knowledge user with disintermediate holistic functionalities</a>
</li>
<li class="row">
<a href="/edit" class="six columns">Front-line multi-state hub for extend wireless technologies</a>
</li>
</ul>
<a href="/past-stories">There are (147) more...</a>
</div>
</div>
</div>
{% endblock %}
| cadamez/esphand-demo | templates/dashboard_for_editor.html | HTML | mit | 1,672 |
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>base.rb</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="../../../../../../../../../../../../css/reset.css" type="text/css" media="screen" />
<link rel="stylesheet" href="../../../../../../../../../../../../css/main.css" type="text/css" media="screen" />
<link rel="stylesheet" href="../../../../../../../../../../../../css/github.css" type="text/css" media="screen" />
<script src="../../../../../../../../../../../../js/jquery-1.3.2.min.js" type="text/javascript" charset="utf-8"></script>
<script src="../../../../../../../../../../../../js/jquery-effect.js" type="text/javascript" charset="utf-8"></script>
<script src="../../../../../../../../../../../../js/main.js" type="text/javascript" charset="utf-8"></script>
<script src="../../../../../../../../../../../../js/highlight.pack.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div class="banner">
<span>Ruby on Rails 4.0.0</span><br />
<h1>
base.rb
</h1>
<ul class="files">
<li>
/home/jude/.gem/ruby/2.0.0/gems/actionpack-4.0.0/lib/action_view/helpers/tags/base.rb
</li>
<li>Last modified: 2013-10-17 23:42:37 +0800</li>
</ul>
</div>
<div id="bodyContent">
<div id="content">
<!-- Namespace -->
<div class="sectiontitle">Namespace</div>
<ul>
<li>
<span class="type">MODULE</span>
<a href="../../../../../../../../../../../../classes/ActionView.html">ActionView</a>
</li>
<li>
<span class="type">MODULE</span>
<a href="../../../../../../../../../../../../classes/ActionView/Helpers.html">ActionView::Helpers</a>
</li>
</ul>
<!-- Methods -->
</div>
</div>
</body>
</html> | zhuzhang/auc | doc/api/files/home/jude/_gem/ruby/2_0_0/gems/actionpack-4_0_0/lib/action_view/helpers/tags/base_rb.html | HTML | mit | 2,250 |
{% extends "base.html" %}
{% block title %}Compositie bekijken{% endblock %}
{% block content %}
<link rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.1/themes/base/jquery-ui.css" type="text/css" />
<link rel="stylesheet" href="http://toernooibase.kndb.nl/applet/oerterpapplet2.0/themes/jquery.contextMenu.css" type="text/css" />
<link rel="stylesheet" href="http://toernooibase.kndb.nl/applet/oerterpapplet2.0/themes/hv.jquery.view.css" type="text/css" />
<script type='text/javascript' src="//cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<script type="text/javascript" src="http://toernooibase.kndb.nl/applet/oerterpapplet2.0/js/ui/jquery.contextMenu_min_2.3.0.js"></script>
<script type="text/javascript" src="http://toernooibase.kndb.nl/applet/oerterpapplet2.0/js/dcoerterp_view-2.3.6.js"></script>
<script type="text/javascript" src="http://www.enschedesedamclub.nl/oerterpapplet2.0/js/dambord.js"></script>
<script>
$(function() {
AddDambord_pdnstring("Diagram_1", {{ game.pdn | tojson }});
});
</script>
<h1>Compositie bekijken</h1>
<div class="pure-g">
<div class="pure-u-3-5">
<div id="Diagram_1"></div>
</div>
<div class="pure-u-2-5">
<p>{{ game }}</p>
<p><em>{{ game.source }}</em></p>
</div>
</div>
<p><a href="{{ url_for('collection', collection_name=game.collection.name) }}">Terug naar collectie</a></p>
{% endblock %}
| mhkuu/pdnstat | templates/game.html | HTML | mit | 1,451 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Table Layout</title>
</head>
<body>
<table width="100%" height="100%" border=1>
<!-- heading -->
<tr>
<th rowspan="2">Particular</th>
<th colspan="2">Amount</th>
</tr>
<tr>
<td>Dr.</td>
<td>Cr.</td>
</tr>
<!-- body/content -->
<tr>
<td>Cash</td>
<td>Rs. 200/-</td>
<td></td>
</tr>
<tr>
<td>Bank</td>
<td></td>
<td>Rs. 200/-</td>
</tr>
<tr>
<td>Furniture</td>
<td>Rs. 200/-</td>
<td></td>
</tr>
</table>
</body>
</html>
| przbadu/webtech-lab | 07-table-layout2/index.html | HTML | mit | 683 |
{% include utilities/group-by-array.html collection=site.portfolio field="skills" %}
<div class="sticky-top space-before">
<div class="card bg-light">
<div class="card-body p-2">
<div class="card-title">
<h5>Filter by Skill</h5>
</div>
{% for skill in group_names %}
<a class="d-inline-block bg-white border rounded p-1 mr-1 mb-1 skill skill-{{ skill | slugify }}"
href="#{{ skill | slugify }}">
{{skill}}
</a>
{% endfor %}
</div>
</div>
</div> | shelbyt/shelbyt.github.io | _includes/components/all-skills.html | HTML | mit | 604 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="ja">
<head>
<!-- Generated by javadoc (1.8.0_40) on Sun May 31 04:17:10 JST 2015 -->
<title>DummyFuture</title>
<meta name="date" content="2015-05-31">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="DummyFuture";
}
}
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>uEUÌJavaScriptª³øÉÈÁĢܷB</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="irQ[VENðXLbv">irQ[VENðXLbv</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="irQ[V">
<li><a href="../../../../../overview-summary.html">Tv</a></li>
<li><a href="package-summary.html">pbP[W</a></li>
<li class="navBarCell1Rev">NX</li>
<li><a href="package-tree.html">Kwc[</a></li>
<li><a href="../../../../../deprecated-list.html">ñ§</a></li>
<li><a href="../../../../../index-all.html">õø</a></li>
<li><a href="../../../../../help-doc.html">wv</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../il/technion/ewolf/kbr/concurrent/CompletionHandler.html" title="il.technion.ewolf.kbr.concurrentàÌC^tF[X"><span class="typeNameLink">OÌNX</span></a></li>
<li><a href="../../../../../il/technion/ewolf/kbr/concurrent/FutureCallback.html" title="il.technion.ewolf.kbr.concurrentàÌNX"><span class="typeNameLink">ÌNX</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?il/technion/ewolf/kbr/concurrent/DummyFuture.html" target="_top">t[</a></li>
<li><a href="DummyFuture.html" target="_top">t[ȵ</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">·×ÄÌNX</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>T}[: </li>
<li>lXg | </li>
<li>tB[h | </li>
<li><a href="#constructor.summary">RXgN^</a> | </li>
<li><a href="#method.summary">\bh</a></li>
</ul>
<ul class="subNavList">
<li>Ú×: </li>
<li>tB[h | </li>
<li><a href="#constructor.detail">RXgN^</a> | </li>
<li><a href="#method.detail">\bh</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">il.technion.ewolf.kbr.concurrent</div>
<h2 title="NX DummyFuture" class="title">NX DummyFuture<T></h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>il.technion.ewolf.kbr.concurrent.DummyFuture<T></li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt><span class="paramLabel">^p[^:</span></dt>
<dd><code>T</code> - any arbitrary result type</dd>
</dl>
<dl>
<dt>·×ÄÌÀ³ê½C^tF[X:</dt>
<dd>java.util.concurrent.Future<T></dd>
</dl>
<hr>
<br>
<pre>public class <span class="typeNameLabel">DummyFuture<T></span>
extends java.lang.Object
implements java.util.concurrent.Future<T></pre>
<div class="block">A future initiated with the result
This class is used to mock future when we already have the results
but need to return a future. One example is result found in cache.</div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!-- -->
</a>
<h3>RXgN^ÌT}[</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="RXgN^ÌT}[\ARXgN^ÌXg¨æÑà¾">
<caption><span>RXgN^</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">RXgN^Æà¾</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../il/technion/ewolf/kbr/concurrent/DummyFuture.html#DummyFuture-T-">DummyFuture</a></span>(<a href="../../../../../il/technion/ewolf/kbr/concurrent/DummyFuture.html" title="DummyFutureàÌ^p[^">T</a> result)</code>
<div class="block">Initiate with a result</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../../il/technion/ewolf/kbr/concurrent/DummyFuture.html#DummyFuture-java.lang.Throwable-">DummyFuture</a></span>(java.lang.Throwable exc)</code>
<div class="block">Initiate with exception</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>\bhÌT}[</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="\bhÌT}[\A\bhÌXg¨æÑà¾">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption>
<tr>
<th class="colFirst" scope="col">CüqÆ^Cv</th>
<th class="colLast" scope="col">\bhÆà¾</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../il/technion/ewolf/kbr/concurrent/DummyFuture.html#cancel-boolean-">cancel</a></span>(boolean mayInterruptIfRunning)</code> </td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code><a href="../../../../../il/technion/ewolf/kbr/concurrent/DummyFuture.html" title="DummyFutureàÌ^p[^">T</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../il/technion/ewolf/kbr/concurrent/DummyFuture.html#get--">get</a></span>()</code> </td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code><a href="../../../../../il/technion/ewolf/kbr/concurrent/DummyFuture.html" title="DummyFutureàÌ^p[^">T</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../il/technion/ewolf/kbr/concurrent/DummyFuture.html#get-long-java.util.concurrent.TimeUnit-">get</a></span>(long timeout,
java.util.concurrent.TimeUnit unit)</code> </td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../il/technion/ewolf/kbr/concurrent/DummyFuture.html#isCancelled--">isCancelled</a></span>()</code> </td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../../il/technion/ewolf/kbr/concurrent/DummyFuture.html#isDone--">isDone</a></span>()</code> </td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>NX©çp³³ê½\bh java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!-- -->
</a>
<h3>RXgN^ÌÚ×</h3>
<a name="DummyFuture-java.lang.Object-">
<!-- -->
</a><a name="DummyFuture-T-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DummyFuture</h4>
<pre>public DummyFuture(<a href="../../../../../il/technion/ewolf/kbr/concurrent/DummyFuture.html" title="DummyFutureàÌ^p[^">T</a> result)</pre>
<div class="block">Initiate with a result</div>
<dl>
<dt><span class="paramLabel">p[^:</span></dt>
<dd><code>result</code> - the result to be returned when <code>get</code> is invoked</dd>
</dl>
</li>
</ul>
<a name="DummyFuture-java.lang.Throwable-">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>DummyFuture</h4>
<pre>public DummyFuture(java.lang.Throwable exc)</pre>
<div class="block">Initiate with exception</div>
<dl>
<dt><span class="paramLabel">p[^:</span></dt>
<dd><code>exc</code> - the exception to be thrown when <code>get</code> is invoked (wrapped
in <code>ExecutionException</code></dd>
</dl>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>\bhÌÚ×</h3>
<a name="cancel-boolean-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cancel</h4>
<pre>public boolean cancel(boolean mayInterruptIfRunning)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">è`:</span></dt>
<dd><code>cancel</code> C^tF[Xà <code>java.util.concurrent.Future<<a href="../../../../../il/technion/ewolf/kbr/concurrent/DummyFuture.html" title="DummyFutureàÌ^p[^">T</a>></code></dd>
</dl>
</li>
</ul>
<a name="get--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>get</h4>
<pre>public <a href="../../../../../il/technion/ewolf/kbr/concurrent/DummyFuture.html" title="DummyFutureàÌ^p[^">T</a> get()
throws java.lang.InterruptedException,
java.util.concurrent.ExecutionException</pre>
<dl>
<dt><span class="overrideSpecifyLabel">è`:</span></dt>
<dd><code>get</code> C^tF[Xà <code>java.util.concurrent.Future<<a href="../../../../../il/technion/ewolf/kbr/concurrent/DummyFuture.html" title="DummyFutureàÌ^p[^">T</a>></code></dd>
<dt><span class="throwsLabel">áO:</span></dt>
<dd><code>java.lang.InterruptedException</code></dd>
<dd><code>java.util.concurrent.ExecutionException</code></dd>
</dl>
</li>
</ul>
<a name="get-long-java.util.concurrent.TimeUnit-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>get</h4>
<pre>public <a href="../../../../../il/technion/ewolf/kbr/concurrent/DummyFuture.html" title="DummyFutureàÌ^p[^">T</a> get(long timeout,
java.util.concurrent.TimeUnit unit)
throws java.lang.InterruptedException,
java.util.concurrent.ExecutionException,
java.util.concurrent.TimeoutException</pre>
<dl>
<dt><span class="overrideSpecifyLabel">è`:</span></dt>
<dd><code>get</code> C^tF[Xà <code>java.util.concurrent.Future<<a href="../../../../../il/technion/ewolf/kbr/concurrent/DummyFuture.html" title="DummyFutureàÌ^p[^">T</a>></code></dd>
<dt><span class="throwsLabel">áO:</span></dt>
<dd><code>java.lang.InterruptedException</code></dd>
<dd><code>java.util.concurrent.ExecutionException</code></dd>
<dd><code>java.util.concurrent.TimeoutException</code></dd>
</dl>
</li>
</ul>
<a name="isCancelled--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isCancelled</h4>
<pre>public boolean isCancelled()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">è`:</span></dt>
<dd><code>isCancelled</code> C^tF[Xà <code>java.util.concurrent.Future<<a href="../../../../../il/technion/ewolf/kbr/concurrent/DummyFuture.html" title="DummyFutureàÌ^p[^">T</a>></code></dd>
</dl>
</li>
</ul>
<a name="isDone--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>isDone</h4>
<pre>public boolean isDone()</pre>
<dl>
<dt><span class="overrideSpecifyLabel">è`:</span></dt>
<dd><code>isDone</code> C^tF[Xà <code>java.util.concurrent.Future<<a href="../../../../../il/technion/ewolf/kbr/concurrent/DummyFuture.html" title="DummyFutureàÌ^p[^">T</a>></code></dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="irQ[VENðXLbv">irQ[VENðXLbv</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="irQ[V">
<li><a href="../../../../../overview-summary.html">Tv</a></li>
<li><a href="package-summary.html">pbP[W</a></li>
<li class="navBarCell1Rev">NX</li>
<li><a href="package-tree.html">Kwc[</a></li>
<li><a href="../../../../../deprecated-list.html">ñ§</a></li>
<li><a href="../../../../../index-all.html">õø</a></li>
<li><a href="../../../../../help-doc.html">wv</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../il/technion/ewolf/kbr/concurrent/CompletionHandler.html" title="il.technion.ewolf.kbr.concurrentàÌC^tF[X"><span class="typeNameLink">OÌNX</span></a></li>
<li><a href="../../../../../il/technion/ewolf/kbr/concurrent/FutureCallback.html" title="il.technion.ewolf.kbr.concurrentàÌNX"><span class="typeNameLink">ÌNX</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?il/technion/ewolf/kbr/concurrent/DummyFuture.html" target="_top">t[</a></li>
<li><a href="DummyFuture.html" target="_top">t[ȵ</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">·×ÄÌNX</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>T}[: </li>
<li>lXg | </li>
<li>tB[h | </li>
<li><a href="#constructor.summary">RXgN^</a> | </li>
<li><a href="#method.summary">\bh</a></li>
</ul>
<ul class="subNavList">
<li>Ú×: </li>
<li>tB[h | </li>
<li><a href="#constructor.detail">RXgN^</a> | </li>
<li><a href="#method.detail">\bh</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
| 0ED/Toy | p2p_network/kademlia/openkad/src/il/technion/ewolf/kbr/concurrent/DummyFuture.html | HTML | mit | 15,523 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<title>ΕΒΡΑΙΟΥΣ (SBLGNT)</title>
<link href="../../../build/mobile.css" rel="stylesheet" />
<script src="../../../build/mobile.js"></script>
</head>
<body dir="ltr" class="division-index">
<div class="header"><div class="nav">
<span class="name">ΕΒΡΑΙΟΥΣ</span>
<a class="home" href="index.html">☰</a>
</div></div>
<ul class="section-list">
<li><a href="HB1.html">ΕΒΡΑΙΟΥΣ 1</a></li>
<li><a href="HB2.html">ΕΒΡΑΙΟΥΣ 2</a></li>
<li><a href="HB3.html">ΕΒΡΑΙΟΥΣ 3</a></li>
<li><a href="HB4.html">ΕΒΡΑΙΟΥΣ 4</a></li>
<li><a href="HB5.html">ΕΒΡΑΙΟΥΣ 5</a></li>
<li><a href="HB6.html">ΕΒΡΑΙΟΥΣ 6</a></li>
<li><a href="HB7.html">ΕΒΡΑΙΟΥΣ 7</a></li>
<li><a href="HB8.html">ΕΒΡΑΙΟΥΣ 8</a></li>
<li><a href="HB9.html">ΕΒΡΑΙΟΥΣ 9</a></li>
<li><a href="HB10.html">ΕΒΡΑΙΟΥΣ 10</a></li>
<li><a href="HB11.html">ΕΒΡΑΙΟΥΣ 11</a></li>
<li><a href="HB12.html">ΕΒΡΑΙΟΥΣ 12</a></li>
<li><a href="HB13.html">ΕΒΡΑΙΟΥΣ 13</a></li>
</ul>
</body>
</html> | khangpng/VietnameseBible | app/content/texts/grc_sblgnt/HB.html | HTML | mit | 1,201 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>弹出层效果</title>
<link rel="stylesheet" href="../style.css">
<link rel="stylesheet" href="../js/google-code-prettify/prettify2.css">
<style>
html,body{height:100%;overflow:hidden;}
body,div,h2{margin:0;padding:0;}
body{font:12px/1.5 Tahoma;}
p.tc{padding-top:10px;}
button{cursor:pointer;}
#overlay{position:absolute;z-index:1000;top:0;left:0;width:100%;height:100%;background:#000;opacity:0.5;filter:alpha(opacity=50);display:none;}
#win{position:absolute;z-index:1005;top:50%;left:50%;width:400px;height:200px;background:#fff;border:4px solid #f90;margin:-102px 0 0 -202px;display:none;}
h2{font-size:12px;text-align:right;background:#FC0;border-bottom:3px solid #f90;padding:5px;}
h2 span{color:#f90;cursor:pointer;background:#fff;border:1px solid #f90;padding:0 2px;}
</style>
<script id="precode">
window.onload = function (){
var oWin = document.getElementById("win");
var oLay = document.getElementById("overlay");
var oBtn = document.getElementsByTagName("button")[0];
var oClose = document.getElementById("close");
oBtn.onclick = function (){
oLay.style.display = "block";
oWin.style.display = "block";
};
oClose.onclick = function (){
oLay.style.display = "none";
oWin.style.display = "none";
}
};
</script>
</head>
<body>
<div id="overlay"></div>
<div id="win"><h2><span id="close">×</span></h2></div>
<p class="tc"><button>弹出层</button></p>
<script src="../js/google-code-prettify/prettify.js" async="async"></script>
<script src="../js/learn.js" async="async"></script>
</body>
</html> | pandoraui/learning-javascript | lesson2/04.html | HTML | mit | 1,637 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>mathcomp-field: 7 m 0 s</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / extra-dev</a></li>
<li class="active"><a href="">dev / mathcomp-field - 1.13.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
mathcomp-field
<small>
1.13.0
<span class="label label-success">7 m 0 s</span>
</small>
</h1>
<p><em><script>document.write(moment("2021-11-06 06:49:18 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-11-06 06:49:18 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 3 Virtual package relying on a GMP lib system installation
coq dev Formal proof management system
dune 2.9.1 Fast, portable, and opinionated build system
ocaml 4.13.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.13.1 Official release 4.13.1
ocaml-config 2 OCaml Switch Configuration
ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled
ocamlfind 1.9.1 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "Mathematical Components <mathcomp-dev@sympa.inria.fr>"
homepage: "https://math-comp.github.io/"
bug-reports: "https://github.com/math-comp/math-comp/issues"
dev-repo: "git+https://github.com/math-comp/math-comp.git"
license: "CECILL-B"
build: [ make "-C" "mathcomp/field" "-j" "%{jobs}%" "COQEXTRAFLAGS+=-native-compiler yes" {coq-native:installed & coq:version < "8.13~" } ]
install: [ make "-C" "mathcomp/field" "install" ]
depends: [ "coq-mathcomp-solvable" { = version } ]
tags: [ "keyword:algebra" "keyword:field" "keyword:small scale reflection" "keyword:mathematical components" "keyword:odd order theorem" "logpath:mathcomp.field" ]
authors: [ "Jeremy Avigad <>" "Andrea Asperti <>" "Stephane Le Roux <>" "Yves Bertot <>" "Laurence Rideau <>" "Enrico Tassi <>" "Ioana Pasca <>" "Georges Gonthier <>" "Sidi Ould Biha <>" "Cyril Cohen <>" "Francois Garillot <>" "Alexey Solovyev <>" "Russell O'Connor <>" "Laurent Théry <>" "Assia Mahboubi <>" ]
synopsis: "Mathematical Components Library on Fields"
description:"""
This library contains definitions and theorems about field extensions,
galois theory, algebraic numbers, cyclotomic polynomials...
"""
url {
src: "https://github.com/math-comp/math-comp/archive/mathcomp-1.13.0.tar.gz"
checksum: "sha256=4334e915736f96032e1d4d502e70537047220af1a1c7a6740f770e45601bdab0"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-mathcomp-field.1.13.0 coq.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-mathcomp-field.1.13.0 coq.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>13 m 18 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 8h opam install -y -v coq-mathcomp-field.1.13.0 coq.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>7 m 0 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 9 M</p>
<ul>
<li>1 M <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/fieldext.vo</code></li>
<li>773 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/galois.vo</code></li>
<li>685 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/algebraics_fundamentals.vo</code></li>
<li>544 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/galois.glob</code></li>
<li>510 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/algnum.vo</code></li>
<li>492 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/closed_field.glob</code></li>
<li>471 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/separable.vo</code></li>
<li>456 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/fieldext.glob</code></li>
<li>428 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/algC.vo</code></li>
<li>416 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/finfield.vo</code></li>
<li>398 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/separable.glob</code></li>
<li>383 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/closed_field.vo</code></li>
<li>381 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/algebraics_fundamentals.glob</code></li>
<li>371 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/falgebra.vo</code></li>
<li>350 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/algC.glob</code></li>
<li>321 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/falgebra.glob</code></li>
<li>299 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/algnum.glob</code></li>
<li>233 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/finfield.glob</code></li>
<li>138 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/cyclotomic.vo</code></li>
<li>109 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/cyclotomic.glob</code></li>
<li>69 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/galois.v</code></li>
<li>67 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/fieldext.v</code></li>
<li>52 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/algebraics_fundamentals.v</code></li>
<li>49 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/algC.v</code></li>
<li>47 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/falgebra.v</code></li>
<li>44 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/separable.v</code></li>
<li>39 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/closed_field.v</code></li>
<li>39 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/algnum.v</code></li>
<li>32 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/finfield.v</code></li>
<li>22 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/all_field.vo</code></li>
<li>15 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/cyclotomic.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/all_field.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/all_field.v</code></li>
</ul>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-mathcomp-field.1.13.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.13.1-2.1.0/extra-dev/dev/mathcomp-field/1.13.0.html | HTML | mit | 11,586 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>compcert: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.11.1 / compcert - 3.6</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
compcert
<small>
3.6
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-07 11:43:43 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-07 11:43:43 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.11.1 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
authors: "Xavier Leroy <xavier.leroy@inria.fr>"
maintainer: "Jacques-Henri Jourdan <jacques-Henri.jourdan@normalesup.org>"
homepage: "http://compcert.inria.fr/"
dev-repo: "git+https://github.com/AbsInt/CompCert.git"
bug-reports: "https://github.com/AbsInt/CompCert/issues"
license: "INRIA Non-Commercial License Agreement"
build: [
["./configure" "ia32-linux" {os = "linux"}
"ia32-macosx" {os = "macos"}
"ia32-cygwin" {os = "cygwin"}
"-bindir" "%{bin}%"
"-libdir" "%{lib}%/compcert"
"-install-coqdev"
"-clightgen"
"-coqdevdir" "%{lib}%/coq/user-contrib/compcert"
"-ignore-coq-version"]
[make "-j%{jobs}%" {ocaml:version >= "4.06"}]
]
install: [
[make "install"]
["install" "-m" "0644" "VERSION" "%{lib}%/coq/user-contrib/compcert/"]
]
depends: [
"coq" {>= "8.7.0" & < "8.11"}
"menhir" {>= "20190626" & < "20200123"}
"ocaml" {>= "4.05.0"}
]
synopsis: "The CompCert C compiler"
tags: [
"category:Computer Science/Semantics and Compilation/Compilation"
"category:Computer Science/Semantics and Compilation/Semantics"
"keyword:C"
"keyword:compiler"
"logpath:compcert"
"date:2019-09-17"
]
url {
src: "https://github.com/AbsInt/CompCert/archive/v3.6.tar.gz"
checksum: "sha256=7a77839f6b990ab632ba14feccf4f17da189f0e3b95d6ce2ef0986e4caebc575"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-compcert.3.6 coq.8.11.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.11.1).
The following dependencies couldn't be met:
- coq-compcert -> coq < 8.11 -> ocaml < 4.03.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-compcert.3.6</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.05.0-2.0.1/released/8.11.1/compcert/3.6.html | HTML | mit | 7,537 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>reglang: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.0 / reglang - 1.1.2</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
reglang
<small>
1.1.2
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-11-26 07:28:24 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-11-26 07:28:24 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.7.0 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.07.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.07.1 Official release 4.07.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "palmskog@gmail.com"
homepage: "https://github.com/coq-community/reglang"
dev-repo: "git+https://github.com/coq-community/reglang.git"
bug-reports: "https://github.com/coq-community/reglang/issues"
doc: "https://coq-community.github.io/reglang/"
license: "CECILL-B"
synopsis: "Representations of regular languages (i.e., regexps, various types of automata, and WS1S) with equivalence proofs, in Coq and MathComp"
description: """
This library provides definitions and verified translations between
different representations of regular languages: various forms of
automata (deterministic, nondeterministic, one-way, two-way),
regular expressions, and the logic WS1S. It also contains various
decidability results and closure properties of regular languages."""
build: [make "-j%{jobs}%"]
install: [make "install"]
depends: [
"coq" {>= "8.10" & < "8.15~"}
"coq-mathcomp-ssreflect" {>= "1.9" & < "1.14~"}
]
tags: [
"category:Computer Science/Formal Languages Theory and Automata"
"keyword:regular languages"
"keyword:regular expressions"
"keyword:finite automata"
"keyword:two-way automata"
"keyword:monadic second-order logic"
"logpath:RegLang"
"date:2020-12-14"
]
authors: [
"Christian Doczkal"
"Jan-Oliver Kaiser"
"Gert Smolka"
]
url {
src: "https://github.com/coq-community/reglang/archive/v1.1.2.tar.gz"
checksum: "sha512=13395112478648b7c0fa6ea7d54a535b53749c000b45b02ebb62a8ce503a0fd1ee637d1a04062740adccccb0b6f0832416b67b1c9e4ce32133eb5be568a669d3"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-reglang.1.1.2 coq.8.7.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.7.0).
The following dependencies couldn't be met:
- coq-reglang -> coq >= 8.10
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-reglang.1.1.2</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.07.1-2.0.6/released/8.7.0/reglang/1.1.2.html | HTML | mit | 7,548 |
<!--
The MIT License
Copyright (c) 2014-2016 Nick Guletskii
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.
-->
<h1>{{ 'register.form.heading' | translate }}</h1>
<form
name="userForm"
controller="userFormController"
form-for="user"
validation-rules="validationRules"
submit-with="register(user)">
<text-field label="{{ 'register.form.labels.username' | translate }}"
attribute="username"></text-field>
<text-field label="{{ 'register.form.labels.password' | translate }}"
type="password"
attribute="password"></text-field>
<text-field label="{{ 'register.form.labels.passwordConfirmation' | translate }}"
type="password"
attribute="passwordConfirmation"></text-field>
<text-field label="{{ 'register.form.labels.emailAddress' | translate }}"
type="email"
attribute="emailAddress"></text-field>
<text-field label="{{ 'register.form.labels.firstNameMain' | translate }}"
type="text"
attribute="firstNameMain"></text-field>
<text-field label="{{ 'register.form.labels.middleNameMain' | translate }}"
type="text"
attribute="middleNameMain"></text-field>
<text-field label="{{ 'register.form.labels.lastNameMain' | translate }}"
type="text"
attribute="lastNameMain"></text-field>
<text-field label="{{ 'register.form.labels.firstNameLocalised' | translate }}"
type="text"
attribute="firstNameLocalised"></text-field>
<text-field label="{{ 'register.form.labels.middleNameLocalised' | translate }}"
type="text"
attribute="middleNameLocalised"></text-field>
<text-field label="{{ 'register.form.labels.lastNameLocalised' | translate }}"
type="text"
attribute="lastNameLocalised"></text-field>
<text-field label="{{ 'register.form.labels.teacherFirstName' | translate }}"
type="text"
attribute="teacherFirstName"></text-field>
<text-field label="{{ 'register.form.labels.teacherMiddleName' | translate }}"
type="text"
attribute="teacherMiddleName"></text-field>
<text-field label="{{ 'register.form.labels.teacherLastName' | translate }}"
type="text"
attribute="teacherLastName"></text-field>
<text-field label="{{ 'register.form.labels.addressLine1' | translate }}"
type="text"
attribute="addressLine1"></text-field>
<text-field label="{{ 'register.form.labels.addressLine2' | translate }}"
type="text"
attribute="addressLine2"></text-field>
<text-field label="{{ 'register.form.labels.addressCity' | translate }}"
type="text"
attribute="addressCity"></text-field>
<text-field label="{{ 'register.form.labels.addressState' | translate }}"
type="text"
attribute="addressState"></text-field>
<text-field label="{{ 'register.form.labels.addressCountry' | translate }}"
type="text"
attribute="addressCountry"></text-field>
<text-field label="{{ 'register.form.labels.landline' | translate }}"
type="text"
attribute="landline"></text-field>
<text-field label="{{ 'register.form.labels.mobile' | translate }}"
type="text"
attribute="mobile"></text-field>
<text-field label="{{ 'register.form.labels.school' | translate }}"
type="text"
attribute="school"></text-field>
<datepicker-field label="{{ 'register.form.labels.dateOfBirth' | translate }}"
attribute="dateOfBirth"></datepicker-field>
<recaptcha label="{{ 'register.form.labels.captcha' | translate }}"
attribute="recaptchaResponse"
reset-on="formSubmissionRejected"
on-create="ready=true"></recaptcha>
<a ui-sref="eula"
translate="register.form.eulaLabel"></a>
<checkbox-field type="checkbox"
attribute="eulaAccepted"
label="{{'register.form.eulaCheckbox'|translate}}"></checkbox-field>
<submit-button label="{{ 'register.registerButton' | translate }}"
button-class="btn btn-default"
disable="!user.eulaAccepted"></submit-button>
</form>
| nickguletskii/OpenOlympus | src/main/resources/public/partials/register.html | HTML | mit | 5,154 |
<!doctype html>
<head>
<!-- Meta -->
<meta charset="utf-8">
<title>About - Elizabeth Carretto</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<!-- Favicons -->
<link rel="icon" href="escarre.github.io/img/favicon.ico">
<!-- Fonts -->
<link href='https://fonts.googleapis.com/css?family=Lora:700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<!-- Styles -->
<link rel="stylesheet" href="/css/animate.min.css">
<link rel="stylesheet" href="/css/style.css">
</head>
<body class="">
<div class="main container" id="top">
<article>
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h2 id="hello-world">Hello World!</h2>
<p>–</p>
<p>Aenean praesentium dolore aenean qui nesciunt dictumst molestiae, odit irure. Nesciunt fusce, atque pharetra odio quis quaerat accusantium? Integer aspernatur eligendi facilisis, do sodales. Consequat.</p>
<p>Arcu porro faucibus ante! Unde litora voluptate veniam fugit alias. Sociosqu! Augue, cupidatat excepturi laoreet magnis veniam repudiandae impedit venenatis alias iure ad ab! Enim.</p>
<p>Nibh quia necessitatibus omnis! Nemo nascetur penatibus iste morbi. Nisi, consequat! Rutrum. Quasi elementum, dignissim cillum, cubilia sapien vitae officia porta hendrerit. Mi aut recusandae.</p>
<p>Voluptatem sint. Sapiente porttitor vivamus sequi occaecat litora? Conubia molestias nostrud dicta quisque penatibus minim imperdiet? Aspernatur nostra doloribus nibh curae ac? Nobis quas? Sollicitudin.</p>
</div>
</div>
</div>
</article>
<footer class="site-footer">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-3 col-md-offset-1">
<p class="text-muted text-left "><a href="escarre.github.io">© 2016 Elizabeth Carretto</a></p>
</div>
</div>
</div>
</footer>
</div><!-- .main.container -->
<!-- JavaScript -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src="escarre.github.io/js/wow.min.js"></script>
<script src="escarre.github.io/js/app.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', ' UA-9999999-99', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>
| escarre/escarre.github.io | _site/about/index.html | HTML | mit | 3,054 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_31) on Wed Dec 17 20:48:31 PST 2014 -->
<title>Uses of Class javax.xml.ws.Service (Java Platform SE 8 )</title>
<meta name="date" content="2014-12-17">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class javax.xml.ws.Service (Java Platform SE 8 )";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../javax/xml/ws/Service.html" title="class in javax.xml.ws">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><strong>Java™ Platform<br>Standard Ed. 8</strong></div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?javax/xml/ws/class-use/Service.html" target="_top">Frames</a></li>
<li><a href="Service.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class javax.xml.ws.Service" class="title">Uses of Class<br>javax.xml.ws.Service</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation">
<caption><span>Packages that use <a href="../../../../javax/xml/ws/Service.html" title="class in javax.xml.ws">Service</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Package</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#javax.xml.ws">javax.xml.ws</a></td>
<td class="colLast">
<div class="block">This package contains the core JAX-WS APIs.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#javax.xml.ws.spi">javax.xml.ws.spi</a></td>
<td class="colLast">
<div class="block">This package defines SPIs for JAX-WS.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="javax.xml.ws">
<!-- -->
</a>
<h3>Uses of <a href="../../../../javax/xml/ws/Service.html" title="class in javax.xml.ws">Service</a> in <a href="../../../../javax/xml/ws/package-summary.html">javax.xml.ws</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../javax/xml/ws/package-summary.html">javax.xml.ws</a> that return <a href="../../../../javax/xml/ws/Service.html" title="class in javax.xml.ws">Service</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../javax/xml/ws/Service.html" title="class in javax.xml.ws">Service</a></code></td>
<td class="colLast"><span class="typeNameLabel">Service.</span><code><span class="memberNameLink"><a href="../../../../javax/xml/ws/Service.html#create-javax.xml.namespace.QName-">create</a></span>(<a href="../../../../javax/xml/namespace/QName.html" title="class in javax.xml.namespace">QName</a> serviceName)</code>
<div class="block">Creates a <code>Service</code> instance.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../javax/xml/ws/Service.html" title="class in javax.xml.ws">Service</a></code></td>
<td class="colLast"><span class="typeNameLabel">Service.</span><code><span class="memberNameLink"><a href="../../../../javax/xml/ws/Service.html#create-javax.xml.namespace.QName-javax.xml.ws.WebServiceFeature...-">create</a></span>(<a href="../../../../javax/xml/namespace/QName.html" title="class in javax.xml.namespace">QName</a> serviceName,
<a href="../../../../javax/xml/ws/WebServiceFeature.html" title="class in javax.xml.ws">WebServiceFeature</a>... features)</code>
<div class="block">Creates a <code>Service</code> instance.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../javax/xml/ws/Service.html" title="class in javax.xml.ws">Service</a></code></td>
<td class="colLast"><span class="typeNameLabel">Service.</span><code><span class="memberNameLink"><a href="../../../../javax/xml/ws/Service.html#create-java.net.URL-javax.xml.namespace.QName-">create</a></span>(<a href="../../../../java/net/URL.html" title="class in java.net">URL</a> wsdlDocumentLocation,
<a href="../../../../javax/xml/namespace/QName.html" title="class in javax.xml.namespace">QName</a> serviceName)</code>
<div class="block">Creates a <code>Service</code> instance.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../javax/xml/ws/Service.html" title="class in javax.xml.ws">Service</a></code></td>
<td class="colLast"><span class="typeNameLabel">Service.</span><code><span class="memberNameLink"><a href="../../../../javax/xml/ws/Service.html#create-java.net.URL-javax.xml.namespace.QName-javax.xml.ws.WebServiceFeature...-">create</a></span>(<a href="../../../../java/net/URL.html" title="class in java.net">URL</a> wsdlDocumentLocation,
<a href="../../../../javax/xml/namespace/QName.html" title="class in javax.xml.namespace">QName</a> serviceName,
<a href="../../../../javax/xml/ws/WebServiceFeature.html" title="class in javax.xml.ws">WebServiceFeature</a>... features)</code>
<div class="block">Creates a <code>Service</code> instance.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="javax.xml.ws.spi">
<!-- -->
</a>
<h3>Uses of <a href="../../../../javax/xml/ws/Service.html" title="class in javax.xml.ws">Service</a> in <a href="../../../../javax/xml/ws/spi/package-summary.html">javax.xml.ws.spi</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Method parameters in <a href="../../../../javax/xml/ws/spi/package-summary.html">javax.xml.ws.spi</a> with type arguments of type <a href="../../../../javax/xml/ws/Service.html" title="class in javax.xml.ws">Service</a></span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>abstract <a href="../../../../javax/xml/ws/spi/ServiceDelegate.html" title="class in javax.xml.ws.spi">ServiceDelegate</a></code></td>
<td class="colLast"><span class="typeNameLabel">Provider.</span><code><span class="memberNameLink"><a href="../../../../javax/xml/ws/spi/Provider.html#createServiceDelegate-java.net.URL-javax.xml.namespace.QName-java.lang.Class-">createServiceDelegate</a></span>(<a href="../../../../java/net/URL.html" title="class in java.net">URL</a> wsdlDocumentLocation,
<a href="../../../../javax/xml/namespace/QName.html" title="class in javax.xml.namespace">QName</a> serviceName,
<a href="../../../../java/lang/Class.html" title="class in java.lang">Class</a><? extends <a href="../../../../javax/xml/ws/Service.html" title="class in javax.xml.ws">Service</a>> serviceClass)</code>
<div class="block">Creates a service delegate object.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../javax/xml/ws/spi/ServiceDelegate.html" title="class in javax.xml.ws.spi">ServiceDelegate</a></code></td>
<td class="colLast"><span class="typeNameLabel">Provider.</span><code><span class="memberNameLink"><a href="../../../../javax/xml/ws/spi/Provider.html#createServiceDelegate-java.net.URL-javax.xml.namespace.QName-java.lang.Class-javax.xml.ws.WebServiceFeature...-">createServiceDelegate</a></span>(<a href="../../../../java/net/URL.html" title="class in java.net">URL</a> wsdlDocumentLocation,
<a href="../../../../javax/xml/namespace/QName.html" title="class in javax.xml.namespace">QName</a> serviceName,
<a href="../../../../java/lang/Class.html" title="class in java.lang">Class</a><? extends <a href="../../../../javax/xml/ws/Service.html" title="class in javax.xml.ws">Service</a>> serviceClass,
<a href="../../../../javax/xml/ws/WebServiceFeature.html" title="class in javax.xml.ws">WebServiceFeature</a>... features)</code>
<div class="block">Creates a service delegate object.</div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../javax/xml/ws/Service.html" title="class in javax.xml.ws">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><strong>Java™ Platform<br>Standard Ed. 8</strong></div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?javax/xml/ws/class-use/Service.html" target="_top">Frames</a></li>
<li><a href="Service.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small><font size="-1"> <a href="http://bugreport.sun.com/bugreport/">Submit a bug or feature</a> <br>For further API reference and developer documentation, see <a href="http://download.oracle.com/javase/8/docs/index.html" target="_blank">Java SE Documentation</a>. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.<br> <a href="../../../../../legal/cpyr.html">Copyright</a> © 1993, 2015, Oracle and/or its affiliates. All rights reserved. </font></small></p>
</body>
</html>
| fbiville/annotation-processing-ftw | doc/java/jdk8/javax/xml/ws/class-use/Service.html | HTML | mit | 12,495 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>higman-s: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / extra-dev</a></li>
<li class="active"><a href="">8.10.0 / higman-s - dev</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
higman-s
<small>
dev
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2020-07-29 03:23:42 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-07-29 03:23:42 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-m4 1 Virtual package relying on m4
coq 8.10.0 Formal proof management system
num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.08.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.08.1 Official release 4.08.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.8.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "dev@clarus.me"
homepage: "https://github.com/coq-contribs/higman-s"
license: "LGPL"
build: [
["coq_makefile" "-f" "Make" "-o" "Makefile"]
[make "-j%{jobs}%"]
]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/HigmanS"]
depends: [
"ocaml"
"coq" {= "dev"}
]
tags: [ "keyword:higman's lemma" "keyword:well quasi ordering" "category:Mathematics/Combinatorics and Graph Theory" "date:2007-09-14" ]
authors: [ "William Delobel <william.delobel@lif.univ-mrs.fr>" ]
synopsis: "Higman's lemma on an unrestricted alphabet."
description:
"This proof is more or less the proof given by Monika Seisenberger in \"An Inductive Version of Nash-Williams' Minimal-Bad-Sequence Argument for Higman's Lemma\"."
flags: light-uninstall
url {
src: "git+https://github.com/coq-contribs/higman-s.git#master"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-higman-s.dev coq.8.10.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.10.0).
The following dependencies couldn't be met:
- coq-higman-s -> coq >= dev
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-higman-s.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.08.1-2.0.5/extra-dev/8.10.0/higman-s/dev.html | HTML | mit | 6,754 |
<h2>Why Code Coverage?</h2>
<blockquote>...But there are also unknown unknowns. There are things we don't know we don't know.</blockquote>
<span>- Donald Rumsfeld</span>
<div class="notes">
You never know how the next engineer is going to perceive your code.
Method name might be misleading, causing them to be misused later.
Misusing a method may lead to re-writing a method to fit a new purpose.
Suddenly, the method doesn't satisfy its original purpose and people look to you to fix it.
This all happens because parts of the method were left untested and there wasn't a red flag...
We've unknowingly stepped into unknow territory.
</div>
| Joao-S-Martins/presentations | istanbul/steps/why-code-coverage.html | HTML | mit | 667 |
---
layout: default
---
{% if page.header.overlay_color or page.header.overlay_image or page.header.image %}
{% include page__hero.html %}
{% elsif page.header.video.id and page.header.video.provider %}
{% include page__hero_video.html %}
{% endif %}
{% if page.url != "/" and site.breadcrumbs %}
{% unless paginator %}
{% include breadcrumbs.html %}
{% endunless %}
{% endif %}
<div id="main" role="main">
{% include sidebar.html %}
<div class="archive">
{% unless page.header.overlay_color or page.header.overlay_image %}
<h1 class="page__title">{{ page.title }}</h1>
{% endunless %}
{{ content }}
</div>
</div>
| jijames/cybercrimetech | _layouts/archive.html | HTML | mit | 653 |
<div>
<script type="text/ng-template" id="warConfirmationModal.html">
<div class="modal-header">
<h4 class="modal-title">Confirmation</h4>
</div>
<div class="modal-body font-9pt row">
<span class="col-md-12">
<span class="col-md-6 align-right">
Your strength:
</span>
<span class="bold col-md-6">
{{myCountryStrength | niceNumber}}
</span>
</span>
<span class="col-md-12">
<span class="col-md-6 align-right">
Enemy strength:
</span>
<span class="bold col-md-6">
{{targetCountryStrength | niceNumber}}
</span>
</span>
<span class="col-md-12">
<span class="col-md-6 align-right">
Probability of Success:
</span>
<span class="bold col-md-6" ng-class="successProbability > 80 ? 'text-success' : successProbability > 40 ? 'text-warning' : 'text-danger'" ">
{{successProbability | number: 2}}%
</span>
</span>
</div>
<div class="modal-footer align-center">
<button class="btn btn-warning" ng-click="declareWar()">Declare War!</button>
<button class="btn btn-danger" ng-click="cancel()">No way Jose!</button>
</div>
</script>
</div> | ArjaaAine/WorldConqueror | app/components/war/warConfirmation/war_confirmationView.html | HTML | mit | 1,504 |
{% extends path1+"/_layout-underway.html" %}
{% block citizen_content %}
{{ data.nuggets | log }}
{{ nav.case_tabs("evidence",1,path1) }}{# macro #}
<h2 class="heading-large mt30 mb0">Physical examinations</h2>
<div class="grid-row">
<div class="column-two-thirds">
<div class="exam-content">
<table>
<caption>Physical exam process</caption>
<tr class="complete">
<th><a href="lower-limbs">Lower back and legs</a></th>
<td><span class="red">Examined - has difficulties</span></td>
</tr>
<tr>
<th><a href="#">Neck and arms</a></th>
<td><span><!-- No examination needed-->Not assessed</span></td>
</tr>
<tr>
<th><a href="#">Cardiac</a></th>
<td><span><!--Examined - no difficulties-->Not assessed</span></td>
</tr>
<tr>
<th><a href="#">Respiratory</a></th>
<td><span>Not assessed</span></td>
</tr>
<tr>
<th><a href="#">Peripheral vascular</a></th>
<td><span>Not assessed</span></td>
</tr>
<tr>
<th><a href="#">Vision, speech and hearing</a></th>
<td><span>Not assessed</span></td>
</tr>
<tr>
<th><a href="#">Consciousness</a></th>
<td><span>Not assessed</span></td>
</tr>
<tr>
<th><a href="#">Continence</a></th>
<td><span>Not assessed</span></td>
</tr>
<tr>
<th><a href="#">Mental health</a></th>
<td><span>Not assessed</span></td>
</tr>
</table>
</div>
<p class="mt30"><a href="/{{path2}}/record_phys_exam" class="button">Finish assessment</a></p>
</div><!-- column -->
</div><!-- row -->
{% endblock %}
{% macro physGroup(name,sel) %}
{% set s = name | slug %}
<!-- GROUP -->
<div class="multiple-choice" data-target="group_{{s}}_yes">
<input id="group_{{s}}" type="checkbox" name="group_{{s}}" sue="group_{{s}}" {% if sel %} checked="checked"{% endif %}>
<label for="group_{{s}}">{{name}}</label>
</div>
{% endmacro %}
{% macro physObs(name,sel) %}
{% set s = name | slug %}
<div class="multiple-choice" data-target="phys_{{s}}_yes">
<input id="phys_{{s}}" type="checkbox" name="mobility" value="phys_{{s}}" {% if sel %} checked="checked"{% endif %}>
<label for="phys_{{s}}">{{name}}</label>
</div>
<div class="form-group panel panel-indent js-hidden mt0 mb20" id="phys_{{s}}_yes">
<p>
<label class="form-label" for="phys_{{s}}_obs">Observation, palpation, movement</label>
<textarea class="form-control form-control-3-4" name="phys_{{s}}_obs" id="phys_{{s}}_obs" rows="4"></textarea>
</p>
</div>
{% endmacro %}
{% block footer_top %}
{{ super() }}
<p class="font-xsmall">
<a href="/{{ path2 }}/phys_exam_1">exam v1</a> |
<a href="/{{ path2 }}/phys_exam_2">exam v2</a>
</p>
{% endblock %}
| dwpdigitaltech/healthanddisability | app/views/assess/v6/victorcastillo/evidence/physical-updated.html | HTML | mit | 2,733 |
<!DOCTYPE html>
<html lang="" class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Prototype Seed</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="">
<!-- Place favicon.ico and apple-touch-icons in the public folder-->
<link rel="stylesheet" href="/assets/styles/main.css">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<link href="/assets/styles/animstion.css" rel="stylesheet">
<link href="http://code.ionicframework.com/ionicons/1.5.2/css/ionicons.min.css" rel="stylesheet">
<script src="//code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="/assets/scripts/vendor.js"></script>
<script src="/assets/scripts/fluidbox.js"></script>
<script src="/assets/scripts/imgLiquid-min.js.js"></script>
<script src="/assets/scripts/jquery.animsition.js"></script>
<script src="/assets/scripts/scrollReveal.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery.nicescroll/3.5.1/jquery.nicescroll.js"> </script>
</head>
<body>
<div class="container">
<section class="menu"><i class="fa fa-navicon"></i>
<div class="basket"><img data-modal-id="basket" src="/assets/images/cart.svg" width="32" height="32" class="cart modal-trigger">
<section class="basket-counter"><span>4</span><span>| 700$</span></section>
<p class="checkout">оформить заказ </p>
</div>
<nav>
<ul>
<li><a href="index.html" data-hover="Главная" class="animsition-link"> Главная</a></li>
<li><a href="gallery.html" data-hover="Галерея" class="animsition-link">Галерея</a></li>
<li><a href="#" data-hover="О нас"> О нас</a></li>
<li><a href="#" data-hover="Контакты">Контакты</a></li>
</ul>
</nav>
<div class="subcribe">
<p>Subcribe</p>
</div>
<address>Санкт-Петербург<br>Б. Казачий пер. 6<br><span>8(921) 566 08 39</span></address>
<div class="social-icons"><a href=""><i class="fa fa-vk fa-2x"></i></a><a href=""><i class="fa fa-facebook fa-2x"></i></a><a href=""><i class="fa fa-twitter fa-2x"></i></a><a href=""><i class="fa fa-skype fa-2x"></i></a>
<div class="box-apps"> <a href=""><i class="fa fa-apple fa-2x"> </i></a><a href=""><i class="fa fa-android fa-2x"> </i></a></div>
</div>
</section>
<section class="content">
<div id="basket" data-modal-effect="fadescale" class="modal">
<div class="modal-content">
<h2>Корзина</h2>
<section class="basket-list">
<table>
<tr>
<th>Наименование</th>
<th>Количество</th>
<th>Цена</th>
<th>Сумма</th>
</tr>
<tr>
<td> <img src="/assets/images/item3.jpg" width="100">
<p>Топиарии </p>
</td>
<td><span>2 </span></td>
<td><span>1500</span></td>
<td><span>1500 </span></td>
</tr>
<tr>
<td colspan="4" class="total"><span>Итого<em>1500</em><i class="fa fa-rub"></i></span></td>
</tr>
</table>
</section>
<section><i class="icon ion-close form-close modal-close"></i></section>
</div>
</div><a href="">
<h1 class="logo-in-gallery into-gallery">GHappy art</h1></a>
<div><a href="gallery.html" class="back-albums">назад к альбомам<i class="fa fa-caret-left"></i></a></div>
<ul data-liffect="zoomOut" class="thumb-gallery">
<div class="box-items"><i class="fa fa-search"></i><a href="/assets/images/item2.jpg" width="800" class="fluidbox"> <img src="/assets/images/item2.jpg" width="300"></a>
<section class="item-price"><span>Цена</span><span class="number-price">3600 руб.</span><img src="/assets/images/cart.svg" width="20" height="20" class="cart cart-price"></section>
</div>
<div> <a href="/assets/images/item1.jpg" width="800" class="fluidbox"><img src="/assets/images/item1.jpg" width="300"></a>
<section>
<p>Цена</p>
</section>
</div>
<div> <a href="/assets/images/item3.jpg" width="800" class="fluidbox"><img src="/assets/images/item3.jpg" width="300"></a></div>
<div> <a href="/assets/images/item4.jpg" width="800" class="fluidbox"><img src="/assets/images/item4.jpg" width="300"></a></div>
</ul>
</section>
</div>
<script src="/assets/scripts/main.js"></script>
</body>
</html> | zjoin/ha | build/album-topi.html | HTML | mit | 5,213 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>
<BODY>
<A name=1></a>This well is CONFIDENTIAL, any<br>
information included in this well file was<br>
public information prior to the issuance of<br>
the CONFIDENTIAL status<br>
<hr>
<A name=2></a><hr>
<A name=3></a>Oasis Petroleum North America, LLC<br>
Chalmers 5300 21-19 8T<br>
2,226' FNL & 327' FWL<br>
Lot 2 Sec. 19, 153N, 100W<br>
Baker / Three Forks<br>
McKenzie County, North Dakota<br>
BOTTOM HOLE LOCATION:<br>
173.80' N & 9,924.83' E of surface location or approx.<br>
2,052.20' FNL & 237.32' FEL SE NE Sec. 20, T153N, R100W<br>
Prepared for:<br>
Prepared by:<br>
Nathan Gabelman<br>
G. Wayne Peterson, Michelle Baker,<br>
Oasis Petroleum North America, LLC<br>
Zachary Moses, Molly Hagstrom<br>
1001 Fannin Suite 1500<br>
PO Box 80507; Billings, MT 59108<br>
Houston, TX 77002<br>
(406) 259-4124<br>
geology@sunburstconsulting.com<br>
www.sunburstconsulting.com<br>
<hr>
<A name=4></a>WELL EVALUATION<br>
Figure 1. Nabors B22 drilling the Oasis Petroleum North America, LLC - Chalmers 5300 21-19 8T<br>
during October-December, 2014 in Baker Field, McKenzie County, North Dakota.<br>
(G. Wayne Peterson, Sunburst Consulting)<br>
INTRODUCTION<br>
The Oasis Petroleum North America, LLC Chalmers 5300 21-19 8T [Lot 2 Section 19,<br>
T153N, R100W] is located approximately 7 miles south of the town of Williston in McKenzie<br>
County, North Dakota. The Chalmers 5300 21-19 8T is a horizontal Three Forks well within the<br>
Williston Basin consisting of one 9,358' lateral drilled toward the east. The vertical hole was<br>
planned to be drilled to approximately 10,341'. The curve would be built at 12 degrees per 100'<br>
to land within the Three Forks. This well is a two section lateral which originates in the<br>
northwest quarter of section 19, then drilled east to the northeast quarter of section 20.<br>
Directional drilling technologies and geo-steering techniques were used to land in the Three<br>
Forks reservoir and maintain exposure to the ideal target rock.<br>
<hr>
<A name=5></a>OFFSET WELLS<br>
Offset well data used for depth correlation during curve operations are found in the `Control<br>
Data' section appended to this report. Offset well control was essential in curve operations, to<br>
successfully land within the Three Forks. Formation thicknesses expressed by gamma ray<br>
signatures in these wells were compared to gamma data collected during drilling operations in<br>
order to successfully land the curve. The target landing true vertical depth (TVD) was<br>
periodically updated during drilling to ensure accurate landing of the curve.<br>
GEOLOGY<br>
The Charles Formation [Mississippian Madison Group] was logged 8,534' MD 8,533' TVD<br>
(-6,457' SS). Samples in the lower portion of the Charles Formation consisted of a limestone<br>
mudstone, which was light brown, light gray brown, off white in color. It was microcrystalline,<br>
friable, laminated, with an earthy texture. A trace of intercrystalline porosity, as was rare spotty<br>
light brown oil stain. Occasionally noted was a dolomite mudstone, which was light brown, light<br>
gray brown in color. It was microcrystalline, friable-firm, laminated, with an earthy texture. Also<br>
noted was a trace of intercrystalline porosity, and occasional spotty light brown oil stain. Rarely<br>
noted was anhydrite, which was off white, cream in color. It was soft, microcrystalline, and<br>
massive with an earthy to amorphous texture. Following connections or periods of non-<br>
circulation, gas peaks of 68 to 113 units were noted, as were drilling gas shows of 82 to 138<br>
units.<br>
The Mission Canyon Formation [Mississippian Madison Group] was logged 9,431' MD 9,430'<br>
TVD (-7,354' SS). The Mission Canyon Formation consisted of a lime mudstone that was<br>
described as light gray, light brown, gray brown, trace dark gray in color. The lime mudstone<br>
was predominately friable to firm, with an earthy to rarely crystalline in texture. Some intervals<br>
contained a trace of black-brown algal material, a trace of fossil fragments, and traces of<br>
disseminated pyrite. Also present was an argillaceous lime mudstone that was described as light<br>
gray, occasional medium gray, rare gray tan, rare off white, trace dark gray in color. The<br>
argillaceous lime mudstone was predominately firm to friable, crystalline to chalky texture.<br>
Some intervals contained a trace of disseminated pyrite. Following connections or periods of<br>
non-circulation, gas peaks of 101 to 114 units were noted, as were drilling gas shows of 143 to<br>
249 units. Rare intercrystalline porosity was noted as well as traces to occasional spotty light<br>
brown oil stain was occasionally observed while logging the Mission Canyon Formation.<br>
Figure 2. Limestone with spotty light to medium brown staining from the Mission Canyon Formation.<br>
<hr>
<A name=6></a>The Upper Bakken Shale [Mississippian-Bakken Formation] was drilled at 10,782' MD 10,723'<br>
TVD (-8,647' SS). Entry into this member was characterized by high gamma, elevated<br>
background gas and increased rates of penetration. The black to black gray carbonaceous and<br>
petroliferous shale was hard with a splintery to smooth texture. Fracture porosity was noted, and<br>
trace minerals were observed to include disseminated pyrite and calcite fracture fill.<br>
Hydrocarbons evaluated in this interval reached a maximum of 334 units.<br>
The Middle Bakken Member [Mississippian-Devonian Bakken Formation] was drilled at 10,808'<br>
MD 10,739' TVD (-8,663' SS). Samples in the Middle Bakken Member were predominantly silty<br>
sandstone which was described as light gray brown, light brown, trace light gray in color. It was<br>
very fine grained, friable, subround, smooth, moderately sorted, with calcite cement, moderately<br>
cemented. A trace of disseminated and nodular pyrite was noted as was fair intergranular<br>
porosity. Also noted was common light to medium brown spotty to even oil stain. Hydrocarbons<br>
evaluated in this interval reached a maximum of 161 units drilling gas, with a connection gas of<br>
206 units.<br>
The Lower Bakken Shale [Devonian-Bakken Formation] was drilled at 10,892' MD 10,784' TVD<br>
(-8,708' SS). Entry into this interval was characterized by high gamma, elevated background gas<br>
and increased rates of penetration. The carbonaceous black, black gray shale is petroliferous,<br>
hard, splintery, smooth and exhibits possible fracture porosity. Trace minerals included<br>
disseminated pyrite. Drilling gas in this interval reached a maximum of 159 units.<br>
The Pronghorn Member [Devonian-Bakken Formation] was reached at 10,918' MD 10,795' TVD<br>
(-8,719' SS). Entry into this interval was characterized by lower gamma then the Upper Bakken<br>
Shale, and slightly slower penetration rates. Samples from the Pronghorn were described as<br>
siltstone which was dark gray trace gray black, friable to firm, subblocky to subsplit. This<br>
siltstone was moderately dolomite cemented and included disseminated and nodular pyrite. Also<br>
noted was a trace of spotty light brown oil stain. Drilling gas in this interval reached a maximum<br>
of 215 units with a survey gas of 226 units.<br>
Figure 3. Black carbonaceous and petroliferous shale from the Lower Bakken Shale of the Bakken Formation<br>
and gray siltstone from the underlying Pronghorn Member.<br>
The Three Forks Formation [Devonian] was reached at 10,973' MD 10,813' TVD (-8,737' SS)<br>
which was 17' low to the Oasis Petroleum NA LLC Chalmers 5300 31-19H. The target zone of<br>
<hr>
<A name=7></a>the Three Forks was to be drilled in a predominately 10 foot zone beginning 17 feet into the<br>
Three Forks.<br>
Samples in the Three Forks were predominantly dolomite which was described as light brown-<br>
tan, occasional cream, trace light gray brown in color. It was very fine crystalline, firm,<br>
laminated, with a microsucrosic texture. Occasional disseminated pyrite was noted as was<br>
occasional intercrystalline porosity. Also noted was occasional spotty to trace even light brown<br>
oil stain. Also observed was light green-light gray green, light gray blue shale that was firm,<br>
subblocky, with an earthy texture. Occasional disseminated pyrite was noted as was possible<br>
intergranular porosity.<br>
Figures 4, 5, & 6. A predominately dolomitic sample in the middle of the preferred drilling zone of the Three<br>
Forks ( left); a predominately dolomitic sample high in the preferred drilling zone of the Three Forks<br>
(middle); and sample of the underlying claystone (right).<br>
Gas Show<br>
Gas monitoring and fluid gains provided evidence of a hydrocarbon saturated reservoir during<br>
the drilling of the Chalmers 5300 21-19 8T. Oil and gas shows at the shakers and in samples<br>
were continuously monitored. In the closed mud system, hydrostatic conditions were maintained<br>
near balance, this allowed for gas and fluid gains from the well to be evaluated. Gas on the<br>
Chalmers 5300 21-19 8T varied according to stratigraphic position and penetration rates which<br>
may have reflected increased porosity. During the vertical, connection gas peaks of 68 to 114<br>
units were noted, as were drilling gas shows of 82 to 249 units, against a 9.75-10.7 lb/gal diesel-<br>
invert mud weight. Background concentrations in the lateral ranged from 161 to 466 units,<br>
against a 9.5 lb/gal saltwater gel drilling fluid. Connection peaks of 1,119 to 1,207 units were<br>
observed, coinciding with the best shows. Drilling out of casing at 11,185 MD' yielded a trip gas<br>
of 2,232 units. The lateral was completed with one BHA, consequently no other trip gasses were<br>
noted. Chromatography of gas revealed typical concentrations of methane, characteristic of<br>
Three Forks gas.<br>
<hr>
<A name=8></a>Figure 7. Gas chromatography of a 1,200 unit gas show.<br>
Oasis Petroleum North America, LLC<br>
Chalmers 5300 21-19 8T<br>
Lot 2 Sec. 19, T153N, R100W<br>
W<br>
PROFILE<br>
E<br>
Mckenzie County, ND<br>
10780<br>
1500<br>
TG 2,232u<br>
1400<br>
Wt 9.5<br>
Wt 9.5<br>
Wt 9.5<br>
Wt 9.5<br>
Wt 9.5<br>
Wt 9.5<br>
10800<br>
1300<br>
1200<br>
10820<br>
1100<br>
2x<br>
ay<br>
1000<br>
Ra<br>
)<br>
10840<br>
900<br>
m<br>
am<br>
VD<br>
(T<br>
800<br>
G<br>
thp<br>
10860<br>
700<br>
100,<br>
e<br>
x<br>
D<br>
P<br>
600<br>
O<br>
R<br>
10880<br>
500<br>
as,<br>
G<br>
400<br>
talo<br>
10900<br>
300<br>
T<br>
200<br>
10920<br>
100<br>
0<br>
10900<br>
11400<br>
11900<br>
12400<br>
12900<br>
13400<br>
13900<br>
14400<br>
14900<br>
15400<br>
15900<br>
16400<br>
16900<br>
17400<br>
17900<br>
18400<br>
18900<br>
19400<br>
19900<br>
20400<br>
Measured Depth<br>
Wellbore<br>
Pronghorn Top<br>
Three Forks Top/Pronghorn bottom<br>
Target top<br>
Claystone<br>
TG<br>
ROP x 100<br>
GR x 2<br>
Figure 8. Profile displaying total gas, gamma ray and rate of penetration.<br>
<hr>
<A name=9></a>Geosteering<br>
Ryan Energy Technologies provided personnel and equipment for measurement-while-drilling<br>
(MWD) services. The RPM directional drillers and MWD, and Sunburst Consulting personnel<br>
worked closely together throughout the project to evaluate data and make steering decisions to<br>
maximize the amount of borehole in the targeted zones and increase rate of penetration (ROP) of<br>
the formation.<br>
The 875' curve was drilled in 23.5 hours with a bottom hole assembly (BHA) consisting of bit<br>
#4, a Smith MDI516 PDC bit, attached to a 2.38 degree fixed NOV 7/8 5.0 motor and MWD<br>
tools. The curve was successfully landed at 11,185' MD and 10,833' TVD, approximately 20'<br>
into the Three Forks Formation. Seven inch diameter 32# HCP-110 casing was set to 11,161'<br>
MD.<br>
Geologic structure maps of the Chalmers 5300 21-19 8T and surrounding control wells had<br>
estimated formation dip to be a down dip at approximately -0.5º down for the length of the<br>
lateral. The preferred drilling interval of the Chalmers 5300 21-19 8T consisted of a ten foot<br>
zone located approximately seventeen feet into the Three Forks Formation. Penetration rates, gas<br>
shows, gamma ray data, and sample observations were utilized to keep the wellbore in the<br>
preferred stratigraphic position in the target zone. Using offset well data provided by Oasis<br>
representatives, projected porosity zones were identified in the preferred drilling areas.<br>
Figure 9. Offset well target definition, Indian Hills Prospect (Oasis).<br>
Steering decisions were made by using target points and letter markers provided by Oasis<br>
personnel. The low gamma (D) in the middle of the target zone was often utilized to establish the<br>
well-bore's position in the target zone. If the well-bore moved toward the bottom of the target<br>
zone, the moderate gamma of marker (E) was observed. As the well-bore moved lower in<br>
formation, the higher gamma of the underlying claystone (F) was observed, as was the presence<br>
of claystone in collected samples. Slides were then utilized to move the well-bore back up into<br>
the target zone. In accordance with the drilling plan, the well-bore was steered down into the<br>
underlying claystone at prescribed intervals in order to definitively establish the well-bore's<br>
position in formation. As the well-bore moved higher, approaching the top of the target zone the<br>
<hr>
<A name=10></a>high to medium fluctuating gamma between markers (C & D) was noted. Later in the lateral the<br>
well-bore moved up in formation, and the marker (B) was observed, before the directional staff<br>
was able to steer the well-bore back down into the target zone. The TD of 20,519' MD was<br>
achieved at 04:50 hours CDT December 28, 2014. The well site team worked together to<br>
maintain the well bore in the desired target interval for 87% of the lateral, opening 9,358' of<br>
potentially productive reservoir rock. The hole was then circulated and reamed for completion.<br>
SUMMARY<br>
The Chalmers 5300 21-19 8T is a successful well in Oasis Petroleum's horizontal Three Forks<br>
development program in Baker Field. The project was drilled from surface casing to TD in 20<br>
days. The TD of 20,519' MD was achieved at 04:50 hours CDT December 28, 2014. The well<br>
site team worked together to maintain the well bore in the desired target interval for 87% of the<br>
lateral, opening 9,358' of potentially productive reservoir rock.<br>
Samples in the Three Forks were predominantly dolomite which was described as light brown-<br>
tan, occasional cream, trace light gray brown in color. It was very fine crystalline, firm,<br>
laminated, with a microsucrosic texture. Occasional disseminated pyrite was noted as was<br>
occasional intercrystalline porosity. Also noted was occasional spotty to trace even light brown<br>
oil stain. Also observed was light green-light gray green, light gray blue shale that was firm,<br>
subblocky, with an earthy texture. Occasional disseminated pyrite was noted as was possible<br>
intergranular porosity.<br>
Gas on the Chalmers 5300 21-19 8T varied according to stratigraphic position and penetration<br>
rates which may have reflected increased porosity. The overall gas and hydrocarbon shows were<br>
encouraging and indicate a hydrocarbon rich system in the Three Forks.<br>
The Oasis Petroleum North America, LLC. Chalmers 5300 21-19 8T awaits completion<br>
operations to determine its ultimate production potential.<br>
Respectfully submitted,<br>
G. Wayne Peterson<br>
Sunburst Consulting, Inc.<br>
29 December, 2014<br>
<hr>
<A name=11></a>WELL DATA SUMMARY<br>
OPERATOR:<br>
Oasis Petroleum North America, LLC<br>
ADDRESS:<br>
1001 Fannin Suite 1500<br>
Houston, TX 77002<br>
WELL NAME:<br>
Chalmers 5300 21-19 8T<br>
API #:<br>
33-053-06021<br>
WELL FILE #:<br>
28636<br>
SURFACE LOCATION:<br>
2,226' FNL & 327' FWL<br>
Lot 2 Sec. 19, 153N, 100W<br>
FIELD/ PROSPECT:<br>
Baker / Three Forks<br>
COUNTY, STATE<br>
McKenzie County, North Dakota<br>
BASIN:<br>
Williston<br>
WELL TYPE:<br>
Three Forks Member Horizontal Lateral<br>
ELEVATION:<br>
GL: 2,051'<br>
KB: 2,076'<br>
SPUD/ RE-ENTRY DATE:<br>
October 5, 2014<br>
BOTTOM HOLE LOCATION<br>
173.80' N & 9,924.83' E of surface location or approx.<br>
2,052.20' FNL & 237.32' FEL SE NE Sec. 20, T153N, R100W<br>
CLOSURE COORDINATE<br>
Closure Direction: 89.00°<br>
Closure Distance: 9,926.35'<br>
TOTAL DEPTH / DATE:<br>
20,519' on December 28, 2014<br>
87% within target interval<br>
TOTAL DRILLING DAYS:<br>
20 days<br>
CONTRACTOR:<br>
Nabors #B22<br>
PUMPS:<br>
H&H Triplex (stroke length - 12")<br>
<hr>
<A name=12></a>TOOLPUSHERS:<br>
Jessie Tibbets, Mark Rollins<br>
FIELD SUPERVISORS:<br>
John Gordon, Doug Rakstad<br>
CHEMICAL COMPANY:<br>
NOV<br>
MUD ENGINEER:<br>
Joe Vaith, Joe Stander, Ken Rockeman<br>
MUD TYPE:<br>
Fresh water in surface hole<br>
Diesel invert in vertical/curve; Salt water in lateral<br>
MUD LOSSES:<br>
Invert Mud: 500 bbls, Salt Water: 0 bbls<br>
PROSPECT GEOLOGIST:<br>
Nathan Gabelman<br>
WELLSITE GEOLOGISTS:<br>
G. Wayne Peterson, Michelle Baker,<br>
Zachary Moses, Molly Hagstrom<br>
GEOSTEERING SYSTEM:<br>
Sunburst Digital Wellsite Geological System<br>
ROCK SAMPLING:<br>
100' from 4,700' - 8,200'<br>
30' from 8,200' -20,519' (TD)<br>
SAMPLE EXAMINATION:<br>
Binocular microscope & fluoroscope<br>
SAMPLE CUTS:<br>
Trichloroethylene (Carbo-Sol)<br>
GAS DETECTION:<br>
MSI (Mudlogging Systems, Inc.) TGC - total gas with chromatograph<br>
Serial Number(s): ML-134<br>
ELECTRIC LOGS:<br>
n/a<br>
DRILL STEM TESTS:<br>
n/a<br>
DIRECTIONAL DRILLERS:<br>
RPM, Inc.<br>
John Gordon, Doug Rakstad, Robert Jervis<br>
MWD:<br>
Ryan<br>
Mike McCammond, Ronald Maddalena, Rebekah Hungerford<br>
<hr>
<A name=13></a>CASING:<br>
Surface: 13 3/8" 54# J-55 set to 2,175'<br>
Second: 9 5/8" 40# HCL-80 set to 6,162'<br>
Intermediate: 7" 32# P-110 set to 11,161'<br>
KEY OFFSET WELLS:<br>
Oasis Petroleum North America, LLC<br>
Chalmers 5300 31-19H<br>
NW SW Sec. 19 T153N R100W<br>
McKenzie County, ND<br>
Texas Gas Exploration Company<br>
Lindvig 1-35<br>
SE SE Sec. 35 T153N R101W<br>
McKenzie County, ND<br>
Mosbacher Production Company<br>
Verlin Fossum ET AL No. 26-1<br>
NW SE Sec. 26, T153N R101W<br>
McKenzie County, ND<br>
Oasis Petroleum North America, LLC<br>
Chalmers 5301 44-24 4T2R<br>
SE SE Sec. 24 T153N R101W<br>
McKenzie County, ND<br>
<hr>
<A name=14></a><hr>
<A name=15></a><hr>
<A name=16></a><hr>
<A name=17></a><hr>
<A name=18></a><hr>
<A name=19></a>TIME VS DEPTH<br>
Oasis Petroleum North America, LLC<br>
Chalmers 5300 21-19 8T<br>
0<br>
Spud October 5, 2014<br>
Drill suface with<br>
1000<br>
bit #1<br>
13 3/8'' Surface casing set to 2,175'<br>
2000<br>
TIH bit #2 @ 2,175' for vertical<br>
3000<br>
4000<br>
5000<br>
TOH bit #2 for 9 5/8" casing @<br>
6,180'; TIH bit #3<br>
6000<br>
9 5/8" casing<br>
7000<br>
set to 6,162'<br>
8000<br>
9000<br>
ft)(h<br>
TOOH bit #3 @ 10,310' for curve, TIH bit #4<br>
10000<br>
eptD<br>
Land curve @ 11,185; TOH bit #4<br>
11000<br>
TIH bit #5<br>
12000<br>
7" Intermediate casing set to 11,161';<br>
for lateral<br>
Skid rig 19 Oct 2014; Skid rig back 24<br>
Dec 2014<br>
13000<br>
14000<br>
15000<br>
16000<br>
17000<br>
18000<br>
19000<br>
20000<br>
TD of 20,519' on<br>
December 28, 2014<br>
21000<br>
0<br>
2<br>
4<br>
6<br>
8<br>
10<br>
12<br>
14<br>
16<br>
18<br>
20<br>
Days of Operations<br>
<hr>
<A name=20></a>n<br>
e<br>
e<br>
e<br>
tiona<br>
ft<br>
fac<br>
fac<br>
fac<br>
rre<br>
rre<br>
m<br>
wi<br>
ur<br>
ur<br>
ur<br>
ie<br>
ie<br>
S<br>
S<br>
S<br>
S<br>
P<br>
P<br>
reenhor<br>
For<br>
G<br>
d<br>
,<br>
l.<br>
,<br>
d<br>
s<br>
e<br>
-<br>
ol<br>
d<br>
.<br>
.<br>
e<br>
.<br>
el<br>
ig.<br>
or<br>
D<br>
at<br>
el<br>
n<br>
for<br>
P<br>
ud<br>
ith<br>
r<br>
D<br>
190'<br>
ng<br>
et<br>
pud<br>
,<br>
ght<br>
ing<br>
w<br>
ul<br>
.H<br>
H<br>
ent<br>
O<br>
w<br>
e<br>
W<br>
and<br>
t<br>
,<br>
S<br>
W<br>
ippl<br>
m<br>
-<br>
d<br>
s<br>
at<br>
A<br>
rai<br>
her<br>
ic<br>
2,<br>
rig.<br>
e<br>
ei<br>
lidi<br>
at<br>
s<br>
re<br>
el<br>
irc<br>
H<br>
B<br>
N<br>
v<br>
and<br>
and<br>
e<br>
los<br>
ot<br>
ol<br>
M<br>
rew<br>
em<br>
.D<br>
and<br>
,M<br>
at<br>
w<br>
el<br>
B<br>
tion.<br>
eat<br>
lean<br>
er<br>
142'<br>
tat<br>
ic<br>
,s<br>
to<br>
r<br>
up.<br>
ul<br>
er<br>
tab<br>
ig.<br>
O<br>
e-<br>
t.P<br>
up<br>
.C<br>
n<br>
c<br>
C<br>
v<br>
r<br>
.<br>
head<br>
S<br>
H<br>
ey<br>
e<br>
onel<br>
ig<br>
W<br>
S<br>
s<br>
C<br>
2,<br>
es<br>
rilling<br>
illing<br>
irc<br>
v<br>
ov<br>
.<br>
.<br>
er<br>
lis<br>
ing<br>
ig<br>
IH<br>
ing<br>
ondi<br>
.<br>
e<br>
k<br>
B<br>
um<br>
ov<br>
m<br>
R<br>
k<br>
ing<br>
as<br>
s<br>
ic<br>
ros<br>
head<br>
ug.<br>
itt<br>
.D<br>
dr<br>
.S<br>
.C<br>
ol<br>
ur<br>
due<br>
o<br>
.C<br>
c<br>
.R<br>
.T<br>
dow<br>
as<br>
c<br>
lheads<br>
v<br>
c<br>
at<br>
,U<br>
rom<br>
F<br>
s<br>
em<br>
w<br>
k<br>
k<br>
800'<br>
H<br>
c<br>
thead.<br>
el<br>
ros<br>
er<br>
ing<br>
tac<br>
ot<br>
s<br>
f<br>
.<br>
pe.<br>
v<br>
,t<br>
al<br>
hec<br>
f,<br>
or<br>
tpl<br>
0-<br>
O<br>
lhead.<br>
c<br>
s<br>
ud<br>
at<br>
r<br>
061'<br>
581'<br>
150'<br>
ld<br>
tion<br>
.R<br>
2014.<br>
w<br>
c<br>
of<br>
Lay<br>
and<br>
es<br>
lw<br>
S<br>
pi<br>
or<br>
w<br>
T<br>
up<br>
e<br>
t<br>
el<br>
es<br>
or<br>
er<br>
ent<br>
175'<br>
h<br>
ui<br>
H<br>
5/<br>
m<br>
onel<br>
at<br>
ig<br>
e<br>
tal<br>
w<br>
ud<br>
rot<br>
t<br>
f<br>
-3,<br>
-5,<br>
-6,<br>
rilland<br>
ondi<br>
O<br>
ot<br>
pud<br>
illing<br>
rig.<br>
at<br>
e<br>
or<br>
ent<br>
em<br>
2,<br>
as<br>
.B<br>
s<br>
ions<br>
e<br>
R<br>
ul<br>
ur<br>
ns<br>
m<br>
m<br>
f<br>
c<br>
c<br>
T<br>
10/<br>
t.C<br>
tion.<br>
e<br>
c<br>
2<br>
tional<br>
dr<br>
ic<br>
s<br>
.I<br>
on<br>
lhead.<br>
ov<br>
s<br>
pool<br>
,<br>
at<br>
190'<br>
w<br>
741'<br>
581'<br>
.D<br>
t,m<br>
is<br>
re<br>
y<br>
v<br>
irc<br>
d<br>
e<br>
ing.<br>
es<br>
el<br>
ov<br>
el<br>
head,<br>
er<br>
s<br>
or<br>
ob.<br>
2,<br>
IH<br>
ty<br>
on<br>
s<br>
P<br>
tens<br>
C<br>
ps<br>
em<br>
ine,<br>
4,<br>
5,<br>
tands<br>
and<br>
j<br>
,bi<br>
.<br>
rec<br>
ar<br>
ondi<br>
er<br>
as<br>
.<br>
pr<br>
w<br>
hoe<br>
s<br>
y<br>
em<br>
o<br>
ov<br>
ify<br>
ot<br>
rilling<br>
eas<br>
.T<br>
e<br>
A<br>
ivi<br>
00<br>
as<br>
,r<br>
rs<br>
ot<br>
c<br>
W<br>
ing<br>
illl<br>
lex<br>
,di<br>
S<br>
c<br>
nt<br>
t<br>
s<br>
s<br>
dr<br>
H<br>
ok<br>
F<br>
rom<br>
rom<br>
rom<br>
H<br>
at<br>
ct<br>
at<br>
A<br>
R<br>
H<br>
oi<br>
pum<br>
R<br>
P<br>
t,m<br>
gr<br>
t.D<br>
f<br>
f<br>
f<br>
11<br>
O<br>
ul<br>
p<br>
B<br>
13:<br>
lim<br>
tai<br>
H<br>
un<br>
and<br>
ros<br>
ig.<br>
and<br>
O<br>
tj<br>
ing.<br>
O<br>
ot<br>
lines<br>
M<br>
146,<br>
ey<br>
ig-<br>
ip<br>
T<br>
irc<br>
n<br>
rA<br>
c<br>
s<br>
bai<br>
r<br>
lar<br>
ub.<br>
e<br>
e<br>
c<br>
w<br>
B<br>
r<br>
.T<br>
o<br>
as<br>
,r<br>
r<br>
el<br>
as<br>
s<br>
B<br>
line.<br>
,bi<br>
y<br>
v<br>
tt<br>
e<br>
H<br>
@<br>
er<br>
e<br>
2,<br>
pum<br>
2<br>
at<br>
A<br>
up<br>
ey<br>
ak<br>
t<br>
or<br>
ing.<br>
l<br>
ine.<br>
ur<br>
ob.<br>
.C<br>
ic<br>
n<br>
ul<br>
n<br>
head<br>
c<br>
fc<br>
i<br>
up<br>
l<br>
H<br>
ic<br>
hor<br>
j<br>
dow<br>
24<br>
ig<br>
ent<br>
,t<br>
f<br>
v<br>
as<br>
n<br>
que<br>
lines<br>
e<br>
low<br>
at<br>
s<br>
v<br>
y<br>
up,<br>
7T<br>
irc<br>
hour<br>
up<br>
of<br>
P<br>
f<br>
B<br>
needed<br>
needed<br>
heav<br>
er<br>
S<br>
s<br>
R<br>
c<br>
er<br>
ig<br>
c<br>
ent<br>
O<br>
or<br>
oom<br>
dr<br>
180'<br>
s<br>
Y<br>
S<br>
1<br>
dow<br>
ut<br>
t<br>
ey<br>
k<br>
ound<br>
lar<br>
loat<br>
Lay<br>
er<br>
p<br>
ig.<br>
e,<br>
loor<br>
8"<br>
f<br>
up<br>
of<br>
and<br>
hen<br>
hen<br>
f<br>
eady<br>
.<br>
.C<br>
.R<br>
h<br>
em<br>
dow<br>
B<br>
o<br>
.S<br>
-6,<br>
R<br>
k<br>
s<br>
,f<br>
up.<br>
e.<br>
m<br>
r<br>
tur<br>
r<br>
A<br>
for<br>
3/<br>
ig<br>
.C<br>
e<br>
t<br>
up<br>
up<br>
w<br>
w<br>
s<br>
tom<br>
id<br>
ig<br>
O<br>
as<br>
c<br>
d<br>
ic<br>
nt<br>
r<br>
H<br>
175'<br>
e<br>
H<br>
tor<br>
oom<br>
head,<br>
illing<br>
741'<br>
150'<br>
ppl<br>
hal<br>
k<br>
lac<br>
ig<br>
oi<br>
461'<br>
ng<br>
ng<br>
pum<br>
truc<br>
get<br>
B<br>
at<br>
B<br>
13<br>
.R<br>
k<br>
P<br>
142'<br>
.W<br>
up<br>
s<br>
for<br>
line.<br>
bot<br>
P<br>
ook<br>
R<br>
ing<br>
j<br>
4,<br>
tom<br>
ni<br>
AR<br>
C<br>
S<br>
-2,<br>
ul<br>
e<br>
.<br>
2,<br>
dr<br>
-4,<br>
-<br>
lidi<br>
lidi<br>
6,<br>
e<br>
e.<br>
un<br>
ig<br>
er<br>
ine<br>
at<br>
ng.<br>
up,<br>
rip<br>
ubs<br>
lean<br>
up<br>
,U<br>
8"<br>
her<br>
.H<br>
S<br>
12<br>
at<br>
k<br>
irc<br>
R<br>
R<br>
onduc<br>
l<br>
in.<br>
P<br>
ot<br>
hi<br>
at<br>
,s<br>
,s<br>
bot<br>
s<br>
ul<br>
lt<br>
M<br>
rom<br>
s<br>
C<br>
tand<br>
e<br>
S<br>
p<br>
ic<br>
800'<br>
c<br>
or<br>
3/<br>
ent<br>
tion.<br>
hok<br>
m<br>
061'<br>
461'<br>
rom<br>
f<br>
hol<br>
eat<br>
bi<br>
ot<br>
fc<br>
P<br>
c<br>
O<br>
lr<br>
up<br>
3,<br>
4,<br>
ey<br>
ey<br>
f<br>
irc<br>
tal<br>
ape.<br>
d<br>
P<br>
ing.<br>
13<br>
ing.<br>
ec<br>
hok<br>
O<br>
h<br>
bus<br>
k<br>
ent<br>
v<br>
v<br>
tom<br>
D.<br>
ed<br>
c<br>
ing.<br>
em<br>
s<br>
W<br>
tal<br>
c<br>
c<br>
e.<br>
tion,<br>
tB<br>
30<br>
ns<br>
c<br>
of<br>
c<br>
B<br>
s<br>
ur<br>
ur<br>
pum<br>
i<br>
W<br>
M<br>
new<br>
ound<br>
ol<br>
illing<br>
pi<br>
em<br>
n<br>
it,m<br>
eet<br>
ing<br>
eet<br>
n<br>
ut<br>
B<br>
on<br>
S<br>
ini<br>
es<br>
ns<br>
ear<br>
or<br>
s<br>
s<br>
bot<br>
eas<br>
or<br>
es<br>
dr<br>
from<br>
from<br>
e<br>
ion-<br>
k<br>
gr<br>
neet<br>
abl<br>
B<br>
m<br>
as<br>
m<br>
P<br>
up<br>
.I<br>
.C<br>
if<br>
,M<br>
U<br>
el<br>
f<br>
y<br>
c<br>
y<br>
ondi<br>
.<br>
y<br>
y<br>
t.C<br>
led<br>
O<br>
e<br>
.F<br>
.T<br>
lw<br>
tion-<br>
at<br>
needed<br>
at<br>
and<br>
r<br>
s<br>
ric<br>
up<br>
D<br>
c<br>
s<br>
ey<br>
ey<br>
et<br>
ting<br>
dow<br>
n<br>
er<br>
c<br>
et<br>
et<br>
dow<br>
er<br>
tal<br>
der<br>
tal<br>
,and<br>
ps<br>
v<br>
v<br>
ul<br>
ul<br>
HO<br>
ig<br>
at<br>
er<br>
ig<br>
ai<br>
B<br>
S<br>
af<br>
ai<br>
ot<br>
W<br>
af<br>
un<br>
af<br>
ig<br>
ippl<br>
pool<br>
el<br>
IH.<br>
IH<br>
190'<br>
ur<br>
ur<br>
rilland<br>
rilland<br>
ondi<br>
irc<br>
hen<br>
irc<br>
R<br>
m<br>
D<br>
R<br>
s<br>
lay<br>
m<br>
R<br>
and<br>
M<br>
s<br>
R<br>
s<br>
R<br>
inv<br>
ins<br>
W<br>
up<br>
N<br>
s<br>
tank<br>
w<br>
Ins<br>
T<br>
T<br>
2,<br>
227<br>
s<br>
s<br>
D<br>
D<br>
c<br>
c<br>
w<br>
c<br>
head<br>
UB<br>
M<br>
-<br>
-<br>
-<br>
G<br>
GP<br>
704<br>
704<br>
651<br>
651<br>
IN<br>
2<br>
-<br>
-<br>
-<br>
93<br>
93<br>
L<br>
SPM<br>
100<br>
100<br>
IL<br>
1<br>
-<br>
-<br>
-<br>
92<br>
92<br>
SPM<br>
100<br>
100<br>
-<br>
-<br>
-<br>
DR<br>
PP<br>
800<br>
650<br>
1,<br>
3,<br>
3500<br>
3500<br>
Y<br>
M<br>
-<br>
-<br>
-<br>
-<br>
-<br>
85<br>
85<br>
L<br>
RP<br>
(MM)<br>
)<br>
B<br>
s<br>
AI </span><span class="ft0">O lb<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
W<br>
MM<br>
(K<br>
D<br>
M<br>
T)<br>
-<br>
50<br>
50<br>
-<br>
-<br>
30<br>
30<br>
RP<br>
(R<br>
)<br>
B<br>
s<br>
O<br>
lb<br>
-<br>
-<br>
-<br>
RT<br>
5<br>
10<br>
16<br>
16<br>
W<br>
(K<br>
t#<br>
-<br>
1<br>
1<br>
-<br>
-<br>
2<br>
2<br>
Bi<br>
r<br>
ge<br>
H<br>
a<br>
0<br>
0<br>
800<br>
375<br>
566<br>
439<br>
24<br>
1,<br>
2,<br>
1,<br>
Foot<br>
h<br>
)<br>
pt<br>
s<br>
0<br>
e<br>
800'<br>
175'<br>
175'<br>
175'<br>
741'<br>
180'<br>
D<br>
(0600<br>
Hr<br>
2,<br>
2,<br>
2,<br>
4,<br>
6,<br>
e<br>
5<br>
6<br>
7<br>
8<br>
9<br>
10<br>
11<br>
atD 2014<br>
10/<br>
10/<br>
10/<br>
10/<br>
10/<br>
10/<br>
10/<br>
y<br>
0<br>
1<br>
2<br>
3<br>
4<br>
5<br>
6<br>
Da<br>
<hr>
<A name=21></a>e<br>
e<br>
s<br>
s<br>
k<br>
k<br>
tion<br>
he<br>
or<br>
or<br>
a<br>
ft<br>
les<br>
F<br>
F<br>
m<br>
wiS<br>
pec<br>
har<br>
ee<br>
ee<br>
O<br>
C<br>
For<br>
Lodgepol<br>
Lodgepol<br>
hr<br>
hr<br>
T<br>
T<br>
,<br>
e<br>
-<br>
.<br>
.<br>
O<br>
ut<br>
-5<br>
ic<br>
k<br>
lide<br>
ld<br>
t<br>
o<br>
v<br>
illing<br>
illing<br>
H<br>
,<br>
.<br>
190'<br>
377'<br>
t8<br>
P<br>
d<br>
pub<br>
t<br>
er<br>
964'<br>
B<br>
hor<br>
ig<br>
A<br>
,345<br>
pes<br>
dr<br>
dr<br>
op<br>
ruc<br>
n<br>
U<br>
.S<br>
@<br>
bui<br>
H<br>
d<br>
on<br>
n<br>
-6,<br>
y<br>
8,<br>
y<br>
t<br>
9,<br>
t<br>
el<br>
as<br>
ng.<br>
H<br>
G<br>
.S<br>
needed<br>
,<br>
IH<br>
S<br>
O<br>
l<br>
ing.<br>
ith<br>
up<br>
hel<br>
t<br>
d.<br>
up<br>
.r<br>
ions<br>
P<br>
from<br>
pi<br>
ar<br>
ar<br>
D<br>
T<br>
es<br>
T<br>
H<br>
h<br>
ai<br>
ig<br>
dow<br>
hi<br>
B<br>
pe,<br>
@<br>
ine<br>
in.<br>
as<br>
w<br>
for<br>
ig<br>
as<br>
ent<br>
110'<br>
P<br>
l<br>
illing<br>
444'<br>
ot<br>
ot<br>
pi<br>
dow<br>
W<br>
m<br>
as<br>
c<br>
R<br>
ing-<br>
w<br>
tent<br>
up<br>
5<br>
tion<br>
ng<br>
es<br>
and<br>
ig<br>
trok<br>
up.<br>
ing.<br>
k<br>
ing<br>
up/<br>
.R<br>
bus<br>
k<br>
6,<br>
R<br>
R<br>
h<br>
ire<br>
s<br>
dr<br>
s<br>
W<br>
e.<br>
as<br>
her<br>
em<br>
-7,<br>
needed<br>
e<br>
-r<br>
,M<br>
or<br>
ig<br>
c<br>
lex<br>
ic<br>
lidi<br>
w<br>
as<br>
.<br>
s<br>
s<br>
head.<br>
30<br>
as<br>
eet<br>
ac<br>
c<br>
tion-<br>
rew<br>
P<br>
t11.<br>
func<br>
rig.<br>
rig.<br>
trok<br>
at<br>
40<br>
lide<br>
e<br>
c<br>
w<br>
R<br>
eat<br>
ear<br>
rom<br>
needed<br>
s<br>
c<br>
p<br>
as<br>
f<br>
,<br>
e<br>
e<br>
w<br>
s<br>
ul<br>
ey<br>
p<br>
S<br>
at<br>
tom<br>
ing.<br>
m<br>
pl<br>
un<br>
697'<br>
up<br>
s<br>
w<br>
es<br>
ic<br>
ng<br>
ic<br>
182'<br>
v<br>
ing<br>
un<br>
y<br>
r<br>
fbel<br>
as<br>
ondi<br>
rig<br>
um<br>
lw<br>
6,<br>
v<br>
v<br>
ed<br>
30<br>
irc<br>
ig<br>
pony<br>
at<br>
ul<br>
r<br>
and<br>
di<br>
o<br>
ing.<br>
ith<br>
line.<br>
net<br>
itt<br>
hen<br>
324'<br>
.<br>
illing<br>
e<br>
ur<br>
ig.<br>
bot<br>
o<br>
c<br>
e<br>
et<br>
t<br>
c<br>
.P<br>
of<br>
tal<br>
w<br>
er<br>
lidi<br>
er<br>
-10,<br>
.C<br>
-r<br>
s<br>
irc<br>
,2<br>
ot<br>
pum<br>
r<br>
e<br>
t<br>
af<br>
n<br>
as<br>
w<br>
on<br>
s<br>
e<br>
ns<br>
em<br>
.F<br>
6,<br>
s<br>
dr<br>
e<br>
un<br>
at<br>
ent<br>
y<br>
reas<br>
rat<br>
s<br>
lr<br>
ic<br>
C<br>
at<br>
S<br>
and<br>
c<br>
er<br>
ak<br>
631'<br>
.S<br>
.S<br>
ogs<br>
ul<br>
.<br>
f,i<br>
illing<br>
c<br>
ng<br>
at<br>
p<br>
hot<br>
964'<br>
310'<br>
l<br>
tal<br>
low<br>
v<br>
ul<br>
up<br>
.R<br>
T<br>
em<br>
e<br>
ting<br>
158'<br>
ar<br>
G<br>
e<br>
ig<br>
T<br>
irc<br>
ty<br>
dow<br>
.T<br>
lidi<br>
es<br>
needed<br>
-7,<br>
illing<br>
ti-s<br>
onel<br>
ns<br>
.S<br>
er<br>
tion.<br>
irc<br>
R<br>
c<br>
at<br>
and<br>
ent<br>
dr<br>
ot<br>
l<br>
anded<br>
ai<br>
nt<br>
of<br>
097'<br>
622'<br>
9,<br>
k<br>
6,<br>
dr<br>
rig.<br>
ul<br>
i<br>
R<br>
R<br>
C<br>
e<br>
ivi<br>
ut<br>
,s<br>
-10,<br>
m<br>
.S<br>
C<br>
C<br>
up/<br>
ul<br>
l<br>
w<br>
rilling<br>
em<br>
oi<br>
as<br>
pum<br>
444'<br>
-8,<br>
y<br>
.R<br>
-9,<br>
e<br>
hol<br>
M<br>
e,<br>
C<br>
e.<br>
n<br>
at<br>
ct<br>
trok<br>
ig<br>
ondi<br>
irc<br>
ify<br>
le<br>
j<br>
C<br>
D<br>
at<br>
ey<br>
,2<br>
453'<br>
ng.<br>
ul<br>
and<br>
c<br>
s<br>
ng<br>
ar<br>
ec<br>
ic<br>
ed<br>
.<br>
er<br>
hi<br>
lpac<br>
d.<br>
v<br>
7,<br>
v<br>
low<br>
182'<br>
ac<br>
or<br>
ppl<br>
827'<br>
c<br>
tion.<br>
hi<br>
up<br>
rA<br>
R<br>
C<br>
nt<br>
ith<br>
ng<br>
in.<br>
hoe<br>
ur<br>
631'<br>
ot<br>
s<br>
031'<br>
er<br>
as<br>
k<br>
pl<br>
irc<br>
/v<br>
w<br>
tal<br>
for<br>
40<br>
lidi<br>
6<br>
,s<br>
needed<br>
ogs<br>
ot<br>
ni<br>
-10,<br>
ic<br>
s<br>
dow<br>
H<br>
8.<br>
C<br>
ng.<br>
oi<br>
s<br>
R<br>
j<br>
e<br>
w<br>
m<br>
s<br>
7,<br>
9,<br>
10,<br>
l<br>
and<br>
ig<br>
ns<br>
,s<br>
.<br>
-10,<br>
ondi<br>
bus<br>
pe<br>
.S<br>
.C<br>
e<br>
trip<br>
e<br>
P<br>
di<br>
24<br>
5/<br>
at<br>
landi<br>
her<br>
iat<br>
as<br>
tm<br>
c<br>
Y<br>
hi<br>
9<br>
rew<br>
ing<br>
.I<br>
30<br>
and<br>
A<br>
onds<br>
310'<br>
at<br>
.R<br>
ing.<br>
c<br>
ul<br>
n<br>
s<br>
e<br>
112'<br>
illing<br>
needed<br>
pi<br>
ng<br>
H<br>
hol<br>
453'<br>
ear<br>
ent<br>
bus<br>
pub<br>
or<br>
ps<br>
,bi<br>
ing.<br>
irc<br>
377'<br>
964'<br>
ul<br>
eet<br>
eat<br>
or<br>
rill<br>
ec<br>
B<br>
A<br>
ov<br>
10,<br>
lw<br>
eet<br>
ing-<br>
if<br>
6,<br>
lidi<br>
ed<br>
and<br>
hoot<br>
up<br>
ing<br>
dr<br>
n<br>
C<br>
dow<br>
at<br>
w<br>
as<br>
as<br>
em<br>
D<br>
y<br>
needed<br>
-8,<br>
tion<br>
needed<br>
-9,<br>
s<br>
irc<br>
6<br>
needed<br>
H<br>
10,<br>
e<br>
ul<br>
c<br>
ear<br>
m<br>
s<br>
s<br>
m<br>
as<br>
e<br>
as<br>
y<br>
ith<br>
ps<br>
at<br>
324<br>
ng<br>
as<br>
em<br>
e<br>
at<br>
c<br>
e<br>
y<br>
AR<br>
B<br>
w<br>
ev<br>
in.<br>
ar<br>
as<br>
unc<br>
as<br>
as<br>
c<br>
v<br>
.C<br>
.P<br>
e<br>
l<br>
c<br>
ak<br>
c<br>
et<br>
097'<br>
622'<br>
ul<br>
7"<br>
et<br>
n<br>
tion.<br>
w<br>
dow<br>
.R<br>
.Lay<br>
el<br>
#1-<br>
ot<br>
lidi<br>
pes<br>
ur<br>
.<br>
A<br>
at<br>
.<br>
ul<br>
un<br>
loat<br>
m<br>
F<br>
illing<br>
up<br>
m<br>
af<br>
ng<br>
ng<br>
ng<br>
ng<br>
af<br>
R<br>
s<br>
8,<br>
9,<br>
k<br>
IH<br>
needed<br>
c<br>
185'<br>
irc<br>
H<br>
H<br>
un<br>
ul<br>
M<br>
s<br>
1500<br>
,f<br>
.R<br>
ig.<br>
pi<br>
dr<br>
ing,<br>
O<br>
roubl<br>
s<br>
ent<br>
.P<br>
R<br>
ondi<br>
d<br>
rew<br>
l5"<br>
hi<br>
30<br>
P<br>
lidi<br>
lidi<br>
lidi<br>
ic<br>
ld<br>
C<br>
B<br>
irc<br>
ec<br>
r<br>
y<br>
.Lay<br>
.T<br>
as<br>
R<br>
,t<br>
d<br>
A<br>
ing-<br>
dow<br>
s<br>
e<br>
s<br>
s<br>
eet<br>
T<br>
n<br>
ig<br>
c<br>
ol<br>
c<br>
tal<br>
ing<br>
110'<br>
or<br>
.S<br>
s<br>
illing<br>
.<br>
ar<br>
H<br>
.P<br>
D<br>
-11,<br>
ig.<br>
C<br>
ol<br>
em<br>
M<br>
H<br>
ing.<br>
as<br>
r<br>
bus<br>
f<br>
bui<br>
ns<br>
as<br>
ic<br>
r<br>
6<br>
v<br>
ot<br>
O<br>
m<br>
W<br>
ing<br>
e<br>
ing.<br>
n.<br>
lips<br>
B<br>
c<br>
.H<br>
ing.<br>
.H<br>
.C<br>
s<br>
ent<br>
6,<br>
dr<br>
needed<br>
needed<br>
tioned<br>
T<br>
y<br>
rew<br>
at<br>
dow<br>
s<br>
s<br>
s<br>
n<br>
eet<br>
and<br>
,i<br>
tc<br>
697'<br>
y<br>
illing<br>
er<br>
031'<br>
illing<br>
illing<br>
et<br>
827'<br>
ic<br>
eet<br>
U<br>
ing-<br>
e<br>
er<br>
ear<br>
em<br>
s<br>
at<br>
190'<br>
ar<br>
dr<br>
dr<br>
I.R<br>
dr<br>
c<br>
tM<br>
ot<br>
.<br>
illing<br>
v<br>
er<br>
er<br>
m<br>
un<br>
or<br>
es<br>
-6,<br>
inds<br>
as<br>
.S<br>
-9,<br>
as<br>
unc<br>
af<br>
r<br>
eam<br>
m<br>
dow<br>
ing<br>
y<br>
as<br>
at<br>
c<br>
lw<br>
6,<br>
ot<br>
y<br>
y<br>
f<br>
S<br>
y<br>
tion.<br>
es<br>
er<br>
s<br>
ine<br>
dr<br>
10,<br>
r<br>
.Lay<br>
y<br>
S<br>
dow<br>
.R<br>
ent<br>
at<br>
ent<br>
e<br>
as<br>
ent<br>
ent<br>
et<br>
ul<br>
n<br>
.T<br>
,bl<br>
R<br>
ar<br>
ng<br>
ar<br>
ng<br>
e,<br>
P<br>
ar<br>
d<br>
T<br>
S<br>
k<br>
nt<br>
c<br>
tal<br>
iat<br>
453'<br>
v<br>
H<br>
et<br>
c<br>
af<br>
irc<br>
em<br>
ev<br>
IH<br>
em<br>
190'<br>
ec<br>
ot<br>
lidi<br>
844'<br>
844'<br>
ot<br>
lidi<br>
iv<br>
ot<br>
ondi<br>
el<br>
irel<br>
IH<br>
illing<br>
lide<br>
ur<br>
O<br>
af<br>
tands<br>
em<br>
em<br>
Lay<br>
s<br>
joi<br>
run<br>
C<br>
c<br>
dow<br>
el<br>
Ins<br>
T<br>
c<br>
ps<br>
6,<br>
s<br>
rig.<br>
R<br>
s<br>
8,<br>
8,<br>
R<br>
s<br>
dr<br>
310<br>
R<br>
c<br>
H<br>
w<br>
T<br>
dr<br>
10,<br>
S<br>
c<br>
trip.<br>
bac<br>
T<br>
s<br>
s<br>
on<br>
c<br>
c<br>
M<br>
G<br>
-<br>
-<br>
GP<br>
549<br>
549<br>
549<br>
514<br>
514<br>
IN<br>
2<br>
L<br>
-<br>
78<br>
78<br>
78<br>
73<br>
73<br>
-<br>
SPM<br>
IL<br>
1<br>
-<br>
78<br>
78<br>
78<br>
73<br>
73<br>
-<br>
SPM<br>
DR<br>
-<br>
-<br>
PP<br>
3300<br>
3500<br>
3700<br>
3900<br>
3900<br>
Y<br>
M<br>
L<br>
-<br>
-<br>
RP<br>
(MM)<br>
132<br>
132<br>
132<br>
267<br>
267<br>
)<br>
B<br>
s<br>
AI </span><span class="ft0">O lb<br>
-<br>
17<br>
20<br>
40<br>
33<br>
33<br>
-<br>
W<br>
MM<br>
(K<br>
D<br>
M<br>
T)<br>
-<br>
60<br>
45<br>
60<br>
60<br>
60<br>
-<br>
RP<br>
(R<br>
)<br>
B<br>
s<br>
O<br>
lb<br>
-<br>
-<br>
RT<br>
25<br>
15<br>
43<br>
50<br>
50<br>
W<br>
(K<br>
t#<br>
-<br>
3<br>
3<br>
3<br>
4<br>
4<br>
-<br>
Bi<br>
3/<br>
r<br>
ge<br>
H<br>
a<br>
0<br>
451<br>
400<br>
151<br>
0<br>
271<br>
732<br>
24<br>
1,<br>
1,<br>
1,<br>
Foot<br>
h<br>
)<br>
pt<br>
s<br>
182'<br>
453'<br>
185'<br>
185'<br>
e<br>
180'<br>
631'<br>
031'<br>
D<br>
(0600<br>
Hr<br>
6,<br>
7,<br>
9,<br>
10,<br>
10,<br>
11,<br>
11,<br>
e<br>
12<br>
13<br>
14<br>
15<br>
16<br>
17<br>
18<br>
atD 2014<br>
10/<br>
10/<br>
10/<br>
10/<br>
10/<br>
10/<br>
10/<br>
y<br>
7<br>
8<br>
9<br>
Da<br>
10<br>
11<br>
12<br>
13<br>
<hr>
<A name=22></a>s<br>
s<br>
s<br>
s<br>
s<br>
s<br>
s<br>
k<br>
k<br>
k<br>
k<br>
k<br>
k<br>
k<br>
tion<br>
or<br>
or<br>
or<br>
or<br>
or<br>
or<br>
or<br>
a<br>
F<br>
F<br>
F<br>
F<br>
F<br>
F<br>
F<br>
m<br>
ee<br>
ee<br>
ee<br>
ee<br>
ee<br>
ee<br>
ee<br>
For<br>
hr<br>
hr<br>
hr<br>
hr<br>
hr<br>
hr<br>
hr<br>
T<br>
T<br>
T<br>
T<br>
T<br>
T<br>
T<br>
l<br>
y<br>
t<br>
tal<br>
e.<br>
e,<br>
ar<br>
us<br>
@<br>
iv<br>
iv<br>
ot<br>
ns<br>
re-<br>
dj<br>
and<br>
.I<br>
2014<br>
dr<br>
ig.<br>
dr<br>
R<br>
e<br>
A<br>
loat<br>
r<br>
at<br>
19/<br>
ift.P<br>
,f<br>
t.<br>
top<br>
e<br>
top<br>
ig.<br>
hes<br>
l<br>
ine.<br>
ic<br>
r<br>
ul<br>
l<br>
ent<br>
tes<br>
e<br>
v<br>
e<br>
e<br>
irc<br>
inc<br>
10/<br>
ic<br>
ic<br>
2014<br>
head.<br>
it<br>
v<br>
er<br>
v<br>
icv<br>
w<br>
00<br>
illing<br>
em<br>
,f<br>
er<br>
,s<br>
er<br>
.C<br>
er<br>
P<br>
23/<br>
angel<br>
ing<br>
c<br>
al<br>
O<br>
15:<br>
dr<br>
at<br>
,s<br>
,s<br>
S<br>
er<br>
195'<br>
746'<br>
915'<br>
B<br>
12/<br>
and<br>
ut<br>
ot<br>
@<br>
s<br>
lr<br>
rilling<br>
283'<br>
147'<br>
370'<br>
Lat<br>
ith<br>
00<br>
C<br>
11,<br>
380'<br>
ed<br>
D<br>
14,<br>
15,<br>
D<br>
w<br>
ght<br>
ng.<br>
tal<br>
to<br>
o<br>
o<br>
03:<br>
ei<br>
ig.<br>
-12,<br>
t<br>
t<br>
-17,<br>
-18,<br>
-19,<br>
T<br>
eas<br>
hi<br>
ns<br>
r<br>
e<br>
609'<br>
ty<br>
lips<br>
w<br>
.I<br>
el<br>
s<br>
el<br>
@<br>
er<br>
hol<br>
185'<br>
609'<br>
746'<br>
915'<br>
380'<br>
ivi<br>
r<br>
bus<br>
IH<br>
-13,<br>
147'<br>
ig<br>
8T<br>
ct<br>
ing<br>
.T<br>
Lev<br>
11,<br>
13,<br>
14,<br>
15,<br>
18,<br>
-20519'<br>
R<br>
19<br>
ount<br>
ear<br>
A<br>
new<br>
283'<br>
17,<br>
rA<br>
asc d.<br>
c<br>
lw<br>
H<br>
pe.<br>
rom<br>
rom<br>
rom<br>
rom<br>
rom<br>
370'<br>
H<br>
rom<br>
et<br>
for<br>
21-<br>
10'<br>
f<br>
12,<br>
f<br>
f<br>
f<br>
f<br>
out<br>
tal<br>
lB<br>
f<br>
24<br>
illpi<br>
19,<br>
Y<br>
.S<br>
her<br>
hc ns tal ,f<br>
S<br>
.I<br>
ns<br>
rilled<br>
P<br>
eat<br>
5300<br>
IH<br>
s<br>
tret<br>
S<br>
from<br>
O<br>
P<br>
.I<br>
.D<br>
.T<br>
needed<br>
needed<br>
needed<br>
needed<br>
needed<br>
needed<br>
W<br>
er<br>
S<br>
A<br>
O<br>
needed<br>
AR<br>
B<br>
H<br>
n<br>
m<br>
es<br>
ith<br>
as<br>
as<br>
as<br>
as<br>
as<br>
as<br>
as<br>
tB<br>
B<br>
161'<br>
di<br>
ng<br>
ng<br>
ng<br>
ng<br>
ng<br>
ng<br>
lw<br>
hal<br>
illing.<br>
ng<br>
M<br>
es<br>
dow<br>
C<br>
up<br>
lip<br>
11,<br>
needed<br>
lidi<br>
lidi<br>
lidi<br>
lidi<br>
lidi<br>
lidi<br>
e<br>
el<br>
dr<br>
k<br>
s<br>
w<br>
o<br>
lidi<br>
t<br>
or<br>
t.T<br>
ic<br>
@<br>
s<br>
s<br>
s<br>
s<br>
s<br>
s<br>
s<br>
as<br>
M<br>
ippl<br>
ap<br>
ed<br>
f<br>
lisk P<br>
ng<br>
c<br>
ig.<br>
hoe<br>
illing<br>
illing<br>
illing<br>
illing<br>
illing<br>
illing<br>
illing<br>
lidi<br>
U<br>
.N<br>
ept<br>
loor<br>
r<br>
hange<br>
c<br>
f<br>
hec<br>
e<br>
,s<br>
dr<br>
dr<br>
dr<br>
dr<br>
dr<br>
dr<br>
s<br>
ent<br>
c<br>
dr<br>
ic<br>
.C<br>
y<br>
y<br>
y<br>
y<br>
y<br>
y<br>
y<br>
tion.<br>
S<br>
lhead<br>
ac<br>
up<br>
v<br>
k<br>
053'<br>
ar<br>
ar<br>
ar<br>
ar<br>
ar<br>
ar<br>
em<br>
ar<br>
el<br>
ig<br>
ig<br>
pud<br>
er<br>
tac<br>
ot<br>
ot<br>
ot<br>
ot<br>
ot<br>
ot<br>
illing<br>
ondi<br>
C<br>
w<br>
R<br>
R<br>
s<br>
S<br>
s<br>
11,<br>
R<br>
R<br>
R<br>
R<br>
R<br>
rot<br>
R<br>
dr<br>
c<br>
M<br>
G<br>
-<br>
-<br>
GP<br>
330<br>
331<br>
303<br>
282<br>
261<br>
IN<br>
2<br>
L<br>
-<br>
-<br>
-<br>
0<br>
0<br>
0<br>
0<br>
SPM<br>
IL<br>
1<br>
-<br>
-<br>
94<br>
86<br>
86<br>
80<br>
74<br>
SPM<br>
DR<br>
-<br>
-<br>
PP<br>
2400<br>
3950<br>
3900<br>
4000<br>
3950<br>
Y<br>
M<br>
L<br>
-<br>
-<br>
RP<br>
(MM)<br>
264<br>
265<br>
242<br>
226<br>
209<br>
)<br>
B<br>
s<br>
AI </span><span class="ft0">O lb<br>
-<br>
-<br>
20<br>
50<br>
51<br>
54<br>
50<br>
W<br>
MM<br>
(K<br>
D<br>
M<br>
T)<br>
-<br>
-<br>
40<br>
40<br>
40<br>
40<br>
40<br>
RP<br>
(R<br>
)<br>
B<br>
s<br>
O<br>
lb<br>
-<br>
-<br>
RT<br>
20<br>
21<br>
25<br>
25<br>
25<br>
W<br>
(K<br>
t#<br>
-<br>
-<br>
5<br>
5<br>
5<br>
5<br>
-<br>
Bi<br>
r<br>
ge<br>
H<br>
a<br>
0<br>
0<br>
10<br>
414<br>
306<br>
465<br>
139<br>
24<br>
2,<br>
2,<br>
2,<br>
2,<br>
Foot<br>
h<br>
)<br>
pt<br>
s<br>
185'<br>
185'<br>
195'<br>
609'<br>
915'<br>
380'<br>
519'<br>
eD (0600 Hr<br>
11,<br>
11,<br>
11,<br>
13,<br>
15,<br>
18,<br>
20,<br>
e<br>
19<br>
23<br>
24<br>
25<br>
26<br>
27<br>
28<br>
atD 2014<br>
10/<br>
12/<br>
12/<br>
12/<br>
12/<br>
12/<br>
12/<br>
y<br>
Da<br>
14<br>
15<br>
16<br>
17<br>
18<br>
19<br>
20<br>
<hr>
<A name=23></a>/<br>
)<br>
in<br>
ss<br>
s<br>
3<br>
-<br>
-<br>
5<br>
0<br>
9<br>
0<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
a<br>
o<br>
-<br>
-<br>
-<br>
-<br>
8<br>
-/<br>
-/<br>
-6<br>
-7<br>
-3<br>
5<br>
-/<br>
-/<br>
-/<br>
-/<br>
-/<br>
-/<br>
-/<br>
-/<br>
G<br>
L<br>
-/<br>
-/<br>
(bbl<br>
-/183<br>
-/<br>
-/<br>
-/<br>
-/244<br>
ty<br>
rical<br>
ilib<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
461<br>
371<br>
371<br>
694<br>
694<br>
508<br>
508<br>
739<br>
704<br>
742<br>
742<br>
742<br>
742<br>
lect<br>
ta<br>
E<br>
S<br>
yit )<br>
320<br>
320<br>
320<br>
149<br>
149<br>
398<br>
834<br>
894<br>
320<br>
320<br>
320<br>
320<br>
320<br>
lin<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
aS (ppm<br>
264,<br>
264,<br>
264,<br>
180,<br>
180,<br>
162,<br>
177,<br>
247,<br>
364,<br>
364,<br>
364,<br>
364,<br>
364,<br>
)<br>
/<br>
3<br>
3<br>
%<br>
0<br>
4<br>
4<br>
3<br>
1<br>
8<br>
9<br>
4<br>
4<br>
4<br>
4<br>
3<br>
3<br>
4<br>
4<br>
4<br>
S<br>
(<br>
5.<br>
4.<br>
4.<br>
10.<br>
6.<br>
6.<br>
4.<br>
5.<br>
6.<br>
6.<br>
6.<br>
6.<br>
0.<br>
0.<br>
0.<br>
0.<br>
0.<br>
S<br>
-<br>
-<br>
-<br>
10.<br>
1/<br>
6/<br>
6/<br>
5/<br>
6/<br>
5/<br>
1/<br>
2/<br>
2/<br>
2/<br>
2/<br>
0/<br>
0/<br>
0/<br>
0/<br>
0/<br>
HG<br>
G<br>
5/<br>
5/<br>
8.<br>
8.<br>
6.<br>
9.<br>
L<br>
7.<br>
8.<br>
8.<br>
8.<br>
8.<br>
8.<br>
8.<br>
8.<br>
8.<br>
0.<br>
0.<br>
0.<br>
0.<br>
0.<br>
-<br>
L)<br>
-<br>
-<br>
-<br>
Cl<br>
g/<br>
32k<br>
35<br>
35<br>
20k<br>
20k<br>
20k<br>
21k<br>
28k<br>
34k<br>
33K<br>
33K<br>
33K<br>
33K<br>
139k<br>
139k<br>
131k<br>
131k<br>
131k<br>
(m<br>
)<br>
e<br>
8<br>
3<br>
3<br>
2<br>
2<br>
7<br>
7<br>
4<br>
4<br>
4<br>
4<br>
4<br>
im<br>
bbl<br>
-<br>
-<br>
-<br>
3<br>
-<br>
-<br>
-<br>
-<br>
-<br>
xcess<br>
1.<br>
2.<br>
2.<br>
2.<br>
2.<br>
2.<br>
2.<br>
3.<br>
3.<br>
3.<br>
3.<br>
3.<br>
L<br>
E<br>
(lb/<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
5<br>
5<br>
pH<br>
9.<br>
9.<br>
9<br>
9<br>
9<br>
k<br>
-<br>
-<br>
-<br>
4<br>
8<br>
8<br>
7<br>
7<br>
1<br>
1<br>
3<br>
6<br>
6<br>
6<br>
6<br>
6<br>
-<br>
-<br>
-<br>
-<br>
-<br>
Al<br>
1.<br>
1.<br>
1.<br>
1.<br>
1.<br>
2.<br>
2.<br>
2.<br>
2.<br>
2.<br>
2.<br>
2.<br>
2.<br>
RY </span><span class="ft0">r. ids )<br>
8<br>
8<br>
8<br>
7<br>
3<br>
9<br>
6<br>
6<br>
6<br>
6<br>
-<br>
-<br>
-<br>
5<br>
5<br>
2<br>
2<br>
2<br>
14<br>
13<br>
13<br>
Co<br>
ol<br>
(%<br>
18.<br>
18.<br>
14.<br>
14.<br>
11.<br>
14.<br>
14.<br>
14.<br>
14.<br>
14.<br>
8.<br>
8.<br>
8.<br>
8.<br>
8.<br>
A<br>
S<br>
)<br>
I/<br>
M </span><span class="ft0">ake P HP - - - 3 2 2 2 2 2 2 3 2 2 2 2 2 - - - - -<br>
C<br>
(A<br>
HT<br>
M<br>
0<br>
)<br>
U<br>
ol<br>
5<br>
5<br>
5<br>
5<br>
5<br>
5<br>
8<br>
8<br>
8<br>
/H2<br>
v<br>
-<br>
-<br>
-<br>
20<br>
22<br>
22<br>
15<br>
15<br>
17<br>
16<br>
169<br>
16<br>
14.<br>
14.<br>
14.<br>
14.<br>
S<br>
P<br>
by<br>
93.<br>
93.<br>
91.<br>
91.<br>
91.<br>
66/<br>
64/<br>
64/<br>
65/<br>
65/<br>
67/<br>
68/<br>
71/<br>
67/<br>
69/<br>
69/<br>
69/<br>
69/<br>
1/<br>
1/<br>
0/<br>
0/<br>
0/<br>
NA<br>
(%<br>
D<br>
0<br>
3<br>
6<br>
6<br>
8<br>
8<br>
2<br>
0<br>
4<br>
3<br>
4<br>
4<br>
4<br>
4<br>
2<br>
)<br>
U<br>
o<br>
/H<br>
ti<br>
-<br>
-<br>
-<br>
23.<br>
17.<br>
17.<br>
18.<br>
18.<br>
20.<br>
19.<br>
18.<br>
19.<br>
17.<br>
17.<br>
17.<br>
17.<br>
-<br>
-<br>
-<br>
-<br>
-<br>
a<br>
7/<br>
4/<br>
4/<br>
2/<br>
2/<br>
8/<br>
0/<br>
6/<br>
7/<br>
6/<br>
6/<br>
6/<br>
6/<br>
M<br>
AP<br>
(r<br>
N<br>
76.<br>
82.<br>
82.<br>
81.<br>
81.<br>
79.<br>
81.<br>
81.<br>
80.<br>
82.<br>
82.<br>
82.<br>
82.<br>
Y<br>
-<br>
-<br>
-<br>
21<br>
16<br>
16<br>
29<br>
29<br>
27<br>
24<br>
20<br>
26<br>
27<br>
27<br>
27<br>
27<br>
3<br>
3<br>
3<br>
3<br>
3<br>
L<br>
600/<br>
300<br>
5/<br>
5/<br>
5/<br>
5/<br>
5/<br>
36/<br>
27/<br>
27/<br>
46/<br>
46/<br>
46/<br>
40/<br>
33/<br>
43/<br>
44/<br>
44/<br>
44/<br>
44/<br>
)<br>
AI<br>
-<br>
-<br>
-<br>
-<br>
-<br>
s<br>
/<br>
2<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
s<br>
t<br>
el<br>
f<br>
-<br>
-<br>
-<br>
7/<br>
5/<br>
5/<br>
11/<br>
11/<br>
9/<br>
9/<br>
8/<br>
9/<br>
12/<br>
12/<br>
12/<br>
12/<br>
-<br>
-<br>
-<br>
-<br>
-<br>
D </span><span class="ft0">G (lb<br>
5/<br>
4/<br>
4/<br>
8/<br>
5/<br>
5/<br>
7/<br>
100<br>
7/<br>
7/<br>
8/<br>
8/<br>
8/<br>
8/<br>
/s t2)<br>
(lb<br>
f<br>
-<br>
-<br>
-<br>
6<br>
5<br>
5<br>
12<br>
12<br>
8<br>
8<br>
7<br>
9<br>
10<br>
10<br>
10<br>
10<br>
1<br>
1<br>
1<br>
1<br>
1<br>
PY 100<br>
)P<br>
-<br>
-<br>
-<br>
PV<br>
2<br>
2<br>
2<br>
2<br>
2<br>
(c<br>
15<br>
11<br>
11<br>
17<br>
17<br>
19<br>
16<br>
13<br>
17<br>
17<br>
17<br>
17<br>
17<br>
S<br>
t)<br>
-<br>
-<br>
-<br>
VI<br>
57<br>
57<br>
50<br>
50<br>
55<br>
50<br>
47<br>
48<br>
48<br>
48<br>
48<br>
48<br>
27<br>
27<br>
27<br>
27<br>
27<br>
(sec/<br>
q<br>
105<br>
3<br>
3<br>
ud<br>
T<br>
-<br>
-<br>
-<br>
15<br>
45<br>
45<br>
75<br>
75<br>
25<br>
75<br>
25<br>
25<br>
25<br>
25<br>
5<br>
5<br>
5<br>
5<br>
5<br>
M<br>
W<br>
9.<br>
9.<br>
9.<br>
9.<br>
9.<br>
(ppg)<br>
10.<br>
10.<br>
10.<br>
10.<br>
10.<br>
10.<br>
10.<br>
9.<br>
10.<br>
10.<br>
10.<br>
10.<br>
10.<br>
er<br>
er<br>
er<br>
g<br>
at<br>
at<br>
at<br>
t<br>
t<br>
t<br>
t<br>
t<br>
t<br>
t<br>
t<br>
t<br>
t<br>
t<br>
t<br>
t<br>
er<br>
er<br>
er<br>
er<br>
er<br>
in<br>
d<br>
at<br>
at<br>
at<br>
at<br>
at<br>
ui<br>
w<br>
w<br>
w<br>
er<br>
er<br>
er<br>
er<br>
er<br>
er<br>
er<br>
er<br>
er<br>
er<br>
er<br>
er<br>
er<br>
rill<br>
tw<br>
tw<br>
tw<br>
tw<br>
tw<br>
Fl<br>
h<br>
h<br>
h<br>
inv<br>
inv<br>
inv<br>
inv<br>
inv<br>
inv<br>
inv<br>
inv<br>
inv<br>
inv<br>
inv<br>
inv<br>
inv<br>
D<br>
al<br>
al<br>
al<br>
al<br>
al<br>
s<br>
s<br>
fres<br>
fres<br>
fres<br>
s<br>
s<br>
s<br>
h<br>
ud<br>
pt<br>
-<br>
175'<br>
175'<br>
175'<br>
741'<br>
180'<br>
180'<br>
456'<br>
707'<br>
064'<br>
246'<br>
671'<br>
185'<br>
185'<br>
185'<br>
195'<br>
427'<br>
915'<br>
175'<br>
519'<br>
M<br>
e<br>
800'<br>
D<br>
2,<br>
2,<br>
2,<br>
4,<br>
6,<br>
6,<br>
6,<br>
7,<br>
9,<br>
10,<br>
10,<br>
11,<br>
11,<br>
11,<br>
11,<br>
11,<br>
15,<br>
16,<br>
20,<br>
e<br>
05<br>
06<br>
07<br>
08<br>
09<br>
10<br>
11<br>
12<br>
13<br>
14<br>
15<br>
16<br>
17<br>
18<br>
19<br>
23<br>
24<br>
25<br>
26<br>
27<br>
28<br>
atD 2014<br>
10/<br>
10/<br>
10/<br>
10/<br>
10/<br>
10/<br>
10/<br>
10/<br>
10/<br>
10/<br>
10/<br>
10/<br>
10/<br>
10/<br>
10/<br>
12/<br>
12/<br>
12/<br>
12/<br>
12/<br>
12/<br>
y<br>
0<br>
1<br>
2<br>
3<br>
4<br>
5<br>
6<br>
7<br>
8<br>
9<br>
Da<br>
10<br>
11<br>
12<br>
13<br>
14<br>
15<br>
16<br>
17<br>
18<br>
19<br>
20<br>
<hr>
<A name=24></a>laGv/ - .13 .24 .52 .80<br>
e<br>
0<br>
0<br>
0<br>
0<br>
R<br>
s<br>
5<br>
-<br>
2<br>
5<br>
4<br>
3<br>
6<br>
3.<br>
9<br>
Hour<br>
2<br>
°<br>
°<br>
°<br>
°<br>
nd<br>
-<br>
ta<br>
.12<br>
.50<br>
.38<br>
.50<br>
a<br>
Be<br>
2<br>
1<br>
2<br>
1<br>
Dr<br>
l<br>
.0<br>
0<br>
7<br>
0<br>
8<br>
to<br>
L<br>
o<br>
ode<br>
-<br>
5.<br>
5.<br>
5.<br>
M<br>
M<br>
/5<br>
/8<br>
/8<br>
M<br>
6<br>
7<br>
7<br>
/76<br>
e<br>
V<br>
n<br>
ak<br>
-<br>
OV<br>
OV<br>
M<br>
NO<br>
N<br>
N<br>
Rya<br>
#<br>
or<br>
-<br>
2<br>
3<br>
4<br>
5<br>
otM<br>
s<br>
RD<br>
8<br>
2<br>
5<br>
5<br>
4<br>
1<br>
3<br>
6<br>
3.<br>
9<br>
Hour<br>
2<br>
CO<br>
s<br>
6<br>
8<br>
2<br>
8<br>
;2 6<br>
et<br>
1<br>
1<br>
2<br>
1<br>
x<br>
x<br>
x<br>
x<br>
2<br>
1<br>
J<br>
x<br>
9<br>
6<br>
6<br>
5<br>
x2 3<br>
RE<br>
0<br>
7<br>
9<br>
5<br>
l#<br>
5<br>
63<br>
09<br>
73<br>
3<br>
60<br>
ria<br>
3<br>
8<br>
2<br>
21<br>
1<br>
Y<br>
e<br>
J<br>
K<br>
S<br>
16<br>
19<br>
20<br>
E<br>
A<br>
A<br>
J<br>
J<br>
l<br>
6<br>
M<br>
BL<br>
27<br>
6<br>
16<br>
3<br>
ode<br>
4<br>
61<br>
I5D<br>
61<br>
M<br>
M<br>
BBK<br>
20<br>
S<br>
Z<br>
ta<br>
A<br>
D<br>
M<br>
E </span><span class="ft3">aD </span><span class="ft0">e V V V h h<br>
it<br>
it<br>
S </span><span class="ft3">it<br>
ak<br>
B<br>
M<br>
NO<br>
NO<br>
NO<br>
Sm<br>
Sm<br>
pe<br>
AS<br>
DC<br>
DC<br>
DC<br>
DC<br>
DC<br>
Ty<br>
P<br>
P<br>
P<br>
P<br>
P<br>
E<br>
.)in<br>
/2<br>
/4<br>
4<br>
4<br>
L<br>
(<br>
1<br>
1<br>
7<br>
2<br>
3/<br>
3/<br>
ize<br>
1<br>
1<br>
8<br>
8<br>
6<br>
S<br>
HO<br>
t#<br>
1<br>
2<br>
3<br>
4<br>
5<br>
Bi<br>
M<br>
.<br>
e<br>
ev<br>
c<br>
al<br>
al<br>
e<br>
al<br>
O<br>
fa<br>
ic<br>
ic<br>
rt<br>
rt<br>
rv<br>
er<br>
t.D<br>
ur<br>
at<br>
T<br>
er<br>
S<br>
Ve<br>
Ve<br>
Cu<br>
L<br>
V<br>
T<br>
.<br>
s<br>
0<br>
0<br>
0<br>
0<br>
0<br>
um<br>
0<br>
0<br>
.0<br>
.5<br>
.5<br>
c<br>
4.<br>
0.<br>
BO<br>
2<br>
5<br>
15<br>
38<br>
32<br>
Hour<br>
1<br>
1<br>
2<br>
Ac<br>
s<br>
8<br>
2<br>
5<br>
5<br>
4<br>
1<br>
3<br>
6<br>
3.2<br>
9<br>
Hour<br>
'<br>
'<br>
'<br>
'<br>
ge<br>
5<br>
5<br>
0<br>
'<br>
4<br>
a<br>
,17<br>
,00<br>
,13<br>
75<br>
,33<br>
2<br>
4<br>
4<br>
8<br>
9<br>
Foot<br>
ut<br>
'<br>
'<br>
5<br>
0<br>
0'<br>
5'<br>
9'<br>
O<br>
1<br>
8<br>
1<br>
h<br>
3<br>
1<br>
5<br>
,17<br>
,18<br>
pt<br>
2<br>
6<br>
0,<br>
1,<br>
0,<br>
1<br>
1<br>
2<br>
De<br>
n<br>
'<br>
'<br>
I<br>
0'<br>
5'<br>
h<br>
'0<br>
75<br>
80<br>
31<br>
18<br>
pt<br>
,1<br>
,1<br>
2<br>
6<br>
0,<br>
1,<br>
1<br>
1<br>
De<br>
1<br>
2<br>
3<br>
4<br>
5<br>
BHA<br>
Run<br>
<hr>
<A name=25></a>PLAN VIEW<br>
Oasis Petroleum North America, LLC<br>
Chalmers 5300 21-19 8T<br>
7500<br>
7000<br>
Note: 1,280 acre standup spacing unit<br>
with 200' N/S & 500' E/W setbacks<br>
6500<br>
6000<br>
5500<br>
5000<br>
Bottom Hole Location:<br>
4500<br>
173.80' N & 9,924.83' E<br>
4000<br>
of surface location or approx.<br>
Surface: 2,226' FNL & 327' FWL<br>
2,052.20' FNL & 237.32' FEL<br>
Lot 2. Sec. 19, T153N, R100W<br>
3500<br>
SE NE Sec. 20, T153N, R100W<br>
McKenzie County, ND<br>
3000<br>
2500<br>
N-S<br>
2000<br>
1500<br>
1000<br>
500<br>
0<br>
O<br>
-500<br>
19<br>
20<br>
-1000<br>
-1500<br>
-2000<br>
-2500<br>
-3000<br>
-3500<br>
0<br>
-500<br>
500<br>
1000<br>
1500<br>
2000<br>
2500<br>
3000<br>
3500<br>
4000<br>
4500<br>
5000<br>
5500<br>
6000<br>
6500<br>
7000<br>
7500<br>
8000<br>
8500<br>
9000<br>
9500<br>
10000<br>
10500<br>
W-E<br>
<hr>
<A name=26></a>2<br>
x<br>
ay<br>
R<br>
a<br>
m<br>
am<br>
G<br>
100,<br>
x<br>
P<br>
O<br>
R<br>
as,<br>
G<br>
al<br>
t<br>
o<br>
T<br>
1500<br>
1400<br>
1300<br>
1200<br>
1100<br>
1000<br>
900<br>
800<br>
700<br>
600<br>
500<br>
400<br>
300<br>
200<br>
100<br>
0<br>
E<br>
20400<br>
19900<br>
bottomrn<br>
19400<br>
rongho<br>
op/P<br>
18900<br>
Tskor<br>
5<br>
F<br>
18400<br>
t9.<br>
reeh<br>
W<br>
T<br>
TG<br>
17900<br>
C<br>
17400<br>
L<br>
5<br>
L<br>
t9.<br>
,<br>
W<br>
16900<br>
ca<br>
D<br>
eri<br>
8T<br>
100W<br>
,N<br>
16400<br>
m<br>
19<br>
,R<br>
A<br>
tyn<br>
th<br>
h<br>
21-<br>
u<br>
5<br>
15900<br>
ep<br>
rt<br>
153N<br>
o<br>
t9.<br>
D<br>
o<br>
C<br>
op<br>
N<br>
5300<br>
T<br>
W<br>
T<br>
e<br>
red<br>
15400<br>
n<br>
m<br>
zi<br>
hor<br>
tone<br>
ers<br>
easu<br>
s<br>
2<br>
en<br>
x<br>
m<br>
M<br>
leu<br>
ec.19,<br>
14900<br>
rong<br>
lay<br>
R<br>
P<br>
C<br>
G<br>
ro<br>
al<br>
S<br>
h<br>
et<br>
C<br>
2<br>
McK<br>
ot<br>
14400<br>
L<br>
5<br>
sisPa<br>
t9.<br>
W<br>
13900<br>
O<br>
13400<br>
LE<br>
5<br>
12900<br>
t9.<br>
FI<br>
W<br>
O<br>
12400<br>
R<br>
0<br>
e<br>
0<br>
P<br>
5<br>
11900<br>
top<br>
1<br>
lbor<br>
xP<br>
t9.<br>
el<br>
rgeta O<br>
232u<br>
W<br>
W<br>
T<br>
R<br>
2,<br>
11400<br>
GT<br>
W<br>
10900<br>
10780<br>
10800<br>
10820<br>
10840<br>
10860<br>
10880<br>
10900<br>
10920<br>
)<br>
VD<br>
(T<br>
th<br>
p<br>
e<br>
D<br>
<hr>
<A name=27></a>fo<br>
tion<br>
e<br>
ker<br>
p<br>
mma<br>
mma<br>
mma<br>
mma<br>
mma<br>
mma<br>
mma<br>
mma<br>
mma<br>
mma<br>
mma<br>
mma<br>
ec<br>
y<br>
ar<br>
a<br>
a<br>
a<br>
a<br>
a<br>
a<br>
a<br>
a<br>
a<br>
a<br>
a<br>
a<br>
T<br>
M<br>
G<br>
G<br>
G<br>
G<br>
G<br>
G<br>
G<br>
G<br>
G<br>
G<br>
G<br>
G<br>
rojP<br>
S<br>
g<br>
n<br>
in<br>
w<br>
E<br>
p<br>
o<br>
wn<br>
wn<br>
wn<br>
wn<br>
wn<br>
wn<br>
wn<br>
wn<br>
wn<br>
wn<br>
o<br>
o<br>
o<br>
o<br>
Up<br>
Up<br>
o<br>
o<br>
o<br>
o<br>
o<br>
o<br>
T<br>
ip<br>
/d<br>
D<br>
D<br>
D<br>
D<br>
D<br>
D<br>
D<br>
D<br>
D<br>
D<br>
D<br>
pu<br>
A </span><span class="ft4">8T<br>
IM </span><span class="ft4">19<br>
T </span><span class="ft4">21- </span><span class="ft0">ip<br>
46<br>
50<br>
60<br>
60<br>
03<br>
03<br>
36<br>
23<br>
14<br>
19<br>
31<br>
28<br>
D<br>
-0.<br>
-0.<br>
-0.<br>
-0.<br>
0.<br>
0.<br>
-0.<br>
-0.<br>
-0.<br>
-0.<br>
-0.<br>
-0.<br>
SE </span><span class="ft4">5300s</span><span class="ft3">P</span><span class="ft4">er </span><span class="ft0">iff. 00 00 00 00 00 00 00 00 00 00 00 00<br>
m<br>
d<br>
DI<br>
D<br>
hal<br>
M<br>
508.<br>
847.<br>
548.<br>
487.<br>
1001.<br>
265.<br>
1190.<br>
1466.<br>
863.<br>
1329.<br>
955.<br>
9459.<br>
& </span><span class="ft4">C-<br>
S<br>
iff.<br>
LLC<br>
d<br>
08<br>
39<br>
74<br>
09<br>
52<br>
14<br>
47<br>
89<br>
11<br>
49<br>
17<br>
77<br>
R<br>
D<br>
4.<br>
7.<br>
5.<br>
5.<br>
7.<br>
5.<br>
2.<br>
4.<br>
5.<br>
ica,<br>
V<br>
-0.<br>
-0.<br>
46.<br>
T<br>
KE </span><span class="ft4">erm<br>
A<br>
50<br>
58<br>
97<br>
71<br>
80<br>
28<br>
14<br>
61<br>
50<br>
61<br>
10<br>
27<br>
50<br>
27<br>
AR </span><span class="ft4">th </span><span class="ft0">VD<br>
or<br>
T<br>
829.<br>
833.<br>
840.<br>
846.<br>
851.<br>
851.<br>
851.<br>
858.<br>
864.<br>
866.<br>
871.<br>
876.<br>
829.<br>
876.<br>
M </span><span class="ft4">N<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
N </span><span class="ft4">eum<br>
IO </span><span class="ft4">rol<br>
057'<br>
565'<br>
412'<br>
960'<br>
447'<br>
448'<br>
713'<br>
903'<br>
369'<br>
232'<br>
561'<br>
516'<br>
057'<br>
516'<br>
et<br>
MD<br>
T<br>
11,<br>
11,<br>
12,<br>
12,<br>
13,<br>
14,<br>
14,<br>
15,<br>
17,<br>
18,<br>
19,<br>
20,<br>
11,<br>
20,<br>
A </span><span class="ft4">Ps<br>
t<br>
t<br>
asi<br>
ac<br>
ac<br>
M </span><span class="ft4">O<br>
ont<br>
t<br>
ont<br>
R<br>
ts<br>
a<br>
a<br>
a<br>
a<br>
a<br>
a<br>
a<br>
ac<br>
in<br>
m<br>
m<br>
m<br>
m<br>
m<br>
m<br>
m<br>
C<br>
C<br>
O<br>
o<br>
ry<br>
a<br>
get<br>
ont<br>
get<br>
P<br>
m<br>
ip<br>
F<br>
e<br>
gam<br>
gam<br>
gam<br>
gam<br>
gam<br>
gam<br>
gam<br>
ar<br>
D<br>
C<br>
ar<br>
g<br>
ker<br>
ent<br>
tone<br>
tone<br>
T<br>
T<br>
n<br>
gh<br>
gh<br>
gh<br>
gh<br>
s<br>
gh<br>
gh<br>
s<br>
gh<br>
ss<br>
get<br>
a<br>
ar<br>
get<br>
gam<br>
h<br>
M<br>
hi<br>
hi<br>
hi<br>
hi<br>
lay<br>
hi<br>
hi<br>
lay<br>
hi<br>
ar<br>
ar<br>
inal<br>
ro<br>
inal<br>
C<br>
C<br>
ool<br>
T<br>
C<br>
T<br>
er<br>
C<br>
F<br>
G<br>
F<br>
ip<br>
pper<br>
pper<br>
pper<br>
pper<br>
pper<br>
pper<br>
ted<br>
tial<br>
ted<br>
D<br>
U<br>
U<br>
U<br>
Low<br>
U<br>
U<br>
U<br>
ec<br>
Ini<br>
ec<br>
roj<br>
roj<br>
P<br>
P<br>
<hr>
<A name=28></a>amma<br>
G<br>
240<br>
220<br>
200<br>
180<br>
160<br>
140<br>
120<br>
100<br>
80<br>
60<br>
40<br>
20<br>
0<br>
20450<br>
E<br>
31º<br>
19950<br>
mmaa<br>
-0.<br>
G<br>
19450<br>
18950<br>
tones<br>
lay<br>
19º<br>
18450<br>
C<br>
-0.<br>
17950<br>
14º<br>
top<br>
-0.<br>
17450<br>
C<br>
rget<br>
°<br>
a<br>
L<br>
T<br>
L,<br>
28<br>
16950<br>
ca<br>
-0.=<br>
D<br>
23º<br>
eri<br>
8T<br>
100W<br>
ip<br>
-0.<br>
16450<br>
m<br>
19<br>
,R<br>
,N<br>
A<br>
td<br>
ty<br>
th<br>
n<br>
bottom<br>
h<br>
21-<br>
nu<br>
re<br>
15950<br>
ep<br>
rn<br>
o<br>
a<br>
D<br>
rt<br>
153N<br>
o<br>
p<br>
T<br>
C<br>
p<br>
red<br>
5300<br>
rongho<br>
N<br>
e<br>
a<br>
15450<br>
m<br>
zi<br>
s<br>
36º<br>
op/P<br>
s<br>
easu<br>
ers<br>
T<br>
en<br>
-0.<br>
M<br>
ro<br>
s<br>
leu<br>
m<br>
ec.19,<br>
G<br>
14950<br>
kor<br>
ro<br>
al<br>
S<br>
F<br>
h<br>
et<br>
2<br>
McK<br>
ree<br>
C<br>
ot<br>
14450<br>
hT<br>
L<br>
sisPa<br>
03º0.<br>
13950<br>
O<br>
+<br>
op<br>
E<br>
13450<br>
Tn<br>
IL<br>
6º<br>
hor<br>
F<br>
-0.<br>
12950<br>
rongP<br>
RO<br>
6º<br>
-0.<br>
12450<br>
P<br>
ing<br>
e<br>
as<br>
5º<br>
11950<br>
lbor<br>
cn<br>
el<br>
DIP<br>
-0.<br>
i<br>
W<br>
tool<br>
11450<br>
a<br>
46º<br>
m<br>
-0.<br>
amG<br>
10950<br>
W<br>
10780<br>
10790<br>
10800<br>
10810<br>
10820<br>
10830<br>
10840<br>
10850<br>
10860<br>
10870<br>
10880<br>
10890<br>
10900<br>
10910<br>
10920<br>
10930<br>
10940<br>
10950<br>
)<br>
VD<br>
(T<br>
th<br>
p<br>
e<br>
D<br>
<hr>
<A name=29></a><<br>
SUNBURST CONSULTING, INC.<br>
><br>
Operator:<br>
Oasis Petroleum North America, LLC<br>
Kick-off:<br>
10/15/2014<br>
Well<br>
:<br>
Chalmers 5300 21-19 8T<br>
Finish:<br>
12/28/2014<br>
County:<br>
McKenzie<br>
State:<br>
ND<br>
Directional Supervision:<br>
QQ:<br>
Lot 2<br>
Section:<br>
19<br>
RPM<br>
Township:<br>
153<br>
N/S:<br>
N<br>
Range:<br>
100<br>
E/W:<br>
W<br>
Date:<br>
1/9/2015<br>
Footages:<br>
2226<br>
FN/SL:<br>
N<br>
Time:<br>
11:28<br>
327<br>
FE/WL:<br>
W<br>
F9 to re-calculate<br>
Minimum Curvature Method (SPE-3362)<br>
Proposed dir:<br>
88.96<br>
[North and East are positive and South and West are negative, relative to surface location]<br>
TRUE<br>
DLS/<br>
No.<br>
MD<br>
INC<br>
AZM<br>
TVD<br>
N-S<br>
E-W<br>
SECT<br>
100<br>
Tie<br>
147<br>
0.30<br>
295.90<br>
147.00<br>
0.17<br>
-0.35<br>
-0.34<br>
1<br>
240.00<br>
0.30<br>
298.40<br>
240.00<br>
0.39<br>
-0.78<br>
-0.78<br>
0.01<br>
2<br>
333.00<br>
0.40<br>
273.50<br>
333.00<br>
0.53<br>
-1.32<br>
-1.31<br>
0.19<br>
3<br>
427.00<br>
0.10<br>
334.70<br>
427.00<br>
0.62<br>
-1.68<br>
-1.67<br>
0.39<br>
4<br>
520.00<br>
0.30<br>
337.70<br>
520.00<br>
0.92<br>
-1.81<br>
-1.79<br>
0.22<br>
5<br>
613.00<br>
0.30<br>
347.50<br>
612.99<br>
1.38<br>
-1.96<br>
-1.93<br>
0.06<br>
6<br>
702.00<br>
0.60<br>
288.80<br>
701.99<br>
1.76<br>
-2.45<br>
-2.42<br>
0.58<br>
7<br>
790.00<br>
0.50<br>
326.20<br>
789.99<br>
2.23<br>
-3.10<br>
-3.06<br>
0.41<br>
8<br>
880.00<br>
0.50<br>
276.40<br>
879.98<br>
2.60<br>
-3.71<br>
-3.66<br>
0.47<br>
9<br>
970.00<br>
0.20<br>
304.50<br>
969.98<br>
2.73<br>
-4.23<br>
-4.18<br>
0.37<br>
10<br>
1063.00<br>
0.70<br>
292.90<br>
1062.98<br>
3.04<br>
-4.88<br>
-4.83<br>
0.54<br>
11<br>
1156.00<br>
0.70<br>
290.30<br>
1155.97<br>
3.46<br>
-5.94<br>
-5.88<br>
0.03<br>
12<br>
1250.00<br>
0.50<br>
326.00<br>
1249.97<br>
4.00<br>
-6.71<br>
-6.63<br>
0.44<br>
13<br>
1343.00<br>
0.80<br>
327.20<br>
1342.96<br>
4.88<br>
-7.29<br>
-7.20<br>
0.32<br>
14<br>
1436.00<br>
1.10<br>
347.00<br>
1435.95<br>
6.30<br>
-7.84<br>
-7.72<br>
0.47<br>
15<br>
1530.00<br>
0.70<br>
171.00<br>
1529.95<br>
6.61<br>
-7.95<br>
-7.83<br>
1.91<br>
16<br>
1623.00<br>
1.70<br>
181.60<br>
1622.92<br>
4.67<br>
-7.90<br>
-7.81<br>
1.10<br>
17<br>
1717.00<br>
1.60<br>
197.20<br>
1716.89<br>
2.02<br>
-8.33<br>
-8.29<br>
0.49<br>
18<br>
1810.00<br>
1.60<br>
154.70<br>
1809.85<br>
-0.39<br>
-8.16<br>
-8.16<br>
1.25<br>
19<br>
1903.00<br>
1.80<br>
109.10<br>
1902.82<br>
-2.04<br>
-6.22<br>
-6.26<br>
1.43<br>
20<br>
1997.00<br>
1.00<br>
91.90<br>
1996.79<br>
-2.55<br>
-4.01<br>
-4.05<br>
0.95<br>
21<br>
2198.00<br>
0.90<br>
23.60<br>
2197.76<br>
-1.16<br>
-1.62<br>
-1.64<br>
0.53<br>
22<br>
2261.00<br>
1.20<br>
29.80<br>
2260.75<br>
-0.14<br>
-1.10<br>
-1.10<br>
0.51<br>
23<br>
2354.00<br>
0.40<br>
209.50<br>
2353.75<br>
0.42<br>
-0.77<br>
-0.76<br>
1.72<br>
24<br>
2446.00<br>
0.60<br>
204.50<br>
2445.75<br>
-0.29<br>
-1.13<br>
-1.13<br>
0.22<br>
25<br>
2540.00<br>
0.50<br>
187.80<br>
2539.74<br>
-1.15<br>
-1.39<br>
-1.41<br>
0.20<br>
26<br>
2633.00<br>
0.70<br>
205.40<br>
2632.74<br>
-2.06<br>
-1.69<br>
-1.73<br>
0.29<br>
27<br>
2726.00<br>
0.60<br>
192.00<br>
2725.73<br>
-3.05<br>
-2.03<br>
-2.09<br>
0.19<br>
28<br>
2820.00<br>
0.90<br>
113.60<br>
2819.72<br>
-3.83<br>
-1.46<br>
-1.53<br>
1.04<br>
29<br>
2913.00<br>
1.10<br>
110.40<br>
2912.71<br>
-4.43<br>
0.05<br>
-0.03<br>
0.22<br>
30<br>
3007.00<br>
1.00<br>
106.60<br>
3006.69<br>
-4.98<br>
1.68<br>
1.59<br>
0.13<br>
31<br>
3100.00<br>
0.70<br>
100.30<br>
3099.68<br>
-5.31<br>
3.02<br>
2.92<br>
0.34<br>
32<br>
3193.00<br>
0.90<br>
104.20<br>
3192.67<br>
-5.60<br>
4.28<br>
4.18<br>
0.22<br>
33<br>
3287.00<br>
0.90<br>
104.20<br>
3286.66<br>
-5.96<br>
5.71<br>
5.60<br>
0.00<br>
34<br>
3380.00<br>
1.00<br>
99.00<br>
3379.65<br>
-6.26<br>
7.22<br>
7.11<br>
0.14<br>
<hr>
<A name=30></a><<br>
SUNBURST CONSULTING, INC.<br>
><br>
Operator:<br>
Oasis Petroleum North America, LLC<br>
Kick-off:<br>
10/15/2014<br>
Well<br>
:<br>
Chalmers 5300 21-19 8T<br>
Finish:<br>
12/28/2014<br>
County:<br>
McKenzie<br>
State:<br>
ND<br>
Directional Supervision:<br>
QQ:<br>
Lot 2<br>
Section:<br>
19<br>
RPM<br>
Township:<br>
153<br>
N/S:<br>
N<br>
Range:<br>
100<br>
E/W:<br>
W<br>
Date:<br>
1/9/2015<br>
Footages:<br>
2226<br>
FN/SL:<br>
N<br>
Time:<br>
11:28<br>
327<br>
FE/WL:<br>
W<br>
F9 to re-calculate<br>
Minimum Curvature Method (SPE-3362)<br>
Proposed dir:<br>
88.96<br>
[North and East are positive and South and West are negative, relative to surface location]<br>
TRUE<br>
DLS/<br>
No.<br>
MD<br>
INC<br>
AZM<br>
TVD<br>
N-S<br>
E-W<br>
SECT<br>
100<br>
35<br>
3474.00<br>
1.10<br>
110.20<br>
3473.63<br>
-6.70<br>
8.88<br>
8.76<br>
0.24<br>
36<br>
3567.00<br>
0.80<br>
108.50<br>
3566.62<br>
-7.22<br>
10.33<br>
10.20<br>
0.32<br>
37<br>
3660.00<br>
0.90<br>
111.10<br>
3659.61<br>
-7.69<br>
11.63<br>
11.49<br>
0.12<br>
38<br>
3754.00<br>
0.80<br>
111.10<br>
3753.60<br>
-8.19<br>
12.93<br>
12.78<br>
0.11<br>
39<br>
3847.00<br>
1.30<br>
67.60<br>
3846.59<br>
-8.02<br>
14.51<br>
14.37<br>
0.97<br>
40<br>
3940.00<br>
1.20<br>
58.90<br>
3939.56<br>
-7.12<br>
16.32<br>
16.19<br>
0.23<br>
41<br>
4034.00<br>
1.30<br>
55.20<br>
4033.54<br>
-6.00<br>
18.04<br>
17.93<br>
0.14<br>
42<br>
4127.00<br>
1.50<br>
61.40<br>
4126.51<br>
-4.81<br>
19.98<br>
19.89<br>
0.27<br>
43<br>
4221.00<br>
1.10<br>
59.80<br>
4220.49<br>
-3.77<br>
21.84<br>
21.76<br>
0.43<br>
44<br>
4314.00<br>
1.20<br>
55.00<br>
4313.47<br>
-2.76<br>
23.40<br>
23.35<br>
0.15<br>
45<br>
4407.00<br>
1.00<br>
61.30<br>
4406.45<br>
-1.82<br>
24.91<br>
24.88<br>
0.25<br>
46<br>
4500.00<br>
0.90<br>
62.30<br>
4499.44<br>
-1.09<br>
26.27<br>
26.25<br>
0.11<br>
47<br>
4593.00<br>
0.90<br>
52.60<br>
4592.43<br>
-0.30<br>
27.50<br>
27.49<br>
0.16<br>
48<br>
4687.00<br>
0.40<br>
33.70<br>
4686.42<br>
0.42<br>
28.27<br>
28.27<br>
0.57<br>
49<br>
4780.00<br>
0.30<br>
340.90<br>
4779.42<br>
0.92<br>
28.37<br>
28.38<br>
0.35<br>
50<br>
4873.00<br>
0.40<br>
17.80<br>
4872.42<br>
1.46<br>
28.39<br>
28.41<br>
0.26<br>
51<br>
4967.00<br>
0.10<br>
35.10<br>
4966.42<br>
1.84<br>
28.54<br>
28.56<br>
0.33<br>
52<br>
5060.00<br>
0.20<br>
335.60<br>
5059.42<br>
2.05<br>
28.52<br>
28.55<br>
0.19<br>
53<br>
5153.00<br>
0.10<br>
358.20<br>
5152.42<br>
2.28<br>
28.45<br>
28.48<br>
0.12<br>
54<br>
5247.00<br>
0.20<br>
317.70<br>
5246.42<br>
2.48<br>
28.33<br>
28.37<br>
0.15<br>
55<br>
5340.00<br>
0.30<br>
216.70<br>
5339.42<br>
2.41<br>
28.08<br>
28.12<br>
0.42<br>
56<br>
5433.00<br>
0.20<br>
241.80<br>
5432.42<br>
2.14<br>
27.79<br>
27.82<br>
0.16<br>
57<br>
5527.00<br>
0.20<br>
160.00<br>
5526.42<br>
1.91<br>
27.70<br>
27.73<br>
0.28<br>
58<br>
5620.00<br>
0.20<br>
302.40<br>
5619.42<br>
1.84<br>
27.62<br>
27.65<br>
0.41<br>
59<br>
5714.00<br>
0.40<br>
276.30<br>
5713.42<br>
1.96<br>
27.16<br>
27.19<br>
0.25<br>
60<br>
5807.00<br>
0.40<br>
266.30<br>
5806.41<br>
1.98<br>
26.51<br>
26.54<br>
0.07<br>
61<br>
5900.00<br>
0.30<br>
253.30<br>
5899.41<br>
1.89<br>
25.95<br>
25.98<br>
0.14<br>
62<br>
5994.00<br>
0.30<br>
241.60<br>
5993.41<br>
1.70<br>
25.50<br>
25.53<br>
0.07<br>
63<br>
6087.00<br>
0.60<br>
212.10<br>
6086.41<br>
1.17<br>
25.03<br>
25.04<br>
0.40<br>
64<br>
6126.00<br>
0.60<br>
226.10<br>
6125.40<br>
0.86<br>
24.77<br>
24.78<br>
0.37<br>
65<br>
6173.00<br>
0.60<br>
213.70<br>
6172.40<br>
0.48<br>
24.46<br>
24.46<br>
0.28<br>
66<br>
6267.00<br>
0.60<br>
116.70<br>
6266.40<br>
-0.15<br>
24.62<br>
24.62<br>
0.96<br>
67<br>
6360.00<br>
1.00<br>
101.70<br>
6359.39<br>
-0.53<br>
25.85<br>
25.84<br>
0.48<br>
68<br>
6453.00<br>
0.50<br>
127.90<br>
6452.38<br>
-0.95<br>
26.97<br>
26.95<br>
0.64<br>
69<br>
6547.00<br>
0.30<br>
153.80<br>
6546.38<br>
-1.42<br>
27.40<br>
27.37<br>
0.28<br>
<hr>
<A name=31></a><<br>
SUNBURST CONSULTING, INC.<br>
><br>
Operator:<br>
Oasis Petroleum North America, LLC<br>
Kick-off:<br>
10/15/2014<br>
Well<br>
:<br>
Chalmers 5300 21-19 8T<br>
Finish:<br>
12/28/2014<br>
County:<br>
McKenzie<br>
State:<br>
ND<br>
Directional Supervision:<br>
QQ:<br>
Lot 2<br>
Section:<br>
19<br>
RPM<br>
Township:<br>
153<br>
N/S:<br>
N<br>
Range:<br>
100<br>
E/W:<br>
W<br>
Date:<br>
1/9/2015<br>
Footages:<br>
2226<br>
FN/SL:<br>
N<br>
Time:<br>
11:28<br>
327<br>
FE/WL:<br>
W<br>
F9 to re-calculate<br>
Minimum Curvature Method (SPE-3362)<br>
Proposed dir:<br>
88.96<br>
[North and East are positive and South and West are negative, relative to surface location]<br>
TRUE<br>
DLS/<br>
No.<br>
MD<br>
INC<br>
AZM<br>
TVD<br>
N-S<br>
E-W<br>
SECT<br>
100<br>
70<br>
6640.00<br>
0.90<br>
175.10<br>
6639.37<br>
-2.37<br>
27.57<br>
27.52<br>
0.68<br>
71<br>
6734.00<br>
1.00<br>
187.10<br>
6733.36<br>
-3.92<br>
27.53<br>
27.46<br>
0.24<br>
72<br>
6827.00<br>
0.20<br>
53.30<br>
6826.36<br>
-4.62<br>
27.56<br>
27.47<br>
1.23<br>
73<br>
6920.00<br>
0.10<br>
338.20<br>
6919.36<br>
-4.45<br>
27.66<br>
27.58<br>
0.21<br>
74<br>
7014.00<br>
0.40<br>
317.50<br>
7013.36<br>
-4.13<br>
27.41<br>
27.33<br>
0.33<br>
75<br>
7107.00<br>
0.70<br>
18.60<br>
7106.35<br>
-3.36<br>
27.37<br>
27.31<br>
0.66<br>
76<br>
7200.00<br>
0.80<br>
20.40<br>
7199.34<br>
-2.21<br>
27.78<br>
27.73<br>
0.11<br>
77<br>
7294.00<br>
0.50<br>
30.60<br>
7293.34<br>
-1.24<br>
28.22<br>
28.19<br>
0.34<br>
78<br>
7387.00<br>
0.50<br>
357.70<br>
7386.33<br>
-0.49<br>
28.41<br>
28.39<br>
0.30<br>
79<br>
7480.00<br>
0.70<br>
311.00<br>
7479.33<br>
0.29<br>
27.96<br>
27.96<br>
0.55<br>
80<br>
7574.00<br>
1.60<br>
30.30<br>
7573.31<br>
1.80<br>
28.19<br>
28.22<br>
1.73<br>
81<br>
7667.00<br>
1.70<br>
30.00<br>
7666.28<br>
4.12<br>
29.54<br>
29.60<br>
0.11<br>
82<br>
7760.00<br>
0.80<br>
14.40<br>
7759.25<br>
5.94<br>
30.39<br>
30.49<br>
1.03<br>
83<br>
7854.00<br>
0.70<br>
17.80<br>
7853.25<br>
7.12<br>
30.73<br>
30.85<br>
0.12<br>
84<br>
7947.00<br>
0.50<br>
332.90<br>
7946.24<br>
8.03<br>
30.71<br>
30.85<br>
0.53<br>
85<br>
8040.00<br>
0.00<br>
359.10<br>
8039.24<br>
8.39<br>
30.53<br>
30.68<br>
0.54<br>
86<br>
8134.00<br>
0.30<br>
216.70<br>
8133.24<br>
8.19<br>
30.38<br>
30.53<br>
0.32<br>
87<br>
8227.00<br>
0.40<br>
91.70<br>
8226.24<br>
7.99<br>
30.56<br>
30.70<br>
0.67<br>
88<br>
8320.00<br>
0.50<br>
92.30<br>
8319.23<br>
7.96<br>
31.29<br>
31.43<br>
0.11<br>
89<br>
8414.00<br>
0.50<br>
86.20<br>
8413.23<br>
7.97<br>
32.11<br>
32.25<br>
0.06<br>
90<br>
8507.00<br>
0.60<br>
101.10<br>
8506.23<br>
7.90<br>
32.99<br>
33.13<br>
0.19<br>
91<br>
8600.00<br>
0.60<br>
116.10<br>
8599.22<br>
7.60<br>
33.91<br>
34.04<br>
0.17<br>
92<br>
8694.00<br>
0.60<br>
94.90<br>
8693.22<br>
7.34<br>
34.84<br>
34.97<br>
0.23<br>
93<br>
8787.00<br>
0.70<br>
108.80<br>
8786.21<br>
7.11<br>
35.86<br>
35.99<br>
0.20<br>
94<br>
8881.00<br>
0.30<br>
155.00<br>
8880.21<br>
6.70<br>
36.51<br>
36.63<br>
0.57<br>
95<br>
8974.00<br>
0.60<br>
132.40<br>
8973.20<br>
6.16<br>
36.97<br>
37.08<br>
0.37<br>
96<br>
9067.00<br>
0.40<br>
191.70<br>
9066.20<br>
5.51<br>
37.27<br>
37.36<br>
0.56<br>
97<br>
9161.00<br>
0.40<br>
160.60<br>
9160.20<br>
4.88<br>
37.31<br>
37.39<br>
0.23<br>
98<br>
9254.00<br>
0.40<br>
160.70<br>
9253.20<br>
4.27<br>
37.52<br>
37.60<br>
0.00<br>
99<br>
9347.00<br>
0.40<br>
222.20<br>
9346.20<br>
3.72<br>
37.41<br>
37.48<br>
0.44<br>
100<br>
9441.00<br>
0.70<br>
201.40<br>
9440.19<br>
2.94<br>
36.98<br>
37.03<br>
0.38<br>
101<br>
9534.00<br>
0.60<br>
186.10<br>
9533.19<br>
1.93<br>
36.72<br>
36.75<br>
0.21<br>
102<br>
9627.00<br>
0.60<br>
99.90<br>
9626.18<br>
1.36<br>
37.15<br>
37.17<br>
0.88<br>
103<br>
9720.00<br>
0.90<br>
95.20<br>
9719.17<br>
1.21<br>
38.36<br>
38.38<br>
0.33<br>
104<br>
9814.00<br>
0.80<br>
119.80<br>
9813.16<br>
0.82<br>
39.66<br>
39.67<br>
0.40<br>
<hr>
<A name=32></a><<br>
SUNBURST CONSULTING, INC.<br>
><br>
Operator:<br>
Oasis Petroleum North America, LLC<br>
Kick-off:<br>
10/15/2014<br>
Well<br>
:<br>
Chalmers 5300 21-19 8T<br>
Finish:<br>
12/28/2014<br>
County:<br>
McKenzie<br>
State:<br>
ND<br>
Directional Supervision:<br>
QQ:<br>
Lot 2<br>
Section:<br>
19<br>
RPM<br>
Township:<br>
153<br>
N/S:<br>
N<br>
Range:<br>
100<br>
E/W:<br>
W<br>
Date:<br>
1/9/2015<br>
Footages:<br>
2226<br>
FN/SL:<br>
N<br>
Time:<br>
11:28<br>
327<br>
FE/WL:<br>
W<br>
F9 to re-calculate<br>
Minimum Curvature Method (SPE-3362)<br>
Proposed dir:<br>
88.96<br>
[North and East are positive and South and West are negative, relative to surface location]<br>
TRUE<br>
DLS/<br>
No.<br>
MD<br>
INC<br>
AZM<br>
TVD<br>
N-S<br>
E-W<br>
SECT<br>
100<br>
105<br>
9907.00<br>
0.70<br>
118.70<br>
9906.16<br>
0.22<br>
40.73<br>
40.72<br>
0.11<br>
106<br>
10000.00<br>
0.70<br>
95.40<br>
9999.15<br>
-0.10<br>
41.79<br>
41.78<br>
0.30<br>
107<br>
10094.00<br>
0.50<br>
115.30<br>
10093.14<br>
-0.33<br>
42.73<br>
42.72<br>
0.30<br>
108<br>
10187.00<br>
0.20<br>
181.60<br>
10186.14<br>
-0.67<br>
43.09<br>
43.08<br>
0.49<br>
109<br>
10253.00<br>
0.40<br>
111.00<br>
10252.14<br>
-0.87<br>
43.31<br>
43.28<br>
0.58<br>
110<br>
10300.00<br>
0.20<br>
180.20<br>
10299.14<br>
-1.01<br>
43.46<br>
43.43<br>
0.81<br>
111<br>
10331.00<br>
0.50<br>
115.00<br>
10330.14<br>
-1.12<br>
43.58<br>
43.55<br>
1.46<br>
112<br>
10362.00<br>
3.40<br>
80.80<br>
10361.12<br>
-1.03<br>
44.61<br>
44.59<br>
9.68<br>
113<br>
10393.00<br>
7.50<br>
78.20<br>
10391.97<br>
-0.47<br>
47.50<br>
47.48<br>
13.25<br>
114<br>
10424.00<br>
12.70<br>
76.10<br>
10422.48<br>
0.76<br>
52.79<br>
52.80<br>
16.81<br>
115<br>
10456.00<br>
17.10<br>
75.80<br>
10453.40<br>
2.76<br>
60.77<br>
60.81<br>
13.75<br>
116<br>
10487.00<br>
21.10<br>
75.80<br>
10482.69<br>
5.25<br>
70.60<br>
70.69<br>
12.90<br>
117<br>
10518.00<br>
23.60<br>
75.30<br>
10511.35<br>
8.20<br>
82.02<br>
82.15<br>
8.09<br>
118<br>
10549.00<br>
25.50<br>
77.10<br>
10539.55<br>
11.26<br>
94.53<br>
94.71<br>
6.59<br>
119<br>
10580.00<br>
28.00<br>
78.90<br>
10567.23<br>
14.15<br>
108.17<br>
108.41<br>
8.48<br>
120<br>
10611.00<br>
31.30<br>
78.20<br>
10594.17<br>
17.20<br>
123.20<br>
123.49<br>
10.70<br>
121<br>
10642.00<br>
34.30<br>
75.90<br>
10620.23<br>
20.98<br>
139.56<br>
139.92<br>
10.48<br>
122<br>
10673.00<br>
37.20<br>
74.70<br>
10645.38<br>
25.58<br>
157.07<br>
157.51<br>
9.62<br>
123<br>
10704.00<br>
40.60<br>
73.20<br>
10669.50<br>
30.97<br>
175.78<br>
176.31<br>
11.38<br>
124<br>
10736.00<br>
44.50<br>
72.90<br>
10693.07<br>
37.28<br>
196.47<br>
197.11<br>
12.20<br>
125<br>
10767.00<br>
48.20<br>
73.80<br>
10714.47<br>
43.70<br>
217.96<br>
218.71<br>
12.12<br>
126<br>
10798.00<br>
52.10<br>
74.00<br>
10734.33<br>
50.30<br>
240.82<br>
241.69<br>
12.59<br>
127<br>
10829.00<br>
56.00<br>
73.70<br>
10752.52<br>
57.28<br>
264.92<br>
265.92<br>
12.60<br>
128<br>
10860.00<br>
59.80<br>
73.30<br>
10768.99<br>
64.73<br>
290.09<br>
291.22<br>
12.31<br>
129<br>
10891.00<br>
64.30<br>
73.60<br>
10783.52<br>
72.53<br>
316.34<br>
317.60<br>
14.54<br>
130<br>
10922.00<br>
67.60<br>
75.00<br>
10796.15<br>
80.19<br>
343.59<br>
344.98<br>
11.42<br>
131<br>
10953.00<br>
71.20<br>
76.10<br>
10807.06<br>
87.42<br>
371.68<br>
373.21<br>
12.08<br>
132<br>
10985.00<br>
75.20<br>
77.90<br>
10816.31<br>
94.31<br>
401.52<br>
403.17<br>
13.61<br>
133<br>
11016.00<br>
79.00<br>
79.20<br>
10823.23<br>
100.30<br>
431.13<br>
432.88<br>
12.92<br>
134<br>
11047.00<br>
82.50<br>
80.20<br>
10828.21<br>
105.77<br>
461.23<br>
463.08<br>
11.73<br>
135<br>
11078.00<br>
86.50<br>
81.20<br>
10831.18<br>
110.76<br>
491.68<br>
493.61<br>
13.30<br>
136<br>
11109.00<br>
88.80<br>
81.80<br>
10832.45<br>
115.33<br>
522.31<br>
524.32<br>
7.67<br>
137<br>
11125.00<br>
89.10<br>
82.00<br>
10832.74<br>
117.59<br>
538.15<br>
540.19<br>
2.25<br>
138<br>
11191.00<br>
89.80<br>
84.00<br>
10833.38<br>
125.63<br>
603.65<br>
605.83<br>
3.21<br>
139<br>
11284.00<br>
88.70<br>
83.80<br>
10834.59<br>
135.51<br>
696.11<br>
698.46<br>
1.20<br>
<hr>
<A name=33></a><<br>
SUNBURST CONSULTING, INC.<br>
><br>
Operator:<br>
Oasis Petroleum North America, LLC<br>
Kick-off:<br>
10/15/2014<br>
Well<br>
:<br>
Chalmers 5300 21-19 8T<br>
Finish:<br>
12/28/2014<br>
County:<br>
McKenzie<br>
State:<br>
ND<br>
Directional Supervision:<br>
QQ:<br>
Lot 2<br>
Section:<br>
19<br>
RPM<br>
Township:<br>
153<br>
N/S:<br>
N<br>
Range:<br>
100<br>
E/W:<br>
W<br>
Date:<br>
1/9/2015<br>
Footages:<br>
2226<br>
FN/SL:<br>
N<br>
Time:<br>
11:28<br>
327<br>
FE/WL:<br>
W<br>
F9 to re-calculate<br>
Minimum Curvature Method (SPE-3362)<br>
Proposed dir:<br>
88.96<br>
[North and East are positive and South and West are negative, relative to surface location]<br>
TRUE<br>
DLS/<br>
No.<br>
MD<br>
INC<br>
AZM<br>
TVD<br>
N-S<br>
E-W<br>
SECT<br>
100<br>
140<br>
11377.00<br>
90.70<br>
83.30<br>
10835.08<br>
145.96<br>
788.52<br>
791.04<br>
2.22<br>
141<br>
11470.00<br>
91.10<br>
83.60<br>
10833.62<br>
156.57<br>
880.90<br>
883.60<br>
0.54<br>
142<br>
11562.00<br>
88.00<br>
83.10<br>
10834.34<br>
167.22<br>
972.27<br>
975.14<br>
3.41<br>
143<br>
11655.00<br>
88.20<br>
84.00<br>
10837.43<br>
177.66<br>
1064.63<br>
1067.68<br>
0.99<br>
144<br>
11748.00<br>
89.10<br>
86.30<br>
10839.62<br>
185.52<br>
1157.26<br>
1160.44<br>
2.66<br>
145<br>
11841.00<br>
89.70<br>
89.00<br>
10840.59<br>
189.33<br>
1250.17<br>
1253.40<br>
2.97<br>
146<br>
11936.00<br>
90.40<br>
91.80<br>
10840.51<br>
188.67<br>
1345.16<br>
1348.36<br>
3.04<br>
147<br>
12030.00<br>
90.00<br>
91.50<br>
10840.18<br>
185.96<br>
1439.12<br>
1442.25<br>
0.53<br>
148<br>
12125.00<br>
89.20<br>
91.50<br>
10840.84<br>
183.47<br>
1534.08<br>
1537.16<br>
0.84<br>
149<br>
12220.00<br>
89.10<br>
90.60<br>
10842.25<br>
181.73<br>
1629.05<br>
1632.08<br>
0.95<br>
150<br>
12315.00<br>
90.90<br>
90.60<br>
10842.25<br>
180.74<br>
1724.04<br>
1727.04<br>
1.89<br>
151<br>
12409.00<br>
89.70<br>
90.50<br>
10841.76<br>
179.84<br>
1818.04<br>
1821.00<br>
1.28<br>
152<br>
12504.00<br>
89.50<br>
90.50<br>
10842.42<br>
179.01<br>
1913.03<br>
1915.96<br>
0.21<br>
153<br>
12599.00<br>
88.30<br>
90.60<br>
10844.25<br>
178.10<br>
2008.01<br>
2010.91<br>
1.27<br>
154<br>
12694.00<br>
90.60<br>
90.20<br>
10845.16<br>
177.43<br>
2102.99<br>
2105.87<br>
2.46<br>
155<br>
12788.00<br>
89.20<br>
91.10<br>
10845.32<br>
176.37<br>
2196.98<br>
2199.82<br>
1.77<br>
156<br>
12883.00<br>
89.60<br>
90.70<br>
10846.32<br>
174.87<br>
2291.97<br>
2294.76<br>
0.60<br>
157<br>
12978.00<br>
88.40<br>
90.60<br>
10847.98<br>
173.80<br>
2386.94<br>
2389.71<br>
1.27<br>
158<br>
13073.00<br>
89.40<br>
90.60<br>
10849.80<br>
172.80<br>
2481.92<br>
2484.65<br>
1.05<br>
159<br>
13167.00<br>
89.00<br>
90.30<br>
10851.11<br>
172.06<br>
2575.91<br>
2578.61<br>
0.53<br>
160<br>
13262.00<br>
89.40<br>
90.80<br>
10852.44<br>
171.15<br>
2670.89<br>
2673.56<br>
0.67<br>
161<br>
13357.00<br>
87.90<br>
91.10<br>
10854.68<br>
169.58<br>
2765.85<br>
2768.47<br>
1.61<br>
162<br>
13452.00<br>
89.20<br>
90.50<br>
10857.08<br>
168.25<br>
2860.81<br>
2863.39<br>
1.51<br>
163<br>
13546.00<br>
88.90<br>
90.40<br>
10858.64<br>
167.51<br>
2954.79<br>
2957.35<br>
0.34<br>
164<br>
13641.00<br>
90.20<br>
89.60<br>
10859.39<br>
167.51<br>
3049.79<br>
3052.33<br>
1.61<br>
165<br>
13736.00<br>
89.70<br>
89.40<br>
10859.47<br>
168.34<br>
3144.78<br>
3147.32<br>
0.57<br>
166<br>
13831.00<br>
88.50<br>
88.90<br>
10860.96<br>
169.75<br>
3239.76<br>
3242.31<br>
1.37<br>
167<br>
13926.00<br>
89.40<br>
89.20<br>
10862.70<br>
171.33<br>
3334.73<br>
3337.29<br>
1.00<br>
168<br>
14020.00<br>
90.00<br>
88.80<br>
10863.19<br>
172.97<br>
3428.71<br>
3431.29<br>
0.77<br>
169<br>
14115.00<br>
90.80<br>
89.20<br>
10862.53<br>
174.63<br>
3523.70<br>
3526.28<br>
0.94<br>
170<br>
14210.00<br>
89.80<br>
90.00<br>
10862.03<br>
175.29<br>
3618.69<br>
3621.28<br>
1.35<br>
171<br>
14305.00<br>
90.10<br>
88.20<br>
10862.12<br>
176.78<br>
3713.67<br>
3716.27<br>
1.92<br>
172<br>
14399.00<br>
91.40<br>
87.70<br>
10860.89<br>
180.14<br>
3807.60<br>
3810.25<br>
1.48<br>
173<br>
14494.00<br>
92.10<br>
87.20<br>
10857.98<br>
184.37<br>
3902.46<br>
3905.17<br>
0.91<br>
174<br>
14589.00<br>
91.00<br>
88.20<br>
10855.42<br>
188.18<br>
3997.35<br>
4000.11<br>
1.56<br>
<hr>
<A name=34></a><<br>
SUNBURST CONSULTING, INC.<br>
><br>
Operator:<br>
Oasis Petroleum North America, LLC<br>
Kick-off:<br>
10/15/2014<br>
Well<br>
:<br>
Chalmers 5300 21-19 8T<br>
Finish:<br>
12/28/2014<br>
County:<br>
McKenzie<br>
State:<br>
ND<br>
Directional Supervision:<br>
QQ:<br>
Lot 2<br>
Section:<br>
19<br>
RPM<br>
Township:<br>
153<br>
N/S:<br>
N<br>
Range:<br>
100<br>
E/W:<br>
W<br>
Date:<br>
1/9/2015<br>
Footages:<br>
2226<br>
FN/SL:<br>
N<br>
Time:<br>
11:28<br>
327<br>
FE/WL:<br>
W<br>
F9 to re-calculate<br>
Minimum Curvature Method (SPE-3362)<br>
Proposed dir:<br>
88.96<br>
[North and East are positive and South and West are negative, relative to surface location]<br>
TRUE<br>
DLS/<br>
No.<br>
MD<br>
INC<br>
AZM<br>
TVD<br>
N-S<br>
E-W<br>
SECT<br>
100<br>
175<br>
14683.00<br>
91.30<br>
88.20<br>
10853.53<br>
191.13<br>
4091.29<br>
4094.08<br>
0.32<br>
176<br>
14778.00<br>
90.10<br>
90.50<br>
10852.37<br>
192.21<br>
4186.26<br>
4189.06<br>
2.73<br>
177<br>
14873.00<br>
89.50<br>
91.40<br>
10852.70<br>
190.63<br>
4281.25<br>
4284.00<br>
1.14<br>
178<br>
14968.00<br>
90.20<br>
91.90<br>
10852.95<br>
187.90<br>
4376.21<br>
4378.90<br>
0.91<br>
179<br>
15063.00<br>
89.50<br>
91.00<br>
10853.20<br>
185.49<br>
4471.18<br>
4473.81<br>
1.20<br>
180<br>
15157.00<br>
88.60<br>
91.00<br>
10854.76<br>
183.85<br>
4565.15<br>
4567.73<br>
0.96<br>
181<br>
15252.00<br>
92.10<br>
89.70<br>
10854.18<br>
183.27<br>
4660.13<br>
4662.69<br>
3.93<br>
182<br>
15347.00<br>
88.50<br>
91.10<br>
10853.68<br>
182.61<br>
4755.11<br>
4757.64<br>
4.07<br>
183<br>
15442.00<br>
88.10<br>
91.60<br>
10856.50<br>
180.37<br>
4850.04<br>
4852.51<br>
0.67<br>
184<br>
15537.00<br>
89.50<br>
91.70<br>
10858.49<br>
177.64<br>
4944.97<br>
4947.38<br>
1.48<br>
185<br>
15631.00<br>
89.90<br>
91.80<br>
10858.98<br>
174.77<br>
5038.93<br>
5041.27<br>
0.44<br>
186<br>
15726.00<br>
89.70<br>
89.60<br>
10859.31<br>
173.61<br>
5133.92<br>
5136.22<br>
2.33<br>
187<br>
15821.00<br>
89.00<br>
89.60<br>
10860.39<br>
174.27<br>
5228.91<br>
5231.21<br>
0.74<br>
188<br>
15916.00<br>
87.60<br>
90.10<br>
10863.21<br>
174.52<br>
5323.86<br>
5326.15<br>
1.56<br>
189<br>
16010.00<br>
89.00<br>
89.30<br>
10865.99<br>
175.01<br>
5417.82<br>
5420.10<br>
1.72<br>
190<br>
16105.00<br>
90.40<br>
86.70<br>
10866.49<br>
178.33<br>
5512.75<br>
5515.07<br>
3.11<br>
191<br>
16200.00<br>
91.00<br>
86.50<br>
10865.33<br>
183.96<br>
5607.57<br>
5609.99<br>
0.67<br>
192<br>
16294.00<br>
91.20<br>
88.90<br>
10863.53<br>
187.73<br>
5701.47<br>
5703.94<br>
2.56<br>
193<br>
16389.00<br>
90.40<br>
88.40<br>
10862.20<br>
189.97<br>
5796.43<br>
5798.93<br>
0.99<br>
194<br>
16484.00<br>
88.00<br>
88.90<br>
10863.53<br>
192.21<br>
5891.39<br>
5893.91<br>
2.58<br>
195<br>
16579.00<br>
89.50<br>
89.40<br>
10865.60<br>
193.62<br>
5986.36<br>
5988.88<br>
1.66<br>
196<br>
16674.00<br>
90.30<br>
89.60<br>
10865.76<br>
194.44<br>
6081.35<br>
6083.88<br>
0.87<br>
197<br>
16768.00<br>
91.00<br>
89.70<br>
10864.70<br>
195.02<br>
6175.34<br>
6177.87<br>
0.75<br>
198<br>
16863.00<br>
89.70<br>
90.00<br>
10864.12<br>
195.27<br>
6270.34<br>
6272.85<br>
1.40<br>
199<br>
16958.00<br>
88.30<br>
90.40<br>
10865.78<br>
194.94<br>
6365.32<br>
6367.81<br>
1.53<br>
200<br>
17053.00<br>
86.80<br>
90.20<br>
10869.84<br>
194.44<br>
6460.23<br>
6462.70<br>
1.59<br>
201<br>
17148.00<br>
88.30<br>
90.30<br>
10873.90<br>
194.02<br>
6555.14<br>
6557.58<br>
1.58<br>
202<br>
17243.00<br>
90.00<br>
90.50<br>
10875.31<br>
193.36<br>
6650.12<br>
6652.54<br>
1.80<br>
203<br>
17337.00<br>
91.00<br>
92.20<br>
10874.49<br>
191.15<br>
6744.09<br>
6746.45<br>
2.10<br>
204<br>
17432.00<br>
92.40<br>
92.10<br>
10871.67<br>
187.58<br>
6838.98<br>
6841.26<br>
1.48<br>
205<br>
17527.00<br>
90.90<br>
89.90<br>
10868.93<br>
185.93<br>
6933.92<br>
6936.15<br>
2.80<br>
206<br>
17622.00<br>
89.70<br>
89.90<br>
10868.43<br>
186.09<br>
7028.91<br>
7031.13<br>
1.26<br>
207<br>
17716.00<br>
89.00<br>
89.80<br>
10869.50<br>
186.34<br>
7122.91<br>
7125.11<br>
0.75<br>
208<br>
17811.00<br>
89.10<br>
90.40<br>
10871.08<br>
186.17<br>
7217.89<br>
7220.08<br>
0.64<br>
209<br>
17906.00<br>
89.90<br>
91.80<br>
10871.91<br>
184.35<br>
7312.87<br>
7315.01<br>
1.70<br>
<hr>
<A name=35></a><<br>
SUNBURST CONSULTING, INC.<br>
><br>
Operator:<br>
Oasis Petroleum North America, LLC<br>
Kick-off:<br>
10/15/2014<br>
Well<br>
:<br>
Chalmers 5300 21-19 8T<br>
Finish:<br>
12/28/2014<br>
County:<br>
McKenzie<br>
State:<br>
ND<br>
Directional Supervision:<br>
QQ:<br>
Lot 2<br>
Section:<br>
19<br>
RPM<br>
Township:<br>
153<br>
N/S:<br>
N<br>
Range:<br>
100<br>
E/W:<br>
W<br>
Date:<br>
1/9/2015<br>
Footages:<br>
2226<br>
FN/SL:<br>
N<br>
Time:<br>
11:28<br>
327<br>
FE/WL:<br>
W<br>
F9 to re-calculate<br>
Minimum Curvature Method (SPE-3362)<br>
Proposed dir:<br>
88.96<br>
[North and East are positive and South and West are negative, relative to surface location]<br>
TRUE<br>
DLS/<br>
No.<br>
MD<br>
INC<br>
AZM<br>
TVD<br>
N-S<br>
E-W<br>
SECT<br>
100<br>
210<br>
18001.00<br>
89.60<br>
92.10<br>
10872.32<br>
181.12<br>
7407.81<br>
7409.88<br>
0.45<br>
211<br>
18095.00<br>
90.10<br>
92.30<br>
10872.57<br>
177.51<br>
7501.74<br>
7503.73<br>
0.57<br>
212<br>
18190.00<br>
91.50<br>
92.30<br>
10871.24<br>
173.70<br>
7596.65<br>
7598.55<br>
1.47<br>
213<br>
18285.00<br>
90.60<br>
90.90<br>
10869.50<br>
171.05<br>
7691.60<br>
7693.43<br>
1.75<br>
214<br>
18380.00<br>
89.80<br>
88.50<br>
10869.17<br>
171.54<br>
7786.59<br>
7788.42<br>
2.66<br>
215<br>
18475.00<br>
88.50<br>
88.10<br>
10870.58<br>
174.36<br>
7881.53<br>
7883.40<br>
1.43<br>
216<br>
18506.00<br>
88.10<br>
88.10<br>
10871.50<br>
175.39<br>
7912.50<br>
7914.38<br>
1.29<br>
217<br>
18569.00<br>
88.80<br>
87.80<br>
10873.20<br>
177.64<br>
7975.44<br>
7977.35<br>
1.21<br>
218<br>
18664.00<br>
92.30<br>
87.40<br>
10872.29<br>
181.62<br>
8070.34<br>
8072.30<br>
3.71<br>
219<br>
18759.00<br>
91.00<br>
88.60<br>
10869.55<br>
184.93<br>
8165.23<br>
8167.25<br>
1.86<br>
220<br>
18854.00<br>
91.60<br>
88.40<br>
10867.40<br>
187.42<br>
8260.18<br>
8262.22<br>
0.67<br>
221<br>
18948.00<br>
90.20<br>
90.40<br>
10865.92<br>
188.40<br>
8354.15<br>
8356.20<br>
2.60<br>
222<br>
19043.00<br>
91.00<br>
90.00<br>
10864.93<br>
188.07<br>
8449.15<br>
8451.17<br>
0.94<br>
223<br>
19138.00<br>
89.90<br>
90.30<br>
10864.18<br>
187.82<br>
8544.14<br>
8546.14<br>
1.20<br>
224<br>
19233.00<br>
89.20<br>
90.10<br>
10864.93<br>
187.49<br>
8639.14<br>
8641.12<br>
0.77<br>
225<br>
19328.00<br>
90.10<br>
90.00<br>
10865.51<br>
187.41<br>
8734.13<br>
8736.10<br>
0.95<br>
226<br>
19422.00<br>
87.90<br>
90.30<br>
10867.15<br>
187.16<br>
8828.11<br>
8830.06<br>
2.36<br>
227<br>
19517.00<br>
88.70<br>
91.50<br>
10869.97<br>
185.67<br>
8923.06<br>
8924.96<br>
1.52<br>
228<br>
19612.00<br>
89.60<br>
91.60<br>
10871.37<br>
183.10<br>
9018.01<br>
9019.85<br>
0.95<br>
229<br>
19707.00<br>
89.90<br>
90.90<br>
10871.79<br>
181.03<br>
9112.99<br>
9114.77<br>
0.80<br>
230<br>
19802.00<br>
88.00<br>
90.50<br>
10873.53<br>
179.87<br>
9207.96<br>
9209.71<br>
2.04<br>
231<br>
19896.00<br>
89.90<br>
90.30<br>
10875.25<br>
179.21<br>
9301.94<br>
9303.66<br>
2.03<br>
232<br>
19991.00<br>
88.40<br>
91.10<br>
10876.66<br>
178.05<br>
9396.92<br>
9398.60<br>
1.79<br>
233<br>
20086.00<br>
89.10<br>
90.10<br>
10878.73<br>
177.06<br>
9491.89<br>
9493.54<br>
1.28<br>
234<br>
20181.00<br>
88.60<br>
90.90<br>
10880.64<br>
176.23<br>
9586.86<br>
9588.48<br>
0.99<br>
235<br>
20276.00<br>
89.30<br>
90.40<br>
10882.38<br>
175.15<br>
9681.84<br>
9683.42<br>
0.91<br>
236<br>
20370.00<br>
90.40<br>
90.30<br>
10882.63<br>
174.58<br>
9775.84<br>
9777.40<br>
1.18<br>
237<br>
20519.00<br>
90.40<br>
90.30<br>
10881.59<br>
173.80<br>
9924.83<br>
9926.35<br>
0.00<br>
<hr>
<A name=36></a>DEVIATION SURVEYS<br>
Depth<br>
Inclination<br>
Azimuth<br>
147<br>
0.30<br>
295.90<br>
240<br>
0.30<br>
298.40<br>
333<br>
0.40<br>
273.50<br>
427<br>
0.10<br>
334.70<br>
520<br>
0.30<br>
337.70<br>
613<br>
0.30<br>
347.50<br>
702<br>
0.60<br>
288.80<br>
790<br>
0.50<br>
326.20<br>
880<br>
0.50<br>
276.40<br>
970<br>
0.20<br>
304.50<br>
1063<br>
0.70<br>
292.90<br>
1156<br>
0.70<br>
290.30<br>
1250<br>
0.50<br>
326.00<br>
1343<br>
0.80<br>
327.20<br>
1436<br>
1.10<br>
347.00<br>
1530<br>
0.70<br>
171.00<br>
1623<br>
1.70<br>
181.60<br>
1717<br>
1.60<br>
197.20<br>
1810<br>
1.60<br>
154.70<br>
1903<br>
1.80<br>
109.10<br>
1997<br>
1.00<br>
91.90<br>
<hr>
<A name=37></a>5301<br>
2R<br>
To<br>
s<br>
4T<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
ip<br>
er<br>
D<br>
m<br>
24<br>
-219'<br>
-194'<br>
-241'<br>
-241'<br>
-245'<br>
-225'<br>
-258'<br>
-277'<br>
-251'<br>
-233'<br>
-222'<br>
-240'<br>
-240'<br>
-239'<br>
-239'<br>
-244'<br>
-243'<br>
-245'<br>
-249'<br>
-247'<br>
alh 44-<br>
C<br>
-1<br>
um<br>
6<br>
s<br>
2<br>
To<br>
o.<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
ip<br>
Fos<br>
N<br>
D<br>
L<br>
-113'<br>
-116'<br>
-101'<br>
-106'<br>
-120'<br>
-103'<br>
-139'<br>
-165'<br>
-120'<br>
-113'<br>
-114'<br>
-115'<br>
-114'<br>
-112'<br>
-116'<br>
-126'<br>
-130'<br>
-126'<br>
-129'<br>
-127'<br>
ls:<br>
rlin<br>
A<br>
e<br>
el<br>
T<br>
V<br>
E<br>
W<br>
5<br>
ffset<br>
-3<br>
O<br>
1<br>
IPS<br>
To<br>
ig<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
ip<br>
-87'<br>
-53'<br>
-78'<br>
-79'<br>
-84'<br>
-95'<br>
-88'<br>
-84'<br>
-84'<br>
-88'<br>
-88'<br>
-98'<br>
-95'<br>
-96'<br>
-95'<br>
D<br>
-101'<br>
-134'<br>
-155'<br>
-106'<br>
-100'<br>
Lindv<br>
SHNO<br>
5300<br>
To<br>
s<br>
'<br>
'<br>
'<br>
'<br>
'<br>
'<br>
'<br>
'<br>
'<br>
'<br>
19H<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
ip<br>
er<br>
-13'<br>
-9<br>
-13'<br>
-13'<br>
-8<br>
-8<br>
-9<br>
-9<br>
-18'<br>
1'<br>
0'<br>
-3<br>
0'<br>
4'<br>
6'<br>
-2<br>
-3<br>
1'<br>
-10'<br>
-9<br>
-10'<br>
-9<br>
-21'<br>
-18'<br>
-17'<br>
-18'<br>
-18'<br>
TI<br>
D<br>
m<br>
31-<br>
alhC<br>
ELA<br>
To<br>
'<br>
'<br>
'<br>
'<br>
'<br>
'<br>
'<br>
'<br>
'<br>
'<br>
'<br>
-<br>
0'<br>
1'<br>
0'<br>
1'<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
ip<br>
rog.<br>
-16'<br>
-67'<br>
-21'<br>
-9<br>
45'<br>
-8<br>
-5<br>
-19'<br>
-7<br>
-9<br>
-8<br>
-2<br>
-3<br>
-7<br>
-7<br>
-7<br>
-18'<br>
-15'<br>
-14'<br>
-16'<br>
-15'<br>
R<br>
D<br>
P<br>
LA<br>
t<br>
R<br>
ess<br>
rge<br>
788'<br>
349'<br>
851'<br>
349'<br>
933'<br>
918'<br>
568'<br>
538'<br>
463'<br>
407'<br>
164'<br>
996'<br>
793'<br>
447'<br>
300'<br>
624'<br>
403'<br>
-<br>
-<br>
nding<br>
94'<br>
49'<br>
38'<br>
20'<br>
6'<br>
0'<br>
ickn<br>
Ta<br>
5,<br>
5,<br>
4,<br>
4,<br>
3,<br>
3,<br>
3,<br>
3,<br>
3,<br>
3,<br>
3,<br>
2,<br>
2,<br>
2,<br>
2,<br>
1,<br>
1,<br>
841'<br>
779'<br>
647'<br>
595'<br>
430'<br>
269'<br>
166'<br>
120'<br>
117'<br>
110'<br>
h<br>
to<br>
La<br>
TU<br>
T<br>
l<br>
s<br>
a<br>
s<br>
C<br>
rv<br>
ne<br>
e<br>
k<br>
3'<br>
7'<br>
6'<br>
-<br>
-<br>
-<br>
439'<br>
498'<br>
502'<br>
416'<br>
15'<br>
350'<br>
30'<br>
75'<br>
56'<br>
243'<br>
168'<br>
203'<br>
346'<br>
147'<br>
676'<br>
221'<br>
562'<br>
62'<br>
132'<br>
52'<br>
165'<br>
161'<br>
103'<br>
46'<br>
16'<br>
45'<br>
11'<br>
18'<br>
14'<br>
U<br>
Int<br>
,LLC<br>
Thic<br>
a<br>
ric<br>
L<br>
e<br>
8T<br>
W<br>
m<br>
)<br>
m<br>
19<br>
,100W<br>
F<br>
tu<br>
SL<br>
969'<br>
408'<br>
906'<br>
408'<br>
824'<br>
839'<br>
189'<br>
219'<br>
294'<br>
350'<br>
593'<br>
761'<br>
964'<br>
310'<br>
457'<br>
133'<br>
354'<br>
916'<br>
978'<br>
110'<br>
162'<br>
327'<br>
488'<br>
591'<br>
637'<br>
640'<br>
647'<br>
663'<br>
708'<br>
719'<br>
737'<br>
751'<br>
757'<br>
-<br>
-<br>
STR </span><span class="ft0">ll:e Ath 21-<br>
Da<br>
(M<br>
-2,<br>
-3,<br>
-3,<br>
-4,<br>
-4,<br>
-4,<br>
-5,<br>
-5,<br>
-5,<br>
-5,<br>
-5,<br>
-5,<br>
-5,<br>
-6,<br>
-6,<br>
-7,<br>
-7,<br>
-7,<br>
-7,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
& </span><span class="ft0">tW or<br>
327'<br>
153N<br>
c<br>
&<br>
e<br>
N<br>
5300<br>
L<br>
s<br>
N<br>
.19,<br>
s<br>
ubj<br>
um<br>
er<br>
F<br>
r'<br>
)<br>
ec<br>
Top<br>
PS </span><span class="ft0">S<br>
m<br>
S<br>
lle<br>
h<br>
VD<br>
045'<br>
484'<br>
982'<br>
484'<br>
900'<br>
915'<br>
265'<br>
295'<br>
370'<br>
426'<br>
669'<br>
837'<br>
040'<br>
386'<br>
533'<br>
209'<br>
430'<br>
992'<br>
054'<br>
186'<br>
238'<br>
403'<br>
564'<br>
667'<br>
713'<br>
716'<br>
723'<br>
739'<br>
784'<br>
795'<br>
813'<br>
827'<br>
833'<br>
-<br>
-<br>
trole<br>
al<br>
226'<br>
pt<br>
2<br>
(T<br>
5,<br>
5,<br>
5,<br>
6,<br>
6,<br>
6,<br>
7,<br>
7,<br>
7,<br>
7,<br>
7,<br>
7,<br>
8,<br>
8,<br>
8,<br>
9,<br>
9,<br>
9,<br>
e<br>
h<br>
2,<br>
076'<br>
Dri<br>
e<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
P<br>
C<br>
Lot<br>
2,<br>
D<br>
TO<br>
issa<br>
KB:<br>
sr'<br>
O<br>
Top<br>
D)<br>
N<br>
lle<br>
h<br>
045'<br>
484'<br>
982'<br>
485'<br>
901'<br>
916'<br>
266'<br>
296'<br>
371'<br>
427'<br>
670'<br>
838'<br>
041'<br>
387'<br>
534'<br>
210'<br>
431'<br>
993'<br>
055'<br>
187'<br>
239'<br>
404'<br>
576'<br>
702'<br>
766'<br>
770'<br>
782'<br>
808'<br>
892'<br>
918'<br>
973'<br>
050'<br>
185'<br>
-<br>
-<br>
pt<br>
(M<br>
5,<br>
5,<br>
5,<br>
6,<br>
6,<br>
6,<br>
7,<br>
7,<br>
7,<br>
7,<br>
7,<br>
7,<br>
8,<br>
8,<br>
8,<br>
9,<br>
9,<br>
9,<br>
Dri<br>
e<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
11,<br>
11,<br>
O<br>
D<br>
TI<br>
25'<br>
m<br>
)<br>
ub:<br>
A<br>
SL<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
S<br>
rog.<br>
tu<br>
953'<br>
341'<br>
387'<br>
815'<br>
884'<br>
181'<br>
214'<br>
275'<br>
350'<br>
586'<br>
752'<br>
956'<br>
308'<br>
458'<br>
133'<br>
351'<br>
917'<br>
630'<br>
076'<br>
640'<br>
656'<br>
690'<br>
704'<br>
723'<br>
735'<br>
742'<br>
746'<br>
747'<br>
P<br>
Da<br>
(M<br>
-2,<br>
-3,<br>
-4,<br>
-4,<br>
-4,<br>
-5,<br>
-5,<br>
-5,<br>
-5,<br>
-5,<br>
-5,<br>
-5,<br>
-6,<br>
-6,<br>
-7,<br>
-7,<br>
-7,<br>
-8,<br>
2,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
MR<br>
051'<br>
rog.<br>
029'<br>
417'<br>
-<br>
463'<br>
891'<br>
960'<br>
257'<br>
290'<br>
351'<br>
426'<br>
662'<br>
828'<br>
032'<br>
384'<br>
534'<br>
209'<br>
427'<br>
993'<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
706'<br>
716'<br>
732'<br>
766'<br>
780'<br>
799'<br>
811'<br>
818'<br>
822'<br>
823'<br>
2,<br>
FO<br>
P<br>
Top<br>
5,<br>
5,<br>
6,<br>
6,<br>
6,<br>
7,<br>
7,<br>
7,<br>
7,<br>
7,<br>
7,<br>
8,<br>
8,<br>
8,<br>
9,<br>
9,<br>
9,<br>
L:<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
G<br>
a<br>
e<br>
e<br>
e<br>
us<br>
t<br>
tone<br>
t<br>
as<br>
e<br>
t<br>
as<br>
al<br>
hal<br>
e<br>
t<br>
on<br>
one<br>
s<br>
en<br>
en<br>
s<br>
ng<br>
r:<br>
e:<br>
al<br>
en<br>
tB<br>
t<br>
as<br>
al<br>
al<br>
e<br>
S<br>
n<br>
k<br>
tB<br>
m<br>
tS<br>
Z<br>
k<br>
n<br>
k<br>
k<br>
op<br>
lay<br>
to<br>
a<br>
S<br>
al<br>
innel<br>
am<br>
S<br>
r<br>
S<br>
any<br>
e<br>
or<br>
tion:<br>
tion/<br>
ry<br>
ot<br>
ft<br>
al<br>
tB<br>
al<br>
en<br>
C<br>
den<br>
e<br>
Li<br>
A<br>
E<br>
F<br>
ak<br>
k<br>
ak<br>
ak<br>
T<br>
tone<br>
ra<br>
tion:<br>
B<br>
D<br>
a<br>
a<br>
w<br>
don<br>
wi<br>
S<br>
S<br>
al<br>
he<br>
s<br>
M<br>
Las<br>
C<br>
tur<br>
llio<br>
F<br>
e/<br>
s<br>
e<br>
lN<br>
a<br>
v<br>
yl<br>
P<br>
B<br>
B<br>
Landi<br>
m<br>
ak<br>
S<br>
les<br>
P<br>
P<br>
P<br>
P<br>
ier<br>
e<br>
B<br>
a<br>
ak<br>
get<br>
p<br>
Zone<br>
S<br>
S<br>
m<br>
T<br>
L<br>
L<br>
L<br>
L<br>
L<br>
e<br>
c<br>
e<br>
ee<br>
as<br>
el<br>
le<br>
Mo<br>
D<br>
R<br>
ine<br>
he<br>
as<br>
of<br>
ion<br>
rac<br>
s<br>
S<br>
er<br>
ronghor<br>
lay<br>
O<br>
unham<br>
P<br>
pec<br>
A<br>
ibbey<br>
har<br>
e<br>
s<br>
B<br>
hr<br>
ar<br>
get<br>
B<br>
C<br>
W<br>
Loc<br>
E<br>
For<br>
Lodgepol<br>
P<br>
D<br>
ine<br>
O<br>
/B<br>
K<br>
C<br>
is<br>
F<br>
al<br>
iddl<br>
T<br>
T<br>
ar<br>
unham<br>
P<br>
pec<br>
as<br>
F<br>
Low<br>
M<br>
M<br>
T<br>
get<br>
D<br>
O<br>
tter<br>
B<br>
LP<br>
pper<br>
O<br>
U<br>
arT<br>
<hr>
<A name=38></a>te<br>
ess<br>
ng<br>
rg<br>
C<br>
8T<br>
a<br>
419'<br>
247'<br>
618'<br>
397'<br>
-<br>
-<br>
ndi<br>
86'<br>
46'<br>
34'<br>
18'<br>
8'<br>
0'<br>
L<br>
19<br>
ickn<br>
T<br>
2,<br>
2,<br>
1,<br>
1,<br>
839'<br>
757'<br>
658'<br>
625'<br>
434'<br>
255'<br>
141'<br>
113'<br>
110'<br>
102'<br>
L<br>
h<br>
La<br>
T<br>
to<br>
21-<br>
ica,<br>
2R<br>
er<br>
101W<br>
D<br>
4T<br>
m<br>
R<br>
,N<br>
5300<br>
al<br>
ess<br>
A<br>
24<br>
y<br>
s<br>
v<br>
3'<br>
8'<br>
8'<br>
4'<br>
-<br>
-<br>
er<br>
ter<br>
172'<br>
629'<br>
221'<br>
558'<br>
82'<br>
99'<br>
33'<br>
191'<br>
179'<br>
114'<br>
28'<br>
16'<br>
40'<br>
12'<br>
16'<br>
10'<br>
rth<br>
44-<br>
153N<br>
ount<br>
m<br>
ickn<br>
o<br>
T<br>
039'<br>
In<br>
hT<br>
N<br>
C<br>
hal<br>
2,<br>
m<br>
ie<br>
5301<br>
.24<br>
C<br>
s<br>
ec<br>
enz<br>
of<br>
KB:<br>
leu<br>
m<br>
)<br>
er<br>
L<br>
S<br>
K<br>
W<br>
c<br>
tu<br>
ro<br>
m<br>
091'<br>
263'<br>
892'<br>
113'<br>
671'<br>
753'<br>
852'<br>
885'<br>
076'<br>
255'<br>
369'<br>
397'<br>
400'<br>
408'<br>
424'<br>
464'<br>
476'<br>
492'<br>
502'<br>
510'<br>
514'<br>
-<br>
E<br>
S<br>
a<br>
et<br>
al<br>
M<br>
D<br>
(MS<br>
-6,<br>
-6,<br>
-6,<br>
-7,<br>
-7,<br>
-7,<br>
-7,<br>
-7,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
h<br>
S<br>
S<br>
Ps<br>
C<br>
E<br>
ile<br>
S<br>
m<br>
p<br>
asi<br>
2<br>
o<br>
O<br>
1/~<br>
T<br>
266'<br>
438<br>
067<br>
288<br>
846<br>
928<br>
027<br>
060'<br>
251'<br>
430'<br>
544'<br>
572'<br>
575'<br>
583<br>
599'<br>
639'<br>
651'<br>
667'<br>
677'<br>
685<br>
689'<br>
-<br>
DV<br>
8,<br>
8,<br>
9,<br>
9,<br>
9,<br>
9,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
T<br>
ot<br>
8T<br>
et<br>
ng<br>
ess<br>
g<br>
433'<br>
289'<br>
598'<br>
382'<br>
-<br>
-<br>
19<br>
ndi<br>
95'<br>
83'<br>
48'<br>
41'<br>
19'<br>
8'<br>
0'<br>
ar<br>
2,<br>
2,<br>
1,<br>
1,<br>
834'<br>
755'<br>
659'<br>
633'<br>
423'<br>
255'<br>
153'<br>
108'<br>
104'<br>
ny<br>
T<br>
-1<br>
ickn<br>
La<br>
h<br>
pa<br>
6<br>
21-<br>
T<br>
2<br>
101W<br>
om<br>
o.<br>
D<br>
R<br>
C<br>
5300<br>
N<br>
,N<br>
s<br>
L<br>
y<br>
al<br>
er<br>
v<br>
ess<br>
tion<br>
A<br>
m<br>
4'<br>
9'<br>
7'<br>
8'<br>
4'<br>
1'<br>
-<br>
153N<br>
T<br>
ter<br>
144'<br>
691'<br>
216'<br>
548'<br>
79'<br>
96'<br>
26'<br>
210'<br>
168'<br>
102'<br>
45'<br>
12'<br>
35'<br>
22'<br>
11'<br>
T<br>
ount<br>
ickn<br>
E<br>
C<br>
hal<br>
175'<br>
In<br>
hT<br>
ie<br>
C<br>
2,<br>
roduc<br>
um<br>
.26,<br>
s<br>
of<br>
rP<br>
ec<br>
enz<br>
W<br>
KB:<br>
)<br>
S<br>
K<br>
m<br>
he<br>
L<br>
Fos<br>
S<br>
E<br>
c<br>
c<br>
tu<br>
197'<br>
341'<br>
032'<br>
248'<br>
796'<br>
875'<br>
971'<br>
997'<br>
207'<br>
375'<br>
477'<br>
522'<br>
526'<br>
535'<br>
547'<br>
582'<br>
589'<br>
611'<br>
622'<br>
630'<br>
634'<br>
635'<br>
M<br>
S<br>
S<br>
a<br>
ba<br>
D<br>
(MS<br>
-6,<br>
-6,<br>
-7,<br>
-7,<br>
-7,<br>
-7,<br>
-7,<br>
-7,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
rline<br>
W<br>
iles<br>
os<br>
V<br>
N<br>
M<br>
m4<br>
p<br>
3/<br>
o<br>
1<br>
T<br>
372'<br>
516'<br>
207'<br>
423'<br>
971'<br>
050'<br>
146'<br>
172'<br>
382'<br>
550'<br>
652'<br>
697'<br>
701'<br>
710'<br>
722'<br>
757'<br>
764'<br>
786'<br>
797'<br>
805'<br>
809'<br>
810'<br>
~<br>
DV<br>
8,<br>
8,<br>
9,<br>
9,<br>
9,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
TA<br>
T<br>
A<br>
ot<br>
8T<br>
et<br>
ng<br>
ess<br>
g<br>
439'<br>
258'<br>
607'<br>
387'<br>
-<br>
-<br>
D<br>
19<br>
ndi<br>
87'<br>
52'<br>
43'<br>
20'<br>
7'<br>
0'<br>
y<br>
ar<br>
2,<br>
2,<br>
1,<br>
1,<br>
847'<br>
768'<br>
686'<br>
655'<br>
441'<br>
269'<br>
159'<br>
109'<br>
106'<br>
103'<br>
L<br>
ickn<br>
T<br>
an<br>
La<br>
h<br>
p<br>
21-<br>
T<br>
O </span><span class="ft0">mo<br>
101W<br>
D<br>
C<br>
R<br>
5300<br>
,N<br>
s<br>
n<br>
5<br>
y<br>
al<br>
er<br>
v<br>
ess<br>
io<br>
-3<br>
m<br>
3'<br>
3'<br>
9'<br>
7'<br>
4'<br>
1'<br>
-<br>
1<br>
153N<br>
ter<br>
181'<br>
651'<br>
220'<br>
540'<br>
79'<br>
82'<br>
31'<br>
214'<br>
172'<br>
110'<br>
50'<br>
16'<br>
35'<br>
23'<br>
13'<br>
TR </span><span class="ft0">rat<br>
ount<br>
ickn<br>
T<br>
hal<br>
In<br>
lo<br>
ig<br>
C<br>
226'<br>
hT<br>
ie<br>
C<br>
2,<br>
N </span><span class="ft0">xp<br>
.35<br>
O<br>
ndv<br>
of<br>
E<br>
Li<br>
ec<br>
enz<br>
W<br>
KB:<br>
)<br>
as<br>
S<br>
K<br>
S<br>
m<br>
L<br>
E<br>
c<br>
tu<br>
223'<br>
404'<br>
055'<br>
275'<br>
815'<br>
894'<br>
976'<br>
007'<br>
221'<br>
393'<br>
503'<br>
553'<br>
556'<br>
559'<br>
575'<br>
610'<br>
619'<br>
642'<br>
655'<br>
662'<br>
666'<br>
667'<br>
C </span><span class="ft0">G<br>
M<br>
S<br>
S<br>
aD (MS<br>
-6,<br>
-6,<br>
-7,<br>
-7,<br>
-7,<br>
-7,<br>
-7,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
E<br>
iles<br>
exas<br>
S<br>
T<br>
m4<br>
1/2<br>
op<br>
449'<br>
630<br>
281<br>
501<br>
041<br>
120'<br>
202'<br>
233'<br>
447'<br>
619<br>
729'<br>
779'<br>
782'<br>
785'<br>
801'<br>
836<br>
845'<br>
868'<br>
881'<br>
888'<br>
892'<br>
893'<br>
~<br>
-Log<br>
T<br>
E<br>
8,<br>
8,<br>
9,<br>
9,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
ot<br>
et<br>
ng<br>
ess<br>
g<br>
C<br>
425'<br>
276'<br>
608'<br>
388'<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
ndi<br>
85'<br>
52'<br>
38'<br>
19'<br>
6'<br>
0'<br>
L<br>
8T<br>
arT<br>
2,<br>
2,<br>
1,<br>
1,<br>
822'<br>
112'<br>
108'<br>
102'<br>
L<br>
19<br>
ickn<br>
La<br>
hT<br>
ica,<br>
100W<br>
21-<br>
er<br>
D<br>
19H<br>
R<br>
m<br>
,N<br>
al<br>
A<br>
y<br>
ess<br>
31-<br>
5300<br>
v<br>
s<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
4'<br>
6'<br>
6'<br>
4'<br>
1'<br>
-<br>
153N<br>
rth<br>
ount<br>
er<br>
ter<br>
149'<br>
668'<br>
220'<br>
566'<br>
17'<br>
33'<br>
14'<br>
19'<br>
13'<br>
o<br>
T<br>
ickn<br>
m<br>
C<br>
929'<br>
In<br>
h<br>
N<br>
5300<br>
T<br>
s<br>
.19<br>
ie<br>
1,<br>
m<br>
hal<br>
er<br>
ec<br>
C<br>
leu<br>
m<br>
enz<br>
S<br>
K<br>
)<br>
of<br>
KB:<br>
m<br>
ro<br>
al<br>
c<br>
L<br>
h<br>
W<br>
S<br>
tu<br>
314'<br>
463'<br>
131'<br>
351'<br>
917'<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
627'<br>
631'<br>
637'<br>
654'<br>
687'<br>
701'<br>
720'<br>
733'<br>
739'<br>
743'<br>
744'<br>
et<br>
C<br>
M<br>
S<br>
a<br>
ile<br>
D<br>
(MS<br>
-6,<br>
-6,<br>
-7,<br>
-7,<br>
-7,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
-8,<br>
Ps<br>
WN<br>
m4<br>
asi<br>
1/<br>
O<br>
~<br>
op<br>
243'<br>
392'<br>
060'<br>
280'<br>
846'<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
556'<br>
560'<br>
566'<br>
583'<br>
616'<br>
630'<br>
649'<br>
662'<br>
668'<br>
672'<br>
673'<br>
-Log<br>
T<br>
E<br>
8,<br>
8,<br>
9,<br>
9,<br>
9,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
e<br>
tal<br>
hal<br>
tones<br>
:<br>
e<br>
t<br>
on<br>
one<br>
en<br>
s<br>
ng<br>
r:<br>
e:<br>
en<br>
en<br>
n<br>
S<br>
n<br>
m<br>
al<br>
tS<br>
e<br>
Z<br>
k<br>
k<br>
n<br>
k<br>
k<br>
op<br>
lay<br>
to<br>
am<br>
any<br>
e<br>
or<br>
tio<br>
tion/<br>
Li<br>
S<br>
en<br>
C<br>
E<br>
F<br>
ak<br>
k<br>
ak<br>
ak<br>
T<br>
tone<br>
ra<br>
tion:<br>
a<br>
a<br>
C<br>
A<br>
B<br>
D<br>
llio<br>
F<br>
e/<br>
s<br>
e<br>
Las<br>
tur<br>
lN<br>
a<br>
v<br>
B<br>
Landi<br>
m<br>
les<br>
P<br>
P<br>
P<br>
P<br>
P<br>
B<br>
a<br>
ak<br>
B<br>
get<br>
p<br>
Zone<br>
L<br>
L<br>
L<br>
L<br>
L<br>
e<br>
c<br>
e<br>
ee<br>
as<br>
el<br>
le<br>
of<br>
ion<br>
s<br>
S<br>
er<br>
ronghor<br>
lay<br>
O<br>
ibbey<br>
har<br>
e<br>
s<br>
rac<br>
B<br>
hr<br>
ar<br>
get<br>
B<br>
W<br>
Loc<br>
E<br>
For<br>
C<br>
K<br>
C<br>
Lodgepol<br>
al<br>
iddl<br>
P<br>
T<br>
T<br>
as<br>
is<br>
F<br>
F<br>
Low<br>
arT<br>
B<br>
M<br>
M<br>
LP<br>
pper<br>
get<br>
U<br>
arT<br>
<hr>
<A name=39></a>-1<br>
26<br>
2R<br>
o.<br>
8T<br>
H<br>
N<br>
4T<br>
L<br>
-19<br>
-19<br>
A<br>
-24<br>
T<br>
21<br>
31<br>
44<br>
0<br>
0<br>
E<br>
1<br>
um<br>
530<br>
530<br>
35<br>
s<br>
530<br>
rs<br>
rs<br>
os<br>
rs<br>
e<br>
e<br>
1-<br>
F<br>
e<br>
m<br>
m<br>
ig<br>
m<br>
dv<br>
lin<br>
hal<br>
hal<br>
n<br>
er<br>
hal<br>
C<br>
C<br>
Li<br>
V<br>
C<br>
8T<br>
-19<br>
21<br>
S<br>
5300<br>
S<br>
serm<br>
halC<br>
CKNE<br>
-<br>
HIT </span><span class="ft4">LLCa,<br>
L<br>
ic<br>
A<br>
er<br>
V<br>
m<br>
R<br>
A<br>
E<br>
thorN<br>
INT<br>
eum<br>
rolet<br>
Pis<br>
asO<br>
0'<br>
50'<br>
700'<br>
650'<br>
600'<br>
550'<br>
500'<br>
450'<br>
400'<br>
350'<br>
300'<br>
250'<br>
200'<br>
150'<br>
100'<br>
) t f (<br>
ess<br>
ckn<br>
i h<br>
T<br>
val<br>
er<br>
t<br>
n I<br>
<hr>
<A name=40></a>ffset<br>
fOo lls 815' 801' 817' 819' 828' 814' 854' 876' 836' 824' 818' 824' 823' 824' 824' 834' 834' 832' 834'<br>
e<br>
e<br>
W<br>
ag<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
verA<br>
44-<br>
e<br>
2R<br>
labl<br>
5301s<br>
805'<br>
780'<br>
827'<br>
827'<br>
831'<br>
811'<br>
844'<br>
863'<br>
837'<br>
819'<br>
808'<br>
826'<br>
826'<br>
825'<br>
825'<br>
830'<br>
829'<br>
831'<br>
835'<br>
833'<br>
:<br>
ai<br>
4T<br>
er<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
m<br>
m<br>
24<br>
10,<br>
av<br>
ro<br>
e<br>
alh<br>
F<br>
C<br>
ar<br>
N </span><span class="ft0">gin </span><span class="ft1">T<br>
):<br>
ops<br>
d<br>
s<br>
t<br>
IO<br>
E<br>
n<br>
1<br>
a<br>
rk<br>
um<br>
ion<br>
o<br>
s<br>
.26-<br>
tL<br>
at<br>
F<br>
o<br>
819'<br>
822'<br>
807'<br>
812'<br>
826'<br>
809'<br>
845'<br>
871'<br>
826'<br>
819'<br>
820'<br>
821'<br>
820'<br>
818'<br>
822'<br>
832'<br>
836'<br>
832'<br>
835'<br>
CT </span><span class="ft0">e<br>
e<br>
m<br>
Fos<br>
N<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
rg<br>
L<br>
re<br>
or<br>
E </span><span class="ft0">a<br>
h<br>
f<br>
rlin<br>
A<br>
e<br>
J </span><span class="ft0">T<br>
V<br>
d<br>
fT<br>
e<br>
o<br>
new<br>
O </span><span class="ft0">s<br>
p<br>
o<br>
as<br>
R </span><span class="ft0">p<br>
5<br>
to<br>
-3<br>
ro<br>
w<br>
P<br>
1<br>
P<br>
lo<br>
ig<br>
825'<br>
791'<br>
816'<br>
817'<br>
839'<br>
822'<br>
872'<br>
893'<br>
844'<br>
833'<br>
826'<br>
822'<br>
822'<br>
826'<br>
826'<br>
836'<br>
838'<br>
833'<br>
834'<br>
e<br>
hangec<br>
ndv<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
'b<br>
o<br>
0<br>
Li<br>
tt<br>
NG<br>
t(2<br>
ec<br>
e<br>
ubj<br>
DI<br>
rg<br>
31-<br>
a<br>
se<br>
Tg<br>
ar<br>
5300<br>
AN<br>
s<br>
s<br>
811'<br>
809'<br>
817'<br>
818'<br>
814'<br>
-<br>
-<br>
-<br>
-<br>
-<br>
-<br>
825'<br>
824'<br>
825'<br>
824'<br>
836'<br>
833'<br>
832'<br>
833'<br>
ind<br>
er<br>
19H<br>
L<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
10,<br>
n<br>
get<br>
m<br>
a<br>
al<br>
ar<br>
h<br>
t<br>
tL<br>
C<br>
n<br>
ng<br>
rre<br>
:<br>
u<br>
e<br>
e<br>
C<br>
Landi<br>
n<br>
t<br>
o<br>
al<br>
hal<br>
e<br>
t<br>
on<br>
one<br>
s<br>
ng<br>
al<br>
e<br>
en<br>
S<br>
en<br>
en<br>
n<br>
k<br>
/Z<br>
m<br>
tS<br>
Z<br>
k<br>
n<br>
k<br>
k<br>
n<br>
e<br>
or<br>
Li<br>
S<br>
any<br>
en<br>
A<br>
B<br>
D<br>
E<br>
F<br>
ak<br>
k<br>
ak<br>
ak<br>
o<br>
llio<br>
F<br>
les<br>
Las<br>
C<br>
tur<br>
B<br>
a<br>
B<br>
B<br>
Landi<br>
ti<br>
LP<br>
LP<br>
LP<br>
LP<br>
LP<br>
e<br>
c<br>
ak<br>
e<br>
ee<br>
a<br>
of<br>
er<br>
ibbey<br>
har<br>
e<br>
ion<br>
s<br>
ronghor<br>
s<br>
rac<br>
S<br>
B<br>
hr<br>
get<br>
K<br>
C<br>
Lodgepol<br>
P<br>
is<br>
F<br>
al<br>
iddl<br>
T<br>
ar<br>
rm<br>
as<br>
F<br>
M<br>
Low<br>
T<br>
o<br>
B<br>
M<br>
LP<br>
pper<br>
F<br>
U<br>
<hr>
<A name=41></a>-1<br>
26<br>
2R<br>
o.<br>
8T<br>
H<br>
N<br>
4T<br>
L<br>
-19<br>
-19<br>
A<br>
-24<br>
T<br>
21<br>
31<br>
44<br>
0<br>
0<br>
E<br>
1<br>
um<br>
530<br>
530<br>
35<br>
s<br>
530<br>
rs<br>
rs<br>
os<br>
rs<br>
e<br>
e<br>
1-<br>
F<br>
e<br>
m<br>
m<br>
ig<br>
m<br>
dv<br>
lin<br>
hal<br>
hal<br>
n<br>
er<br>
hal<br>
C<br>
C<br>
Li<br>
V<br>
C<br>
8T<br>
-19<br>
21<br>
5300<br>
T<br>
ser<br>
GE<br>
m<br>
R<br>
hal<br>
A<br>
C-<br>
TOT </span><span class="ft4">LLCa,<br>
H<br>
icer<br>
C<br>
m<br>
A<br>
Ath<br>
OP<br>
orN<br>
IS<br>
eum<br>
rolet<br>
Pis<br>
asO<br>
0'<br>
500'<br>
400'<br>
300'<br>
200'<br>
100'<br>
000'<br>
900'<br>
800'<br>
700'<br>
600'<br>
500'<br>
400'<br>
300'<br>
200'<br>
100'<br>
000'<br>
900'<br>
800'<br>
700'<br>
600'<br>
500'<br>
400'<br>
300'<br>
200'<br>
100'<br>
2,<br>
2,<br>
2,<br>
2,<br>
2,<br>
2,<br>
1,<br>
1,<br>
1,<br>
1,<br>
1,<br>
1,<br>
1,<br>
1,<br>
1,<br>
1,<br>
) t f (<br>
et<br>
g<br>
ar<br>
T<br>
o<br>
t<br>
ce<br>
an<br>
st<br>
i<br>
D<br>
<hr>
<A name=42></a>LITHOLOGY<br>
Oasis Petroleum North America, LLC<br>
Chalmers 5300 21-19 7T2<br>
Rig crews caught 100' sample intervals, under the supervision of Sunburst geologists, from 4,700' to 8,200', 30'<br>
intervals from 8,200', to the TD of the lateral at 20,519'. Formation tops and lithologic markers have been inserted<br>
into the sample descriptions below for reference. Sample descriptions begin in the Belle Fourche Formation prior<br>
to the Kibbey Lime. Samples were examined wet and dry under a binocular microscope. Sample fluorescent cuts<br>
are masked by invert mud through intermediate casing. Quantifiers in order of increasing abundance are trace,<br>
rare, occasional, common and abundant.<br>
Vertical Log Descriptions:<br>
MD / TVD (MSL Datum)<br>
Drilling in the Belle Fourche Formation [Cretaceous Colorado Group] ___<br>
_________________<br>
4,700-4,800<br>
SHALE: dark-medium gray, firm, sub blocky, earthy, calcareous, trace disseminated pyrite, no<br>
visible porosity, no visible oil stain<br>
4,800-4,900<br>
SHALE: dark-medium gray, firm, sub blocky, earthy, calcareous, trace disseminated pyrite, no<br>
visible porosity, no visible oil stain<br>
4,900-5,000<br>
SHALE: dark-medium gray, firm, sub blocky, earthy, calcareous, trace disseminated pyrite, no<br>
visible porosity, no visible oil stain<br>
Mowry Formation [Cretaceous Dakota Group]<br>
5,045'MD (-2,969')<br>
5,000-5,100<br>
SHALE: dark-medium gray, firm, sub blocky, earthy, calcareous, trace disseminated pyrite, no<br>
visible porosity, no visible oil stain<br>
5,100-5,200<br>
SHALE: dark-medium gray, firm, sub blocky, earthy, calcareous, trace disseminated pyrite, no<br>
visible porosity, no visible oil stain; rare SILTSTONE: light gray, friable, sub blocky, calcite cement moderately<br>
cemented<br>
5,200-5,300<br>
SHALE: dark-medium gray, firm, sub blocky, earthy, calcareous, trace disseminated pyrite, no<br>
visible porosity, no visible oil stain<br>
5,300-5,400<br>
SHALE: dark-medium gray, firm, sub blocky, earthy, calcareous, trace disseminated pyrite, no<br>
visible porosity, no visible oil stain<br>
Dakota Formation [Dakota Group]<br>
5,484' MD (-3,408')<br>
5,400-5,500<br>
SHALE: dark-medium gray, firm, sub blocky, earthy, calcareous, trace disseminated pyrite, no<br>
visible porosity, no visible oil stain; rare SILTY SANDSTONE: light gray, very fine grained, friable-loose, sub<br>
rounded, vitreous, moderately sorted, calcite cement moderately cemented<br>
5,500-5,600<br>
SILTSTONE: light gray, light brown, friable, sub blocky, calcite cement moderately cemented;<br>
rare SHALE: dark-medium gray, firm, sub blocky, earthy, calcareous, trace disseminated pyrite, no visible porosity,<br>
no visible oil stain<br>
<hr>
<A name=43></a>5,600-5,700<br>
SILTSTONE: light gray, light brown, friable, sub blocky, calcite cement moderately cemented;<br>
rare SHALE: dark-medium gray, firm, sub blocky, earthy, calcareous, trace disseminated pyrite, no visible porosity,<br>
no visible oil stain<br>
5,700-5,800<br>
SILTSTONE: light gray, light brown, friable, sub blocky, calcite cement moderately cemented;<br>
rare SHALE: dark-medium gray, firm, sub blocky, earthy, calcareous, trace disseminated pyrite, no visible porosity,<br>
no visible oil stain<br>
5,800-5,900<br>
SILTY SANDSTONE: light gray, very fine grained, friable-loose, sub rounded, vitreous,<br>
moderately sorted, calcite cement moderately cemented; rare SHALE: dark-medium gray, firm, sub blocky, earthy,<br>
calcareous, trace disseminated pyrite, no visible porosity, no visible oil stain<br>
Swift Formation [Jurassic]<br>
5,982' (-3,906')<br>
5,900-6,000<br>
SHALE: light blue-green, common medium gray-brown, firm, earthy, calcareous, common<br>
disseminated pyrite, no visible porosity, no visible oil stain<br>
6,000-6,100<br>
SHALE: light blue-green, common medium gray-brown, firm, earthy, calcareous, common<br>
disseminated pyrite, no visible porosity, no visible oil stain<br>
6,100-6,150<br>
SHALE: dark-medium gray, firm, sub blocky, earthy, calcareous, trace disseminated pyrite, no<br>
visible porosity, no visible oil stain<br>
6,150-6,200<br>
SHALE: dark-medium gray, firm, sub blocky, earthy, calcareous, trace disseminated pyrite, no<br>
visible porosity, no visible oil stain<br>
6,200-6,300<br>
SHALE: dark-medium gray, firm, sub blocky, earthy, calcareous, trace disseminated pyrite, no<br>
visible porosity, no visible oil stain; trace SILTY SANDSTONE: light gray, very fine grained, friable-loose, sub<br>
rounded, vitreous, moderately sorted, calcite cement moderately cemented<br>
6,300-6,400<br>
LIMESTONE: mudstone, off white, light gray, very fine crystalline, friable, dense, earthy,<br>
possible intercrystalline porosity, no visible oil stain; trace SHALE: dark-medium gray, firm, sub blocky, earthy,<br>
calcareous, trace disseminated pyrite, no visible porosity, no visible oil stain<br>
Rierdon Formation [Jurassic]<br>
6,485' MD / 6,484' TVD (-4,408')<br>
6,400-6,500<br>
LIMESTONE: mudstone, dark-medium gray-brown, very fine crystalline, friable, dense, earthy,<br>
possible intercrystalline porosity, no visible oil stain; trace SHALE: dark-medium gray, firm, sub blocky, earthy,<br>
calcareous, trace disseminated pyrite, no visible porosity, no visible oil stain<br>
6,500-6,600<br>
LIMESTONE: mudstone, off white, light gray, very fine crystalline, friable, dense, earthy,<br>
possible intercrystalline porosity, no visible oil stain; trace SHALE: dark-medium gray, firm, sub blocky, earthy,<br>
calcareous, trace disseminated pyrite, no visible porosity, no visible oil stain<br>
6,600-6,700<br>
LIMESTONE: mudstone, off white, light gray, very fine crystalline, friable, dense, earthy,<br>
possible intercrystalline porosity, no visible oil stain; trace SHALE: dark-medium gray, firm, sub blocky, earthy,<br>
calcareous, trace disseminated pyrite, no visible porosity, no visible oil stain<br>
6,700-6,800<br>
LIMESTONE: mudstone, off white, light gray, very fine crystalline, friable, dense, earthy,<br>
possible intercrystalline porosity, no visible oil stain; trace SHALE: dark-medium gray, firm, sub blocky, earthy,<br>
calcareous, trace disseminated pyrite, no visible porosity, no visible oil stain<br>
<hr>
<A name=44></a>6,800-6,900<br>
ANHYDRITE: milky white, microcrystalline, soft-friable, massive, amorphous, no visible<br>
porosity, no visible oil stain; occasional LIMESTONE: mudstone, light gray-cream, microcrystalline, friable-firm,<br>
dense, earthy-chalky, no visible porosity, no visible oil stain<br>
Dunham Salt Member [Piper Formation]<br>
6,901' MD / 6,900' TVD (-4,824')<br>
Dunham Salt Base [Piper Formation]<br>
6,916' MD / 6,915' TVD (-4,839')<br>
6,900-7,000<br>
LIMESTONE: mudstone, off white, light gray, very fine crystalline, friable, dense, earthy,<br>
possible intercrystalline porosity, no visible oil stain; rare SHALE: dark-medium gray, firm, sub blocky, earthy,<br>
calcareous, trace disseminated pyrite, no visible porosity, no visible oil stain<br>
7,000-7,100<br>
SILTSTONE: orange-red brown, friable, sub blocky, calcareous cement moderately cemented,<br>
possible intergranular porosity, no visible oil stain; ANHYDRITE: milky white, microcrystalline, soft-friable,<br>
massive, amorphous, no visible porosity, no visible oil stain<br>
7,100-7,200<br>
SILTSTONE: orange-red brown, friable, sub blocky, calcareous cement moderately cemented,<br>
possible intergranular porosity, no visible oil stain; ANHYDRITE: milky white, microcrystalline, soft-friable,<br>
massive, amorphous, no visible porosity, no visible oil stain<br>
Pine Salt Member [Spearfish Formation]<br>
7,266' MD / 7,265' TVD (-5,189')<br>
Pine Salt Base [Spearfish Formation]<br>
7,296' MD / 7,295' TVD (-5,219')<br>
7,200-7,300<br>
SALT: translucent, milky, microcrystalline, hard, massive, crystalline texture; SILTSTONE:<br>
orange-red brown, friable-firm, sub blocky, calcareous cement moderately cemented, possible intergranular<br>
porosity, no visible oil stain; ANHYDRITE: milky white, microcrystalline, soft-friable, massive, amorphous, no<br>
visible porosity, no visible oil stain<br>
7,300-7,400<br>
SALT: translucent, milky, microcrystalline, hard, massive, crystalline texture; SILTSTONE:<br>
orange-red brown, friable, sub blocky, calcareous cement moderately cemented, possible intergranular porosity, no<br>
visible oil stain<br>
Opeche Salt Member [Opeche Formation]<br>
7,371' MD / 7,370' TVD (-5,294')<br>
7,300-7,400<br>
SALT: translucent, milky, microcrystalline, hard, massive, crystalline texture; SILTSTONE:<br>
orange-red brown, friable, sub blocky, calcareous cement moderately cemented, possible intergranular porosity, no<br>
visible oil stain<br>
Opeche Salt Base [Opeche Formation]<br>
7,427' MD / 7,426' TVD (-5,350')<br>
7,400-7,500<br>
SILTSTONE: orange-red brown, friable-firm, sub blocky, calcareous cement moderately<br>
cemented, trace clear quartz grains, possible intergranular porosity, no visible oil stain; trace SALT: translucent,<br>
milky, microcrystalline, hard, massive, crystalline texture<br>
7,500-7,600<br>
SILTSTONE: orange-red brown, friable-firm, sub blocky, calcareous cement moderately<br>
cemented, trace clear quartz grains, possible intergranular porosity, no visible oil stain; ANHYDRITE: milky white,<br>
microcrystalline, soft-friable, massive, amorphous, no visible porosity, no visible oil stain<br>
Amsden Formation [Pennsylvanian Minnelusa Group]<br>
7,670' MD / 7,669' TVD (-5,593')<br>
<hr>
<A name=45></a>7,600-7,700<br>
DOLOMITE: mudstone, light pink-off white, trace red, microcrystalline, soft-friable, laminated,<br>
crystalline-micro sucrosic, calcareous, no visible porosity, no visible oil stain<br>
7,700-7,800<br>
DOLOMITE: mudstone, light pink-off white, trace red, microcrystalline, soft-friable, laminated,<br>
crystalline-micro sucrosic, calcareous, no visible porosity, no visible oil stain: occasional SILTSTONE: orange-red<br>
brown, friable-firm, sub blocky, calcareous cement moderately cemented, trace clear quartz grains, possible<br>
intergranular porosity, no visible oil stain; rare SHALE: dark gray, friable, sub blocky, earthy no visible porosity, no<br>
visible oil stain<br>
Tyler Formation [Pennsylvanian Minnelusa Group]<br>
7,838' MD / 7,837' TVD (-5,761')<br>
7,800-7,900<br>
SHALE: dark gray, friable, sub blocky, earthy, no visible porosity, no visible oil stain; rare<br>
SILTSTONE: orange-red brown, friable-firm, sub blocky, calcareous cement moderately cemented, trace clear<br>
quartz grains, possible intergranular porosity, no visible oil stain<br>
7,900-8,000<br>
SHALE: dark gray, friable, sub blocky, earthy, no visible porosity, no visible oil stain; rare<br>
SILTSTONE: orange-red brown, friable-firm, sub blocky, calcareous cement moderately cemented, trace clear<br>
quartz grains, possible intergranular porosity, no visible oil stain<br>
Otter [Mississippian Big Snowy Group]<br>
8,041' MD / 8,040' TVD (-5,964')<br>
8,000-8,100<br>
SHALE: dark gray, firm, sub blocky, earthy no visible porosity, no visible oil stain; rare<br>
SILTSTONE: orange-red brown, friable-firm, sub blocky, calcareous cement moderately cemented, trace clear<br>
quartz grains, possible intergranular porosity, no visible oil stain<br>
8,100-8,200<br>
SHALE: light gray-gray, red gray, friable, sub blocky, earthy, no visible porosity, no visible oil<br>
stain; LIMESTONE: mudstone-wackestone, light gray, microcrystalline, friable, dense, earthy, no visible porosity,<br>
no visible oil stain<br>
8,200-8,240<br>
LIMESTONE: mudstone-wackestone, light gray, microcrystalline, friable, dense, earthy, no<br>
visible porosity, no visible oil stain; common SILTSTONE: orange-red brown, friable-firm, sub blocky, calcareous<br>
cement moderately cemented, trace clear quartz grains, possible intergranular porosity, no visible oil stain<br>
8,240-8,270<br>
LIMESTONE: mudstone-wackestone, light gray, microcrystalline, friable, dense, earthy, no<br>
visible porosity, no visible oil stain; common SILTSTONE: orange-red brown, friable-firm, sub blocky, calcareous<br>
cement moderately cemented, trace clear quartz grains, possible intergranular porosity, no visible oil stain<br>
8,270-8,300<br>
SILTSTONE: orange-red brown, friable-firm, sub blocky, calcareous cement moderately<br>
cemented, trace clear quartz grains, possible intergranular porosity, no visible oil stain; rare SHALE: dark gray,<br>
firm, sub blocky, earthy no visible porosity, no visible oil stain<br>
8,300-8,330<br>
SILTSTONE: orange-red brown, friable-firm, sub blocky, calcareous cement moderately<br>
cemented, trace clear quartz grains, possible intergranular porosity, no visible oil stain; rare SHALE: dark gray,<br>
firm, sub blocky, earthy no visible porosity, no visible oil stain<br>
8,330-8,360<br>
SILTSTONE: dark orange-light brown, tan, soft, sub blocky, calcite cement, poorly cemented;<br>
rare ANHYDRITE: off white, soft, amorphous texture; trace SILTY SANDSTONE: tan-off white, very fine<br>
grained, sub rounded, moderately sorted, calcite cement, poorly cemented<br>
Kibbey Lime [Kibbey Formation Mississippian Big Snowy Group]<br>
8,387' MD / 8,386' TVD (-6,310')<br>
8,360-8,390<br>
ANHYDRITE: off white, soft, amorphous texture; rare SILTSTONE: dark orange-light brown,<br>
tan, pink, soft, sub blocky, calcite cement, poorly cemented, no visible porosity<br>
<hr>
<A name=46></a>8,390-8,420<br>
LIMESTONE: mudstone, light-medium gray-gray brown, micro crystalline, firm-hard,<br>
argillaceous in part, dense, chalky texture, no visible porosity; rare ANHYDRITE: off white, soft, amorphous<br>
texture; trace SILTSTONE: dark orange-light brown, tan, pink, soft, sub blocky, calcite cement, poorly cemented<br>
8,420-8,450<br>
SILTSTONE: dark orange-light brown, tan, pink, soft, sub blocky, calcite cement, poorly cement;<br>
trace SILTY SANDSTONE: tan-off white, very fine grained, sub rounded, moderately sorted, calcite cement, poorly<br>
cemented<br>
8,450-8,480<br>
SILTSTONE: dark orange-light brown, tan, pink, soft, sub blocky, calcite cement, poorly cement;<br>
trace SILTY SANDSTONE: tan-off white, very fine grained, sub rounded, moderately sorted, calcite cement, poorly<br>
cemented<br>
8,480-8,510<br>
SILTSTONE: dark orange-light brown, tan, soft, sub blocky, calcite cement, poorly cement; trace<br>
SILTY SANDSTONE: tan-off white, very fine grained, sub rounded, moderately sorted, calcite cement, poorly<br>
cemented<br>
Charles Formation [Mississippian Madison Group]<br>
8,534' MD / 8,533' TVD (-6,457')<br>
8,510-8,540<br>
SALT: clear-translucent, rarely frosted, crystalline, firm, euhedral, crystalline; trace<br>
LIMESTONE: mudstone, off white, gray, rare tan, fine crystalline, firm, laminated, crystalline-chalky texture, no<br>
visible porosity, no visible oil stain; trace SILTSTONE and SILTY SANDSTONE: as above<br>
8,540-8,570<br>
SALT: clear-translucent, rarely frosted, crystalline, firm, euhedral, crystalline; trace<br>
ARGILLACEOUS LIMESTONE: mudstone-wackestone, light-medium brown, tan, rare light-medium gray, rare<br>
gray tan, micro crystalline, friable, earthy<br>
8,570-8,600<br>
SALT: clear-translucent, rarely frosted, crystalline, firm, euhedral, crystalline<br>
8,600-8,630<br>
SALT: clear-translucent, rarely frosted, crystalline, firm, euhedral, crystalline<br>
8,630-8,660<br>
SALT: clear-translucent, rarely frosted, crystalline, firm, euhedral, crystalline<br>
8,660-8,690<br>
SALT: clear-translucent, rarely frosted, crystalline, firm, euhedral, crystalline<br>
8,690-8,720<br>
ANHYDRITE: off white, soft, amorphous texture; occasional ARGILLACEOUS LIMESTONE:<br>
mudstone-wackestone, light-medium brown, tan, rare light-medium gray, rare gray tan, micro crystalline, friable,<br>
earthy<br>
8,720-8,750<br>
ARGILLACEOUS LIMESTONE: mudstone-wackestone, light-medium brown, tan, rare light-<br>
medium gray, rare gray tan, micro crystalline, friable, earthy; rare SALT: as above; trace ANHYDRITE: off white,<br>
soft, amorphous texture<br>
8,750-8,780<br>
SALT: as above; occasional LIMESTONE: mudstone, gray, off white, rare cream-tan, very fine<br>
crystalline, firm, laminated, crystalline-chalky texture, possible intercrystalline porosity, no visible oil stain<br>
8,780-8,810<br>
SALT: as above; occasional LIMESTONE: mudstone, gray, off white, rare cream-tan, very fine<br>
crystalline, firm, laminated, crystalline-chalky texture, possible intercrystalline porosity, no visible oil stain<br>
8,810-8,840<br>
LIMESTONE: mudstone-wackestone, tan, cream, light brown, very fine crystalline, firm,<br>
laminated, crystalline, rare intercrystalline porosity, occasional even-spotty light-medium brown oil stain; trace<br>
DOLOMITE: medium-light brown, micro crystalline, firm, crystalline, occasional intercrystalline porosity, common<br>
medium-light brown even oil stain; trace: ANHYDRITE: off white, cream, soft, micro crystalline, anhedral, earthy<br>
<hr>
<A name=47></a>8,840-8,870<br>
SALT: clear-translucent, rarely frosted, crystalline, firm, euhedral, crystalline<br>
8,870-8,900<br>
ANHYDRITE: off white, cream, soft, microcrystalline, anhedral, earthy; rare LIMESTONE:<br>
mudstone-wackestone, tan, cream, light brown, very fine crystalline, firm, laminated, crystalline, rare<br>
intercrystalline porosity, occasional spotty light-medium brown oil stain; trace SALT: as above<br>
8,900-8,930<br>
LIMESTONE: mudstone, light brown, light gray brown, off white, microcrystalline, friable,<br>
laminated, earthy, trace intercrystalline porosity, rare even-spotty light-medium brown oil stain; common<br>
DOLOMITE: mudstone, light brown, light gray brown, microcrystalline, friable-firm, laminated, earthy trace<br>
intercrystalline porosity, occasional even-spotty light-medium brown oil stain; trace ANHYDRITE: off white,<br>
cream-light orange, soft, microcrystalline, anhedral, earthy<br>
8,930-8,960<br>
LIMESTONE: mudstone, light brown, light gray brown, off white, microcrystalline, friable,<br>
laminated, earthy, trace intercrystalline porosity, rare even-spotty light-medium brown oil stain; common<br>
DOLOMITE: mudstone, light brown, light gray brown, microcrystalline, friable-firm, laminated, earthy trace<br>
intercrystalline porosity, occasional even-spotty light-medium brown oil stain; trace ANHYDRITE: off white,<br>
cream, soft, microcrystalline, anhedral, earthy<br>
8,960-8,990<br>
LIMESTONE: mudstone, light brown, light gray brown, off white, microcrystalline, friable,<br>
laminated, earthy, trace intercrystalline porosity, rare even-spotty light-medium brown oil stain; common<br>
DOLOMITE: mudstone, light brown, light gray brown, microcrystalline, friable-firm, laminated, earthy trace<br>
intercrystalline porosity, occasional even-spotty light-medium brown oil stain; trace ANHYDRITE: off white,<br>
cream, soft, microcrystalline, anhedral, earthy<br>
8,990-9,020<br>
SALT: clear-translucent, rarely frosted, crystalline, firm, euhedral, crystalline<br>
9,020-9,050<br>
ANHYDRITE: off white, cream-light orange, soft, microcrystalline, anhedral, earthy; occasional<br>
DOLOMITE: mudstone, light brown, light gray brown, microcrystalline, friable-firm, laminated, earthy trace<br>
intercrystalline porosity, occasional spotty light-medium brown oil stain; trace SALT: as above<br>
9,050-9,080<br>
ANHYDRITE: off white, cream, soft, microcrystalline, massive, earthy-amorphous; occasional<br>
DOLOMITE: mudstone, light brown, light gray brown, microcrystalline, friable-firm, laminated, earthy trace<br>
intercrystalline porosity, occasional spotty light-medium brown oil stain; rare LIMESTONE: mudstone, light brown,<br>
light gray brown, off white, microcrystalline, friable, laminated, earthy, trace intercrystalline porosity, trace spotty<br>
light-medium brown oil stain<br>
9,080-9,110<br>
LIMESTONE: mudstone, light brown, light gray brown, off white, microcrystalline, friable,<br>
laminated, earthy, trace intercrystalline porosity, rare spotty light brown oil stain; occasional DOLOMITE:<br>
mudstone, light brown, light gray brown, microcrystalline, friable-firm, laminated, earthy trace intercrystalline<br>
porosity, occasional spotty light brown oil stain<br>
9,110-9,140<br>
LIMESTONE: mudstone, light brown, light gray brown, off white, microcrystalline, friable,<br>
laminated, earthy, trace intercrystalline porosity, rare spotty light brown oil stain; occasional DOLOMITE:<br>
mudstone, light brown, light gray brown, microcrystalline, friable-firm, laminated, earthy trace intercrystalline<br>
porosity, occasional spotty light brown oil stain; rare ANHYDRITE: off white, cream, soft, microcrystalline,<br>
massive, earthy-amorphous<br>
9,140-9,170<br>
LIMESTONE: mudstone, light brown, light gray brown, off white, microcrystalline, friable,<br>
laminated, earthy, trace intercrystalline porosity, trace spotty light brown oil stain; occasional DOLOMITE:<br>
mudstone, light brown, light gray brown, microcrystalline, friable-firm, laminated, earthy trace intercrystalline<br>
porosity, trace spotty light brown oil stain; rare ANHYDRITE: off white, cream, soft, microcrystalline, massive,<br>
earthy-amorphous<br>
<hr>
<A name=48></a>9,170-9,200<br>
SALT: clear-translucent, rarely frosted, crystalline, firm, euhedral, crystalline<br>
Base Last Salt [Charles Formation]<br>
9,210' MD / 9,209' TVD (-7,133')<br>
9,200-9,230<br>
ANHYDRITE: off white, cream, soft, microcrystalline, massive, earthy-amorphous; DOLOMITE:<br>
mudstone, light brown, light gray brown, rare light gray, microcrystalline, friable-firm, laminated, earthy trace<br>
intercrystalline porosity, occasional spotty light brown oil stain<br>
9,230-9,260<br>
ANHYDRITE: off white, cream, soft, microcrystalline, massive, earthy-amorphous; DOLOMITE:<br>
mudstone, light brown, light gray brown, rare light gray, microcrystalline, friable-firm, laminated, earthy trace<br>
intercrystalline porosity, occasional spotty light brown oil stain<br>
9,260-9,290<br>
DOLOMITE: mudstone, light brown, light gray, light gray brown, microcrystalline, friable-firm,<br>
laminated, earthy trace intercrystalline porosity, occasional spotty light brown oil stain; ANHYDRITE: off white,<br>
cream, soft, microcrystalline, massive, earthy-amorphous<br>
9,290-9,320<br>
LIMESTONE: mudstone, light brown-brown, microcrystalline, firm, earthy-crystalline texture,<br>
trace intercrystalline porosity, trace spotty light brown oil stain; rare ANHYDRITE: off white, cream, soft,<br>
microcrystalline, massive, earthy-amorphous<br>
9,320-9,350<br>
LIMESTONE: mudstone, light gray, light gray brown, rare light brown, firm, earthy-crystalline<br>
texture, trace intercrystalline porosity, trace disseminated pyrite, trace spotty light brown oil stain; trace<br>
ANHYDRITE: off white, cream, soft, microcrystalline, massive, earthy-amorphous<br>
9,350-9,380<br>
LIMESTONE: mudstone, gray-light gray, gray brown, rare light brown, firm-friable, earthy-<br>
crystalline texture, trace intercrystalline porosity, trace disseminated pyrite, no visible oil stain; trace ANHYDRITE:<br>
off white, cream, soft, microcrystalline, massive, earthy-amorphous<br>
9,380-9,410<br>
LIMESTONE: mudstone, gray-light gray, gray brown, rare light brown, firm-friable, earthy-<br>
crystalline texture, trace intercrystalline porosity, trace disseminated pyrite, no visible oil stain; trace ANHYDRITE:<br>
off white, cream, soft, microcrystalline, massive, earthy-amorphous<br>
9,410-9,440<br>
LIMESTONE: mudstone, light brown-off white, light gray brown, trace gray, firm-friable, earthy-<br>
crystalline texture, possible intercrystalline porosity, trace disseminated pyrite, argillaceous in part, no visible oil<br>
stain; trace ANHYDRITE: off white, cream, soft, microcrystalline, massive, earthy-amorphous<br>
Mission Canyon Formation [Mississippian Madison Group]<br>
9,431' MD / 9,430' TVD (-7,354')<br>
9,440-9,470<br>
LIMESTONE: mudstone, light brown-brown, gray brown, trace gray, firm-friable, earthy-<br>
crystalline texture, trace disseminated pyrite, possible intercrystalline porosity, trace spotty light brown oil stain;<br>
trace ANHYDRITE: off white, cream, soft, microcrystalline, massive, earthy-amorphous<br>
9,470-9,500<br>
LIMESTONE: mudstone, light gray, light brown, gray brown, trace dark gray, firm-friable, earthy,<br>
rarely crystalline texture, trace disseminated pyrite, trace fossil fragments, trace spotty light brown oil stain<br>
9,500-9,530<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray, occasional medium gray, rare gray tan,<br>
rare off white, trace dark gray, firm-friable, crystalline-chalky texture, trace disseminated pyrite, possible<br>
intercrystalline porosity, trace light brown spotty oil stain<br>
9,530-9,560<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray, occasional medium gray, rare gray tan,<br>
rare off white, trace dark gray, firm-friable, crystalline-chalky texture, trace disseminated pyrite, no visible porosity,<br>
no visible oil stain; LIMESTONE: mudstone, light-gray, rare off white, trace dark gray, trace brown, friable-firm,<br>
dense, earthy, possible intercrystalline porosity, trace light brown spotty oil stain<br>
<hr>
<A name=49></a>9,560-9,590<br>
LIMESTONE: mudstone, light gray, light brown, gray brown, trace dark gray, firm-friable, earthy,<br>
rarely crystalline texture, trace disseminated pyrite, trace fossil fragments, trace spotty light brown oil stain<br>
9,590-9,620<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray, occasional medium gray, rare gray tan,<br>
rare off white, trace dark gray, firm-friable, crystalline-chalky texture, trace disseminated pyrite, trace fossil<br>
fragments, trace light brown spotty oil stain<br>
9,620-9,650<br>
LIMESTONE: mudstone, light gray, light brown, gray brown, trace dark gray, firm-friable, earthy,<br>
rarely crystalline texture, trace disseminated pyrite, trace fossil fragments, trace spotty light brown oil stain<br>
9,650-9,680<br>
LIMESTONE: mudstone, light gray, light brown, gray brown, trace dark gray, firm-friable, earthy,<br>
rarely crystalline texture, trace disseminated pyrite, trace fossil fragments, trace spotty light brown oil stain<br>
9,680-9,710<br>
LIMESTONE: mudstone, gray-brown, trace dark gray, firm-friable, earthy, rarely crystalline<br>
texture, trace disseminated pyrite, trace fossil fragments, trace spotty light brown oil stain<br>
9,710-9,740<br>
LIMESTONE: mudstone, light gray-brown, trace dark gray, firm-friable, earthy, rarely crystalline<br>
texture, trace disseminated pyrite, trace fossil fragments, trace spotty light brown oil stain<br>
9,740-9,770<br>
LIMESTONE: mudstone, light gray-brown, trace dark gray, firm-friable, earthy, rarely crystalline<br>
texture, trace disseminated pyrite, trace fossil fragments, trace spotty light brown oil stain<br>
9,770-9,800<br>
LIMESTONE: mudstone, light gray-brown, trace dark gray, firm-friable, earthy, rarely crystalline<br>
texture, trace disseminated pyrite, trace fossil fragments, trace spotty light brown oil stain<br>
9,800-9,830<br>
DOLOMITE: tan-light brown gray, off white, microcrystalline to fine crystalline, rare<br>
intercrystalline porosity, argillaceous in part, trace light brown spotty oil stain; rare LIMESTONE: mudstone,<br>
cream-tan, gray, trace off white, micro crystalline, friable-firm, dense, massive, trace laminated, occasional Algal<br>
laminated, earthy, trace calcite, trace pyrite, no visible porosity, trace dead oil stain<br>
9,830-9,860<br>
LIMESTONE: mudstone, light gray-brown, trace dark gray, firm-friable, earthy, rarely crystalline<br>
texture, trace disseminated pyrite, trace fossil fragments, trace spotty light brown oil stain<br>
9,860-9,890<br>
LIMESTONE: mudstone, light gray-brown, trace dark gray, firm-friable, earthy, rarely crystalline<br>
texture, trace disseminated pyrite, trace fossil fragments, trace spotty light brown oil stain<br>
9,890-9,920<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray, occasional medium gray, rare gray tan,<br>
rare off white, trace dark gray, firm-friable, crystalline-chalky texture, trace disseminated pyrite, no visible porosity,<br>
no visible oil stain; LIMESTONE: mudstone, light-gray, rare off white, trace dark gray, trace brown, friable-firm,<br>
dense, earthy, possible intercrystalline porosity, trace light brown spotty oil stain<br>
9,920-9,950<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray, occasional medium gray, rare gray tan,<br>
rare off white, trace dark gray, firm-friable, crystalline-chalky texture, trace disseminated pyrite, no visible porosity,<br>
no visible oil stain; LIMESTONE: mudstone, light-gray, rare off white, trace dark gray, trace brown, friable-firm,<br>
dense, earthy<br>
9,950-9,980<br>
LIMESTONE: mudstone, light gray-brown, trace dark gray, firm-friable, earthy, rarely crystalline<br>
texture, trace disseminated pyrite, trace fossil fragments, no visible porosity, no visible oil stain<br>
Lodgepole Formation [Mississippian Madison Group]<br>
9,993' MD / 9,992' TVD (-7,916')<br>
<hr>
<A name=50></a>9,980-10,010<br>
LIMESTONE: mudstone, light gray-brown, trace dark gray, firm-friable, earthy, rarely crystalline<br>
texture, trace disseminated pyrite, trace fossil fragments, no visible porosity, no visible oil stain<br>
10,010-10,040<br>
LIMESTONE: mudstones, light gray-brown, trace dark gray, firm-friable, earthy, rarely<br>
crystalline texture, trace disseminated pyrite, no visible porosity, no visible oil stain<br>
10,040-10,070<br>
LIMESTONE: mudstone, light gray-gray, gray brown, trace light brown, firm-friable, earthy,<br>
rarely crystalline texture, trace disseminated pyrite, no visible porosity, no visible oil stain<br>
10,070-10,100<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray-gray, gray brown, trace light brown, firm-<br>
friable, earthy, rarely crystalline texture, trace disseminated pyrite, no visible porosity, no visible oil stain<br>
10,100-10,130<br>
LIMESTONE: mudstone, light gray-gray, gray brown, trace light brown, firm-friable, earthy,<br>
rarely crystalline texture, trace disseminated pyrite, no visible porosity, no visible oil stain<br>
10,130-10,160<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray-gray, gray brown, trace light brown, firm-<br>
friable, earthy, rarely crystalline texture, trace disseminated pyrite, no visible porosity, no visible oil stain<br>
10,160-10,190<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray-gray, gray brown, trace light brown, firm-<br>
friable, earthy, rarely crystalline texture, trace disseminated pyrite, no visible porosity, no visible oil stain<br>
10,190-10,220<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray-gray, gray brown, trace light brown, firm-<br>
friable, earthy, rarely crystalline texture, trace disseminated pyrite, no visible porosity, no visible oil stain<br>
10,220-10,250<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray-gray, gray brown, trace light brown, firm-<br>
friable, earthy, rarely crystalline texture, trace disseminated pyrite, no visible porosity, no visible oil stain<br>
10,250-10,280<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray-gray, gray brown, trace light brown, firm-<br>
friable, earthy, rarely crystalline texture, trace disseminated pyrite, no visible porosity, no visible oil stain<br>
10,280-10,310<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray-gray, gray brown, trace light brown, firm-<br>
friable, earthy, rarely crystalline texture, trace disseminated pyrite, no visible porosity, no visible oil stain<br>
10,310-10,340<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray-gray, gray brown, trace light brown, firm-<br>
friable, earthy, rarely crystalline texture, trace disseminated pyrite<br>
10,340-10,370<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray-gray, gray brown, trace light brown, firm-<br>
friable, earthy, rarely crystalline texture, trace disseminated pyrite<br>
10,370-10,400<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray-gray, gray brown, trace light brown, firm-<br>
friable, earthy, rarely crystalline texture, trace disseminated pyrite<br>
10,400-10,430<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray-gray, gray brown, trace light brown, firm-<br>
friable, earthy-crystalline texture, trace disseminated pyrite<br>
10,430-10,460<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray-gray, gray brown, trace light brown, firm-<br>
friable, earthy-crystalline texture, trace disseminated pyrite<br>
<hr>
<A name=51></a>10,460-10,490<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray-gray, gray brown, trace light brown, firm-<br>
friable, earthy-crystalline texture, trace disseminated pyrite<br>
10,490-10,520<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray-gray, gray brown, trace light brown, firm-<br>
friable, earthy-crystalline texture, trace disseminated pyrite<br>
10,520-10,550<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray-gray, gray brown, trace light brown, firm-<br>
friable, earthy-crystalline texture, trace disseminated pyrite<br>
10,550-10,580<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray-gray, gray brown, trace light brown, firm-<br>
friable, earthy-crystalline texture, trace disseminated pyrite<br>
10,580-10,610<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray-gray, gray brown, trace light brown, firm-<br>
friable, earthy-crystalline texture, trace disseminated pyrite<br>
10,610-10,640<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray-gray, gray brown, trace light brown, firm-<br>
friable, earthy-crystalline texture, trace disseminated pyrite<br>
10,640-10,670<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray-gray, gray brown, trace light brown, firm-<br>
friable, earthy-crystalline texture, trace disseminated pyrite<br>
10,670-10,700<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray-gray, gray brown, trace light brown, firm-<br>
friable, earthy- crystalline texture, trace disseminated pyrite<br>
10,700-10,730<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray-gray, gray brown, trace light brown, firm-<br>
friable, earthy-crystalline texture, trace disseminated pyrite<br>
10,730-10,760<br>
ARGILLACEOUS LIMESTONE: mudstone, light gray-gray, gray brown, trace light brown, firm-<br>
friable, earthy- crystalline texture, trace disseminated pyrite<br>
False Bakken Member [Lodgepole Formation]<br>
10,766' MD / 10,713' TVD (-8,637')<br>
10,760-10,790<br>
SHALE: black, black gray, hard, splintery, smooth, pyritic, carbonaceous, fracture porosity; trace<br>
LIMESTONE: as above<br>
Scallion [Lodgepole Formation]<br>
10,770' MD / 10,716' TVD (-8,640')<br>
10,760-10,790<br>
SHALE: black, black gray, hard, splintery, smooth, pyritic, carbonaceous, fracture porosity; trace<br>
LIMESTONE: as above<br>
Upper Bakken Shale [Bakken Formation]<br>
10,782' MD / 10,723' TVD (-8,647')<br>
10,760-10,790<br>
SHALE: black, black gray, hard, splintery, smooth, pyritic, carbonaceous, fracture porosity; trace<br>
LIMESTONE: as above<br>
Middle Bakken Member [Bakken Formation]<br>
10,808' MD / 10,739' TVD (-8,663')<br>
<hr>
<A name=52></a>10,790-10,820<br>
SILTY SANDSTONE: light gray brown, light brown, trace light gray, very fine grained, friable<br>
sub rounded, smooth, moderately sorted, calcite cement moderately cemented, trace disseminated and nodular<br>
pyrite, fair intercrystalline porosity, occasional light brown spotty oil stain<br>
10,820-10,850<br>
SILTY SANDSTONE: light gray brown, light brown, trace light gray, very fine grained, friable<br>
sub rounded, smooth, moderately sorted, calcite cement moderately cemented, trace disseminated and nodular<br>
pyrite, fair intercrystalline porosity, occasional light brown spotty oil stain<br>
10,850-10,880<br>
SILTY SANDSTONE: light gray brown, light brown, trace light gray, very fine grained, friable<br>
sub rounded, smooth, moderately sorted, calcite cement moderately cemented, trace disseminated and nodular<br>
pyrite, fair intercrystalline porosity, occasional light brown spotty oil stain<br>
Lower Bakken Shale [Bakken Formation]<br>
10,892' MD / 10,784' TVD (-8,708')<br>
10,880-10,910<br>
SHALE: black, black gray, hard, splintery, smooth, pyritic, carbonaceous, fracture porosity; trace<br>
SILTY SANDSTONE: light gray brown, light brown, trace light gray, very fine grained, friable sub rounded,<br>
smooth, moderately sorted, calcite cement moderately cemented, trace disseminated and nodular pyrite, fair<br>
intercrystalline porosity, occasional light brown spotty oil stain<br>
Pronghorn [Bakken Formation]<br>
10,918' MD / 10,795' TVD (-8,719')<br>
10,910-10,940<br>
SILTSTONE: dark gray, trace gray black, friable-firm, sub blocky-sub splintery, moderately<br>
dolomite cemented, trace disseminated and nodular pyrite, trace spotty light brown oil stain<br>
10,940-10,970<br>
SILTSTONE: dark gray, trace gray black, friable-firm, sub blocky-sub splintery, moderately<br>
dolomite cemented, trace disseminated and nodular pyrite, trace spotty light brown oil stain; common DOLOMITE:<br>
mudstone, light brown-gray, tan-cream, trace pink, firm, laminated, micro sucrosic, rare disseminated pyrite,<br>
possible intercrystalline porosity, trace light brown spotty oil stain; rare SHALE: light green-light gray green, firm,<br>
sub blocky, earthy, occasional disseminated pyrite, possible intergranular porosity, no visible oil stain<br>
Three Forks [Devonian]<br>
10,973' MD / 10,813' TVD (-8,737')<br>
10,970-11,000<br>
DOLOMITE: mudstone, light brown-light brown gray, tan-cream, trace pink, firm, laminated,<br>
micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light brown spotty oil stain; rare<br>
SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain<br>
11,000-11,030<br>
DOLOMITE: mudstone, light brown-light brown gray, tan-cream, trace pink, firm, laminated,<br>
micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light brown spotty oil stain; rare<br>
SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain<br>
11,030-11,060<br>
DOLOMITE: mudstone, light brown-light brown gray, tan-cream, trace pink, firm, laminated,<br>
micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light brown spotty oil stain; rare<br>
SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain<br>
<hr>
<A name=53></a>11,060-11,090<br>
DOLOMITE: mudstone, light brown-light brown gray, tan-cream, trace pink, firm, laminated,<br>
micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light brown spotty oil stain; rare<br>
SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain<br>
11,090-11,120<br>
DOLOMITE: mudstone, light brown-light brown gray, tan-cream, trace pink, firm, laminated,<br>
micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light brown spotty oil stain; rare<br>
SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain<br>
11,120-11,150<br>
DOLOMITE: mudstone, light brown-light brown gray, tan-cream, trace pink, firm, laminated,<br>
micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light brown spotty oil stain; rare<br>
SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain<br>
11,150-11,185<br>
DOLOMITE: mudstone, light brown-light brown gray, tan-cream, trace pink, firm, laminated,<br>
micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light brown spotty oil stain; rare<br>
SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain<br>
11,185-11,210<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown,<br>
microcrystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace<br>
light brown spotty oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional<br>
disseminated pyrite, possible intergranular porosity, no visible oil stain<br>
11,210-11,240<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light<br>
brown spotty oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
11,240-11,270<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light<br>
brown spotty oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
11,270-11,300<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light<br>
brown spotty oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
11,300-11,330<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light<br>
brown spotty oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
11,330-11,360<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light<br>
<hr>
<A name=54></a>brown spotty oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
11,360-11,390<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light<br>
brown spotty oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
11,390-11,420<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light<br>
brown spotty oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
11,420-11,450<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light<br>
brown spotty oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
11,450-11,480<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light<br>
brown spotty oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
11,480-11,510<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light<br>
brown spotty oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
11,510-11,540<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light<br>
brown spotty oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
11,540-11,570<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light<br>
brown spotty oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
11,570-11,600<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light<br>
brown spotty oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
11,600-11,630<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light<br>
brown spotty oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
<hr>
<A name=55></a>11,630-11,660<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light<br>
brown spotty oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
11,660-11,690<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light<br>
brown spotty oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
11,690-11,720<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light<br>
brown spotty oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
11,720-11,750<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light<br>
brown spotty oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
11,750-11,780<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light<br>
brown spotty oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
11,780-11,810<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace light<br>
brown spotty oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
11,810-11,840<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty<br>
trace even light brown oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional<br>
disseminated pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut<br>
fluorescence<br>
11,840-11,870<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty<br>
trace even light brown oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional<br>
disseminated pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut<br>
fluorescence<br>
11,870-11,900<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty<br>
trace even light brown oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional<br>
disseminated pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut<br>
fluorescence<br>
<hr>
<A name=56></a>11,900-11,930<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty<br>
trace even light brown oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional<br>
disseminated pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut<br>
fluorescence<br>
11,930-11,960<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty<br>
trace even light brown oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional<br>
disseminated pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut<br>
fluorescence<br>
11,960-11,990<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty<br>
trace even light brown oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional<br>
disseminated pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut<br>
fluorescence<br>
11,990-12,020<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty<br>
trace even light brown oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional<br>
disseminated pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut<br>
fluorescence<br>
12,020-12,050<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty<br>
trace even light brown oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional<br>
disseminated pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut<br>
fluorescence<br>
12,050-12,080<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty<br>
trace even light brown oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional<br>
disseminated pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut<br>
fluorescence<br>
12,080-12,110<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty<br>
trace even light brown oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional<br>
disseminated pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut<br>
fluorescence<br>
12,110-12,140<br>
DOLOMITE: mudstone, light tan, occasional cream, trace light gray brown, very fine crystalline,<br>
firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace even<br>
light brown oil stain; trace SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
<hr>
<A name=57></a>12,140-12,170<br>
DOLOMITE: mudstone, light tan, occasional cream, trace light gray brown, very fine crystalline,<br>
firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace even<br>
light brown oil stain; trace SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
12,170-12,200<br>
DOLOMITE: mudstone, light tan, common cream, trace light gray brown, very fine crystalline,<br>
firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace even<br>
light brown oil stain; trace SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
12,200-12,230<br>
DOLOMITE: mudstone, light-medium tan, common cream, very fine crystalline, firm, laminated,<br>
micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace even light brown oil<br>
stain; trace SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
12,230-12,260<br>
DOLOMITE: mudstone, light-medium tan, common cream, very fine crystalline, firm, laminated,<br>
micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace even light brown oil<br>
stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
12,260-12,290<br>
DOLOMITE: mudstone, light-medium tan, common cream, very fine crystalline, firm, laminated,<br>
micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace even light brown oil<br>
stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
12,290-12,320<br>
DOLOMITE: mudstone, light tan, common cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace even light brown oil stain;<br>
rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
12,320-12,350<br>
DOLOMITE: mudstone, light tan, common cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace even light brown oil stain;<br>
rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
12,350-12,380<br>
DOLOMITE: mudstone, light tan, common cream, off white, very fine crystalline, firm,<br>
laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace even light<br>
brown oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
12,380-12,410<br>
DOLOMITE: mudstone, light tan, common cream, off white, very fine crystalline, firm,<br>
laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace even light<br>
brown oil stain; rare SHALE: light green-light gray green, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
12,410-12,440<br>
DOLOMITE: mudstone, light-medium tan, common light brown, occasional cream, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, occasional<br>
spotty trace even light brown oil stain; occasional SHALE: light green-light gray green, firm, sub blocky, earthy,<br>
<hr>
<A name=58></a>occasional disseminated pyrite, possible intergranular porosity, no visible oil stain; pale yellow diffuse-streaming cut<br>
fluorescence<br>
12,440-12,470<br>
DOLOMITE: mudstone, light-medium tan, common light brown, occasional cream, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, common<br>
spotty trace even light brown oil stain; occasional SHALE: light green-light gray green, firm, sub blocky, earthy,<br>
occasional disseminated pyrite, possible intergranular porosity, no visible oil stain; pale yellow diffuse-streaming cut<br>
fluorescence<br>
12,470-12,500<br>
DOLOMITE: mudstone, light-medium brown, tan, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, occasional spotty trace even light brown oil<br>
stain; occasional SHALE: light green-light gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; pale yellow diffuse-streaming cut fluorescence<br>
12,500-12,530<br>
DOLOMITE: mudstone, light-medium brown, tan, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, occasional spotty trace even light brown oil<br>
stain; occasional SHALE: light green-light gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; pale yellow diffuse-streaming cut fluorescence<br>
12,530-12,560<br>
DOLOMITE: mudstone, light-medium tan, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, common spotty trace even light brown oil stain;<br>
abundant SHALE: light green-light gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; pale yellow diffuse-streaming cut fluorescence<br>
12,560-12,590<br>
DOLOMITE: mudstone, light-medium tan, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, occasional spotty trace even light brown oil stain;<br>
abundant SHALE: light green-light gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; pale yellow diffuse-streaming cut fluorescence<br>
12,590-12,620<br>
DOLOMITE: mudstone, light-medium tan, common light brown, fine crystalline, firm, laminated,<br>
micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, occasional spotty trace even light<br>
brown oil stain; abundant SHALE: light green-light gray, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
12,620-12,650<br>
DOLOMITE: mudstone, light-medium tan, common light brown, fine crystalline, firm, laminated,<br>
micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, occasional spotty trace even light<br>
brown oil stain; abundant SHALE: light green-light gray, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
12,650-12,680<br>
DOLOMITE: mudstone, light-medium tan, common light brown, fine crystalline, firm, laminated,<br>
micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, occasional spotty trace even light<br>
brown oil stain; abundant SHALE: light green-light gray, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
12,680-12,710<br>
DOLOMITE: mudstone, medium tan, common light brown, off white, fine crystalline, firm,<br>
laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, occasional spotty trace even<br>
light brown oil stain; common SHALE: light green-light gray, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
<hr>
<A name=59></a>12,710-12,740<br>
DOLOMITE: mudstone, medium tan, common light brown, off white, fine crystalline, firm,<br>
laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, occasional spotty trace even<br>
light brown oil stain; common SHALE: light green-light gray, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
12,740-12,770<br>
DOLOMITE: mudstone, tan, common light brown, off white, very fine crystalline, firm,<br>
laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, occasional spotty trace even<br>
light brown oil stain; common SHALE: light green-light gray, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
12,770-12,800<br>
DOLOMITE: mudstone, tan, common light brown, off white, very fine crystalline, firm,<br>
laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, occasional spotty trace even<br>
light brown oil stain; common SHALE: light green-light gray, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow diffuse cut fluorescence<br>
12,800-12,830<br>
DOLOMITE: mudstone, tan, common light brown, off white, very fine crystalline, firm,<br>
laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, occasional spotty trace even<br>
light brown oil stain; common SHALE: light green-light gray, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; moderately yellow diffuse cut fluorescence<br>
12,830-12,860<br>
DOLOMITE: mudstone, light tan, common light brown, off white, very fine crystalline, firm,<br>
laminated, micro sucrosic, trace disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light<br>
brown oil stain; occasional SHALE: light green-light gray, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
12,860-12,890<br>
DOLOMITE: mudstone, light tan, common light brown, off white, very fine crystalline, firm,<br>
laminated, micro sucrosic, trace disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light<br>
brown oil stain; occasional SHALE: light green-light gray, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
12,890-12,920<br>
DOLOMITE: mudstone, light tan, common light brown, off white, very fine crystalline, firm,<br>
laminated, micro sucrosic, trace disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light<br>
brown oil stain; occasional SHALE: light green-light gray, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
12,920-12,950<br>
DOLOMITE: mudstone, light tan, off white, very fine crystalline, firm, laminated, micro sucrosic,<br>
trace disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; occasional<br>
SHALE: light green-light gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
12,950-12,980<br>
DOLOMITE: mudstone, light tan, off white, very fine crystalline, firm, laminated, micro sucrosic,<br>
trace disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; trace SHALE:<br>
light green-light gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; pale yellow streaming cut fluorescence<br>
12,980-13,010<br>
DOLOMITE: mudstone, light tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, trace disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; trace<br>
<hr>
<A name=60></a>SHALE: light green-light gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
13,010-13,040<br>
DOLOMITE: mudstone, light tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, trace disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; trace<br>
SHALE: light green-light gray, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; pale<br>
yellow streaming cut fluorescence<br>
13,040-13,070<br>
DOLOMITE: mudstone, light tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, trace disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; trace<br>
SHALE: light green-light gray, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; pale<br>
yellow streaming cut fluorescence<br>
13,070-13,100<br>
DOLOMITE: mudstone, light tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, trace disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; trace<br>
SHALE: light green-light gray, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; pale<br>
yellow streaming cut fluorescence<br>
13,100-13,130<br>
DOLOMITE: mudstone, light tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, trace disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; trace<br>
SHALE: light green-light gray, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; pale<br>
yellow streaming cut fluorescence<br>
13,130-13,160<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
trace SHALE: light green-light gray, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain;<br>
pale yellow streaming cut fluorescence<br>
13,160-13,190<br>
DOLOMITE: mudstone, tan, off white, very fine crystalline, firm, laminated, micro sucrosic,<br>
occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; trace<br>
SHALE: light green-light gray, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; pale<br>
yellow streaming cut fluorescence<br>
13,190-13,220<br>
DOLOMITE: mudstone, tan, off white, very fine crystalline, firm, laminated, micro sucrosic,<br>
occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; trace<br>
SHALE: light green-light gray, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; pale<br>
yellow streaming cut fluorescence<br>
13,220-13,250<br>
DOLOMITE: mudstone, tan, off white, very fine crystalline, firm, laminated, micro sucrosic,<br>
occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; trace<br>
SHALE: light green-light gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
13,250-13,280<br>
DOLOMITE: mudstone, tan, off white, very fine crystalline, firm, laminated, micro sucrosic,<br>
occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; trace<br>
SHALE: light green-light gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
<hr>
<A name=61></a>13,280-13,310<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
13,310-13,340<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
133,140-13,370 DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
13,370-13,400<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
13,400-13,430<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
13,430-13,460<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
13,460-13,490<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
13,490-13,520<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
13,520-13,550<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
13,550-13,580<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
<hr>
<A name=62></a>trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
13,580-13,610<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
13,610-13,640<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
13,640-13,670<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
13,670-13,700<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
13,700-13,730<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
13,730-13,760<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
13,760-13,790<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
13,790-13,820<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
13,820-13,850<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
<hr>
<A name=63></a>13,850-13,880<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
13,880-13,910<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
13,910-13,940<br>
CLAYSTONE: light gray, common gray brown, trace off white-white, firm, sub blocky, earthy,<br>
common disseminated pyrite, no visible porosity, no visible oil stain; common DOLOMITE: as above<br>
13,940-13,970<br>
CLAYSTONE: light gray, common gray brown, trace off white-white, firm, sub blocky, earthy,<br>
common disseminated pyrite, no visible porosity, no visible oil stain; rare DOLOMITE: as above<br>
13,970-14,000<br>
CLAYSTONE: light gray, common gray brown, trace off white-white, firm, sub blocky, earthy,<br>
common disseminated pyrite, no visible porosity, no visible oil stain; trace DOLOMITE: as above<br>
14,000-14,030<br>
CLAYSTONE: light gray, common gray brown, trace off white-white, firm, sub blocky, earthy,<br>
common disseminated pyrite, no visible porosity, no visible oil stain<br>
14,030-14,060<br>
CLAYSTONE: light gray, common gray brown, trace off white-white, firm, sub blocky, earthy,<br>
common disseminated pyrite, no visible porosity, no visible oil stain<br>
14,060-14,090<br>
CLAYSTONE: light gray, common gray brown, trace off white-white, firm, sub blocky, earthy,<br>
common disseminated pyrite, no visible porosity, no visible oil stain<br>
14,090-14,120<br>
CLAYSTONE: light gray, common gray brown, trace off white-white, firm, sub blocky, earthy,<br>
common disseminated pyrite, no visible porosity, no visible oil stain<br>
14,120-14,150<br>
CLAYSTONE: light gray, common gray brown, trace off white-white, firm, sub blocky, earthy,<br>
common disseminated pyrite, no visible porosity, no visible oil stain<br>
14,150-14,180<br>
CLAYSTONE: light gray, common gray brown, trace off white-white, firm, sub blocky, earthy,<br>
common disseminated pyrite, no visible porosity, no visible oil stain<br>
14,180-14,210<br>
CLAYSTONE: light gray, common gray brown, trace off white-white, firm, sub blocky, earthy,<br>
common disseminated pyrite, no visible porosity, no visible oil stain<br>
14,210-14,240<br>
CLAYSTONE: light gray, common gray brown, trace off white-white, firm, sub blocky, earthy,<br>
common disseminated pyrite, no visible porosity, no visible oil stain<br>
14,240-14,270<br>
CLAYSTONE: light gray, common gray brown, trace off white-white, firm, sub blocky, earthy,<br>
common disseminated pyrite, no visible porosity, no visible oil stain<br>
14,270-14,300<br>
CLAYSTONE: light gray, common gray brown, trace off white-white, firm, sub blocky, earthy,<br>
common disseminated pyrite, no visible porosity, no visible oil stain<br>
<hr>
<A name=64></a>14,300-14,330<br>
CLAYSTONE: light gray, common gray brown, trace off white-white, firm, sub blocky, earthy,<br>
common disseminated pyrite, no visible porosity, no visible oil stain<br>
14,330-14,360<br>
CLAYSTONE: light gray, common gray brown, trace off white-white, firm, sub blocky, earthy,<br>
common disseminated pyrite, no visible porosity, no visible oil stain<br>
14,360-14,390<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
14,390-14,420<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
trace SHALE: light gray blue, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; pale<br>
yellow streaming cut fluorescence<br>
14,420-14,450<br>
DOLOMITE: mudstone, tan, off white, very fine crystalline, firm, laminated, micro sucrosic,<br>
occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; occasional<br>
SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; pale yellow streaming cut fluorescence<br>
14,450-14,480<br>
DOLOMITE: mudstone, tan-light brown, off white, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
occasional SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
14,480-14,510<br>
DOLOMITE: mudstone, tan-light brown, off white, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
occasional SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; moderately yellow diffuse-streaming cut fluorescence<br>
14,510-14,540<br>
DOLOMITE: mudstone, tan-light brown, off white, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
occasional SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; moderately yellow diffuse cut fluorescence<br>
14,540-14,570<br>
DOLOMITE: mudstone, off white, tan, very fine crystalline, firm, laminated, micro sucrosic,<br>
occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; occasional<br>
SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; moderately yellow diffuse cut fluorescence<br>
14,570-14,600<br>
DOLOMITE: mudstone, off white, tan, very fine crystalline, firm, laminated, micro sucrosic,<br>
occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; occasional<br>
SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; moderately yellow diffuse cut fluorescence<br>
14,600-14,630<br>
DOLOMITE: mudstone, off white, tan, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, even trace light brown oil stain; occasional<br>
<hr>
<A name=65></a>SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; moderately yellow diffuse cut fluorescence<br>
14,630-14,660<br>
DOLOMITE: mudstone, off white, tan, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, even trace light brown oil stain; trace<br>
SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; moderately yellow diffuse cut fluorescence<br>
14,660-14,690<br>
DOLOMITE: mudstone, tan, cream, very fine crystalline, firm, laminated, micro sucrosic, rare<br>
disseminated pyrite, occasional intercrystalline porosity, even trace light brown oil stain; trace SHALE: light gray<br>
blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular porosity, no visible oil stain;<br>
moderately yellow diffuse cut fluorescence<br>
14,690-14,720<br>
DOLOMITE: mudstone, tan, cream, very fine crystalline, firm, laminated, micro sucrosic, rare<br>
disseminated pyrite, occasional intercrystalline porosity, even trace light brown oil stain; trace SHALE: light gray<br>
blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular porosity, no visible oil stain;<br>
moderately yellow streaming cut fluorescence<br>
14,720-14,750<br>
DOLOMITE: mudstone, tan, cream, very fine crystalline, firm, laminated, micro sucrosic, rare<br>
disseminated pyrite, occasional intercrystalline porosity, even trace light brown oil stain; common SHALE: light<br>
gray blue, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; moderately yellow streaming<br>
cut fluorescence<br>
14,750-14,780<br>
DOLOMITE: mudstone, tan, cream, very fine crystalline, firm, laminated, micro sucrosic, rare<br>
disseminated pyrite, occasional intercrystalline porosity, trace light brown oil stain; abundant SHALE: light gray<br>
blue, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut<br>
fluorescence<br>
14,780-14,810<br>
DOLOMITE: mudstone, tan, cream, very fine crystalline, firm, laminated, micro sucrosic, rare<br>
disseminated pyrite, occasional intercrystalline porosity, trace light brown oil stain; abundant SHALE: light gray<br>
blue, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut<br>
fluorescence<br>
14,810-14,840<br>
DOLOMITE: mudstone, tan, very fine crystalline, firm, laminated, micro sucrosic, rare<br>
disseminated pyrite, occasional intercrystalline porosity, even trace light brown oil stain; abundant SHALE: light<br>
gray blue, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; moderately yellow streaming<br>
cut fluorescence<br>
14,840-14,870<br>
DOLOMITE: mudstone, tan, cream, very fine crystalline, firm, laminated, micro sucrosic, rare<br>
disseminated pyrite, occasional intercrystalline porosity, trace light brown oil stain; abundant SHALE: light gray<br>
blue, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; moderately yellow streaming cut<br>
fluorescence<br>
14,870-14,900<br>
DOLOMITE: mudstone, tan, cream, very fine crystalline, firm, laminated, micro sucrosic, rare<br>
disseminated pyrite, occasional intercrystalline porosity, trace spotty light brown oil stain; abundant SHALE: as<br>
above; moderately yellow streaming cut fluorescence<br>
<hr>
<A name=66></a>14,900-14,930<br>
DOLOMITE: mudstone, tan, cream, very fine crystalline, firm, laminated, micro sucrosic, rare<br>
disseminated pyrite, occasional intercrystalline porosity, trace spotty light brown oil stain; abundant SHALE: as<br>
above; moderately yellow streaming cut fluorescence<br>
14,930-14,960<br>
DOLOMITE: mudstone, light tan-light brown, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace spotty light brown oil stain; abundant<br>
SHALE: as above; pale yellow streaming cut fluorescence<br>
14,960-14,990<br>
DOLOMITE: mudstone, light tan-light brown, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace spotty light brown oil stain; abundant<br>
SHALE: as above; pale yellow streaming cut fluorescence<br>
14,990-15,020<br>
DOLOMITE: mudstone, light tan-light brown, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace spotty light brown oil stain; abundant<br>
SHALE: as above, occasional disseminated pyrite; pale yellow streaming cut fluorescence<br>
15,020-15,050<br>
DOLOMITE: mudstone, light tan, cream, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, trace spotty light brown oil stain; abundant SHALE: as<br>
above, occasional disseminated pyrite; pale yellow streaming cut fluorescence<br>
15,050-15,080<br>
DOLOMITE: mudstone, light tan, cream, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, trace spotty light brown oil stain; abundant SHALE: as<br>
above, occasional disseminated pyrite; pale yellow streaming cut fluorescence<br>
15,080-15,110<br>
DOLOMITE: mudstone, light tan, cream, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, trace spotty light brown oil stain; common SHALE: as<br>
above; pale yellow streaming cut fluorescence<br>
15,110-15,140<br>
DOLOMITE: mudstone, light tan, cream, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, trace spotty light brown oil stain; common SHALE: as<br>
above; pale yellow streaming cut fluorescence<br>
15,140-15,170<br>
DOLOMITE: mudstone, light tan, cream, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, trace spotty light brown oil stain; common SHALE: as<br>
above, trace disseminated pyrite; pale yellow diffuse-streaming cut fluorescence<br>
15,170-15,200<br>
DOLOMITE: mudstone, light tan, cream, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, trace spotty light brown oil stain; common SHALE: as<br>
above, trace disseminated pyrite; pale yellow diffuse-streaming cut fluorescence<br>
15,200-15,230<br>
DOLOMITE: mudstone, light tan, cream, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, trace spotty light brown oil stain; common SHALE: as<br>
above, trace disseminated pyrite; pale yellow streaming cut fluorescence<br>
15,230-15,260<br>
DOLOMITE: mudstone, light tan, cream, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, trace spotty light brown oil stain; abundant SHALE: as<br>
above, trace disseminated pyrite; pale yellow diffuse-streaming cut fluorescence<br>
<hr>
<A name=67></a>15,260-15,290<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace spotty light brown oil stain; abundant<br>
SHALE: as above, trace disseminated pyrite; pale yellow diffuse-streaming cut fluorescence<br>
15,290-15,320<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace spotty light brown oil stain; abundant<br>
SHALE: as above, trace disseminated pyrite; pale yellow diffuse-streaming cut fluorescence<br>
15,320-15,350<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace spotty light brown oil stain; abundant<br>
SHALE: as above; pale yellow diffuse-streaming cut fluorescence<br>
15,350-15,380<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace spotty light brown oil stain; abundant<br>
SHALE: as above; pale yellow streaming cut fluorescence<br>
15,380-15,410<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace spotty light brown oil stain; abundant<br>
SHALE: as above; pale yellow streaming cut fluorescence<br>
15,410-15,440<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace spotty light brown oil stain; occasional<br>
SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; pale yellow streaming cut fluorescence<br>
15,440-15,470<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace spotty light brown oil stain; occasional<br>
SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; pale yellow streaming cut fluorescence<br>
15,470-15,500<br>
DOLOMITE: mudstone, tan, off white, very fine crystalline, firm, laminated, micro sucrosic, rare<br>
disseminated pyrite, occasional intercrystalline porosity, trace spotty light brown oil stain; occasional SHALE: light<br>
gray blue, firm, sub blocky, earthy, rare disseminated pyrite, possible intergranular porosity, no visible oil stain; pale<br>
yellow streaming cut fluorescence<br>
15,500-15,530<br>
DOLOMITE: mudstone, tan, off white, very fine crystalline, firm, laminated, micro sucrosic, rare<br>
disseminated pyrite, occasional intercrystalline porosity, trace spotty light brown oil stain; common SHALE: light<br>
gray blue, firm, sub blocky, earthy, rare disseminated pyrite, possible intergranular porosity, no visible oil stain; pale<br>
yellow streaming cut fluorescence<br>
15,530-15,560<br>
DOLOMITE: mudstone, light tan, cream, off white, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace spotty light brown oil stain; rare<br>
SHALE: light gray blue, firm, sub blocky, earthy, rare disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; pale yellow streaming cut fluorescence<br>
15,560-15,590<br>
DOLOMITE: mudstone, light tan, cream, off white, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, trace spotty light brown oil stain; rare<br>
<hr>
<A name=68></a>SHALE: light gray blue, firm, sub blocky, earthy, rare disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; pale yellow streaming cut fluorescence<br>
15,590-15,620<br>
DOLOMITE: mudstone, light tan, cream, off white, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty light brown oil stain; rare SHALE:<br>
light gray blue, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; pale yellow streaming<br>
cut fluorescence<br>
15,620-15,650<br>
DOLOMITE: mudstone, light tan, cream, off white, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty light brown oil stain; rare SHALE:<br>
light gray blue, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; pale yellow streaming<br>
cut fluorescence<br>
15,650-15,680<br>
DOLOMITE: mudstone, light tan, cream, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, rare spotty light brown oil stain; rare SHALE: light<br>
gray blue, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; pale yellow streaming cut<br>
fluorescence<br>
15,680-15,710<br>
DOLOMITE: mudstone, light tan, cream, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, rare spotty light brown oil stain; rare SHALE: light<br>
gray blue, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; pale yellow streaming cut<br>
fluorescence<br>
15,710-15,740<br>
DOLOMITE: mudstone, light tan, cream, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, rare spotty light brown oil stain; rare SHALE: light<br>
gray blue, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; pale yellow streaming cut<br>
fluorescence<br>
15,740-15,770<br>
DOLOMITE: mudstone, light tan, cream, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, rare spotty light brown oil stain; rare SHALE: light<br>
gray blue, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; pale yellow streaming cut<br>
fluorescence<br>
15,770-15,800<br>
DOLOMITE: mudstone, light tan, cream, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, rare spotty light brown oil stain; rare SHALE: light<br>
gray blue, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; pale yellow streaming cut<br>
fluorescence<br>
15,800-15,830<br>
DOLOMITE: mudstone, light tan, cream, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, rare spotty light brown oil stain; rare SHALE: light<br>
gray blue, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; pale yellow streaming cut<br>
fluorescence<br>
15,830-15,860<br>
DOLOMITE: mudstone, light tan, cream, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, rare spotty light brown oil stain; rare SHALE: light<br>
gray blue, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; pale yellow streaming cut<br>
fluorescence<br>
<hr>
<A name=69></a>15,860-15,890<br>
DOLOMITE: mudstone, light tan, cream, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, rare spotty light brown oil stain; rare SHALE: light<br>
gray blue, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; pale yellow streaming cut<br>
fluorescence<br>
15,890-15,920<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
15,920-15,950<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, rare off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace<br>
light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
15,950-15,980<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, rare off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace<br>
light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
15,980-16,010<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, rare off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace<br>
light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,010-16,040<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, rare off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace<br>
light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,040-16,070<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, rare off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace<br>
light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,070-16,100<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, rare off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace<br>
light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,100-16,130<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, rare off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace<br>
light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,130-16,160<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, rare off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace<br>
<hr>
<A name=70></a>light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,160-16,190<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, rare off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace<br>
light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,190-16,220<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, rare off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace<br>
light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,220-16,250<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, rare off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace<br>
light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,250-16,280<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, rare off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace<br>
light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,280-16,310<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, rare off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace<br>
light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,310-16,340<br>
DOLOMITE: mudstone, light brown-tan, occasional light gray, rare off white-cream, very fine<br>
crystalline, firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare<br>
spotty trace light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,340-16,370<br>
DOLOMITE: mudstone, light brown-tan, occasional light gray, rare off white-cream, very fine<br>
crystalline, firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare<br>
spotty trace light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,370-16,400<br>
DOLOMITE: mudstone, light brown-tan, occasional light gray, rare off white-cream, very fine<br>
crystalline, firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare<br>
spotty trace light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,400-16,430<br>
DOLOMITE: mudstone, light brown-tan, occasional light gray, rare off white-cream, very fine<br>
crystalline, firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare<br>
spotty trace light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
<hr>
<A name=71></a>16,430-16,460<br>
DOLOMITE: mudstone, light brown-tan, occasional light gray, rare off white-cream, very fine<br>
crystalline, firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare<br>
spotty trace light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,460-16,490<br>
DOLOMITE: mudstone, light brown-tan, occasional light gray, rare off white-cream, very fine<br>
crystalline, firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare<br>
spotty trace light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,490-16,520<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, rare off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace<br>
light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,520-16,550<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, rare off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace<br>
light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,550-16,580<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, rare off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace<br>
light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,580-16,610<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, rare off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace<br>
light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,610-16,640<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, rare off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace<br>
light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,640-16,670<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, rare off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace<br>
light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,670-16,700<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, rare off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace<br>
light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,700-16,730<br>
DOLOMITE: mudstone, light brown-tan, occasional cream, rare off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace<br>
<hr>
<A name=72></a>light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated pyrite,<br>
possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,730-16,760<br>
DOLOMITE: mudstone, light brown-tan, occasional light gray, rare off white-cream, very fine<br>
crystalline, firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare<br>
spotty trace light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,760-16,790<br>
DOLOMITE: mudstone, light brown-tan, occasional light gray, rare off white-cream, very fine<br>
crystalline, firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare<br>
spotty trace light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,790-16,820<br>
DOLOMITE: mudstone, light brown-tan, occasional light gray, rare off white-cream, very fine<br>
crystalline, firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare<br>
spotty trace light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,820-16,850<br>
DOLOMITE: mudstone, light tan, occasional light gray, rare off white-cream, very fine<br>
crystalline, firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare<br>
spotty trace light brown oil stain; trace SHALE: light gray blue, firm, sub blocky, earthy, occasional disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,850-16,880<br>
DOLOMITE: mudstone, light tan, occasional light gray, cream, rare off white-cream, very fine<br>
crystalline, firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare<br>
spotty trace light brown oil stain; trace SHALE: light gray blue, medium gray, firm, sub blocky, earthy, occasional<br>
disseminated pyrite, possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,880-16,910<br>
DOLOMITE: mudstone, light tan, occasional light gray, cream, rare off white-cream, very fine<br>
crystalline, firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare<br>
spotty trace light brown oil stain; trace SHALE: light gray blue, medium gray, firm, sub blocky, earthy, occasional<br>
disseminated pyrite, possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,910-16,940<br>
DOLOMITE: mudstone, light tan, occasional light gray, cream, rare off white-cream, very fine<br>
crystalline, firm, laminated, micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare<br>
spotty trace light brown oil stain; trace SHALE: light gray blue, medium gray, firm, sub blocky, earthy, occasional<br>
disseminated pyrite, possible intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,940-16,970<br>
DOLOMITE: mudstone, light tan, cream, rare off white, very fine crystalline, firm, laminated,<br>
micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil<br>
stain; trace SHALE: light gray blue, medium gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
16,970-17,000<br>
DOLOMITE: mudstone, light tan, cream, rare off white, very fine crystalline, firm, laminated,<br>
micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil<br>
stain; trace SHALE: light gray blue, medium gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
<hr>
<A name=73></a>17,000-17,030<br>
DOLOMITE: mudstone, light tan, cream, rare off white, very fine crystalline, firm, laminated,<br>
micro sucrosic, occasional disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil<br>
stain; trace SHALE: light gray blue, medium gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
17,030-17,060<br>
DOLOMITE: mudstone, light tan, cream, off white, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; trace<br>
SHALE: light gray blue, rare medium gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
17,060-17,090<br>
DOLOMITE: mudstone, light tan, cream, off white, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; trace<br>
SHALE: light gray blue, rare medium gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
17,090-17,120<br>
DOLOMITE: mudstone, light tan, cream, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, rare spotty light brown oil stain; trace SHALE: light<br>
gray blue, rare medium gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
17,120-17,150<br>
DOLOMITE: mudstone, light tan, cream, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, rare spotty light brown oil stain; trace SHALE: light<br>
gray blue, rare medium gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
17,150-17,180<br>
DOLOMITE: mudstone, light tan, cream, trace light brown, very fine crystalline, firm, laminated,<br>
micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty light brown oil stain; trace<br>
SHALE: light gray blue, rare medium gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
17,180-17,210<br>
DOLOMITE: mudstone, light tan, cream, trace light brown, very fine crystalline, firm, laminated,<br>
micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty light brown oil stain; trace<br>
SHALE: light gray blue, rare medium gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
17,210-17,240<br>
CLAYSTONE: light gray, common gray brown, trace off white-white, firm, sub blocky, earthy,<br>
common disseminated pyrite, no visible porosity, no visible oil stain; trace DOLOMITE: as above; pale yellow<br>
streaming cut fluorescence<br>
17,240-17,270<br>
CLAYSTONE: light gray, common gray brown, trace off white-white, firm, sub blocky, earthy,<br>
common disseminated pyrite, no visible porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
17,270-17,300<br>
CLAYSTONE: light gray blue, common gray brown, trace off white-white, firm, sub blocky,<br>
earthy, common disseminated pyrite, no visible porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
17,300-17,330<br>
CLAYSTONE: light gray blue, common gray brown, trace off white-white, firm, sub blocky,<br>
earthy, common disseminated pyrite, no visible porosity, no visible oil stain; trace DOLOMITE: as above; pale<br>
yellow streaming cut fluorescence<br>
<hr>
<A name=74></a>17,330-17,360<br>
DOLOMITE: mudstone, light tan, cream, trace light brown, very fine crystalline, firm, laminated,<br>
micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty light brown oil stain; trace<br>
CLAYSTONE: light gray blue, rare medium gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
17,360-17,390<br>
DOLOMITE: mudstone, light tan, cream, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, rare spotty light brown oil stain; trace CLAYSTONE:<br>
light gray blue, rare medium gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
17,390-17,420<br>
DOLOMITE: mudstone, light tan, cream, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, rare spotty light brown oil stain; trace SHALE: light<br>
gray blue, rare medium gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
17,420-17,450<br>
DOLOMITE: mudstone, light tan, cream, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, rare spotty light brown oil stain; trace SHALE: light<br>
gray blue, rare medium gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow diffuse-streaming cut fluorescence<br>
17,450-17,480<br>
DOLOMITE: mudstone, light tan, cream, off white, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty light brown oil stain; trace<br>
SHALE: light gray blue, rare medium gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; pale yellow diffuse-streaming cut fluorescence<br>
17,480-17,510<br>
DOLOMITE: mudstone, light tan, cream, off white, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty light brown oil stain; trace<br>
SHALE: light gray blue, rare medium gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; pale yellow diffuse-streaming cut fluorescence<br>
17,510-17,540<br>
DOLOMITE: mudstone, light tan, cream, off white, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty light brown oil stain; common<br>
SHALE: light gray blue, rare medium gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; pale yellow diffuse-streaming cut fluorescence<br>
17,540-17,570<br>
DOLOMITE: mudstone, light tan, cream, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, rare spotty light brown oil stain; common SHALE:<br>
light gray blue, rare medium gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow diffuse-streaming cut fluorescence<br>
17,570-17,600<br>
DOLOMITE: mudstone, light tan, cream, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, rare spotty light brown oil stain; common SHALE:<br>
light gray blue, rare medium gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow diffuse-streaming cut fluorescence<br>
17,600-17,630<br>
DOLOMITE: mudstone, light tan, cream, off white, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty light brown oil stain; rare SHALE:<br>
<hr>
<A name=75></a>light gray blue, rare medium gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow diffuse-streaming cut fluorescence<br>
17,630-17,660<br>
DOLOMITE: mudstone, light tan, cream, off white, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; rare<br>
SHALE: light gray blue, rare medium gray, firm, sub blocky, earthy, occasional disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
17,660-17,690<br>
DOLOMITE: mudstone, light tan, cream, off white, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; rare<br>
SHALE: light gray blue, rare medium gray, firm, sub blocky, earthy, possible intergranular porosity, no visible oil<br>
stain; pale yellow streaming cut fluorescence<br>
17,690-17,720<br>
DOLOMITE: mudstone, light tan, cream, off white, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; rare<br>
SHALE: light gray blue, rare medium gray, firm, sub blocky, earthy, possible intergranular porosity, no visible oil<br>
stain; pale yellow streaming cut fluorescence<br>
17,720-17,750<br>
DOLOMITE: mudstone, light tan, off white, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; rare SHALE:<br>
light gray blue, rare medium gray, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; pale<br>
yellow streaming cut fluorescence<br>
17,750-17,780<br>
DOLOMITE: mudstone, light tan, off white, very fine crystalline, firm, laminated, micro sucrosic,<br>
rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; rare SHALE:<br>
light gray blue, rare medium gray, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; pale<br>
yellow streaming cut fluorescence<br>
17,780-17,810<br>
DOLOMITE: mudstone, light brown-tan, off white, trace light gray, very fine crystalline, firm,<br>
laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown<br>
oil stain; rare SHALE: light gray blue, rare medium gray, firm, sub blocky, earthy, possible intergranular porosity,<br>
no visible oil stain; pale yellow streaming cut fluorescence<br>
17,810-17,840<br>
DOLOMITE: mudstone, light brown-tan, off white, trace light gray, very fine crystalline, firm,<br>
laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown<br>
oil stain; rare SHALE: light gray blue, rare medium gray, firm, sub blocky, earthy, possible intergranular porosity,<br>
no visible oil stain; pale yellow streaming cut fluorescence<br>
17,840-17,870<br>
DOLOMITE: mudstone, light brown-tan, trace light gray, very fine crystalline, firm, laminated,<br>
micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
rare SHALE: light gray blue, rare medium gray, firm, sub blocky, earthy, possible intergranular porosity, no visible<br>
oil stain; pale yellow streaming cut fluorescence<br>
17,870-17,900<br>
DOLOMITE: mudstone, light brown, trace light gray, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; rare<br>
SHALE: light gray blue, rare medium gray, firm, sub blocky, earthy, possible intergranular porosity, no visible oil<br>
stain; pale yellow streaming cut fluorescence<br>
<hr>
<A name=76></a>17,900-17,930<br>
DOLOMITE: mudstone, light tan, trace light gray, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; trace<br>
SHALE: light gray blue, rare medium grained, firm, sub blocky, earthy, possible intergranular porosity, no visible<br>
oil stain; moderately yellow streaming cut fluorescence<br>
17,930-17,960<br>
DOLOMITE: mudstone, light tan, trace light gray, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; trace<br>
SHALE: light gray blue, rare medium grained, firm, sub blocky, earthy, possible intergranular porosity, no visible<br>
oil stain; moderately yellow streaming cut fluorescence<br>
17,960-17,990<br>
DOLOMITE: mudstone, light tan-brown, cream, trace light gray, very fine crystalline, firm,<br>
laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown<br>
oil stain; trace SHALE: light gray blue, rare medium grained, firm, sub blocky, earthy, possible intergranular<br>
porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
17,990-18,020<br>
DOLOMITE: mudstone, light tan-brown, cream, trace light gray, very fine crystalline, firm,<br>
laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown<br>
oil stain; trace SHALE: light gray blue, rare medium grained, firm, sub blocky, earthy, possible intergranular<br>
porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
18,020-18,050<br>
DOLOMITE: mudstone, light tan, cream, trace light gray, very fine crystalline, firm, laminated,<br>
micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
trace SHALE: light gray blue, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain;<br>
moderately yellow streaming cut fluorescence<br>
18,050-18,080<br>
DOLOMITE: mudstone, light tan, cream, trace light gray, very fine crystalline, firm, laminated,<br>
micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
trace SHALE: light gray blue, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain;<br>
moderately yellow streaming cut fluorescence<br>
18,080-18,110<br>
DOLOMITE: mudstone, light tan, off white, trace light gray, very fine crystalline, firm, laminated,<br>
micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; moderately yellow streaming cut fluorescence<br>
18,110-18,140<br>
DOLOMITE: mudstone, light tan, off white, trace light gray, very fine crystalline, firm, laminated,<br>
micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain;<br>
rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; moderately yellow streaming cut fluorescence<br>
18,140-18,170<br>
DOLOMITE: mudstone, light tan, trace light gray, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; rare<br>
SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; moderately yellow streaming cut fluorescence<br>
18,170-18,200<br>
DOLOMITE: mudstone, light tan, trace light gray, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; rare<br>
<hr>
<A name=77></a>SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; moderately yellow streaming cut fluorescence<br>
18,200-18,230<br>
DOLOMITE: mudstone, light tan, trace light gray, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; rare<br>
SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; moderately yellow streaming cut fluorescence<br>
18,230-18,260<br>
DOLOMITE: mudstone, light tan, trace light gray, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; rare<br>
SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; moderately yellow streaming cut fluorescence<br>
18,260-18,290<br>
DOLOMITE: mudstone, light tan, trace light gray, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; rare<br>
SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; moderately yellow streaming cut fluorescence<br>
18,290-18,320<br>
DOLOMITE: mudstone, light brown-tan, rare light gray, trace off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light<br>
brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
18,320-18,350<br>
DOLOMITE: mudstone, light brown-tan, rare light gray, trace off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light<br>
brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
18,350-18,380<br>
DOLOMITE: mudstone, light brown-tan, rare light gray, trace off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light<br>
brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
18,380-18,410<br>
DOLOMITE: mudstone, light brown-tan, rare light gray, trace off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light<br>
brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
18,410-18,440<br>
DOLOMITE: mudstone, light brown-tan, rare light gray, trace off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light<br>
brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
18,440-18,470<br>
DOLOMITE: mudstone, light brown-tan, rare light gray, trace off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light<br>
brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
<hr>
<A name=78></a>18,470-18,500<br>
DOLOMITE: mudstone, light brown-tan, rare light gray, trace off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light<br>
brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
18,500-18,530<br>
DOLOMITE: mudstone, light brown-tan, rare light gray, trace off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light<br>
brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
18,530-18,560<br>
DOLOMITE: mudstone, light brown-tan, rare light gray, trace off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light<br>
brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
18,560-18,590<br>
DOLOMITE: mudstone, light brown-tan, rare light gray, trace off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light<br>
brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
18,590-18,620<br>
DOLOMITE: mudstone, light gray, light brown-tan, occasional off white, trace light gray brown,<br>
very fine crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity,<br>
rare spotty trace light brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; slightly yellow streaming cut fluorescence<br>
18,620-18,650<br>
DOLOMITE: mudstone, light brown-tan, rare light gray, trace off white, very fine crystalline,<br>
firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light<br>
brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; moderately yellow streaming cut fluorescence<br>
18,650-18,680<br>
DOLOMITE: mudstone, light gray, light brown-tan, occasional off white, trace light gray brown,<br>
very fine crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity,<br>
rare spotty trace light brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; slightly yellow streaming cut fluorescence<br>
18,680-18,710<br>
DOLOMITE: mudstone, light gray, light brown-tan, occasional off white, trace light gray brown,<br>
very fine crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity,<br>
rare spotty trace light brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; slow yellow streaming cut fluorescence<br>
18,710-18,740<br>
DOLOMITE: mudstone, light gray, light brown-tan, occasional off white, trace light gray brown,<br>
very fine crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity,<br>
rare spotty trace light brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; slow yellow streaming cut fluorescence<br>
18,740-18,770<br>
DOLOMITE: mudstone, light gray, light brown-tan, occasional off white, trace light gray brown,<br>
very fine crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity,<br>
<hr>
<A name=79></a>rare spotty trace light brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; slow yellow streaming cut fluorescence<br>
18,770-18,800<br>
DOLOMITE: mudstone, light gray, light brown-tan, occasional off white, trace light gray brown,<br>
very fine crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity,<br>
rare spotty trace light brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; slow yellow streaming cut fluorescence<br>
18,800-18,830<br>
DOLOMITE: mudstone, light gray, light brown-tan, occasional off white, trace light gray brown,<br>
very fine crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity,<br>
rare spotty trace light brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; slow yellow streaming cut fluorescence<br>
18,830-18,860<br>
DOLOMITE: mudstone, light gray, light brown-tan, occasional off white, trace light gray brown,<br>
very fine crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity,<br>
rare spotty trace light brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; slow yellow streaming cut fluorescence<br>
18,860-18,890<br>
DOLOMITE: mudstone, light gray, light brown-tan, occasional off white, trace light gray brown,<br>
very fine crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity,<br>
rare spotty trace light brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; slow yellow streaming cut fluorescence<br>
18,890-18,920<br>
DOLOMITE: mudstone, light gray, light brown-tan, occasional off white, trace light gray brown,<br>
very fine crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity,<br>
rare spotty trace light brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; slow yellow streaming cut fluorescence<br>
18,920-18,950<br>
DOLOMITE: mudstone, light gray, light brown-tan, occasional off white, trace light gray brown,<br>
very fine crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity,<br>
rare spotty trace light brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; slow yellow streaming cut fluorescence<br>
18,950-18,980<br>
DOLOMITE: mudstone, light gray, light brown-tan, occasional off white, trace light gray brown,<br>
very fine crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity,<br>
rare spotty trace light brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; slow yellow streaming cut fluorescence<br>
18,980-19,010<br>
DOLOMITE: mudstone, light gray, light brown-tan, occasional off white, trace light gray brown,<br>
very fine crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity,<br>
rare spotty trace light brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; slow yellow streaming cut fluorescence<br>
19,010-19,040<br>
DOLOMITE: mudstone, light gray, light brown-tan, occasional off white, trace light gray brown,<br>
very fine crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity,<br>
rare spotty trace light brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; slow yellow streaming cut fluorescence<br>
<hr>
<A name=80></a>19,040-19,070<br>
DOLOMITE: mudstone, light gray, light brown-tan, occasional off white, trace light gray brown,<br>
very fine crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity,<br>
rare spotty trace light brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; slow yellow streaming cut fluorescence<br>
19,070-19,100<br>
DOLOMITE: mudstone, light gray, light brown-tan, occasional off white, trace light gray brown,<br>
very fine crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity,<br>
rare spotty trace light brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; slow yellow streaming cut fluorescence<br>
19,100-19,130<br>
DOLOMITE: mudstone, light gray, light brown-tan, occasional off white, trace light gray brown,<br>
very fine crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity,<br>
rare spotty trace light brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; slow yellow streaming cut fluorescence<br>
19,130-19,160<br>
DOLOMITE: mudstone, light gray, light brown-tan, occasional off white, trace light gray brown,<br>
very fine crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity,<br>
rare spotty trace light brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; slow yellow streaming cut fluorescence<br>
19,160-19,190<br>
DOLOMITE: mudstone, light gray, light brown-tan, occasional off white, trace light gray brown,<br>
very fine crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity,<br>
rare spotty trace light brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated<br>
pyrite, possible intergranular porosity, no visible oil stain; slow yellow streaming cut fluorescence<br>
19,190-19,220<br>
DOLOMITE: mudstone, light gray, tan, occasional off white, trace light gray brown, very fine<br>
crystalline, firm, laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty<br>
trace light brown oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible<br>
intergranular porosity, no visible oil stain; slow yellow streaming cut fluorescence<br>
19,220-19,250<br>
DOLOMITE: mudstone, light gray, tan, occasional off white, very fine crystalline, firm,<br>
laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown<br>
oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; slow yellow streaming cut fluorescence<br>
19,250-19,280<br>
DOLOMITE: mudstone, light gray, tan, occasional off white, very fine crystalline, firm,<br>
laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown<br>
oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; slow yellow streaming cut fluorescence<br>
19,280-19,310<br>
DOLOMITE: mudstone, light gray-brown, tan, occasional off white, very fine crystalline, firm,<br>
laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown<br>
oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; slow yellow streaming cut fluorescence<br>
19,310-19,340<br>
DOLOMITE: mudstone, light gray-brown, tan, occasional off white, very fine crystalline, firm,<br>
laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown<br>
<hr>
<A name=81></a>oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; slow yellow streaming cut fluorescence<br>
19,340-19,370<br>
DOLOMITE: mudstone, light gray-brown, tan, occasional off white, very fine crystalline, firm,<br>
laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown<br>
oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; slow pale yellow streaming cut fluorescence<br>
19,370-19,400<br>
DOLOMITE: mudstone, light gray-brown, tan, occasional off white, very fine crystalline, firm,<br>
laminated, micro sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown<br>
oil stain; rare SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; slow pale yellow streaming cut fluorescence<br>
19,400-19,430<br>
DOLOMITE: mudstone, light gray-brown, tan, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; rare<br>
SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; slow pale yellow streaming cut fluorescence<br>
19,430-19,460<br>
DOLOMITE: mudstone, light gray-brown, tan, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; rare<br>
SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; pale yellow streaming cut fluorescence<br>
19,460-19,490<br>
DOLOMITE: mudstone, light gray-brown, tan, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, rare spotty trace light brown oil stain; rare<br>
SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; pale yellow streaming cut fluorescence<br>
19,490-19,520<br>
DOLOMITE: mudstone, light gray-brown, tan, very fine crystalline, firm, laminated, micro<br>
sucrosic, rare disseminated pyrite, occasional intercrystalline porosity, spotty trace light brown oil stain; occasional<br>
SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; pale yellow streaming cut fluorescence<br>
19,520-19,550<br>
DOLOMITE: mudstone, light gray-brown, tan, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional intercrystalline porosity, spotty trace light brown oil stain; occasional SHALE: light gray blue,<br>
firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular porosity, no visible oil stain; pale yellow<br>
streaming cut fluorescence<br>
19,550-19,580<br>
DOLOMITE: mudstone, light gray-brown, tan, trace cream, very fine crystalline, firm, laminated,<br>
micro sucrosic, occasional intercrystalline porosity, spotty trace light brown oil stain; occasional SHALE: light gray<br>
blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular porosity, no visible oil stain; pale<br>
yellow streaming cut fluorescence<br>
19,580-19,610<br>
DOLOMITE: mudstone, light gray-brown, tan, trace cream, very fine crystalline, firm, laminated,<br>
micro sucrosic, occasional intercrystalline porosity, spotty trace light brown oil stain; occasional SHALE: light gray<br>
blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular porosity, no visible oil stain; pale<br>
yellow streaming cut fluorescence<br>
<hr>
<A name=82></a>19,610-19,640<br>
DOLOMITE: mudstone, light gray-brown, tan, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional intercrystalline porosity, spotty trace light brown oil stain; occasional SHALE: light gray blue,<br>
firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular porosity, no visible oil stain; pale yellow<br>
streaming cut fluorescence<br>
19,640-19,670<br>
DOLOMITE: mudstone, light gray-brown, tan, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional intercrystalline porosity, spotty trace light brown oil stain; common SHALE: light gray blue,<br>
firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular porosity, no visible oil stain; pale yellow<br>
streaming cut fluorescence<br>
19,670-19,700<br>
DOLOMITE: mudstone, light gray, tan, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional intercrystalline porosity, spotty trace light brown oil stain; common SHALE: light gray blue,<br>
firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular porosity, no visible oil stain; pale yellow<br>
streaming cut fluorescence<br>
19,700-19,730<br>
DOLOMITE: mudstone, light gray-brown, tan, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional intercrystalline porosity, trace spotty trace light brown oil stain; common SHALE: light gray<br>
blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular porosity, no visible oil stain;<br>
moderately pale yellow streaming cut fluorescence<br>
19,730-19,760<br>
DOLOMITE: mudstone, light gray-brown, tan, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional intercrystalline porosity, rare disseminated pyrite, trace spotty trace light brown oil stain;<br>
common SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; moderately pale yellow streaming cut fluorescence<br>
19,760-19,790<br>
DOLOMITE: mudstone, light gray-brown, tan, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional intercrystalline porosity, rare disseminated pyrite, trace spotty trace light brown oil stain;<br>
common SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; moderately pale yellow streaming cut fluorescence<br>
19,790-19,820<br>
DOLOMITE: mudstone, light gray-brown, tan, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional intercrystalline porosity, rare disseminated pyrite, trace spotty trace light brown oil stain;<br>
common SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; moderately pale yellow streaming cut fluorescence<br>
19,820-19,850<br>
DOLOMITE: mudstone, light gray-brown, tan, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional intercrystalline porosity, rare disseminated pyrite, trace spotty trace light brown oil stain;<br>
common SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
19,850-19,880<br>
DOLOMITE: mudstone, light gray-brown, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional intercrystalline porosity, rare disseminated pyrite, trace spotty trace light brown oil stain;<br>
common SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
19,880-19,910<br>
DOLOMITE: mudstone, light gray-brown, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional intercrystalline porosity, rare disseminated pyrite, trace spotty trace light brown oil stain;<br>
<hr>
<A name=83></a>common SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular<br>
porosity, no visible oil stain; pale yellow streaming cut fluorescence<br>
19,910-19,940<br>
DOLOMITE: mudstone, light gray-brown, very fine crystalline, firm, laminated, micro sucrosic,<br>
occasional intercrystalline porosity, rare disseminated pyrite, trace spotty trace light brown oil stain; common<br>
SHALE: light gray blue, firm, sub blocky, earthy, trace disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; pale yellow streaming cut fluorescence<br>
19,940-19,970<br>
DOLOMITE: mudstone, light gray-brown, very fine crystalline, firm, laminated, micro sucrosic,<br>
occasional intercrystalline porosity, rare disseminated pyrite, trace spotty trace light brown oil stain; rare SHALE:<br>
light gray blue, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; pale yellow streaming<br>
cut fluorescence<br>
19,970-20,000<br>
DOLOMITE: mudstone, light gray-brown, very fine crystalline, firm, laminated, micro sucrosic,<br>
occasional intercrystalline porosity, rare disseminated pyrite, trace spotty trace light brown oil stain; rare SHALE:<br>
light gray blue, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; pale yellow streaming<br>
cut fluorescence<br>
20,000-20,030<br>
DOLOMITE: mudstone, light gray-brown, very fine crystalline, firm, laminated, micro sucrosic,<br>
occasional intercrystalline porosity, rare disseminated pyrite, trace spotty trace light brown oil stain; rare SHALE:<br>
light gray blue, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; pale yellow streaming<br>
cut fluorescence<br>
20,030-20,060<br>
DOLOMITE: mudstone, light tan-brown, off white, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional intercrystalline porosity, rare disseminated pyrite, trace spotty trace light brown oil stain; trace<br>
SHALE: light gray blue, firm, sub blocky, earthy, rare disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; pale yellow streaming cut fluorescence<br>
20,060-20,090<br>
DOLOMITE: mudstone, light tan-brown, off white, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional intercrystalline porosity, rare disseminated pyrite, trace spotty trace light brown oil stain; trace<br>
SHALE: light gray blue, firm, sub blocky, earthy, rare disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; pale yellow streaming cut fluorescence<br>
20,090-20,120<br>
DOLOMITE: mudstone, light tan, off white, very fine crystalline, firm, laminated, micro sucrosic,<br>
occasional intercrystalline porosity, rare disseminated pyrite, trace spotty trace light brown oil stain; trace SHALE:<br>
light gray blue, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; pale yellow streaming<br>
cut fluorescence<br>
20,120-20,150<br>
DOLOMITE: mudstone, light tan, off white, very fine crystalline, firm, laminated, micro sucrosic,<br>
occasional intercrystalline porosity, rare disseminated pyrite, trace spotty light brown oil stain; trace SHALE: light<br>
gray blue, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; pale yellow streaming cut<br>
fluorescence<br>
20,150-20,180<br>
DOLOMITE: mudstone, light tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional intercrystalline porosity, occasional disseminated pyrite, trace spotty light brown oil stain; rare<br>
SHALE: light gray blue, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; pale yellow<br>
diffuse-streaming cut fluorescence<br>
<hr>
<A name=84></a>20,180-20,210<br>
DOLOMITE: mudstone, light tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional intercrystalline porosity, occasional disseminated pyrite, trace spotty light brown oil stain; rare<br>
SHALE: light gray blue, firm, sub blocky, earthy, possible intergranular porosity, no visible oil stain; slow pale<br>
yellow diffuse-streaming cut fluorescence<br>
20,210-20,240<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional intercrystalline porosity, occasional disseminated pyrite, trace spotty light brown oil stain; rare<br>
SHALE: light gray blue, firm, sub blocky, earthy, rare disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; slow pale yellow diffuse-streaming cut fluorescence<br>
20,240-20,270<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional intercrystalline porosity, occasional disseminated pyrite, trace spotty light brown oil stain; rare<br>
SHALE: light gray blue, firm, sub blocky, earthy, rare disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; slow pale yellow diffuse cut fluorescence<br>
20,270-20,300<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional intercrystalline porosity, occasional disseminated pyrite, trace spotty light brown oil stain; rare<br>
SHALE: light gray blue, firm, sub blocky, earthy, rare disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; pale yellow diffuse cut fluorescence<br>
20,300-20,330<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional intercrystalline porosity, occasional disseminated pyrite, trace spotty light brown oil stain; rare<br>
SHALE: light gray blue, firm, sub blocky, earthy, rare disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; pale yellow diffuse cut fluorescence<br>
20,330-20,360<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional intercrystalline porosity, occasional disseminated pyrite, trace spotty light brown oil stain; rare<br>
SHALE: light gray blue, firm, sub blocky, earthy, rare disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; pale yellow diffuse cut fluorescence<br>
20,360-20,390<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional intercrystalline porosity, occasional disseminated pyrite, trace spotty light brown oil stain; rare<br>
SHALE: light gray blue, firm, sub blocky, earthy, rare disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; pale yellow diffuse cut fluorescence<br>
20,390-20,420<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional intercrystalline porosity, occasional disseminated pyrite, trace spotty light brown oil stain; rare<br>
SHALE: light gray blue, firm, sub blocky, earthy, rare disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; pale yellow diffuse cut fluorescence<br>
20,420-20,450<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional intercrystalline porosity, occasional disseminated pyrite, trace spotty light brown oil stain; rare<br>
SHALE: light gray blue, firm, sub blocky, earthy, rare disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; pale yellow diffuse cut fluorescence<br>
20,450-20,480<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional intercrystalline porosity, occasional disseminated pyrite, trace spotty light brown oil stain; rare<br>
<hr>
<A name=85></a>SHALE: light gray blue, firm, sub blocky, earthy, rare disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; pale yellow diffuse cut fluorescence<br>
20,480-20,519<br>
DOLOMITE: mudstone, tan, off white, cream, very fine crystalline, firm, laminated, micro<br>
sucrosic, occasional intercrystalline porosity, occasional disseminated pyrite, trace spotty light brown oil stain; rare<br>
SHALE: light gray blue, firm, sub blocky, earthy, rare disseminated pyrite, possible intergranular porosity, no<br>
visible oil stain; pale yellow diffuse cut fluorescence<br>
<hr>
<A name=86></a>19510 Oil Center Blvd<br>
Houston, TX 77073<br>
Bus 281.443.1414<br>
Fax 281.443.1676<br>
Wednesday, December 31, 2014<br>
State of North Dakota<br>
Subject:<br>
Surveys<br>
Re: Oasis<br>
Chalmers 5300 21-19 8T<br>
McKenzie, ND<br>
Enclosed, please find the original and one copy of the survey performed on the above-referenced well by<br>
Ryan Directional Services, Inc.. Other information required by your office is as follows:<br>
TD Straight<br>
Borehole<br>
Start<br>
End<br>
Start<br>
End<br>
Type<br>
Line<br>
Surveyor Name<br>
Surveyor Title<br>
Number<br>
Depth<br>
Depth<br>
Date<br>
Date<br>
of<br>
Projection<br>
Mike McCammond<br>
MWD Operator<br>
O.H.<br>
0'<br>
11125'<br>
10/05/14<br>
10/17/14<br>
MWD<br>
11125'<br>
Mike McCammond<br>
MWD Operator<br>
O.H.<br>
11125'<br>
20456'<br>
12/23/14<br>
12/26/14<br>
MWD<br>
20519'<br>
If any other information is required please contact the undersigned at the letterhead address or phone<br>
number.<br>
Douglas Hudson<br>
Well Planner<br>
<hr>
<A name=87></a><hr>
<A name=88></a>Chalmers 5300 21-19 8T<br>
<hr>
<A name=89></a>Last Sheet<br>
300<br>
Report #:<br>
1<br>
Ryan Job #<br>
8158<br>
Date:<br>
SURVEY REPORT<br>
Customer:<br>
Oasis Petroleum<br>
MW D Operator:<br>
M. McCammond / R. Maddalena<br>
W ell Name:<br>
Chalmers 5300 21-19 8T<br>
Directional Drillers:<br>
RPM<br>
Rig #:<br>
Nabors B-22<br>
Survey Corrected To:<br>
True North<br>
API #:<br>
33-053-06021<br>
Vertical Section Direction:<br>
88.95<br>
Calculation Method:<br>
Minimum Curvature Calculation<br>
Total Correction:<br>
8.17<br>
Temperature Forecasting Model (Chart Only):<br>
Logarithmic<br>
Survey #<br>
MD<br>
Inc<br>
Azm<br>
Temp<br>
TVD<br>
VS<br>
N/S<br>
E/W<br>
DLS<br>
Tie in to Gyro Surveys<br>
Tie In<br>
0<br>
0.00<br>
0.00<br>
0.00<br>
0.00<br>
0.00<br>
0.00<br>
0.00<br>
0.00<br>
1<br>
147<br>
0.30<br>
295.90<br>
64.00<br>
147.00<br>
-0.34<br>
0.17<br>
-0.35<br>
0.20<br>
2<br>
240<br>
0.30<br>
298.40<br>
66.00<br>
240.00<br>
-0.77<br>
0.39<br>
-0.78<br>
0.01<br>
3<br>
333<br>
0.40<br>
273.50<br>
66.00<br>
333.00<br>
-1.31<br>
0.53<br>
-1.32<br>
0.19<br>
4<br>
427<br>
0.10<br>
334.70<br>
68.00<br>
427.00<br>
-1.67<br>
0.62<br>
-1.68<br>
0.39<br>
5<br>
520<br>
0.30<br>
337.70<br>
68.00<br>
519.99<br>
-1.79<br>
0.92<br>
-1.81<br>
0.22<br>
6<br>
613<br>
0.30<br>
347.50<br>
69.00<br>
612.99<br>
-1.93<br>
1.38<br>
-1.95<br>
0.06<br>
7<br>
702<br>
0.60<br>
288.80<br>
66.00<br>
701.99<br>
-2.41<br>
1.76<br>
-2.44<br>
0.58<br>
8<br>
790<br>
0.50<br>
326.20<br>
69.00<br>
789.99<br>
-3.05<br>
2.23<br>
-3.09<br>
0.41<br>
9<br>
880<br>
0.50<br>
276.40<br>
71.00<br>
879.98<br>
-3.65<br>
2.60<br>
-3.70<br>
0.47<br>
10<br>
970<br>
0.20<br>
304.50<br>
75.00<br>
969.98<br>
-4.17<br>
2.73<br>
-4.22<br>
0.37<br>
11<br>
1063<br>
0.70<br>
292.90<br>
75.00<br>
1062.98<br>
-4.82<br>
3.04<br>
-4.88<br>
0.54<br>
12<br>
1156<br>
0.70<br>
290.30<br>
78.00<br>
1155.97<br>
-5.87<br>
3.46<br>
-5.94<br>
0.03<br>
13<br>
1250<br>
0.50<br>
326.00<br>
78.00<br>
1249.97<br>
-6.63<br>
4.00<br>
-6.70<br>
0.44<br>
14<br>
1343<br>
0.80<br>
327.20<br>
82.00<br>
1342.96<br>
-7.19<br>
4.88<br>
-7.28<br>
0.32<br>
15<br>
1436<br>
1.10<br>
347.00<br>
78.00<br>
1435.95<br>
-7.72<br>
6.30<br>
-7.83<br>
0.47<br>
16<br>
1530<br>
0.70<br>
171.00<br>
77.00<br>
1529.94<br>
-7.82<br>
6.61<br>
-7.95<br>
1.91<br>
17<br>
1623<br>
1.70<br>
181.60<br>
80.00<br>
1622.92<br>
-7.81<br>
4.67<br>
-7.90<br>
1.10<br>
18<br>
1717<br>
1.60<br>
197.20<br>
82.00<br>
1716.88<br>
-8.29<br>
2.02<br>
-8.32<br>
0.49<br>
19<br>
1810<br>
1.60<br>
154.70<br>
82.00<br>
1809.85<br>
-8.16<br>
-0.39<br>
-8.15<br>
1.25<br>
20<br>
1903<br>
1.80<br>
109.10<br>
82.00<br>
1902.81<br>
-6.25<br>
-2.04<br>
-6.22<br>
1.43<br>
21<br>
1997<br>
1.00<br>
91.90<br>
86.00<br>
1996.79<br>
-4.05<br>
-2.55<br>
-4.00<br>
0.95<br>
22<br>
2198<br>
0.90<br>
23.60<br>
80.00<br>
2197.76<br>
-1.64<br>
-1.17<br>
-1.62<br>
0.53<br>
23<br>
2261<br>
1.20<br>
29.80<br>
87.00<br>
2260.75<br>
-1.09<br>
-0.14<br>
-1.09<br>
0.51<br>
24<br>
2354<br>
0.40<br>
209.50<br>
93.00<br>
2353.75<br>
-0.76<br>
0.42<br>
-0.77<br>
1.72<br>
25<br>
2446<br>
0.60<br>
204.50<br>
98.00<br>
2445.74<br>
-1.13<br>
-0.29<br>
-1.13<br>
0.22<br>
26<br>
2540<br>
0.50<br>
187.80<br>
100.00<br>
2539.74<br>
-1.41<br>
-1.15<br>
-1.39<br>
0.20<br>
27<br>
2633<br>
0.70<br>
205.40<br>
104.00<br>
2632.74<br>
-1.72<br>
-2.06<br>
-1.68<br>
0.29<br>
28<br>
2726<br>
0.60<br>
192.00<br>
107.00<br>
2725.73<br>
-2.08<br>
-3.05<br>
-2.03<br>
0.19<br>
29<br>
2820<br>
0.90<br>
113.60<br>
111.00<br>
2819.72<br>
-1.53<br>
-3.83<br>
-1.46<br>
1.04<br>
30<br>
2913<br>
1.10<br>
110.40<br>
113.00<br>
2912.71<br>
-0.03<br>
-4.43<br>
0.05<br>
0.22<br>
31<br>
3007<br>
1.00<br>
106.60<br>
116.00<br>
3006.69<br>
1.59<br>
-4.98<br>
1.68<br>
0.13<br>
32<br>
3100<br>
0.70<br>
100.30<br>
118.00<br>
3099.68<br>
2.92<br>
-5.32<br>
3.02<br>
0.34<br>
33<br>
3193<br>
0.90<br>
104.20<br>
120.00<br>
3192.67<br>
4.18<br>
-5.60<br>
4.29<br>
0.22<br>
34<br>
3287<br>
0.90<br>
104.20<br>
122.00<br>
3286.66<br>
5.61<br>
-5.96<br>
5.72<br>
0.00<br>
35<br>
3380<br>
1.00<br>
99.00<br>
123.00<br>
3379.65<br>
7.11<br>
-6.27<br>
7.23<br>
0.14<br>
36<br>
3474<br>
1.10<br>
110.20<br>
125.00<br>
3473.63<br>
8.76<br>
-6.71<br>
8.88<br>
0.24<br>
37<br>
3567<br>
0.80<br>
108.50<br>
127.00<br>
3566.62<br>
10.20<br>
-7.22<br>
10.34<br>
0.32<br>
38<br>
3660<br>
0.90<br>
111.10<br>
127.00<br>
3659.61<br>
11.49<br>
-7.69<br>
11.63<br>
0.12<br>
39<br>
3754<br>
0.80<br>
111.10<br>
129.00<br>
3753.60<br>
12.78<br>
-8.19<br>
12.94<br>
0.11<br>
40<br>
3847<br>
1.30<br>
67.60<br>
132.00<br>
3846.59<br>
14.37<br>
-8.02<br>
14.52<br>
0.97<br>
41<br>
3940<br>
1.20<br>
58.90<br>
132.00<br>
3939.56<br>
16.19<br>
-7.12<br>
16.33<br>
0.23<br>
42<br>
4034<br>
1.30<br>
55.20<br>
134.00<br>
4033.54<br>
17.93<br>
-6.00<br>
18.04<br>
0.14<br>
43<br>
4127<br>
1.50<br>
61.40<br>
136.00<br>
4126.51<br>
19.89<br>
-4.82<br>
19.98<br>
0.27<br>
44<br>
4221<br>
1.10<br>
59.80<br>
138.00<br>
4220.49<br>
21.77<br>
-3.77<br>
21.84<br>
0.43<br>
45<br>
4314<br>
1.20<br>
55.00<br>
138.00<br>
4313.47<br>
23.35<br>
-2.77<br>
23.41<br>
0.15<br>
46<br>
4407<br>
1.00<br>
61.30<br>
140.00<br>
4406.45<br>
24.88<br>
-1.82<br>
24.92<br>
0.25<br>
47<br>
4500<br>
0.90<br>
62.30<br>
141.00<br>
4499.44<br>
26.25<br>
-1.09<br>
26.28<br>
0.11<br>
48<br>
4593<br>
0.90<br>
52.60<br>
143.00<br>
4592.43<br>
27.49<br>
-0.30<br>
27.50<br>
0.16<br>
49<br>
4687<br>
0.40<br>
33.70<br>
145.00<br>
4686.42<br>
28.28<br>
0.42<br>
28.27<br>
0.57<br>
50<br>
4780<br>
0.30<br>
340.90<br>
145.00<br>
4779.42<br>
28.38<br>
0.92<br>
28.37<br>
0.35<br>
51<br>
4873<br>
0.40<br>
17.80<br>
147.00<br>
4872.42<br>
28.41<br>
1.46<br>
28.39<br>
0.26<br>
52<br>
4967<br>
0.10<br>
35.10<br>
147.00<br>
4966.42<br>
28.57<br>
1.84<br>
28.54<br>
0.33<br>
53<br>
5060<br>
0.20<br>
335.60<br>
149.00<br>
5059.42<br>
28.55<br>
2.05<br>
28.52<br>
0.19<br>
54<br>
5153<br>
0.10<br>
358.20<br>
150.00<br>
5152.42<br>
28.49<br>
2.28<br>
28.45<br>
0.12<br>
55<br>
5247<br>
0.20<br>
317.70<br>
152.00<br>
5246.42<br>
28.38<br>
2.48<br>
28.34<br>
0.15<br>
56<br>
5340<br>
0.30<br>
216.70<br>
154.00<br>
5339.42<br>
28.12<br>
2.41<br>
28.08<br>
0.42<br>
57<br>
5433<br>
0.20<br>
241.80<br>
156.00<br>
5432.42<br>
27.83<br>
2.13<br>
27.79<br>
0.16<br>
58<br>
5527<br>
0.20<br>
160.00<br>
156.00<br>
5526.42<br>
27.74<br>
1.90<br>
27.71<br>
0.28<br>
59<br>
5620<br>
0.20<br>
302.40<br>
158.00<br>
5619.42<br>
27.65<br>
1.84<br>
27.62<br>
0.41<br>
60<br>
5714<br>
0.40<br>
276.30<br>
158.00<br>
5713.41<br>
27.19<br>
1.96<br>
27.16<br>
0.25<br>
Page 1 of 5<br>
<hr>
<A name=90></a>Last Sheet<br>
300<br>
Report #:<br>
1<br>
Ryan Job #<br>
8158<br>
Date:<br>
SURVEY REPORT<br>
Customer:<br>
Oasis Petroleum<br>
MW D Operator:<br>
M. McCammond / R. Maddalena<br>
W ell Name:<br>
Chalmers 5300 21-19 8T<br>
Directional Drillers:<br>
RPM<br>
Rig #:<br>
Nabors B-22<br>
Survey Corrected To:<br>
True North<br>
API #:<br>
33-053-06021<br>
Vertical Section Direction:<br>
88.95<br>
Calculation Method:<br>
Minimum Curvature Calculation<br>
Total Correction:<br>
8.17<br>
Temperature Forecasting Model (Chart Only):<br>
Logarithmic<br>
Survey #<br>
MD<br>
Inc<br>
Azm<br>
Temp<br>
TVD<br>
VS<br>
N/S<br>
E/W<br>
DLS<br>
61<br>
5807<br>
0.40<br>
266.30<br>
159.00<br>
5806.41<br>
26.54<br>
1.98<br>
26.51<br>
0.07<br>
62<br>
5900<br>
0.30<br>
253.30<br>
161.00<br>
5899.41<br>
25.99<br>
1.89<br>
25.96<br>
0.14<br>
63<br>
5994<br>
0.30<br>
241.60<br>
163.00<br>
5993.41<br>
25.53<br>
1.70<br>
25.50<br>
0.07<br>
64<br>
6087<br>
0.60<br>
212.10<br>
161.00<br>
6086.41<br>
25.05<br>
1.17<br>
25.03<br>
0.40<br>
65<br>
6126<br>
0.60<br>
226.10<br>
152.00<br>
6125.40<br>
24.79<br>
0.85<br>
24.77<br>
0.37<br>
66<br>
6173<br>
0.60<br>
213.70<br>
129.00<br>
6172.40<br>
24.47<br>
0.48<br>
24.46<br>
0.28<br>
67<br>
6267<br>
0.60<br>
116.70<br>
134.00<br>
6266.40<br>
24.62<br>
-0.15<br>
24.63<br>
0.96<br>
68<br>
6360<br>
1.00<br>
101.70<br>
140.00<br>
6359.39<br>
25.84<br>
-0.53<br>
25.86<br>
0.48<br>
69<br>
6453<br>
0.50<br>
127.90<br>
143.00<br>
6452.38<br>
26.95<br>
-0.95<br>
26.97<br>
0.64<br>
70<br>
6547<br>
0.30<br>
153.80<br>
147.00<br>
6546.38<br>
27.37<br>
-1.42<br>
27.40<br>
0.28<br>
71<br>
6640<br>
0.90<br>
175.10<br>
149.00<br>
6639.37<br>
27.53<br>
-2.37<br>
27.57<br>
0.68<br>
72<br>
6734<br>
1.00<br>
187.10<br>
152.00<br>
6733.36<br>
27.46<br>
-3.92<br>
27.54<br>
0.24<br>
73<br>
6827<br>
0.20<br>
53.30<br>
156.00<br>
6826.36<br>
27.48<br>
-4.63<br>
27.57<br>
1.23<br>
74<br>
6920<br>
0.10<br>
338.20<br>
159.00<br>
6919.36<br>
27.58<br>
-4.45<br>
27.67<br>
0.21<br>
75<br>
7014<br>
0.40<br>
317.50<br>
163.00<br>
7013.36<br>
27.33<br>
-4.13<br>
27.41<br>
0.33<br>
76<br>
7107<br>
0.70<br>
18.60<br>
165.00<br>
7106.35<br>
27.31<br>
-3.36<br>
27.38<br>
0.66<br>
77<br>
7200<br>
0.80<br>
20.40<br>
168.00<br>
7199.34<br>
27.74<br>
-2.21<br>
27.78<br>
0.11<br>
78<br>
7294<br>
0.50<br>
30.60<br>
170.00<br>
7293.34<br>
28.19<br>
-1.24<br>
28.22<br>
0.34<br>
79<br>
7387<br>
0.50<br>
357.70<br>
174.00<br>
7386.33<br>
28.40<br>
-0.49<br>
28.41<br>
0.30<br>
80<br>
7480<br>
0.70<br>
311.00<br>
176.00<br>
7479.33<br>
27.97<br>
0.29<br>
27.97<br>
0.55<br>
81<br>
7574<br>
1.60<br>
30.30<br>
177.00<br>
7573.31<br>
28.22<br>
1.80<br>
28.19<br>
1.73<br>
82<br>
7667<br>
1.70<br>
30.00<br>
179.00<br>
7666.28<br>
29.61<br>
4.12<br>
29.54<br>
0.11<br>
83<br>
7760<br>
0.80<br>
14.40<br>
179.00<br>
7759.25<br>
30.49<br>
5.94<br>
30.39<br>
1.03<br>
84<br>
7854<br>
0.70<br>
17.80<br>
181.00<br>
7853.24<br>
30.85<br>
7.12<br>
30.73<br>
0.12<br>
85<br>
7947<br>
0.50<br>
332.90<br>
183.00<br>
7946.24<br>
30.86<br>
8.02<br>
30.72<br>
0.53<br>
86<br>
8040<br>
0.00<br>
359.10<br>
185.00<br>
8039.24<br>
30.68<br>
8.39<br>
30.53<br>
0.54<br>
87<br>
8134<br>
0.30<br>
216.70<br>
186.00<br>
8133.24<br>
30.53<br>
8.19<br>
30.39<br>
0.32<br>
88<br>
8227<br>
0.40<br>
91.70<br>
188.00<br>
8226.24<br>
30.71<br>
7.98<br>
30.56<br>
0.67<br>
89<br>
8320<br>
0.50<br>
92.30<br>
190.00<br>
8319.23<br>
31.44<br>
7.96<br>
31.29<br>
0.11<br>
90<br>
8414<br>
0.50<br>
86.20<br>
192.00<br>
8413.23<br>
32.25<br>
7.97<br>
32.11<br>
0.06<br>
91<br>
8507<br>
0.60<br>
101.10<br>
188.00<br>
8506.23<br>
33.14<br>
7.90<br>
33.00<br>
0.19<br>
92<br>
8600<br>
0.60<br>
116.10<br>
186.00<br>
8599.22<br>
34.05<br>
7.59<br>
33.91<br>
0.17<br>
93<br>
8694<br>
0.60<br>
94.90<br>
188.00<br>
8693.22<br>
34.97<br>
7.33<br>
34.84<br>
0.23<br>
94<br>
8787<br>
0.70<br>
108.80<br>
192.00<br>
8786.21<br>
35.99<br>
7.11<br>
35.87<br>
0.20<br>
95<br>
8881<br>
0.30<br>
155.00<br>
194.00<br>
8880.21<br>
36.63<br>
6.70<br>
36.51<br>
0.57<br>
96<br>
8974<br>
0.60<br>
132.40<br>
195.00<br>
8973.20<br>
37.08<br>
6.15<br>
36.98<br>
0.37<br>
97<br>
9067<br>
0.40<br>
191.70<br>
197.00<br>
9066.20<br>
37.37<br>
5.51<br>
37.27<br>
0.56<br>
98<br>
9161<br>
0.40<br>
160.60<br>
199.00<br>
9160.20<br>
37.40<br>
4.88<br>
37.31<br>
0.23<br>
99<br>
9254<br>
0.40<br>
160.70<br>
201.00<br>
9253.20<br>
37.60<br>
4.26<br>
37.53<br>
0.00<br>
100<br>
9347<br>
0.40<br>
222.20<br>
203.00<br>
9346.19<br>
37.48<br>
3.72<br>
37.42<br>
0.44<br>
101<br>
9441<br>
0.70<br>
201.40<br>
201.00<br>
9440.19<br>
37.04<br>
2.94<br>
36.99<br>
0.38<br>
102<br>
9534<br>
0.60<br>
186.10<br>
204.00<br>
9533.18<br>
36.76<br>
1.93<br>
36.73<br>
0.21<br>
103<br>
9627<br>
0.60<br>
99.90<br>
206.00<br>
9626.18<br>
37.18<br>
1.36<br>
37.16<br>
0.88<br>
104<br>
9720<br>
0.90<br>
95.20<br>
208.00<br>
9719.17<br>
38.38<br>
1.21<br>
38.36<br>
0.33<br>
105<br>
9814<br>
0.80<br>
119.80<br>
212.00<br>
9813.16<br>
39.68<br>
0.81<br>
39.67<br>
0.40<br>
106<br>
9907<br>
0.70<br>
118.70<br>
213.00<br>
9906.15<br>
40.73<br>
0.22<br>
40.73<br>
0.11<br>
107<br>
10000<br>
0.70<br>
95.40<br>
215.00<br>
9999.15<br>
41.78<br>
-0.11<br>
41.79<br>
0.30<br>
108<br>
10094<br>
0.50<br>
115.30<br>
217.00<br>
10093.14<br>
42.72<br>
-0.34<br>
42.74<br>
0.30<br>
109<br>
10187<br>
0.20<br>
181.60<br>
217.00<br>
10186.14<br>
43.08<br>
-0.67<br>
43.10<br>
0.49<br>
110<br>
10253<br>
0.40<br>
111.00<br>
219.00<br>
10252.14<br>
43.29<br>
-0.87<br>
43.31<br>
0.58<br>
111<br>
10300<br>
0.20<br>
180.20<br>
186.00<br>
10299.14<br>
43.44<br>
-1.01<br>
43.46<br>
0.81<br>
112<br>
10331<br>
0.50<br>
115.00<br>
188.00<br>
10330.14<br>
43.56<br>
-1.12<br>
43.59<br>
1.46<br>
113<br>
10362<br>
3.40<br>
80.80<br>
186.00<br>
10361.12<br>
44.59<br>
-1.03<br>
44.62<br>
9.68<br>
114<br>
10393<br>
7.50<br>
78.20<br>
186.00<br>
10391.97<br>
47.49<br>
-0.47<br>
47.51<br>
13.25<br>
115<br>
10424<br>
12.70<br>
76.10<br>
190.00<br>
10422.48<br>
52.80<br>
0.76<br>
52.80<br>
16.81<br>
116<br>
10456<br>
17.10<br>
75.80<br>
190.00<br>
10453.40<br>
60.82<br>
2.76<br>
60.78<br>
13.75<br>
117<br>
10487<br>
21.10<br>
75.80<br>
190.00<br>
10482.69<br>
70.69<br>
5.25<br>
70.61<br>
12.90<br>
118<br>
10518<br>
23.60<br>
75.30<br>
190.00<br>
10511.35<br>
82.16<br>
8.19<br>
82.02<br>
8.09<br>
119<br>
10549<br>
25.50<br>
77.10<br>
192.00<br>
10539.55<br>
94.72<br>
11.26<br>
94.53<br>
6.59<br>
120<br>
10580<br>
28.00<br>
78.90<br>
192.00<br>
10567.23<br>
108.42<br>
14.15<br>
108.18<br>
8.48<br>
Page 2 of 5<br>
<hr>
<A name=91></a>Last Sheet<br>
300<br>
Report #:<br>
1<br>
Ryan Job #<br>
8158<br>
Date:<br>
SURVEY REPORT<br>
Customer:<br>
Oasis Petroleum<br>
MW D Operator:<br>
M. McCammond / R. Maddalena<br>
W ell Name:<br>
Chalmers 5300 21-19 8T<br>
Directional Drillers:<br>
RPM<br>
Rig #:<br>
Nabors B-22<br>
Survey Corrected To:<br>
True North<br>
API #:<br>
33-053-06021<br>
Vertical Section Direction:<br>
88.95<br>
Calculation Method:<br>
Minimum Curvature Calculation<br>
Total Correction:<br>
8.17<br>
Temperature Forecasting Model (Chart Only):<br>
Logarithmic<br>
Survey #<br>
MD<br>
Inc<br>
Azm<br>
Temp<br>
TVD<br>
VS<br>
N/S<br>
E/W<br>
DLS<br>
121<br>
10611<br>
31.30<br>
78.20<br>
194.00<br>
10594.17<br>
123.50<br>
17.20<br>
123.20<br>
10.70<br>
122<br>
10642<br>
34.30<br>
75.90<br>
194.00<br>
10620.22<br>
139.92<br>
20.97<br>
139.56<br>
10.48<br>
123<br>
10673<br>
37.20<br>
74.70<br>
194.00<br>
10645.38<br>
157.52<br>
25.58<br>
157.08<br>
9.62<br>
124<br>
10704<br>
40.60<br>
73.20<br>
195.00<br>
10669.50<br>
176.32<br>
30.97<br>
175.78<br>
11.38<br>
125<br>
10736<br>
44.50<br>
72.90<br>
194.00<br>
10693.07<br>
197.12<br>
37.28<br>
196.47<br>
12.20<br>
126<br>
10767<br>
48.20<br>
73.80<br>
192.00<br>
10714.47<br>
218.73<br>
43.70<br>
217.96<br>
12.12<br>
127<br>
10798<br>
52.10<br>
74.00<br>
192.00<br>
10734.33<br>
241.70<br>
50.29<br>
240.82<br>
12.59<br>
128<br>
10829<br>
56.00<br>
73.70<br>
192.00<br>
10752.52<br>
265.93<br>
57.27<br>
264.92<br>
12.60<br>
129<br>
10860<br>
59.80<br>
73.30<br>
192.00<br>
10768.99<br>
291.23<br>
64.73<br>
290.10<br>
12.31<br>
130<br>
10891<br>
64.30<br>
73.60<br>
194.00<br>
10783.52<br>
317.62<br>
72.53<br>
316.34<br>
14.54<br>
131<br>
10922<br>
67.60<br>
75.00<br>
195.00<br>
10796.15<br>
345.00<br>
80.18<br>
343.59<br>
11.42<br>
132<br>
10953<br>
71.20<br>
76.10<br>
194.00<br>
10807.06<br>
373.22<br>
87.42<br>
371.69<br>
12.08<br>
133<br>
10985<br>
75.20<br>
77.90<br>
195.00<br>
10816.31<br>
403.19<br>
94.31<br>
401.53<br>
13.61<br>
134<br>
11016<br>
79.00<br>
79.20<br>
195.00<br>
10823.23<br>
432.90<br>
100.30<br>
431.14<br>
12.92<br>
135<br>
11047<br>
82.50<br>
80.20<br>
197.00<br>
10828.21<br>
463.10<br>
105.77<br>
461.24<br>
11.73<br>
136<br>
11078<br>
86.50<br>
81.20<br>
199.00<br>
10831.18<br>
493.63<br>
110.75<br>
491.68<br>
13.30<br>
137<br>
11109<br>
88.80<br>
81.80<br>
199.00<br>
10832.45<br>
524.34<br>
115.33<br>
522.31<br>
7.67<br>
138<br>
11125<br>
89.10<br>
82.00<br>
199.00<br>
10832.74<br>
540.22<br>
117.59<br>
538.15<br>
2.25<br>
139<br>
11191<br>
89.80<br>
84.00<br>
222.00<br>
10833.38<br>
605.85<br>
125.63<br>
603.65<br>
3.21<br>
140<br>
11284<br>
88.70<br>
83.80<br>
222.00<br>
10834.59<br>
698.48<br>
135.51<br>
696.12<br>
1.20<br>
141<br>
11377<br>
90.70<br>
83.30<br>
221.00<br>
10835.08<br>
791.06<br>
145.96<br>
788.52<br>
2.22<br>
142<br>
11470<br>
91.10<br>
83.60<br>
222.00<br>
10833.62<br>
883.62<br>
156.56<br>
880.90<br>
0.54<br>
143<br>
11562<br>
88.00<br>
83.10<br>
222.00<br>
10834.34<br>
975.17<br>
167.22<br>
972.27<br>
3.41<br>
144<br>
11655<br>
88.20<br>
84.00<br>
222.00<br>
10837.43<br>
1067.71<br>
177.66<br>
1064.63<br>
0.99<br>
145<br>
11748<br>
89.10<br>
86.30<br>
222.00<br>
10839.62<br>
1160.47<br>
185.52<br>
1157.26<br>
2.66<br>
146<br>
11841<br>
89.70<br>
89.00<br>
224.00<br>
10840.59<br>
1253.43<br>
189.33<br>
1250.17<br>
2.97<br>
147<br>
11936<br>
90.40<br>
91.80<br>
226.00<br>
10840.51<br>
1348.39<br>
188.67<br>
1345.16<br>
3.04<br>
148<br>
12030<br>
90.00<br>
91.50<br>
228.00<br>
10840.18<br>
1442.29<br>
185.96<br>
1439.12<br>
0.53<br>
149<br>
12125<br>
89.20<br>
91.50<br>
230.00<br>
10840.84<br>
1537.19<br>
183.47<br>
1534.08<br>
0.84<br>
150<br>
12220<br>
89.10<br>
90.60<br>
233.00<br>
10842.25<br>
1632.11<br>
181.73<br>
1629.06<br>
0.95<br>
151<br>
12315<br>
90.90<br>
90.60<br>
233.00<br>
10842.25<br>
1727.07<br>
180.74<br>
1724.05<br>
1.89<br>
152<br>
12409<br>
89.70<br>
90.50<br>
235.00<br>
10841.76<br>
1821.03<br>
179.84<br>
1818.04<br>
1.28<br>
153<br>
12504<br>
89.50<br>
90.50<br>
237.00<br>
10842.42<br>
1915.99<br>
179.01<br>
1913.03<br>
0.21<br>
154<br>
12599<br>
88.30<br>
90.60<br>
239.00<br>
10844.25<br>
2010.94<br>
178.09<br>
2008.01<br>
1.27<br>
155<br>
12694<br>
90.60<br>
90.20<br>
239.00<br>
10845.16<br>
2105.90<br>
177.43<br>
2103.00<br>
2.46<br>
156<br>
12788<br>
89.20<br>
91.10<br>
240.00<br>
10845.32<br>
2199.85<br>
176.37<br>
2196.99<br>
1.77<br>
157<br>
12883<br>
89.60<br>
90.70<br>
242.00<br>
10846.32<br>
2294.79<br>
174.87<br>
2291.97<br>
0.60<br>
158<br>
12978<br>
88.40<br>
90.60<br>
242.00<br>
10847.98<br>
2389.73<br>
173.80<br>
2386.95<br>
1.27<br>
159<br>
13073<br>
89.40<br>
90.60<br>
242.00<br>
10849.80<br>
2484.67<br>
172.80<br>
2481.92<br>
1.05<br>
160<br>
13167<br>
89.00<br>
90.30<br>
244.00<br>
10851.11<br>
2578.63<br>
172.06<br>
2575.91<br>
0.53<br>
161<br>
13262<br>
89.40<br>
90.80<br>
244.00<br>
10852.44<br>
2673.59<br>
171.15<br>
2670.90<br>
0.67<br>
162<br>
13357<br>
87.90<br>
91.10<br>
246.00<br>
10854.68<br>
2768.50<br>
169.58<br>
2765.86<br>
1.61<br>
163<br>
13452<br>
89.20<br>
90.50<br>
246.00<br>
10857.08<br>
2863.42<br>
168.25<br>
2860.81<br>
1.51<br>
164<br>
13546<br>
88.90<br>
90.40<br>
248.00<br>
10858.64<br>
2957.37<br>
167.51<br>
2954.80<br>
0.34<br>
165<br>
13641<br>
90.20<br>
89.60<br>
248.00<br>
10859.39<br>
3052.35<br>
167.51<br>
3049.79<br>
1.61<br>
166<br>
13736<br>
89.70<br>
89.40<br>
249.00<br>
10859.47<br>
3147.34<br>
168.34<br>
3144.79<br>
0.57<br>
167<br>
13831<br>
88.50<br>
88.90<br>
249.00<br>
10860.96<br>
3242.33<br>
169.75<br>
3239.76<br>
1.37<br>
168<br>
13926<br>
89.40<br>
89.20<br>
249.00<br>
10862.70<br>
3337.31<br>
171.33<br>
3334.73<br>
1.00<br>
169<br>
14020<br>
90.00<br>
88.80<br>
249.00<br>
10863.19<br>
3431.31<br>
172.97<br>
3428.72<br>
0.77<br>
170<br>
14115<br>
90.80<br>
89.20<br>
251.00<br>
10862.53<br>
3526.31<br>
174.62<br>
3523.70<br>
0.94<br>
171<br>
14210<br>
89.80<br>
90.00<br>
253.00<br>
10862.03<br>
3621.30<br>
175.29<br>
3618.69<br>
1.35<br>
172<br>
14305<br>
90.10<br>
88.20<br>
251.00<br>
10862.12<br>
3716.29<br>
176.78<br>
3713.68<br>
1.92<br>
173<br>
14399<br>
91.40<br>
87.70<br>
251.00<br>
10860.89<br>
3810.27<br>
180.14<br>
3807.61<br>
1.48<br>
174<br>
14494<br>
92.10<br>
87.20<br>
253.00<br>
10857.98<br>
3905.19<br>
184.37<br>
3902.47<br>
0.91<br>
175<br>
14589<br>
91.00<br>
88.20<br>
251.00<br>
10855.41<br>
4000.13<br>
188.18<br>
3997.35<br>
1.56<br>
176<br>
14683<br>
91.30<br>
88.20<br>
253.00<br>
10853.53<br>
4094.10<br>
191.13<br>
4091.29<br>
0.32<br>
177<br>
14778<br>
90.10<br>
90.50<br>
255.00<br>
10852.37<br>
4189.09<br>
192.21<br>
4186.27<br>
2.73<br>
178<br>
14873<br>
89.50<br>
91.40<br>
255.00<br>
10852.70<br>
4284.03<br>
190.63<br>
4281.25<br>
1.14<br>
179<br>
14968<br>
90.20<br>
91.90<br>
257.00<br>
10852.95<br>
4378.92<br>
187.90<br>
4376.21<br>
0.91<br>
180<br>
15063<br>
89.50<br>
91.00<br>
257.00<br>
10853.20<br>
4473.83<br>
185.49<br>
4471.18<br>
1.20<br>
Page 3 of 5<br>
<hr>
<A name=92></a>Last Sheet<br>
300<br>
Report #:<br>
1<br>
Ryan Job #<br>
8158<br>
Date:<br>
SURVEY REPORT<br>
Customer:<br>
Oasis Petroleum<br>
MW D Operator:<br>
M. McCammond / R. Maddalena<br>
W ell Name:<br>
Chalmers 5300 21-19 8T<br>
Directional Drillers:<br>
RPM<br>
Rig #:<br>
Nabors B-22<br>
Survey Corrected To:<br>
True North<br>
API #:<br>
33-053-06021<br>
Vertical Section Direction:<br>
88.95<br>
Calculation Method:<br>
Minimum Curvature Calculation<br>
Total Correction:<br>
8.17<br>
Temperature Forecasting Model (Chart Only):<br>
Logarithmic<br>
Survey #<br>
MD<br>
Inc<br>
Azm<br>
Temp<br>
TVD<br>
VS<br>
N/S<br>
E/W<br>
DLS<br>
181<br>
15157<br>
88.60<br>
91.00<br>
257.00<br>
10854.75<br>
4567.75<br>
183.85<br>
4565.15<br>
0.96<br>
182<br>
15252<br>
92.10<br>
89.70<br>
257.00<br>
10854.17<br>
4662.71<br>
183.27<br>
4660.13<br>
3.93<br>
183<br>
15347<br>
88.50<br>
91.10<br>
247.00<br>
10853.68<br>
4757.66<br>
182.61<br>
4755.11<br>
4.07<br>
184<br>
15442<br>
88.10<br>
91.60<br>
257.00<br>
10856.50<br>
4852.53<br>
180.37<br>
4850.04<br>
0.67<br>
185<br>
15537<br>
89.50<br>
91.70<br>
257.00<br>
10858.48<br>
4947.40<br>
177.64<br>
4944.98<br>
1.48<br>
186<br>
15631<br>
89.90<br>
91.80<br>
257.00<br>
10858.98<br>
5041.29<br>
174.76<br>
5038.93<br>
0.44<br>
187<br>
15726<br>
89.70<br>
89.60<br>
257.00<br>
10859.31<br>
5136.24<br>
173.60<br>
5133.92<br>
2.33<br>
188<br>
15821<br>
89.00<br>
89.60<br>
258.00<br>
10860.39<br>
5231.23<br>
174.27<br>
5228.91<br>
0.74<br>
189<br>
15916<br>
87.60<br>
90.10<br>
260.00<br>
10863.20<br>
5326.17<br>
174.52<br>
5323.87<br>
1.56<br>
190<br>
16010<br>
89.00<br>
89.30<br>
258.00<br>
10865.99<br>
5420.12<br>
175.01<br>
5417.82<br>
1.72<br>
191<br>
16105<br>
90.40<br>
86.70<br>
258.00<br>
10866.49<br>
5515.09<br>
178.32<br>
5512.75<br>
3.11<br>
192<br>
16200<br>
91.00<br>
86.50<br>
258.00<br>
10865.33<br>
5610.00<br>
183.96<br>
5607.58<br>
0.67<br>
193<br>
16294<br>
91.20<br>
88.90<br>
258.00<br>
10863.53<br>
5703.96<br>
187.73<br>
5701.48<br>
2.56<br>
194<br>
16389<br>
90.40<br>
88.40<br>
258.00<br>
10862.20<br>
5798.95<br>
189.97<br>
5796.44<br>
0.99<br>
195<br>
16484<br>
88.00<br>
88.90<br>
260.00<br>
10863.53<br>
5893.93<br>
192.20<br>
5891.40<br>
2.58<br>
196<br>
16579<br>
89.50<br>
89.40<br>
260.00<br>
10865.60<br>
5988.90<br>
193.61<br>
5986.36<br>
1.66<br>
197<br>
16674<br>
90.30<br>
89.60<br>
260.00<br>
10865.76<br>
6083.90<br>
194.44<br>
6081.36<br>
0.87<br>
198<br>
16768<br>
91.00<br>
89.70<br>
262.00<br>
10864.70<br>
6177.88<br>
195.02<br>
6175.35<br>
0.75<br>
199<br>
16863<br>
89.70<br>
90.00<br>
260.00<br>
10864.12<br>
6272.87<br>
195.27<br>
6270.34<br>
1.40<br>
200<br>
16958<br>
88.30<br>
90.40<br>
262.00<br>
10865.77<br>
6367.83<br>
194.93<br>
6365.32<br>
1.53<br>
201<br>
17053<br>
86.80<br>
90.20<br>
262.00<br>
10869.84<br>
6462.71<br>
194.44<br>
6460.23<br>
1.59<br>
202<br>
17148<br>
88.30<br>
90.30<br>
262.00<br>
10873.90<br>
6557.60<br>
194.02<br>
6555.14<br>
1.58<br>
203<br>
17243<br>
90.00<br>
90.50<br>
262.00<br>
10875.31<br>
6652.55<br>
193.36<br>
6650.13<br>
1.80<br>
204<br>
17337<br>
91.00<br>
92.20<br>
262.00<br>
10874.49<br>
6746.46<br>
191.15<br>
6744.09<br>
2.10<br>
205<br>
17432<br>
92.40<br>
92.10<br>
262.00<br>
10871.67<br>
6841.27<br>
187.58<br>
6838.98<br>
1.48<br>
206<br>
17527<br>
90.90<br>
89.90<br>
262.00<br>
10868.93<br>
6936.16<br>
185.93<br>
6933.92<br>
2.80<br>
207<br>
17622<br>
89.70<br>
89.90<br>
260.00<br>
10868.43<br>
7031.15<br>
186.09<br>
7028.92<br>
1.26<br>
208<br>
17716<br>
89.00<br>
89.80<br>
262.00<br>
10869.50<br>
7125.13<br>
186.34<br>
7122.91<br>
0.75<br>
209<br>
17811<br>
89.10<br>
90.40<br>
262.00<br>
10871.08<br>
7220.10<br>
186.17<br>
7217.90<br>
0.64<br>
210<br>
17906<br>
89.90<br>
91.80<br>
262.00<br>
10871.90<br>
7315.02<br>
184.35<br>
7312.87<br>
1.70<br>
211<br>
18001<br>
89.60<br>
92.10<br>
264.00<br>
10872.32<br>
7409.89<br>
181.12<br>
7407.82<br>
0.45<br>
212<br>
18095<br>
90.10<br>
92.30<br>
264.00<br>
10872.57<br>
7503.74<br>
177.51<br>
7501.75<br>
0.57<br>
213<br>
18190<br>
91.50<br>
92.30<br>
264.00<br>
10871.24<br>
7598.56<br>
173.70<br>
7596.66<br>
1.47<br>
214<br>
18285<br>
90.60<br>
90.90<br>
264.00<br>
10869.50<br>
7693.44<br>
171.04<br>
7691.60<br>
1.75<br>
215<br>
18380<br>
89.80<br>
88.50<br>
262.00<br>
10869.17<br>
7788.43<br>
171.54<br>
7786.59<br>
2.66<br>
216<br>
18475<br>
88.50<br>
88.10<br>
266.00<br>
10870.58<br>
7883.41<br>
174.36<br>
7881.54<br>
1.43<br>
217<br>
18506<br>
88.10<br>
88.10<br>
264.00<br>
10871.50<br>
7914.39<br>
175.39<br>
7912.51<br>
1.29<br>
218<br>
18569<br>
88.80<br>
87.80<br>
262.00<br>
10873.20<br>
7977.36<br>
177.64<br>
7975.44<br>
1.21<br>
219<br>
18664<br>
92.30<br>
87.40<br>
264.00<br>
10872.29<br>
8072.31<br>
181.62<br>
8070.34<br>
3.71<br>
220<br>
18759<br>
91.00<br>
88.60<br>
264.00<br>
10869.55<br>
8167.26<br>
184.93<br>
8165.24<br>
1.86<br>
221<br>
18854<br>
91.60<br>
88.40<br>
266.00<br>
10867.40<br>
8262.23<br>
187.42<br>
8260.18<br>
0.67<br>
222<br>
18948<br>
90.20<br>
90.40<br>
264.00<br>
10865.92<br>
8356.21<br>
188.40<br>
8354.16<br>
2.60<br>
223<br>
19043<br>
91.00<br>
90.00<br>
262.00<br>
10864.93<br>
8451.18<br>
188.07<br>
8449.15<br>
0.94<br>
224<br>
19138<br>
89.90<br>
90.30<br>
264.00<br>
10864.18<br>
8546.15<br>
187.82<br>
8544.15<br>
1.20<br>
225<br>
19233<br>
89.20<br>
90.10<br>
267.00<br>
10864.93<br>
8641.13<br>
187.49<br>
8639.14<br>
0.77<br>
226<br>
19328<br>
90.10<br>
90.00<br>
267.00<br>
10865.51<br>
8736.11<br>
187.41<br>
8734.14<br>
0.95<br>
227<br>
19422<br>
87.90<br>
90.30<br>
267.00<br>
10867.15<br>
8830.07<br>
187.16<br>
8828.12<br>
2.36<br>
228<br>
19517<br>
88.70<br>
91.50<br>
267.00<br>
10869.96<br>
8924.97<br>
185.67<br>
8923.06<br>
1.52<br>
229<br>
19612<br>
89.60<br>
91.60<br>
269.00<br>
10871.37<br>
9019.86<br>
183.10<br>
9018.02<br>
0.95<br>
230<br>
19707<br>
89.90<br>
90.90<br>
269.00<br>
10871.79<br>
9114.78<br>
181.03<br>
9112.99<br>
0.80<br>
231<br>
19802<br>
88.00<br>
90.50<br>
269.00<br>
10873.53<br>
9209.71<br>
179.87<br>
9207.96<br>
2.04<br>
232<br>
19896<br>
89.90<br>
90.30<br>
269.00<br>
10875.25<br>
9303.66<br>
179.21<br>
9301.94<br>
2.03<br>
233<br>
19991<br>
88.40<br>
91.10<br>
269.00<br>
10876.66<br>
9398.61<br>
178.05<br>
9396.92<br>
1.79<br>
234<br>
20086<br>
89.10<br>
90.10<br>
269.00<br>
10878.73<br>
9493.54<br>
177.05<br>
9491.89<br>
1.28<br>
235<br>
20181<br>
88.60<br>
90.90<br>
269.00<br>
10880.64<br>
9588.49<br>
176.23<br>
9586.87<br>
0.99<br>
236<br>
20276<br>
89.30<br>
90.40<br>
267.00<br>
10882.38<br>
9683.43<br>
175.15<br>
9681.84<br>
0.91<br>
237<br>
20370<br>
90.40<br>
90.30<br>
269.00<br>
10882.63<br>
9777.40<br>
174.57<br>
9775.84<br>
1.18<br>
238<br>
20456<br>
90.40<br>
90.80<br>
269.00<br>
10882.03<br>
9863.36<br>
173.75<br>
9861.83<br>
0.58<br>
Projection<br>
20519<br>
90.40<br>
90.80<br>
PTB<br>
10881.59<br>
9926.33<br>
172.87<br>
9924.83<br>
0.00<br>
Page 4 of 5<br>
<hr>
<A name=93></a><hr>
<A name=94></a><hr>
<A name=95></a><hr>
<A name=96></a><hr>
<A name=97></a><hr>
<A name=98></a><hr>
<A name=99></a><hr>
<A name=100></a><hr>
<A name=101></a><hr>
<A name=102></a><hr>
<A name=103></a><hr>
<A name=104></a><hr>
<A name=105></a><hr>
<A name=106></a><hr>
<A name=107></a><hr>
<A name=108></a><hr>
<A name=109></a><hr>
<A name=110></a><hr>
<A name=111></a><hr>
<A name=112></a><hr>
<A name=113></a><hr>
<A name=114></a><hr>
<A name=115></a><hr>
<A name=116></a><hr>
<A name=117></a><hr>
<A name=118></a><hr>
<A name=119></a><hr>
<A name=120></a>28636<br>
Notify NDIC inspector Richard Dunn at 701-770-3554 with spud and TD info.<br>
X<br>
6/16/14<br>
Nathaniel Erbele<br>
Petroleum Resource Specialist<br>
<hr>
<A name=121></a>June 16, 2014<br>
Brandi Terry<br>
Regulatory Specialist<br>
OASIS PETROLEUM NORTH AMERICA LLC<br>
1001 Fannin Suite 1500<br>
Houston, TX 77002<br>
RE:<br>
HORIZONTAL WELL<br>
CHALMERS 5300 21-19 8T<br>
LOT2 Section 19-153N-100W<br>
McKenzie County<br>
Well File # 28636<br>
Dear Brandi:<br>
Pursuant to Commission Order No. 23752, approval to drill the above captioned well is hereby given. The<br>
approval is granted on the condition that all portions of the well bore not isolated by cement, be no closer than<br>
the 500' setback from the north & south boundaries and 200' setback from the east & west boundaries within the<br>
1280 acre spacing unit consisting of Section 19 &20 T153N R100W.<br>
PERMIT STIPULATIONS: Due to the proximity of Lake Sakakawea to the well site, a dike is required<br>
surrounding the entire location. Effective June 1, 2014, a covered leak-proof container (with placard) for<br>
filter sock disposal must be maintained on the well site beginning when the well is spud, and must<br>
remain on-site during clean-out, completion, and flow-back whenever filtration operations are<br>
conducted. OASIS PETRO NO AMER must contact NDIC Field Inspector Richard Dunn at 701-770-<br>
3554 prior to location construction.<br>
Drilling pit<br>
NDAC 43-02-03-19.4 states that "a pit may be utilized to bury drill cuttings and solids generated during well<br>
drilling and completion operations, providing the pit can be constructed, used and reclaimed in a manner that will<br>
prevent pollution of the land surface and freshwaters. Reserve and circulation of mud system through earthen pits<br>
are prohibited. All pits shall be inspected by an authorized representative of the director prior to lining and use.<br>
Drill cuttings and solids must be stabilized in a manner approved by the director prior to placement in a cuttings<br>
pit."<br>
Form 1 Changes & Hard Lines<br>
Any changes, shortening of casing point or lengthening at Total Depth must have prior approval by the NDIC.<br>
The proposed directional plan is at a legal location. Based on the azimuth of the proposed lateral the maximum<br>
legal coordinate from the well head is: 9972' east.<br>
Location Construction Commencement (Three Day Waiting Period)<br>
Operators shall not commence operations on a drill site until the 3rd business day following publication of the<br>
approved drilling permit on the NDIC - OGD Daily Activity Report. If circumstances require operations to<br>
commence before the 3rd business day following publication on the Daily Activity Report, the waiting period may<br>
be waived by the Director. Application for a waiver must be by sworn affidavit providing the information<br>
necessary to evaluate the extenuating circumstances, the factors of NDAC 43-02-03-16.2 (1), (a)-(f), and any other<br>
information that would allow the Director to conclude that in the event another owner seeks revocation of the<br>
drilling permit, the applicant should retain the permit.<br>
<hr>
<A name=122></a>Brandi Terry<br>
June 16, 2014<br>
Page 2<br>
Permit Fee & Notification<br>
Payment was received in the amount of $100 via credit card .The permit fee has been received. It is requested<br>
that notification be given immediately upon the spudding of the well. This information should be relayed to the<br>
Oil & Gas Division, Bismarck, via telephone. The following information must be included: Well name, legal<br>
location, permit number, drilling contractor, company representative, date and time of spudding. Office hours are<br>
8:00 a.m. to 12:00 p.m. and 1:00 p.m. to 5:00 p.m. Central Time. Our telephone number is (701) 328-8020, leave a<br>
message if after hours or on the weekend.<br>
Survey Requirements for Horizontal, Horizontal Re-entry, and Directional Wells<br>
NDAC Section 43-02-03-25 (Deviation Tests and Directional Surveys) states in part (that) the survey contractor<br>
shall file a certified copy of all surveys with the director free of charge within thirty days of completion. Surveys<br>
must be submitted as one electronic copy, or in a form approved by the director. However, the director may<br>
require the directional survey to be filed immediately after completion if the survey is needed to conduct the<br>
operation of the director's office in a timely manner. Certified surveys must be submitted via email in one adobe<br>
document, with a certification cover page to </span><span class="ft3">certsurvey@nd.gov</span><span class="ft1">.<br>
Survey points shall be of such frequency to accurately determine the entire location of the well bore.<br>
Specifically, the Horizontal and Directional well survey frequency is 100 feet in the vertical, 30 feet in the curve<br>
(or when sliding) and 90 feet in the lateral.<br>
Surface casing cement<br>
Tail cement utilized on surface casing must have a minimum compressive strength of 500 psi within 12<br>
hours, and tail cement utilized on production casing must have a minimum compressive strength of 500 psi<br>
before drilling the plug or initiating tests.<br>
Logs </span><span class="ft4">NDAC Section 43-02-03-31 requires the running of (1) a suite of open hole logs from which formation tops and<br>
porosity zones can be determined, (2) a Gamma Ray Log run from total depth to ground level elevation of the well bore, and<br>
(3) a log from which the presence and quality of cement can be determined (Standard CBL or Ultrasonic cement evaluation<br>
log) in every well in which production or intermediate casing has been set, this log must be run prior to completing the well.<br>
All logs run must be submitted free of charge, as one digital TIFF (tagged image file format) copy and one digital LAS (log<br>
ASCII) formatted copy. Digital logs may be submitted on a standard CD, DVD, or attached to an email sent to<br>
digitallogs@nd.gov<br>
Thank you for your cooperation.<br>
Sincerely,<br>
Nathaniel Erbele<br>
Petroleum Resource Specialist<br>
<hr>
<A name=123></a>INDUSTRIAL COMMISSION OF NORTH DAKOTA<br>
OIL AND GAS DIVISION<br>
600 EAST BOULEVARD DEPT 405<br>
BISMARCK, ND 58505-0840<br>
SFN 54269 (08-2005)<br>
PLEASE READ INSTRUCTIONS BEFORE FILLING OUT FORM.<br>
PLEASE SUBMIT THE ORIGINAL AND ONE COPY.<br>
Type of Work<br>
Type of Well<br>
Approximate Date Work Will Start<br>
Confidential Status<br>
New Location<br>
Oil & Gas<br>
05 / 1 / 2014<br>
No<br>
Operator<br>
Telephone Number<br>
OASIS PETROLEUM NORTH AMERICA LLC<br>
281-404-9491<br>
Address<br>
City<br>
State<br>
Zip Code<br>
1001 Fannin Suite 1500<br>
Houston<br>
TX<br>
77002<br>
Notice has been provided to the owner of any<br>
This well is not located within five hundred<br>
permanently occupied dwelling within 1,320 feet.<br>
feet of an occupied dwelling.<br>
enter data for additional laterals on page 2)<br>
Well Name<br>
Well Number<br>
CHALMERS<br>
5300 21-19 8T<br>
Surface Footages<br>
Qtr-Qtr<br>
Section<br>
Township<br>
Range<br>
County<br>
2226 </span><span class="ft0">FL<br>
N326 </span><span class="ft0">F </span><span class="ft6">W </span><span class="ft0">L<br>
LOT2<br>
19<br>
153<br>
100<br>
McKenzie<br>
Longstring Casing Point Footages<br>
Qtr-Qtr<br>
Section<br>
Township<br>
Range<br>
County<br>
2089 </span><span class="ft0">F </span><span class="ft6">N </span><span class="ft0">L<br>
811 </span><span class="ft0">F </span><span class="ft6">W </span><span class="ft0">L<br>
LOT2<br>
19<br>
153<br>
100<br>
McKenzie<br>
Longstring Casing Point Coordinates From Well Head<br>
Azimuth<br>
Longstring Total Depth<br>
137 N </span><span class="ft0">From WH<br>
485 E </span><span class="ft0">From WH<br>
79.8<br>
11106 </span><span class="ft0">Feet MD<br>
10818 </span><span class="ft0">Feet TVD<br>
Bottom Hole Footages From Nearest Section Line<br>
Qtr-Qtr<br>
Section<br>
Township<br>
Range<br>
County<br>
2044 </span><span class="ft0">F </span><span class="ft6">N<br>
LF<br>
213<br>
E<br>
L<br>
SENE<br>
20<br>
153<br>
100<br>
McKenzie<br>
Bottom Hole Coordinates From Well Head<br>
KOP Lateral 1<br>
Azimuth Lateral 1<br>
Estimated Total Depth Lateral 1<br>
182 N </span><span class="ft0">From WH<br>
9959 E </span><span class="ft0">From WH<br>
10341 </span><span class="ft0">Feet MD<br>
90.0<br>
20582 </span><span class="ft0">Feet MD<br>
10876 </span><span class="ft0">Feet TVD<br>
Latitude of Well Head<br>
Longitude of Well Head<br>
NAD Reference<br>
Description of<br>
(Subject to NDIC Approval)<br>
48<br>
03<br>
41.30<br>
-103<br>
36<br>
10.11<br>
NAD83<br>
Spacing Unit:<br>
Section 19 &20 T153N R100W<br>
Ground Elevation<br>
Acres in Spacing/Drilling Unit<br>
Spacing/Drilling Unit Setback Requirement<br>
Industrial Commission Order<br>
2054 </span><span class="ft0">Feet Above S.L.<br>
1280<br>
500 </span><span class="ft8">Feet N/S<br>
200<br>
Feet<br>
Feet E/W<br>
23752<br>
North Line of Spacing/Drilling Unit<br>
South Line of Spacing/Drilling Unit<br>
East Line of Spacing/Drilling Unit<br>
West Line of Spacing/Drilling Unit<br>
10498 </span><span class="ft0">Feet<br>
10513 </span><span class="ft0">Feet<br>
5280 </span><span class="ft0">Feet<br>
5263 </span><span class="ft0">Feet<br>
Objective Horizons<br>
Pierre Shale Top<br>
Three Forks B1<br>
2021<br>
Proposed<br>
Size<br>
Weight<br>
Depth<br>
Cement Volume<br>
Surface Casing<br>
9<br>
5/8<br>
36 </span><span class="ft0">Lb./Ft. </span><span class="ft6">2150<br>
Feet<br>
632<br>
Sacks<br>
Proposed<br>
Size<br>
Weight(s)<br>
Longstring Total Depth<br>
Cement Volume<br>
Cement Top<br>
Top Dakota Sand<br>
Longstring Casing<br>
7<br>
29/32<br>
Lb./Ft.<br>
11106 </span><span class="ft0">Feet MD<br>
10818 </span><span class="ft0">Feet TVD<br>
765<br>
Sacks<br>
3917 </span><span class="ft0">Feet<br>
5417<br>
Feet<br>
Base of Last<br>
Last<br>
Salt (If<br>
Charles </span><span class="ft0">Applicable)<br>
Salt (If Applicable)<br>
9209 </span><span class="ft0">Feet<br>
Proposed Logs<br>
Triple Combo: KOP to Kibby GR/Res to BSC GR to surf CND through the Dakota<br>
Drilling Mud Type (Vertical Hole - Below Surface Casing)<br>
Drilling Mud Type (Lateral)<br>
Invert<br>
Salt Water Gel<br>
Survey Type in Vertical Portion of Well<br>
Survey Frequency: Build Section<br>
Survey Frequency: Lateral<br>
Survey Contractor<br>
MWD </span><span class="ft0">Every 100 Feet<br>
30 </span><span class="ft0">Feet<br>
90 </span><span class="ft0">Feet<br>
Ryan<br>
proposed mud/cementing plan,<br>
directional plot/plan, $100 fee.<br>
<hr>
<A name=124></a>Page 2<br>
SFN 54269 (08-2005)<br>
Documents forwarded by email: Drill plan with drilling fluids, Well Summary with casing/cement plans, Directional Plan & Plot, Plats<br>
Lateral 2<br>
KOP Lateral 2<br>
Azimuth Lateral 2<br>
Estimated Total Depth Lateral 2<br>
KOP Coordinates From Well Head<br>
Feet MD<br>
Feet MD<br>
Feet TVD<br>
From WH<br>
From WH<br>
Formation Entry Point Coordinates From Well Head<br>
Bottom Hole Coordinates From Well Head<br>
From WH<br>
From WH<br>
From WH<br>
From WH<br>
KOP Footages From Nearest Section Line<br>
Qtr-Qtr<br>
Section<br>
Township<br>
Range<br>
County<br>
FL<br>
FL<br>
Bottom Hole Footages From Nearest Section Line<br>
Qtr-Qtr<br>
Section<br>
Township<br>
Range<br>
County<br>
FL<br>
F<br>
L<br>
Lateral 3<br>
KOP Lateral 3<br>
Azimuth Lateral 3<br>
Estimated Total Depth Lateral 3<br>
KOP Coordinates From Well Head<br>
Feet MD<br>
Feet MD<br>
Feet TVD<br>
From WH<br>
From WH<br>
Formation Entry Point Coordinates From Well Head<br>
Bottom Hole Coordinates From Well Head<br>
From WH<br>
From WH<br>
From WH<br>
From WH<br>
KOP Footages From Nearest Section Line<br>
Qtr-Qtr<br>
Section<br>
Township<br>
Range<br>
County<br>
F<br>
L<br>
FL<br>
Bottom Hole Footages From Nearest Section Line<br>
Qtr-Qtr<br>
Section<br>
Township<br>
Range<br>
County<br>
F<br>
L<br>
FL<br>
Lateral 4<br>
KOP Lateral 4<br>
Azimuth Lateral 4<br>
Estimated Total Depth Lateral 4<br>
KOP Coordinates From Well Head<br>
Feet MD<br>
Feet MD<br>
Feet TVD<br>
From WH<br>
From WH<br>
Formation Entry Point Coordinates From Well Head<br>
Bottom Hole Coordinates From Well Head<br>
From WH<br>
From WH<br>
From WH<br>
From WH<br>
KOP Footages From Nearest Section Line<br>
Qtr-Qtr<br>
Section<br>
Township<br>
Range<br>
County<br>
FL<br>
FL<br>
Bottom Hole Footages From Nearest Section Line<br>
Qtr-Qtr<br>
Section<br>
Township<br>
Range<br>
County<br>
FL<br>
FL<br>
Lateral 5<br>
KOP Lateral 5<br>
Azimuth Lateral 5<br>
Estimated Total Depth Lateral 5<br>
KOP Coordinates From Well Head<br>
Feet MD<br>
Feet MD<br>
Feet TVD<br>
From WH<br>
From WH<br>
Formation Entry Point Coordinates From Well Head<br>
Bottom Hole Coordinates From Well Head<br>
From WH<br>
From WH<br>
From WH<br>
From WH<br>
KOP Footages From Nearest Section Line<br>
Qtr-Qtr<br>
Section<br>
Township<br>
Range<br>
County<br>
FL<br>
FL<br>
Bottom Hole Footages From Nearest Section Line<br>
Qtr-Qtr<br>
Section<br>
Township<br>
Range<br>
County<br>
FL<br>
FL<br>
Date<br>
I hereby swear or affirm the information provided is true, complete and correct as determined from all available records.<br>
03 / 31 / 2014<br>
Signature<br>
Printed Name<br>
Title<br>
ePermit<br>
Brandi Terry<br>
Regulatory Specialist<br>
Email Address(es)<br>
Permit and File Number<br>
API Number<br>
Date Approved<br>
28636<br>
053<br>
06021<br>
6 / 16 / 2014<br>
Field<br>
By<br>
BAKER<br>
Nathaniel Erbele<br>
Pool<br>
Permit Type<br>
Title<br>
BAKKEN<br>
DEVELOPMENT<br>
Petroleum Resource Specialist<br>
<hr>
<A name=125></a>April 9, 2014<br>
RE:<br>
Filter Socks and Other Filter Media<br>
Leakproof Container Required<br>
Oil and Gas Wells<br>
Dear Operator,<br>
North Dakota Administrative Code Section 43-02-03-19.2 states in part that all waste material associated with<br>
exploration or production of oil and gas must be properly disposed of in an authorized facility in accord with all<br>
applicable local, state, and federal laws and regulations.<br>
Filtration systems are commonly used during oil and gas operations in North Dakota. The Commission is very<br>
concerned about the proper disposal of used filters (including filter socks) used by the oil and gas industry.<br>
Effective June 1, 2014, a container must be maintained on each well drilled in North Dakota beginning when the<br>
well is spud and must remain on-site during clean-out, completion, and flow-back whenever filtration operations<br>
are conducted. The on-site container must be used to store filters until they can be properly disposed of in an<br>
authorized facility. Such containers must be:<br>
leakproof to prevent any fluids from escaping the container<br>
covered to prevent precipitation from entering the container<br>
placard to indicate only filters are to be placed in the container<br>
If the operator will not utilize a filtration system, a waiver to the container requirement will be considered, but<br>
only upon the operator submitting a Sundry Notice (Form 4) justifying their request.<br>
As previously stated in our March 13, 2014 letter, North Dakota Administrative Code Section 33-20-02.1-01<br>
states in part that every person who transports solid waste (which includes oil and gas exploration and production<br>
wastes) is required to have a valid permit issued by the North Dakota Department of Health, Division of Waste<br>
Management. Please contact the Division of Waste Management at (701) 328-5166 with any questions on the<br>
solid waste program. Note oil and gas exploration and production wastes include produced water, drilling mud,<br>
invert mud, tank bottom sediment, pipe scale, filters, and fly ash.<br>
Thank you for your cooperation.<br>
Sincerely,<br>
Bruce E. Hicks<br>
Assistant Director<br>
<hr>
<A name=126></a><hr>
<A name=127></a>DRILLING PLAN<br>
OPERATOR<br>
Oasis Petroleum<br>
COUNTY/STATE<br>
McKenzie Co. , ND<br>
WELL NAME<br>
Chalmers 5300 21-19 8T<br>
RIG<br>
B 25<br>
WELL TYPE<br>
Horizontal Three Forks<br>
LOCATION<br>
SW NW 19-153N-100W<br>
Surface Location (survey plat): </span><span class="ft1">2226' FNL<br>
326' FWL<br>
EST. T.D.<br>
20,582'<br>
GROUND ELEV:<br>
2,046'<br>
Sub Height:<br>
25'<br>
TOTAL LATERAL:<br>
9,476'<br>
KB ELEV:<br>
2,071'<br>
MARKER<br>
TVD<br>
Subsea TVD LOGS:<br>
Type<br>
Interval<br>
OH Logs: Request a Sundry for an Open Hole Log Waiver: Oasis Chalmers 5300 31-19H 1,850' to<br>
Pierre<br>
NDIC MAP<br>
2,021<br>
50<br>
S sec 19 153N 100W<br>
Greenhorn<br>
4,624<br>
-2,553<br>
CBL/GR: Above top of cement/GR to base of casing<br>
Mowry<br>
5,029<br>
-2,958<br>
MWD GR: KOP to lateral TD<br>
Dakota<br>
5,417<br>
-3,346<br>
Rierdon<br>
6,463<br>
-4,392 </span><span class="ft0">DEVIATION:<br>
Surf:<br>
3 deg. max., 1 deg / 100'; srvy every 500'<br>
Dunham Salt<br>
6,891<br>
-4,820<br>
Prod:<br>
5 deg. max., 1 deg / 100'; srvy every 100'<br>
Dunham Salt Base<br>
6,960<br>
-4,889<br>
Pine Salt<br>
7,257<br>
-5,186<br>
Pine Salt Base<br>
7,290<br>
-5,219<br>
Opeche Salt<br>
7,351<br>
-5,280<br>
Opeche Salt Base<br>
7,426<br>
-5,355<br>
Amsden<br>
7,662<br>
-5,591<br>
Tyler<br>
7,828<br>
-5,757<br>
Otter/Base Minnelusa<br>
8,032<br>
-5,961 </span><span class="ft0">DST'S:<br>
None planned<br>
Kibbey Lime<br>
8,384<br>
-6,313<br>
Charles Salt<br>
8,534<br>
-6,463 </span><span class="ft0">CORES:<br>
None planned<br>
Base Last Salt<br>
9,209<br>
-7,138<br>
Mission Canyon<br>
9,429<br>
-7,358<br>
Lodgepole<br>
9,993<br>
-7,922<br>
False Bakken<br>
10,706<br>
-8,635<br>
Upper Bakken Shale<br>
10,716<br>
-8,645 </span><span class="ft0">MUDLOGGING:<br>
Two-Man:<br>
Begin 200' above Kibbey<br>
Middle Bakken<br>
10,732<br>
-8,661<br>
30' samples in curve and lateral<br>
Lower Bakken Shale<br>
10,766<br>
-8,695<br>
Pronghorn<br>
10,780<br>
-8,709<br>
Threeforks<br>
10,799<br>
-8,728<br>
Threeforks(Top of Target)<br>
10,811<br>
-8,740<br>
Threeforks(Base of Target)<br>
10,822<br>
-8,751<br>
Claystone<br>
10,822<br>
-8,751 </span><span class="ft0">BOP:<br>
11" 5000 psi blind, pipe & annular<br>
Est. Dip Rate:<br>
-0.35<br>
Max. Anticipated BHP:<br>
4689<br>
Surface Formation: Glacial till<br>
MUD:<br>
Interval<br>
Type<br>
WT<br>
Vis<br>
WL<br>
Remarks<br>
Surface:<br>
0'<br>
-<br>
2,150'<br>
FW<br>
8.4-9.0<br>
28-32<br>
NC<br>
Circ Mud Tanks<br>
Intermediate:<br>
2,150'<br>
-<br>
11,106'<br>
Invert<br>
9.5-10.4<br>
40-50<br>
30+HtHp<br>
Circ Mud Tanks<br>
Lateral:<br>
11,106' -<br>
20,582'<br>
Salt Water<br>
9.8-10.2<br>
28-32<br>
NC<br>
Circ Mud Tanks<br>
CASING:<br>
Size<br>
Wt ppf<br>
Hole<br>
Depth<br>
Cement<br>
WOC<br>
Remarks<br>
Surface:<br>
9-5/8"<br>
36#<br>
13-1/2"<br>
2,150'<br>
To Surface<br>
12<br>
100' into Pierre<br>
Intermediate:<br>
7"<br>
32#<br>
8-3/4"<br>
11,106'<br>
3917<br>
24<br>
1500' above Dakota<br>
Production Liner:<br>
4.5"<br>
13.5#<br>
6"<br>
20,582'<br>
TOL @ 10,291'<br>
50' above KOP<br>
PROBABLE PLUGS, IF REQ'D:<br>
OTHER:<br>
MD<br>
TVD<br>
FNL/FSL<br>
FEL/FWL<br>
S-T-R<br>
AZI<br>
Surface:<br>
2,150<br>
2,150<br>
2226 FNL<br>
326 FWL<br>
SEC. 19 T153N R100W<br>
Survey Company:<br>
KOP:<br>
10,341'<br>
10,341'<br>
2176 FNL<br>
326 FWL<br>
SEC. 19 T153N R100W<br>
Build Rate:<br>
12 deg </span><span class="ft4">/100'<br>
EOC:<br>
11,088'<br>
10,818'<br>
2092 FNL<br>
793 FWL<br>
SEC. 19 T153N R100W<br>
79.8<br>
Casing Point:<br>
11,106'<br>
10,818'<br>
2089 FNL<br>
811 FWL<br>
SEC. 19 T153N R100W<br>
79.8<br>
Three Forks Lateral TD:<br>
20,582'<br>
10,876'<br>
2044 FNL<br>
200 FEL<br>
SEC. 20 T153N R100W<br>
90.0<br>
Comments:<br>
Request a Sundry for an Open Hole Log Waiver: Oasis Chalmers 5300 31-19H 1,850' to S sec 19 153N 100W<br>
No frac string planned<br>
35 packers and 25 sleeves planned 3.6MM lbs 30% ceramic<br>
Oasis Petroleum does not use Diesel Fuel, as defined by the US EPA in the list below, in our hydraulic fracture operations.<br>
68334-30-5 (Primary Name: Fuels, diesel) 68476-34-6 (Primary Name: Fuels, diesel, No. 2)68476-30-2 (Primary Name: Fuel oil No. 2)<br>
68476-31-3 (Primary Name: Fuel oil, No. 4)8008-20-6 (Primary Name: Kerosene)<br>
Geology: </span><span class="ft11">N. Gabelman<br>
2/4/2014<br>
Engineering: </span><span class="ft0">dad6/11/14<br>
<hr>
<A name=128></a>Oasis Petroleum<br>
Well Summary<br>
Chalmers 5300 21-19 8T<br>
Section 19 T153N R100W<br>
McKenzie County, ND<br>
SURFACE CASING AND CEMENT DESIGN<br>
Make-up Torque (ft-lbs)<br>
Size<br>
Interval<br>
Weight<br>
Grade<br>
Coupling<br>
I.D.<br>
Drift<br>
Minimum Optimum<br>
Max<br>
9-5/8"<br>
0' - 2150'<br>
36<br>
J-55<br>
LTC<br>
8.921" 8.765"<br>
3400<br>
4530<br>
5660<br>
Interval<br>
Description<br>
Collapse<br>
Burst<br>
Tension<br>
(psi) / a<br>
(psi) / b<br>
(1000 lbs) / c<br>
0' - 2150'<br>
9-5/8", 36#, J-55, LTC, 8rd<br>
2020 / 2.00<br>
3520 / 3.49<br>
453 / 2.71<br>
API Rating & Safety Factor<br>
a)<br>
Based on full casing evacuation with 9 ppg fluid on backside (2150' setting depth).<br>
b)<br>
Burst pressure based on 9 ppg fluid with no fluid on backside (2150' setting depth).<br>
c)<br>
Based on string weight in 9 ppg fluid at 2150' TVD plus 100k# overpull. (Buoyed weight<br>
equals 67k lbs.)<br>
Cement volumes are based on 9-5/8'' casing set in 13-1/2 '' hole with 60% excess to circulate cement back to surface.<br>
Mix and pump the following slurry.<br>
Pre-flush (Spacer):<br>
20 bbls fresh water<br>
Lead Slurry:<br>
459 sks (243 bbls), 11.5 lb/gal, 2.97 cu. Ft./sk Varicem Cement with 0.125 il/sk Lost Circulation<br>
Additive<br>
Tail Slurry:<br>
173 sks (62 bbls), 13.0 lb/gal, 2.01 cu.ft./sk Varicem with .125 lb/sk Lost Circulation Agent<br>
<hr>
<A name=129></a>Oasis Petroleum<br>
Well Summary<br>
Chalmers 5300 21-19 8T<br>
Section 19 T153N R100W<br>
McKenzie County, ND<br>
INTERMEDIATE CASING AND CEMENT DESIGN<br>
Make-up Torque (ft-lbs)<br>
Size<br>
Interval<br>
Weight<br>
Grade<br>
Coupling<br>
I.D.<br>
Drift**<br>
Minimum<br>
Optimum<br>
Max<br>
7"<br>
0' - 11106'<br>
32<br>
HCP-110<br>
LTC<br>
6.094"<br>
6.000"**<br>
6730<br>
8970<br>
9870<br>
**Special Drift 7" 32# to 6.0"<br>
Interval<br>
Length<br>
Description<br>
Collapse<br>
Burst<br>
Tension<br>
(psi) a<br>
(psi) b<br>
(1000 lbs) c<br>
0' - 11106'<br>
11106'<br>
7", 32#, P-110, LTC, 8rd<br>
11820 / 2.10*<br>
12460 / 1.28<br>
897 / 2.23<br>
6695' - 9433'<br>
2738'<br>
7", 32#, HCP-110, LTC, 8rd<br>
11820 / 1.04**<br>
12460 / 1.29<br>
API Rating & Safety Factor<br>
a)<br>
*Assume full casing evacuation with 10 ppg fluid on backside. **Assume full casing evacuation with<br>
1.2 psi/ft equivalent fluid gradient across salt intervals.<br>
b)<br>
Burst pressure based on 9000 psig max press for stimulation plus 10.2 ppg fluid in casing and 9<br>
ppg fluid on backside-to 10818' TVD.<br>
c)<br>
Based on string weight in 10 ppg fluid, (301k lbs buoyed weight) plus 100k lbs overpull.<br>
Cement volumes are estimates based on 7'' casing set in an 8-3/4'' hole with 30% excess.<br>
Mix and pump the following slurry<br>
Pre-flush (Spacer):<br>
100 bbls Saltwater<br>
20bbls CW8<br>
20bbls Fresh Water<br>
Lead Slurry:<br>
183 sks (84 bbls), 11.8 ppg, 2.55 cu. ft./sk Econocem Cement with .3% Fe-2 and<br>
.25 lb/sk Lost Circulation Additive<br>
Tail Slurry:<br>
582 sks (170 bbls), 14.0 ppg, 1.55 cu. ft./sk Extendcem System with .2% HR-5<br>
Retarder and .25 lb/sk Lost Circulation Additive<br>
<hr>
<A name=130></a>Oasis Petroleum<br>
Well Summary<br>
Chalmers 5300 21-19 8T<br>
Section 19 T153N R100W<br>
McKenzie County, ND<br>
PRODUCTION LINER<br>
Make-up Torque (ft-lbs)<br>
Size<br>
Interval<br>
Weight<br>
Grade<br>
Coupling<br>
I.D.<br>
Drift<br>
Minimum Optimum<br>
Max<br>
4-1/2"<br>
10291' - 20599'<br>
20582<br>
13.5<br>
P-110<br>
BTC<br>
3.920"<br>
3.795"<br>
2270<br>
3020<br>
3780<br>
Interval<br>
Length<br>
Desctiption<br>
Collapse<br>
Burst<br>
Tension<br>
(psi) a<br>
(psi) b<br>
(1000 lbs) c<br>
10291' - 20599'<br>
20582<br>
10308<br>
4-1/2", 13.5 lb, P-110, BTC<br>
10670 / 1.98<br>
12410 / 1.28<br>
443 / 2.01<br>
API Rating & Safety Factor<br>
a)<br>
Based on full casing evacuation with 9.5 ppg fluid on backside @ 10877' TVD.<br>
b)<br>
Burst pressure based on 9000 psi treating pressure with 10.2 ppg internal fluid<br>
gradient and 9 ppg external fluid gradient @ 10877' TVD.<br>
c)<br>
Based on string weight in 9.5 ppg fluid (Buoyed weight: 119k lbs.) plus 100k lbs<br>
overpull.<br>
<hr>
<A name=131></a>T<br>
Azimuths to True North<br>
M<br>
Magnetic North: 8.17°<br>
SITE DETAILS: 153N-100W-19/20<br>
Magnetic Field<br>
Well Centre Latitude: 48° 3' 41.300 N<br>
Strength: 56490.5snT<br>
Longitude: 103° 36' 10.110 W<br>
Dip Angle: 72.96°<br>
Project: Indian Hills<br>
Date: 2/17/2014<br>
Positional Uncertainity: 0.0<br>
Site: 153N-100W-19/20<br>
Model: IGRF200510<br>
Convergence: -2.31<br>
Well:<br>
CHALMERS 5300 21-19 8T<br>
Local North: True<br>
Wellbore:<br>
CHALMERS 5300 21-19 8T<br>
Setbacks<br>
Design: Plan #1<br>
500' N/S<br>
200' E/W<br>
450<br>
2500<br>
)<br>
1250<br>
300<br>
ft/in0<br>
)<br>
05<br>
(+<br>
SHL<br>
CHALMERS 5300 21-19 8T<br>
Chalmers 8T<br>
BHL<br>
(2<br>
2226' FNL<br>
2044' FNL<br>
rth<br>
)<br>
0<br>
o </span><span class="ft0">150<br>
326' FWL<br>
200' FEL<br>
(+<br>
19<br>
20<br>
rth<br>
(-)/N<br>
o<br>
thu<br>
-1250<br>
)/N<br>
o<br>
0<br>
CHALMERS 5300 21-19 8T<br>
(-<br>
S<br>
thuoS</span><span class="ft0">-2500<br>
-150<br>
0<br>
55<br>
110<br>
165<br>
-2500<br>
-1250<br>
0<br>
1250<br>
2500<br>
3750<br>
5000<br>
6250<br>
7500<br>
8750<br>
10000<br>
11250<br>
12500<br>
West(-)/East(+)<br>
West(-)/East(+) (2500 ft/in)<br>
CASING DETAILS<br>
SECTION DETAILS<br>
9000<br>
TVD<br>
MD<br>
Name<br>
Size<br>
MD<br>
Inc<br>
Azi<br>
TVD<br>
+N/-S<br>
+E/-W<br>
Dleg<br>
Target<br>
2150.0<br>
2150.0<br>
9 5/8"<br>
9.625<br>
0.0<br>
0.00<br>
0.00<br>
0.0<br>
0.0<br>
0.0<br>
0.00<br>
10818.0<br>
11106.0<br>
7"<br>
7.000<br>
2150.0<br>
0.00<br>
0.00<br>
2150.0<br>
0.0<br>
0.0<br>
0.00<br>
Base Last Salt<br>
2160.0<br>
0.50<br>
0.00<br>
2160.0<br>
0.0<br>
0.0<br>
5.00<br>
9450<br>
7879.7<br>
0.50<br>
0.00<br>
7879.4<br>
50.0<br>
0.0<br>
0.00<br>
th<br>
Mission Canyon<br>
p<br>
7889.7<br>
0.00<br>
0.00<br>
7889.4<br>
50.0<br>
0.0<br>
5.00<br>
e<br>
10000.2<br>
0.00<br>
0.00<br>
10000.0<br>
50.0<br>
0.0<br>
0.00<br>
Dl </span><span class="ft0">9900<br>
10340.7<br>
0.00<br>
0.00<br>
10340.4<br>
50.0<br>
0.0<br>
0.00<br>
aic<br>
Start 340.4 hold at 10000.2 MD<br>
11087.7<br>
89.65<br>
79.83<br>
10817.9 133.8<br>
467.1<br>
12.00<br>
rt<br>
11105.9<br>
89.65<br>
79.83<br>
10818.0 137.0<br>
485.0<br>
0.00<br>
eV<br>
11614.4<br>
89.65<br>
90.00<br>
10821.1 182.0<br>
990.8<br>
2.00<br>
e </span><span class="ft0">10350<br>
Start Build 12.00 KOP<br>
20582.4<br>
89.65<br>
90.00<br>
10876.4 182.0<br>
9958.6<br>
0.00<br>
ruT<br>
Chalmers 8T<br>
7"<br>
10800<br>
Start 18.2 hold at 11087.7 MD EOC<br>
0<br>
600<br>
1200<br>
1800<br>
2400<br>
3000<br>
3600<br>
4200<br>
4800<br>
5400<br>
6000<br>
6600<br>
7200<br>
7800<br>
8400<br>
9000<br>
9600<br>
10200<br>
Vertical Section at 88.95°<br>
<hr>
<A name=132></a>
<br>
<br>
! "#<br>
$%&'( ")*<br>
$%&'( ")*<br>
<br>
<br>
<br>
<hr>
<A name=133></a>
+<br>
<br>
./
<br>
<br>
!
<br>
"#<br>
&,$
-
,
<br>
<br>
$+1<br>
<br>
*0.
-
,
<br>
$%&'
()*<br>
2
,<br>
+#<br>
'.
-
,
<br>
$%&'
()*<br>
<br>
-.<br>
3
-
,
<br>
,<br>
!
<br>
<br>
4
1$,
'
3<br>
!,!,)
,<br>
!
/
<br>
<br>
.
<br>
/<br>
2
,<br>
+#<br>
'1
+<br>
0
<br>
1
+.+<br>
)<br>
5
.+<br>
-
1!2"
,!<br>
'6
<br>
-
1"3
-
14<br>
<br>
-.<br>
<br>
3
<br>
67%%%&%6'
<br>
&
<br>
65966&%-<br>
7+<br>
.<br>
(
<br>
778&'
<br>
&
<br>
589&%<br>
8,
1<br>
&'
<br>
<br>
&<br>
5
$4
,
<br>
&5<br>
!
<br>
<br>
!
<br>
9#<br>
&'
<br>
3
<br>
676%&6'
<br>
&
<br>
6596&-<br>
9(# !<br>
6&'
<br>
(
<br>
77&6'
<br>
&
<br>
589&<br>
8,
1<br>
&'
<br>
!
3
(
4
<br>
5&
4
<br>
768&'
<br>
!
/
<br>
<br>
'
,<br>
'
+
<br>
+
.
<br>
.
,
<br>
.
%
<br>
7
3<br>
:;<<br>
:;<<br>
:*<<br>
+:;<br>
.%.6<br>
&%<br>
%&8<br>
876<br>
.
<br>
/<br>
%
<br>
0
<br>
3
<br>
<<br>
*
.
3<br>
&<br>
0
,
,
<br>
.
37+:*0.<<br>
9#<br>
9(# !<br>
.
,
<br>
:-<<br>
:-<<br>
:-<<br>
:;<<br>
&<br>
&<br>
&<br>
&<br>
,
<br>
'
<br>
0
,<br>
.
<br>
>
<br>
*<br>
.
3<br>
,
<br>
%=
+3<br>
.
3<br>
9#<br>
9(# !<br>
<br>
<br>
<br>
*7<br>
:-<<br>
:;<<br>
:;<<br>
:-<<br>
:-<<br>
:-<<br>
:;#-<<br>
:;#-<<br>
:;#-<<br>
:;<<br>
*
<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
78&<br>
&<br>
&<br>
78&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
%7%&%<br>
&<br>
&<br>
%7%&6<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
%7&%<br>
&<br>
&<br>
%7&6<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
76&%<br>
&<br>
&<br>
76&6<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7%&%<br>
&8<br>
%&<br>
7%&<br>
&<br>
68%&<br>
&<br>
&<br>
&<br>
%&<br>
7&<br>
&8<br>
%&<br>
7&<br>
%&<br>
6&<br>
&<br>
&<br>
&<br>
&<br>
786&6<br>
&8<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&6<br>
&8<br>
&<br>
7%8&6<br>
&<br>
7&8<br>
&<br>
&<br>
&<br>
&<br>
<br>
<br>
<br>
<hr>
<A name=134></a>
+<br>
<br>
./
<br>
<br>
!
<br>
"#<br>
&,$
-
,
<br>
<br>
$+1<br>
<br>
*0.
-
,
<br>
$%&'
()*<br>
2
,<br>
+#<br>
'.
-
,
<br>
$%&'
()*<br>
<br>
-.<br>
3
-
,
<br>
,<br>
!
<br>
<br>
4
1$,
'
3<br>
!,!,)
,<br>
!
/
<br>
<br>
.
<br>
/<br>
4
1<br>
'
<br>
0
,<br>
0
,<br>
.
<br>
>
<br>
*<br>
.
3<br>
,
<br>
%=
+3<br>
.
3<br>
9#<br>
9(# !<br>
,
<br>
<br>
<br>
<br>
:-<<br>
:;<<br>
:;<<br>
:-<<br>
:-<<br>
:-<<br>
:-<<br>
:;#-<<br>
:;#-<<br>
:;#-<<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
6&<br>
&<br>
&<br>
6&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
8&<br>
&<br>
&<br>
8&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
%&<br>
&<br>
&<br>
%&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
76&<br>
&<br>
&<br>
76&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
78&<br>
&<br>
&<br>
78&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7%&<br>
&<br>
&<br>
7%&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
>
? "#)@<br>
78&<br>
&<br>
&<br>
78&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
A"?A3B?'.<br>
7&<br>
&<br>
&<br>
7&<br>
&6<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
76&<br>
&<br>
&<br>
76&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
78&<br>
&<br>
&<br>
78&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7%&<br>
&<br>
&<br>
7%&<br>
6&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
8&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
%&6<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
76&<br>
&<br>
&<br>
76&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
76&<br>
&%<br>
&<br>
&<br>
&<br>
&<br>
&<br>
78&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7%&<br>
&<br>
&<br>
78&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7%&<br>
6&6<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
67&<br>
&<br>
&<br>
7&<br>
8&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
67&<br>
&<br>
&<br>
67&<br>
%&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
67&<br>
&<br>
&<br>
67&<br>
%&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
67&<br>
&<br>
&<br>
67&<br>
&%<br>
&<br>
&<br>
&<br>
&<br>
&<br>
676&<br>
&<br>
&<br>
67&<br>
&8<br>
&<br>
&6<br>
&<br>
&<br>
&<br>
67&<br>
&<br>
&<br>
676&<br>
&<br>
&<br>
&6<br>
&<br>
&<br>
&<br>
678&<br>
&<br>
&<br>
67&<br>
&<br>
&<br>
&6<br>
&<br>
&<br>
&<br>
6786&<br>
&<br>
&<br>
6786&<br>
&<br>
&<br>
&6<br>
&<br>
&<br>
&<br>
5
3<br>
<br>
<br>
<br>
<hr>
<A name=135></a>
+<br>
<br>
./
<br>
<br>
!
<br>
"#<br>
&,$
-
,
<br>
<br>
$+1<br>
<br>
*0.
-
,
<br>
$%&'
()*<br>
2
,<br>
+#<br>
'.
-
,
<br>
$%&'
()*<br>
<br>
-.<br>
3
-
,
<br>
,<br>
!
<br>
<br>
4
1$,
'
3<br>
!,!,)
,<br>
!
/
<br>
<br>
.
<br>
/<br>
4
1<br>
'
<br>
0
,<br>
0
,<br>
.
<br>
>
<br>
*<br>
.
3<br>
,
<br>
%=
+3<br>
.
3<br>
9#<br>
9(# !<br>
,
<br>
<br>
<br>
<br>
:-<<br>
:;<<br>
:;<<br>
:-<<br>
:-<<br>
:-<<br>
:-<<br>
:;#-<<br>
:;#-<<br>
:;#-<<br>
67%&<br>
&<br>
&<br>
678&<br>
&<br>
&<br>
&6<br>
&<br>
&<br>
&<br>
67&<br>
&<br>
&<br>
67%&<br>
&<br>
&<br>
&6<br>
&<br>
&<br>
&<br>
67&<br>
&<br>
&<br>
67&<br>
6&<br>
&<br>
&6<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
67&<br>
6&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
'C1<br>
7&<br>
&<br>
&<br>
7&<br>
&%<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
8&8<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
%&6<br>
&<br>
&<br>
&<br>
&<br>
&<br>
76&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
76%&<br>
&<br>
&<br>
76%&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
.D<br>
7&<br>
&<br>
&<br>
76&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
78&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7%&<br>
&<br>
&<br>
78&<br>
&<br>
&<br>
&8<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7%&<br>
&<br>
&<br>
&8<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&%<br>
&<br>
&8<br>
&<br>
&<br>
&<br>
87&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
&8<br>
&<br>
&<br>
&<br>
87&<br>
&<br>
&<br>
87&<br>
6&6<br>
&<br>
&8<br>
&<br>
&<br>
&<br>
87&<br>
&<br>
&<br>
87&<br>
&<br>
&<br>
&8<br>
&<br>
&<br>
&<br>
87&<br>
&<br>
&<br>
87&<br>
8&<br>
&<br>
&%<br>
&<br>
&<br>
&<br>
876&<br>
&<br>
&<br>
87&<br>
%&<br>
&<br>
&%<br>
&<br>
&<br>
&<br>
8768&<br>
&<br>
&<br>
8768&<br>
%&8<br>
&<br>
&%<br>
&<br>
&<br>
&<br>
<br>
87&<br>
&<br>
&<br>
876&<br>
%&<br>
&<br>
&%<br>
&<br>
&<br>
&<br>
878&<br>
&<br>
&<br>
87&<br>
&<br>
&<br>
&%<br>
&<br>
&<br>
&<br>
87%&<br>
&<br>
&<br>
878&<br>
&%<br>
&<br>
&%<br>
&<br>
&<br>
&<br>
87&<br>
&<br>
&<br>
87%&<br>
6&<br>
&<br>
&%<br>
&<br>
&<br>
&<br>
87&<br>
&<br>
&<br>
87&<br>
6&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
.3+<br>
87&<br>
&<br>
&<br>
87&<br>
6&6<br>
&<br>
&<br>
&<br>
&<br>
&<br>
878&<br>
&<br>
&<br>
878&<br>
6&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
.3+>
<br>
%7&<br>
&<br>
&<br>
87&<br>
6&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
%7&<br>
&<br>
&<br>
%7&<br>
6&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
%7&<br>
&<br>
&<br>
%7&<br>
66&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
%7%&<br>
&<br>
&<br>
%7%&<br>
66&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
<br>
%7&<br>
&<br>
&<br>
%7&<br>
66&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
>
<br>
%7&<br>
&<br>
&<br>
%7&<br>
66&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
%7&<br>
&<br>
&<br>
%7&<br>
6&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
,3
<br>
%76&<br>
&<br>
&<br>
%7&<br>
6&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
%768&<br>
&<br>
&<br>
%768&<br>
68&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
,3
>
<br>
%7&<br>
&<br>
&<br>
%76&<br>
68&8<br>
&<br>
&<br>
&<br>
&<br>
&<br>
%78&<br>
&<br>
&<br>
%7&<br>
6%&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
%788&<br>
&<br>
&<br>
%788&<br>
6&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
%+
<br>
%7%&<br>
&<br>
&<br>
%78&<br>
6&6<br>
&<br>
&<br>
&<br>
&<br>
&<br>
%7&<br>
&<br>
&<br>
%7%&<br>
6&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
%7&<br>
&<br>
&<br>
%7&<br>
6&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
*1
<br>
<br>
<br>
<br>
<hr>
<A name=136></a>
+<br>
<br>
./
<br>
<br>
!
<br>
"#<br>
&,$
-
,
<br>
<br>
$+1<br>
<br>
*0.
-
,
<br>
$%&'
()*<br>
2
,<br>
+#<br>
'.
-
,
<br>
$%&'
()*<br>
<br>
-.<br>
3
-
,
<br>
,<br>
!
<br>
<br>
4
1$,
'
3<br>
!,!,)
,<br>
!
/
<br>
<br>
.
<br>
/<br>
4
1<br>
'
<br>
0
,<br>
0
,<br>
.
<br>
>
<br>
*<br>
.
3<br>
,
<br>
%=
+3<br>
.
3<br>
9#<br>
9(# !<br>
,
<br>
<br>
<br>
<br>
:-<<br>
:;<<br>
:;<<br>
:-<<br>
:-<<br>
:-<<br>
:-<<br>
:;#-<<br>
:;#-<<br>
:;#-<<br>
%7%&%<br>
&<br>
&<br>
%7%&6<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
. ?<br>
%7&%<br>
&<br>
&<br>
%7&6<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
?B3A))"?A'.<br>
%7&<br>
&<br>
&<br>
%7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
%7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
#>
'
<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
76&<br>
&<br>
&<br>
76&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
E
//
1&
+
<br>
76&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
76&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
76&<br>
&<br>
&<br>
76&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
$3
<br>
78&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7%&<br>
&<br>
&<br>
78&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7%&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
76&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
76&<br>
&<br>
&<br>
76&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
'
$1<br>
7&<br>
&<br>
&<br>
76&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
78&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7%&<br>
&<br>
&<br>
78&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7%&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&
<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
?3?'.<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
7&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
76&%<br>
&<br>
&<br>
76&6<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
>
?E<br>
7&<br>
&<br>
%&<br>
76&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7%&<br>
6&<br>
%&<br>
7%6&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
76&<br>
%&<br>
%&<br>
7&8<br>
&%<br>
&8<br>
6&8<br>
&<br>
&<br>
&<br>
76&<br>
&<br>
%&<br>
766&<br>
&<br>
%&<br>
&<br>
&<br>
&<br>
&<br>
76&<br>
&<br>
%&<br>
766&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
76%&<br>
8&<br>
%&<br>
76%&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
%&<br>
768&<br>
6&%<br>
&<br>
8&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
%&<br>
7&<br>
8&<br>
6&8<br>
&8<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
%&<br>
76&<br>
&<br>
66&<br>
6&<br>
&<br>
&<br>
&<br>
7%&<br>
&<br>
%&<br>
78&<br>
8&<br>
&<br>
8&8<br>
&<br>
&<br>
&<br>
<br>
<br>
<br>
<hr>
<A name=137></a>
+<br>
<br>
./
<br>
<br>
!
<br>
"#<br>
&,$
-
,
<br>
<br>
$+1<br>
<br>
*0.
-
,
<br>
$%&'
()*<br>
2
,<br>
+#<br>
'.
-
,
<br>
$%&'
()*<br>
<br>
-.<br>
3
-
,
<br>
,<br>
!
<br>
<br>
4
1$,
'
3<br>
!,!,)
,<br>
!
/
<br>
<br>
.
<br>
/<br>
4
1<br>
'
<br>
0
,<br>
0
,<br>
.
<br>
>
<br>
*<br>
.
3<br>
,
<br>
%=
+3<br>
.
3<br>
9#<br>
9(# !<br>
,
<br>
<br>
<br>
<br>
:-<<br>
:;<<br>
:;<<br>
:-<<br>
:-<<br>
:-<<br>
:-<<br>
:;#-<<br>
:;#-<<br>
:;#-<<br>
78&<br>
&<br>
%&<br>
7%&<br>
8&<br>
8%&8<br>
8&<br>
&<br>
&<br>
&<br>
78&<br>
6&<br>
%&<br>
78&<br>
86&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
78&<br>
%&<br>
%&<br>
78&8<br>
8%&<br>
&<br>
8&6<br>
&<br>
&<br>
&<br>
78%&<br>
6&<br>
%&<br>
786&<br>
8&<br>
&8<br>
&<br>
&<br>
&<br>
&<br>
7%&<br>
6&<br>
%&<br>
7888&<br>
%&<br>
8&<br>
&<br>
&<br>
&<br>
&<br>
7%&<br>
68&<br>
%&<br>
786&8<br>
%&<br>
66&<br>
6&8<br>
&<br>
&<br>
&<br>
7%&<br>
6&<br>
%&<br>
7%&6<br>
%&<br>
8&6<br>
8&<br>
&<br>
&<br>
&<br>
7%%&<br>
6&8<br>
%&<br>
7%8&<br>
&<br>
8%&%<br>
8&<br>
&<br>
&<br>
&<br>
7
>DD
<br>
7%%&<br>
&%<br>
%&<br>
7%8&<br>
&<br>
%&<br>
&<br>
&<br>
&<br>
&<br>
8
>DD
3
<br>
7%%&<br>
&<br>
%&<br>
7%%&<br>
&<br>
&6<br>
&<br>
&<br>
&<br>
&<br>
7%&<br>
&<br>
%&<br>
7%&<br>
8&<br>
&<br>
&8<br>
&<br>
&<br>
&<br>
'
>DD
<br>
7&<br>
&<br>
%&<br>
7%&<br>
8&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
%&<br>
7%6&<br>
&<br>
&<br>
&6<br>
&<br>
&<br>
&<br>
7&<br>
8&<br>
%&<br>
7%&<br>
&8<br>
6&<br>
66&%<br>
&<br>
&<br>
&<br>
788&<br>
8&6<br>
%&<br>
7%88&<br>
8&<br>
8&<br>
&8<br>
&<br>
&<br>
&<br>
&C
>DD
3
<br>
7%&<br>
86&<br>
%&<br>
7%%&<br>
%&<br>
86&<br>
88&8<br>
&<br>
&<br>
&<br>
7&<br>
8%&<br>
%&<br>
7%&<br>
&6<br>
8&<br>
&<br>
&<br>
&<br>
&<br>
3<br>
7&<br>
8%&<br>
%&<br>
7%&<br>
&<br>
%&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
%&<br>
%&<br>
7%&6<br>
&8<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
%&<br>
%&<br>
7%%&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
%&<br>
%&<br>
7%&<br>
&<br>
&<br>
6&<br>
&<br>
&<br>
&<br>
*3
-D<br>
7%&<br>
%8&<br>
%&<br>
76&<br>
6&<br>
%&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
%&<br>
%&<br>
7&<br>
&6<br>
&<br>
&6<br>
&<br>
&<br>
&<br>
7&6<br>
&<br>
%&<br>
7&<br>
&<br>
&6<br>
&<br>
&<br>
&<br>
&<br>
*3
-D:*-*
<<br>
7&<br>
&<br>
%&<br>
7&6<br>
&%<br>
6&<br>
6%&%<br>
&<br>
&<br>
&<br>
7&<br>
&<br>
%&<br>
78&<br>
%&<br>
6&<br>
6&<br>
&<br>
&<br>
&<br>
7%&<br>
&<br>
%&<br>
7%&8<br>
&<br>
66&8<br>
68&<br>
&<br>
&<br>
&<br>
7%&%<br>
&8<br>
%&<br>
7%&<br>
&<br>
68%&<br>
68&<br>
&<br>
&<br>
&<br>
)?3)A?A'.($<br>
7&<br>
&8<br>
%&<br>
7&<br>
%&<br>
6&<br>
6%&6<br>
&<br>
&<br>
&<br>
.&?*7"?$<br>
78&<br>
&8<br>
%&<br>
7&<br>
%&<br>
6&<br>
6%&<br>
&<br>
&<br>
&<br>
A@<br>
7&<br>
&8<br>
&%<br>
7&8<br>
&<br>
%%&<br>
&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&%<br>
7&<br>
86&<br>
8%%&<br>
8%&<br>
&<br>
&<br>
&<br>
76&<br>
&8<br>
&%<br>
7&<br>
%6&<br>
%%8&8<br>
%%&%<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
%&%<br>
7&6<br>
%&%<br>
%8&6<br>
%&8<br>
&<br>
&<br>
&<br>
78&<br>
&8<br>
&%<br>
7&<br>
&<br>
%8&6<br>
%&8<br>
&<br>
&<br>
&<br>
786&6<br>
&8<br>
&<br>
7&<br>
&<br>
&<br>
6&<br>
&<br>
&<br>
&<br>
)")?3B?'.<br>
7%&<br>
&8<br>
&<br>
7&%<br>
&<br>
7%8&6<br>
7%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
7&<br>
&<br>
7%8&6<br>
7%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
7&<br>
&<br>
7%8&6<br>
7%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
7&<br>
&<br>
7%8&6<br>
7%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
76&<br>
&<br>
76%8&6<br>
76%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
76&%<br>
&<br>
7%8&6<br>
7%&6<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
7&6<br>
&<br>
78%8&6<br>
78%&6<br>
&<br>
&<br>
&<br>
<br>
<br>
<br>
<hr>
<A name=138></a>
+<br>
<br>
./
<br>
<br>
!
<br>
"#<br>
&,$
-
,
<br>
<br>
$+1<br>
<br>
*0.
-
,
<br>
$%&'
()*<br>
2
,<br>
+#<br>
'.
-
,
<br>
$%&'
()*<br>
<br>
-.<br>
3
-
,
<br>
,<br>
!
<br>
<br>
4
1$,
'
3<br>
!,!,)
,<br>
!
/
<br>
<br>
.
<br>
/<br>
4
1<br>
'
<br>
0
,<br>
0
,<br>
.
<br>
>
<br>
*<br>
.
3<br>
,
<br>
%=
+3<br>
.
3<br>
9#<br>
9(# !<br>
,
<br>
<br>
<br>
<br>
:-<<br>
:;<<br>
:;<<br>
:-<<br>
:-<<br>
:-<<br>
:-<<br>
:;#-<<br>
:;#-<<br>
:;#-<<br>
76&<br>
&8<br>
&<br>
78&<br>
&<br>
7%%8&6<br>
7%%&6<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
78&8<br>
&<br>
7%8&6<br>
7%&6<br>
&<br>
&<br>
&<br>
78&<br>
&8<br>
&<br>
7%&<br>
&<br>
7%8&6<br>
7%&6<br>
&<br>
&<br>
&<br>
7%&<br>
&8<br>
&<br>
7%&<br>
&<br>
7%8&6<br>
7%&6<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
7&6<br>
&<br>
7%8&6<br>
7%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
7&<br>
&<br>
7%8&6<br>
7%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
7&%<br>
&<br>
7%8&6<br>
7%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
7&<br>
&<br>
76%8&6<br>
76%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
7&<br>
&<br>
7%8&6<br>
7%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
7&<br>
&<br>
78%8&6<br>
78%&<br>
&<br>
&<br>
&<br>
76&<br>
&8<br>
&<br>
7&<br>
&<br>
7%%8&6<br>
7%%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
7&<br>
&<br>
7%8&6<br>
7%&<br>
&<br>
&<br>
&<br>
78&<br>
&8<br>
&<br>
7&6<br>
&<br>
7%8&6<br>
7%&<br>
&<br>
&<br>
&<br>
7%&<br>
&8<br>
&<br>
76&<br>
&<br>
7%8&6<br>
7%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
76&8<br>
&<br>
7%8&6<br>
7%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
7&<br>
&<br>
7%8&6<br>
7%&<br>
&<br>
&<br>
&<br>
67&<br>
&8<br>
&<br>
7&<br>
&<br>
7%8&6<br>
7%&<br>
&<br>
&<br>
&<br>
67&<br>
&8<br>
&<br>
78&<br>
&<br>
76%8&<br>
76%&<br>
&<br>
&<br>
&<br>
67&<br>
&8<br>
&<br>
7%&<br>
&<br>
7%8&<br>
7%&<br>
&<br>
&<br>
&<br>
67&<br>
&8<br>
&<br>
7%&%<br>
&<br>
78%8&<br>
78%&<br>
&<br>
&<br>
&<br>
676&<br>
&8<br>
&<br>
7&<br>
&<br>
7%%8&<br>
7%%&<br>
&<br>
&<br>
&<br>
67&<br>
&8<br>
&<br>
7&<br>
&<br>
7%8&<br>
7%&<br>
&<br>
&<br>
&<br>
678&<br>
&8<br>
&<br>
7&<br>
&<br>
7%8&<br>
7%&<br>
&<br>
&<br>
&<br>
67%&<br>
&8<br>
&<br>
76&<br>
&<br>
67%8&<br>
67%&<br>
&<br>
&<br>
&<br>
67&<br>
&8<br>
&<br>
76&<br>
&<br>
67%8&<br>
67%&<br>
&<br>
&<br>
&<br>
67&<br>
&8<br>
&<br>
76&6<br>
&<br>
67%8&<br>
67%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
76&<br>
&<br>
67%8&<br>
67%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
76&8<br>
&<br>
676%8&<br>
676%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
76&<br>
&<br>
67%8&<br>
67%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
76&<br>
&<br>
678%8&<br>
678%&<br>
&<br>
&<br>
&<br>
76&<br>
&8<br>
&<br>
766&<br>
&<br>
67%%8&<br>
67%%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
76&<br>
&<br>
67%8&<br>
67%&<br>
&<br>
&<br>
&<br>
78&<br>
&8<br>
&<br>
76&%<br>
&<br>
67%8&<br>
67%&<br>
&<br>
&<br>
&<br>
7%&<br>
&8<br>
&<br>
768&<br>
&<br>
7%8&<br>
7%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
768&<br>
&<br>
7%8&<br>
7%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
76%&8<br>
&<br>
7%8&<br>
7%&<br>
&<br>
&<br>
&<br>
87&<br>
&8<br>
&<br>
76&<br>
&<br>
7%8&<br>
7%&%<br>
&<br>
&<br>
&<br>
87&<br>
&8<br>
&<br>
76&<br>
&<br>
76%8&<br>
76%&%<br>
&<br>
&<br>
&<br>
87&<br>
&8<br>
&<br>
76&6<br>
&<br>
7%8&<br>
7%&%<br>
&<br>
&<br>
&<br>
87&<br>
&8<br>
&<br>
7&<br>
&<br>
78%8&<br>
78%&%<br>
&<br>
&<br>
&<br>
876&<br>
&8<br>
&<br>
7&8<br>
&<br>
7%%8&<br>
7%%&%<br>
&<br>
&<br>
&<br>
87&<br>
&8<br>
&<br>
7&<br>
&<br>
7%8&<br>
7%&8<br>
&<br>
&<br>
&<br>
878&<br>
&8<br>
&<br>
7&<br>
&<br>
7%8&<br>
7%&8<br>
&<br>
&<br>
&<br>
87%&<br>
&8<br>
&<br>
7&<br>
&<br>
87%8&<br>
87%&8<br>
&<br>
&<br>
&<br>
87&<br>
&8<br>
&<br>
7&<br>
&<br>
87%8&<br>
87%&8<br>
&<br>
&<br>
&<br>
87&<br>
&8<br>
&<br>
7&%<br>
&<br>
87%8&<br>
87%&8<br>
&<br>
&<br>
&<br>
%7&<br>
&8<br>
&<br>
76&<br>
&<br>
87%8&<br>
87%&8<br>
&<br>
&<br>
&<br>
%7&<br>
&8<br>
&<br>
7&<br>
&<br>
876%8&<br>
876%&<br>
&<br>
&<br>
&<br>
%7&<br>
&8<br>
&<br>
7&8<br>
&<br>
87%8&<br>
87%&<br>
&<br>
&<br>
&<br>
%7&<br>
&8<br>
&<br>
78&<br>
&<br>
878%8&<br>
878%&<br>
&<br>
&<br>
&<br>
%76&<br>
&8<br>
&<br>
78&<br>
&<br>
87%%8&<br>
87%%&<br>
&<br>
&<br>
&<br>
%7&<br>
&8<br>
&<br>
7%&6<br>
&<br>
87%8&<br>
87%&<br>
&<br>
&<br>
&<br>
%78&<br>
&8<br>
&<br>
7&<br>
&<br>
87%8&<br>
87%&6<br>
&<br>
&<br>
&<br>
%7%&<br>
&8<br>
&<br>
7&%<br>
&<br>
%7%8&<br>
%7%&6<br>
&<br>
&<br>
&<br>
%7&<br>
&8<br>
&<br>
7&<br>
&<br>
%7%8&<br>
%7%&6<br>
&<br>
&<br>
&<br>
<br>
<br>
<br>
<hr>
<A name=139></a>
+<br>
<br>
./
<br>
<br>
!
<br>
"#<br>
&,$
-
,
<br>
<br>
$+1<br>
<br>
*0.
-
,
<br>
$%&'
()*<br>
2
,<br>
+#<br>
'.
-
,
<br>
$%&'
()*<br>
<br>
-.<br>
3
-
,
<br>
,<br>
!
<br>
<br>
4
1$,
'
3<br>
!,!,)
,<br>
!
/
<br>
<br>
.
<br>
/<br>
4
1<br>
'
<br>
0
,<br>
0
,<br>
.
<br>
>
<br>
*<br>
.
3<br>
,
<br>
%=
+3<br>
.
3<br>
9#<br>
9(# !<br>
,
<br>
<br>
<br>
<br>
:-<<br>
:;<<br>
:;<<br>
:-<<br>
:-<<br>
:-<<br>
:-<<br>
:;#-<<br>
:;#-<<br>
:;#-<<br>
%7&<br>
&8<br>
&<br>
7&<br>
&<br>
%7%8&<br>
%7%&6<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
78&<br>
&<br>
%7%8&<br>
%7%&6<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
78&<br>
&<br>
%76%8&<br>
%76%&6<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
78&%<br>
&<br>
%7%8&<br>
%7%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
78&6<br>
&<br>
%78%8&<br>
%78%&<br>
&<br>
&<br>
&<br>
76&<br>
&8<br>
&<br>
78&<br>
&<br>
%7%%8&<br>
%7%%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
78&8<br>
&<br>
%7%8&<br>
%7%&<br>
&<br>
&<br>
&<br>
78&<br>
&8<br>
&<br>
786&<br>
&<br>
%7%8&<br>
%7%&<br>
&<br>
&<br>
&<br>
7%&<br>
&8<br>
&<br>
786&<br>
&<br>
7%8&<br>
7%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
78&6<br>
&<br>
7%8&<br>
7%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
788&<br>
&<br>
7%8&<br>
7%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
788&%<br>
&<br>
7%8&<br>
7%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
78%&<br>
&<br>
76%8&<br>
76%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
78%&<br>
&<br>
7%8&<br>
7%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
78&<br>
&<br>
78%8&<br>
78%&<br>
&<br>
&<br>
&<br>
76&<br>
&8<br>
&<br>
78&<br>
&<br>
7%%8&<br>
7%%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
78&<br>
&<br>
7%8&<br>
7%&<br>
&<br>
&<br>
&<br>
78&<br>
&8<br>
&<br>
7%&6<br>
&<br>
7%8&<br>
7%&<br>
&<br>
&<br>
&<br>
7%&<br>
&8<br>
&<br>
7%&<br>
&<br>
7%8&<br>
7%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
7%&8<br>
&<br>
7%8&<br>
7%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
7%&<br>
&<br>
7%8&<br>
7%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
7%&<br>
&<br>
7%8&<br>
7%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
7%&<br>
&<br>
76%8&<br>
76%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
7%6&<br>
&<br>
7%8&<br>
7%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
7%6&%<br>
&<br>
78%8&<br>
78%%&<br>
&<br>
&<br>
&<br>
76&<br>
&8<br>
&<br>
7%&<br>
&<br>
7%%8&<br>
7%%%&<br>
&<br>
&<br>
&<br>
7&<br>
&8<br>
&<br>
7%&<br>
&<br>
7%8&<br>
7%%&<br>
&<br>
&<br>
&<br>
7&6<br>
&8<br>
&<br>
7%8&6<br>
&<br>
7&8<br>
78&<br>
&<br>
&<br>
&<br>
.
*
<br>
*
+
<br>
3
#+
<br>
.
%
<br>
.
.
?<br>
*0.<br>
9#<br>
9(# !<br>
3
<br>
(
<br>
3
<br>
:;<<br>
:;<<br>
:-<<br>
:-<<br>
:-<<br>
:-<<br>
:-<<br>
&
<br>
&
<br>
1! <br>
&<br>
&<br>
7%8&<br>
&%<br>
7%6&<br>
67&<br>
7786&8<br>
6596&8%-<br>
596&<br>
!<br>
2
=>8&'
&6'
"(%8&6?"7&-7&8*<br>
<br>
$
<br>
'
<br>
0
,<br>
$
<br>
<br>
.
3<br>
.
3<br>
.
+
<br>
.
+
<br>
:-<<br>
:-<<br>
:
<<br>
:
<<br>
+
<br>
7&<br>
7&<br>
.@<br>
&8<br>
&<br>
78&<br>
7&<br>
%@<br>
%&<br>
&%<br>
<br>
<br>
<br>
<hr>
<A name=140></a>
+<br>
<br>
./
<br>
<br>
!
<br>
"#<br>
&,$
-
,
<br>
<br>
$+1<br>
<br>
*0.
-
,
<br>
$%&'
()*<br>
2
,<br>
+#<br>
'.
-
,
<br>
$%&'
()*<br>
<br>
-.<br>
3
-
,
<br>
,<br>
!
<br>
<br>
4
1$,
'
3<br>
!,!,)
,<br>
!
/
<br>
<br>
.
<br>
/<br>
7+
<br>
'
<br>
0
,<br>
.
<br>
.
3<br>
.
3<br>
.
,
<br>
.
<br>
:-<<br>
:-<<br>
:;<<br>
+
<br>
&
31<br>
:;<<br>
7&<br>
7&<br>
<br>
6786&<br>
6786&<br>
:1<br>
7&<br>
7&<br>
A><br>
76%&<br>
76%&<br>
"3
<br>
8768&<br>
8768&<br>
#<br>
87&<br>
87&<br>
",1!
<br>
878&<br>
878&<br>
",1!
B<br>
%7%&<br>
%7%&<br>
<br>
%7&<br>
%7&<br>
B<br>
%7&<br>
%7&<br>
21
<br>
%768&<br>
%768&<br>
21
B<br>
%788&<br>
%788&<br>
! #<br>
%7&<br>
%7&<br>
><br>
7&<br>
7&<br>
.B<br>
,<br>
76&<br>
76&<br>
C==>!<br>
76&<br>
76&<br>
1<br>
<br>
7&<br>
7&<br>
B<br>
<br>
<br>
76&<br>
76&<br>
<br>
><br>
7&<br>
7&<br>
#
<br>
7%%&<br>
7%8&<br>
;<br>
B33<br>
7%%&<br>
7%8&<br>
0
B331<br>
7%&<br>
7%&<br>
##B33<br>
788&<br>
7%88&<br>
AB331<br>
7&<br>
7%&<br>
1<br>
7&<br>
7%&<br>
1'3<br>
7&6<br>
7&<br>
1'3 (
'
*<br>
%
<br>
'
<br>
0
,<br>
&,$
<br>
.
3<br>
.
3<br>
9#<br>
9(# !<br>
:-<<br>
:-<<br>
:-<<br>
:-<<br>
$++
<br>
7&<br>
7&<br>
&<br>
&<br>
B,#&<br>
78&<br>
78&<br>
&<br>
&<br>
%&%1#
8&"<br>
%7%&%<br>
%7%&6<br>
&<br>
&<br>
"
&<br>
%7&%<br>
%7&6<br>
&<br>
&<br>
&81#
%&%"<br>
7&<br>
7&<br>
&<br>
&<br>
6&61#
&"<br>
76&%<br>
76&6<br>
&<br>
&<br>
B,#&C<br>
7%&%<br>
7%&<br>
&<br>
68%&<br>
&1#
%&%"<br>
7&<br>
7&<br>
%&<br>
6&<br>
"&;&<br>
<br>
786&6<br>
7&<br>
&<br>
&<br>
6&1#
86&6"<br>
7&%<br>
7%8&<br>
&<br>
7%6&<br>
"
&%<br>
<br>
<br>
<br>
<hr>
<A name=141></a><hr>
<A name=142></a><hr>
<A name=143></a><hr>
<A name=144></a><hr>
<A name=145></a><hr>
<A name=146></a><hr>
<A name=147></a><hr>
<A name=148></a><hr>
<A name=149></a><hr>
<A name="outline"></a><h1>Document Outline</h1>
<ul><li>Geo Rpt
<li>Certified Surveys
<li>Form 4
<ul><li>4-rpt-legal address received
<li>4-intent- change casing
<li>4-intent-location revision
<li>4-intent- waiver to rule Rule 43-02-03-31
<li>4-SOD
</ul><li>Form 1
</ul><hr>
</BODY>
</HTML>
| datamade/elpc_bakken | html/pdf/W28636.pdfs.html | HTML | mit | 370,423 |
<!DOCTYPE html>
<html lang="es-ar" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>{{title}}</title>
<!-- General META -->
<meta charset="utf-8">
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- Semantic META -->
<meta name="keywords" content="{{keywords}}">
<meta name="description" content="{{description}}">
<!-- Facebook META -->
<meta property="fb:app_id" content="{{facebookAppId}}">
<meta property="og:site_name" content="{{title}}">
<meta property="og:title" content="{{title}}">
<meta property="og:description" content="{{description}}">
<meta property="og:url" content="{{url}}">
<meta property="og:image" content="/img/brand/logo.png">
<meta property="og:type" content="website">
<!-- Twitter META -->
<meta name="twitter:title" content="{{title}}">
<meta name="twitter:description" content="{{description}}">
<meta name="twitter:url" content="{{url}}">
<meta name="twitter:image" content="/img/brand/logo.png">
<!-- Fav Icon -->
<link href="/modules/core/img/brand/favicon.ico" rel="shortcut icon" type="image/x-icon">
<!--Application CSS Files-->
{% for cssFile in cssFiles %}<link rel="stylesheet" href="{{cssFile}}">{% endfor %}
<!-- HTML5 Shim -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body class="skin-blue">
<header data-ng-include="'/modules/core/views/header.client.view.html'"></header>
<section class="content">
{% block content %}{% endblock %}
</section>
<!--Embedding The User Object-->
<script type="text/javascript">
var user = {{ user | json | safe }};
</script>
<!--Application JavaScript Files-->
{% for jsFile in jsFiles %}<script type="text/javascript" src="{{jsFile}}"></script>{% endfor %}
{% if process.env.NODE_ENV === 'development' %}
<!--Livereload script rendered -->
<script type="text/javascript" src="http://{{request.hostname}}:35729/livereload.js"></script>
{% endif %}
</body>
</html> | pld2005/pulse | app/views/layout.server.view.html | HTML | mit | 2,275 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.9.1"/>
<title>V8 API Reference Guide for node.js v0.3.2: Class Members - Functions</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">V8 API Reference Guide for node.js v0.3.2
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.9.1 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li class="current"><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="navrow3" class="tabs2">
<ul class="tablist">
<li><a href="functions.html"><span>All</span></a></li>
<li class="current"><a href="functions_func.html"><span>Functions</span></a></li>
<li><a href="functions_vars.html"><span>Variables</span></a></li>
<li><a href="functions_type.html"><span>Typedefs</span></a></li>
<li><a href="functions_enum.html"><span>Enumerations</span></a></li>
</ul>
</div>
<div id="navrow4" class="tabs3">
<ul class="tablist">
<li class="current"><a href="functions_func.html#index_a"><span>a</span></a></li>
<li><a href="functions_func_c.html#index_c"><span>c</span></a></li>
<li><a href="functions_func_d.html#index_d"><span>d</span></a></li>
<li><a href="functions_func_e.html#index_e"><span>e</span></a></li>
<li><a href="functions_func_f.html#index_f"><span>f</span></a></li>
<li><a href="functions_func_g.html#index_g"><span>g</span></a></li>
<li><a href="functions_func_h.html#index_h"><span>h</span></a></li>
<li><a href="functions_func_i.html#index_i"><span>i</span></a></li>
<li><a href="functions_func_l.html#index_l"><span>l</span></a></li>
<li><a href="functions_func_m.html#index_m"><span>m</span></a></li>
<li><a href="functions_func_n.html#index_n"><span>n</span></a></li>
<li><a href="functions_func_o.html#index_o"><span>o</span></a></li>
<li><a href="functions_func_p.html#index_p"><span>p</span></a></li>
<li><a href="functions_func_r.html#index_r"><span>r</span></a></li>
<li><a href="functions_func_s.html#index_s"><span>s</span></a></li>
<li><a href="functions_func_t.html#index_t"><span>t</span></a></li>
<li><a href="functions_func_u.html#index_u"><span>u</span></a></li>
<li><a href="functions_func_w.html#index_w"><span>w</span></a></li>
<li><a href="functions_func_~.html#index_~"><span>~</span></a></li>
</ul>
</div>
</div><!-- top -->
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="contents">
 
<h3><a class="anchor" id="index_a"></a>- a -</h3><ul>
<li>AddGCEpilogueCallback()
: <a class="el" href="classv8_1_1_v8.html#a37aadf3536c772eb5bbf67fa7822679a">v8::V8</a>
</li>
<li>AddGCPrologueCallback()
: <a class="el" href="classv8_1_1_v8.html#a49c016f17c67f700387f801b2b29b5ab">v8::V8</a>
</li>
<li>AddMemoryAllocationCallback()
: <a class="el" href="classv8_1_1_v8.html#ac9718f8dc3f3c498bf07282eb7c1618e">v8::V8</a>
</li>
<li>AddMessageListener()
: <a class="el" href="classv8_1_1_v8.html#a125dadf8feb6178a42333f2a6412ea73">v8::V8</a>
</li>
<li>AddObjectGroup()
: <a class="el" href="classv8_1_1_v8.html#a4744037e970e3b3bafcc3cac03a5967f">v8::V8</a>
</li>
<li>AdjustAmountOfExternalAllocatedMemory()
: <a class="el" href="classv8_1_1_v8.html#a8e6f2e66c028d1ffa3f5e8a799790bc5">v8::V8</a>
</li>
<li>AsArray()
: <a class="el" href="classv8_1_1_stack_trace.html#abd36f712b3ab986b572aa259b06bf5bd">v8::StackTrace</a>
</li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Tue Aug 11 2015 23:46:43 for V8 API Reference Guide for node.js v0.3.2 by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.9.1
</small></address>
</body>
</html>
| v8-dox/v8-dox.github.io | 7d425a0/html/functions_func.html | HTML | mit | 6,832 |
<!doctype html>
<html class="default no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>ServiceWorkerRegistrationEventMap | picturepark-sdk-v1-widgets API</title>
<meta name="description" content="Documentation for picturepark-sdk-v1-widgets API">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../assets/css/main.css">
</head>
<body>
<header>
<div class="tsd-page-toolbar">
<div class="container">
<div class="table-wrap">
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.json" data-base="..">
<div class="field">
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
<input id="tsd-search-field" type="text" />
</div>
<ul class="results">
<li class="state loading">Preparing search index...</li>
<li class="state failure">The search index is not available</li>
</ul>
<a href="../index.html" class="title">picturepark-sdk-v1-widgets API</a>
</div>
<div class="table-cell" id="tsd-widgets">
<div id="tsd-filter">
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
<div class="tsd-filter-group">
<div class="tsd-select" id="tsd-filter-visibility">
<span class="tsd-select-label">All</span>
<ul class="tsd-select-list">
<li data-value="public">Public</li>
<li data-value="protected">Public/Protected</li>
<li data-value="private" class="selected">All</li>
</ul>
</div>
<input type="checkbox" id="tsd-filter-inherited" checked />
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
<input type="checkbox" id="tsd-filter-externals" checked />
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
<input type="checkbox" id="tsd-filter-only-exported" />
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
</div>
</div>
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
</div>
</div>
</div>
</div>
<div class="tsd-page-title">
<div class="container">
<ul class="tsd-breadcrumb">
<li>
<a href="../globals.html">Globals</a>
</li>
<li>
<a href="serviceworkerregistrationeventmap.html">ServiceWorkerRegistrationEventMap</a>
</li>
</ul>
<h1>Interface ServiceWorkerRegistrationEventMap</h1>
</div>
</div>
</header>
<div class="container container-main">
<div class="row">
<div class="col-8 col-content">
<section class="tsd-panel tsd-hierarchy">
<h3>Hierarchy</h3>
<ul class="tsd-hierarchy">
<li>
<span class="target">ServiceWorkerRegistrationEventMap</span>
</li>
</ul>
</section>
<section class="tsd-panel-group tsd-index-group">
<h2>Index</h2>
<section class="tsd-panel tsd-index-panel">
<div class="tsd-index-content">
<section class="tsd-index-section tsd-is-external">
<h3>Properties</h3>
<ul class="tsd-index-list">
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-external"><a href="serviceworkerregistrationeventmap.html#updatefound" class="tsd-kind-icon">updatefound</a></li>
</ul>
</section>
</div>
</section>
</section>
<section class="tsd-panel-group tsd-member-group tsd-is-external">
<h2>Properties</h2>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-external">
<a name="updatefound" class="tsd-anchor"></a>
<h3>updatefound</h3>
<div class="tsd-signature tsd-kind-icon">updatefound<span class="tsd-signature-symbol">:</span> <a href="animationevent.html#event" class="tsd-signature-type">Event</a></div>
<aside class="tsd-sources">
<ul>
<li>Defined in node_modules/typescript/lib/lib.dom.d.ts:14926</li>
</ul>
</aside>
</section>
</section>
</div>
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
<nav class="tsd-navigation primary">
<ul>
<li class="globals ">
<a href="../globals.html"><em>Globals</em></a>
</li>
</ul>
</nav>
<nav class="tsd-navigation secondary menu-sticky">
<ul class="before-current">
</ul>
<ul class="current">
<li class="current tsd-kind-interface tsd-is-external">
<a href="serviceworkerregistrationeventmap.html" class="tsd-kind-icon">Service<wbr>Worker<wbr>Registration<wbr>Event<wbr>Map</a>
<ul>
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-external">
<a href="serviceworkerregistrationeventmap.html#updatefound" class="tsd-kind-icon">updatefound</a>
</li>
</ul>
</li>
</ul>
<ul class="after-current">
</ul>
</nav>
</div>
</div>
</div>
<footer class="with-border-bottom">
<div class="container">
<h2>Legend</h2>
<div class="tsd-legend-group">
<ul class="tsd-legend">
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
</ul>
</div>
</div>
</footer>
<div class="container tsd-generator">
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p>
</div>
<div class="overlay"></div>
<script src="../assets/js/main.js"></script>
</body>
</html> | Picturepark/Picturepark.SDK.TypeScript | docs/picturepark-sdk-v1-widgets/api/interfaces/serviceworkerregistrationeventmap.html | HTML | mit | 5,346 |
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>renegar</title>
<!--link rel="stylesheet" href="/www/css/table_style.css"-->
<!--STYLE -->
<style>@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,700,300,100);
body {
background-color: #4A59A1;
font-family: "Roboto", helvetica, arial, sans-serif;
font-size: 16px;
font-weight: 400;
text-rendering: optimizeLegibility;
}
div.table-title {
display: block;
margin: auto;
max-width: 600px;
padding:5px;
width: 100%;
}
.table-title h3 {
color: #fafafa;
font-size: 33px;
font-weight: 400;
font-style:normal;
font-family: "Roboto", helvetica, arial, sans-serif;
text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.1);
text-transform:uppercase;
}
.table-title h4 {
color: #fafafa;
font-size: 30px;
font-weight: 400;
font-style:normal;
font-family: "Roboto", helvetica, arial, sans-serif;
text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.1);
text-transform:uppercase;
}
.table-title h5 {
color: #fafafa;
font-size: 25px;
font-weight: 400;
font-style:normal;
font-family: "Roboto", helvetica, arial, sans-serif;
text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.1);
text-transform:uppercase;
}
.table-title h6 {
color: #fafafa;
font-size: 16px;
font-weight: 400;
font-style:normal;
font-family: "Roboto", helvetica, arial, sans-serif;
text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.1);
text-transform:uppercase;
}
/*** Table Styles **/
.table-fill {
background: white;
border-radius:3px;
border-collapse: collapse;
height: 320px;
margin: auto;
max-width: 600px;
padding:5px;
width: 100%;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
animation: float 5s infinite;
}
.table-fill2 {
background: white;
border-radius:3px;
border-collapse: collapse;
height: 100px;
margin: auto;
max-width: 600px;
padding:5px;
width: 100%;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
animation: float 5s infinite;
}
th {
color:#D5DDE5;;
background:#1b1e24;
border-bottom:4px solid #9ea7af;
border-right: 1px solid #343a45;
font-size:23px;
font-weight: 100;
padding:24px;
text-align:left;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
vertical-align:middle;
}
th:first-child {
border-top-left-radius:3px;
}
th:last-child {
border-top-right-radius:3px;
border-right:none;
}
tr {
border-top: 1px solid #C1C3D1;
border-bottom-: 1px solid #C1C3D1;
color:#666B85;
font-size:16px;
font-weight:normal;
text-shadow: 0 1px 1px rgba(256, 256, 256, 0.1);
}
tr:first-child {
border-top:none;
}
tr:last-child {
border-bottom:none;
}
tr:nth-child(odd) td {
background:#EBEBEB;
}
tr:last-child td:first-child {
border-bottom-left-radius:3px;
}
tr:last-child td:last-child {
border-bottom-right-radius:3px;
}
td {
background:#FFFFFF;
padding:20px;
text-align:left;
vertical-align:middle;
font-weight:300;
font-size:18px;
text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.1);
border-right: 1px solid #C1C3D1;
}
td:last-child {
border-right: 0px;
}
th.text-left {
text-align: left;
}
th.text-center {
text-align: center;
}
th.text-right {
text-align: right;
}
td.text-left {
text-align: left;
}
td.text-center {
text-align: center;
}
td.text-right {
text-align: right;
}
</style>
<!--FIN STYLE-->
</head>
<body>
<head>
<meta charset="utf-8" />
<title>verbos</title>
<meta name="viewport" content="initial-scale=1.0; maximum-scale=1.0; width=device-width;">
</head>
<body>
<div class="table-title">
<h3 style="text-align: center;"><font color="B4C0ED">Reneg</font><font color="EDE4E7">a</font>r
<audio id="audio4" src="sons/renegar.mp3" type="audio/mp3"></audio>
<div> <button onclick="document.getElementById('audio4').play()">▶▶</button>
</div>
</h3>
<section>
<div class="container">
<style>
* {
box-sizing:border-box;
}
}
.heading-primary {
font-size:2em;
padding:1em;
text-align:center;
}
.accordion dl,
.accordion-list {
border:0px solid #ddd;
&:after {
content: "";
display:block;
height:1em;
width:100%;
}
}
.accordion dd,
.accordion__panel {
background-color:#eee;
font-size:1em;
line-height:1.5em;
}
.accordion p {
padding:1em 2em 1em 2em;
}
.accordion {
position:relative;
background-color:#eee;
}
.container {
max-width:660px;
margin:0 auto;
padding: 0.2em 1 1em 0;
}
.accordionTitle,
.accordion__Heading {
background: rgba(74,88,161,1);
background: -moz-linear-gradient(left, rgba(74,88,161,1) 0%, rgba(74,88,161,1) 17%, rgba(180,192,237,1) 93%, rgba(180,192,237,1) 100%);
background: -webkit-linear-gradient(left, rgba(74,88,161,1) 0%, rgba(74,88,161,1) 17%, rgba(180,192,237,1) 93%, rgba(180,192,237,1) 100%);
background: -o-linear-gradient(left, rgba(74,88,161,1) 0%, rgba(74,88,161,1) 17%, rgba(180,192,237,1) 93%, rgba(180,192,237,1) 100%);
background: -ms-linear-gradient(left, rgba(74,88,161,1) 0%, rgba(74,88,161,1) 17%, rgba(180,192,237,1) 93%, rgba(180,192,237,1) 100%);
background: linear-gradient(to right, rgba(74,88,161,1) 0%, rgba(74,88,161,1) 17%, rgba(180,192,237,1) 93%, rgba(180,192,237,1) 100%);
text-align:right;
font-weight:500;
padding: 0.3em;
display:block;
text-decoration:none;
color:#fff;
transition:background-color 0.5s ease-in-out;
&:before {
content: "+";
font-size:1.5em;
line-height:0.5em;
float:left;
transition: transform 0.3s ease-in-out;
}
&:hover {
}
}
.accordionTitleActive,
.accordionTitle.is-expanded {
&:before {
transform:rotate(-225deg);
}
}
.accordionItem {
height:auto;
overflow:hidden;
//SHAME: magic number to allow the accordion to animate
max-height:50em;
transition:max-height 1s;
@media screen and (min-width:48em) {
max-height:15em;
transition:max-height 0.5s
}
}
.accordionItem.is-collapsed {
max-height:0;
}
.no-js .accordionItem.is-collapsed {
max-height: auto;
}
.animateIn {
animation: accordionIn 0.45s normal ease-in-out both 1;
}
.animateOut {
animation: accordionOut 0.45s alternate ease-in-out both 1;
}
@keyframes accordionIn {
0% {
opacity: 0;
transform:scale(0.9) rotateX(-60deg);
transform-origin: 50% 0;
}
100% {
opacity:1;
transform:scale(1);
}
}
@keyframes accordionOut {
0% {
opacity: 1;
transform:scale(1);
}
100% {
opacity:0;
transform:scale(0.9) rotateX(-60deg);
}
}
</style>
<div class="accordion">
<dl>
<dt>
<a href="#accordion1" aria-expanded="false" aria-controls="accordion1" class="accordion-title accordionTitle js-accordionTrigger">+ Info</a>
</dt>
<dd class="accordion-content accordionItem is-collapsed" id="accordion1" aria-hidden="true">
<table>
<tbody>
<tr>
<td>
<div><font size="2.9"><b>Definición</b>: <a href="http://academia.gal/dicionario/-/termo/busca/renegar">[DRAG]</a> e <a href="http://sli.uvigo.gal/galnet/galnet.php?lg=gl&variante=renegar&version=dev&compara=exacta&lingua=GL&pos=&category=">[GALNET]</a>
<br>
Os demais <b>tempos verbais</b> son <b>regulares</b> e seguen a <b><a href="andar.html">1ª conxugación</a></b></font></div>
<br>
<div><b>Alternancia vocálica</b> (<a href="sons/1.mp3"><i><b>ɛ</b></i></a> - <i><b>e</b></i>)</div>
</td>
</tr>
<tr>
<td>
<b></b>
<dt>
<a href="#accordion2" aria-expanded="false" aria-controls="accordion2" class="accordion-title accordionTitle js-accordionTrigger" style="font-size: 90%">Verbos que seguen este modelo</a>
</dt>
<dd class="accordion-content accordionItem is-collapsed" id="accordion2" aria-hidden="true">
<table>
<tbody>
<tr>
<td style="font-size: 90%; bgcolor="#4d536a">
<a href="abreviar.html"><b>abrevi</b>ar</a>,
<a href="acelerar.html"><b>aceler</b>ar</a>,
<a href="aceptar.html"><b>acept</b>ar</a>,
<a href="acertar.html"><b>acert</b>ar</a>,
<a href="acoitelar.html"><b>acoitel</b>ar</a>,
<a href="adestrar.html"><b>adestr</b>ar</a>,
<a href="adulterar.html"><b>adulter</b>ar</a>,
<a href="afectar.html"><b>afect</b>ar</a>,
<a href="aferrar.html"><b>aferr</b>ar</a>,
<a href="aglomerar.html"><b>aglomer</b>ar</a>,
<a href="agregar.html"><b>agreg</b>ar</a>,
<a href="alegar.html"><b>aleg</b>ar</a>,
<a href="alegrar.html"><b>alegr</b>ar</a>,
<a href="alertar.html"><b>alert</b>ar</a>,
<a href="alicerzar.html"><b>alicerz</b>ar</a>,
<a href="alienar.html"><b>alien</b>ar</a>,
<a href="almacenar.html"><b>almacen</b>ar</a>,
<a href="alterar.html"><b>alter</b>ar</a>,
<a href="alternar.html"><b>altern</b>ar</a>,
<a href="amarelar.html"><b>amarel</b>ar</a>,
<a href="ambientar.html"><b>ambient</b>ar</a>,
<a href="amestrar.html"><b>amestr</b>ar</a>,
<a href="amoestar.html"><b>amoest</b>ar</a>,
<a href="anelar.html"><b>anel</b>ar</a>,
<a href="anestesiar.html"><b>anestesi</b>ar</a>,
<a href="anexar.html"><b>anex</b>ar</a>,
<a href="anhelar.html"><b>anhel</b>ar</a>,
<a href="apelar.html"><b>apel</b>ar</a>,
<a href="apertar.html"><b>apert</b>ar</a>,
<a href="apestar.html"><b>apest</b>ar</a>,
<a href="apoderar.html"><b>apoder</b>ar</a>,
<a href="arrestar.html"><b>arrest</b>ar</a>,
<a href="asediar.html"><b>asedi</b>ar</a>,
<a href="aseverar.html"><b>asever</b>ar</a>,
<a href="atafegar.html"><b>atafeg</b>ar</a>,
<a href="aterrar.html"><b>aterr</b>ar</a>,
<a href="atestar.html"><b>atest</b>ar</a>,
<a href="atravesar.html"><b>atraves</b>ar</a>,
<a href="atropelar.html"><b>atropel</b>ar</a>,
<a href="berrar.html"><b>berr</b>ar</a>,
<a href="berregar.html"><b>berreg</b>ar</a>,
<a href="cancelar.html"><b>cancel</b>ar</a>,
<a href="cegar.html"><b>ceg</b>ar</a>,
<a href="celebrar.html"><b>celebr</b>ar</a>,
<a href="cerrar.html"><b>cerr</b>ar</a>,
<a href="comerciar.html"><b>comerci</b>ar</a>,
<a href="completar.html"><b>complet</b>ar</a>,
<a href="concertar.html"><b>concert</b>ar</a>,
<a href="concienciar.html"><b>concienci</b>ar</a>,
<a href="conectar.html"><b>conect</b>ar</a>,
<a href="confesar.html"><b>confes</b>ar</a>,
<a href="conservar.html"><b>conserv</b>ar</a>,
<a href="considerar.html"><b>consider</b>ar</a>,
<a href="contestar.html"><b>contest</b>ar</a>,
<a href="contrarrestar.html"><b>contrarrest</b>ar</a>,
<a href="conversar.html"><b>convers</b>ar</a>,
<a href="conxelar.html"><b>conxel</b>ar</a>,
<a href="cooperar.html"><b>cooper</b>ar</a>,
<a href="crebar.html"><b>creb</b>ar</a>,
<a href="cronometrar.html"><b>cronometr</b>ar</a>,
<a href="deforestar.html"><b>deforest</b>ar</a>,
<a href="deliberar.html"><b>deliber</b>ar</a>,
<a href="denegar.html"><b>deneg</b>ar</a>,
<a href="desacelerar.html"><b>desaceler</b>ar</a>,
<a href="desagregar.html"><b>desagreg</b>ar</a>,
<a href="desapertar.html"><b>desapert</b>ar</a>,
<a href="desasosegar.html"><b>desasoseg</b>ar</a>,
<a href="desconcertar.html"><b>desconcert</b>ar</a>,
<a href="desconectar.html"><b>desconect</b>ar</a>,
<a href="desconsiderar.html"><b>desconsider</b>ar</a>,
<a href="desconxelar.html"><b>desconxel</b>ar</a>,
<a href="desenterrar.html"><b>desenterr</b>ar</a>,
<a href="desertar.html"><b>desert</b>ar</a>,
<a href="desherdar.html"><b>desherd</b>ar</a>,
<a href="desinfectar.html"><b>desinfect</b>ar</a>,
<a href="desmantelar.html"><b>desmantel</b>ar</a>,
<a href="desnivelar.html"><b>desnivel</b>ar</a>,
<a href="desorientar.html"><b>desorient</b>ar</a>,
<a href="despegar.html"><b>despeg</b>ar</a>,
<a href="despezar.html"><b>despez</b>ar</a>,
<a href="despregar.html"><b>despreg</b>ar</a>,
<a href="desterrar.html"><b>desterr</b>ar</a>,
<a href="desvelar.html"><b>desvel</b>ar</a>,
<a href="detectar.html"><b>detect</b>ar</a>,
<a href="detestar.html"><b>detest</b>ar</a>,
<a href="dexenerar.html"><b>dexener</b>ar</a>,
<a href="disgregar.html"><b>disgreg</b>ar</a>,
<a href="elevar.html"><b>elev</b>ar</a>,
<a href="empapelar.html"><b>empapel</b>ar</a>,
<a href="empedrar.html"><b>empedr</b>ar</a>,
<a href="empezar.html"><b>empez</b>ar</a>,
<a href="encadernar.html"><b>encadern</b>ar</a>,
<a href="encarcerar.html"><b>encarcer</b>ar</a>,
<a href="enterrar.html"><b>enterr</b>ar</a>,
<a href="entregar.html"><b>entreg</b>ar</a>,
<a href="enumerar.html"><b>enumer</b>ar</a>,
<a href="enxergar.html"><b>enxerg</b>ar</a>,
<a href="errar.html"><b>err</b>ar</a>,
<a href="esaxerar.html"><b>esaxer</b>ar</a>,
<a href="espertar.html"><b>espert</b>ar</a>,
<a href="frecuentar.html"><b>frecuent</b>ar</a>,
<a href="fregar.html"><b>freg</b>ar</a>,
<a href="gobernar.html"><b>gobern</b>ar</a>,
<a href="herdar.html"><b>herd</b>ar</a>,
<a href="hibernar.html"><b>hibern</b>ar</a>,
<a href="hipotecar.html"><b>hipotec</b>ar</a>,
<a href="idear.html"><b>ide</b>ar</a>,
<a href="impacientar.html"><b>impacient</b>ar</a>,
<a href="imperar.html"><b>imper</b>ar</a>,
<a href="indixestar.html"><b>indixest</b>ar</a>,
<a href="infectar.html"><b>infect</b>ar</a>,
<a href="inquietar.html"><b>inquiet</b>ar</a>,
<a href="integrar.html"><b>integr</b>ar</a>,
<a href="interceptar.html"><b>intercept</b>ar</a>,
<a href="interpelar.html"><b>interpel</b>ar</a>,
<a href="interpretar.html"><b>interpret</b>ar</a>,
<a href="invernar.html"><b>invern</b>ar</a>,
<a href="inxectar.html"><b>inxect</b>ar</a>,
<a href="leriar.html"><b>leri</b>ar</a>,
<a href="levar.html"><b>lev</b>ar</a>,
<a href="liberar.html"><b>liber</b>ar</a>,
<a href="liderar.html"><b>lider</b>ar</a>,
<a href="malversar.html"><b>malvers</b>ar</a>,
<a href="manifestar.html"><b>manifest</b>ar</a>,
<a href="medrar.html"><b>medr</b>ar</a>,
<a href="mercar.html"><b>merc</b>ar</a>,
<a href="modelar.html"><b>model</b>ar</a>,
<a href="moderar.html"><b>moder</b>ar</a>,
<a href="molestar.html"><b>molest</b>ar</a>,
<a href="navegar.html"><b>naveg</b>ar</a>,
<a href="negar.html"><b>neg</b>ar</a>,
<a href="nivelar.html"><b>nivel</b>ar</a>,
<a href="novelar.html"><b>novel</b>ar</a>,
<a href="numerar.html"><b>numer</b>ar</a>,
<a href="observar.html"><b>observ</b>ar</a>,
<a href="obxectar.html"><b>obxect</b>ar</a>,
<a href="ofertar.html"><b>ofert</b>ar</a>,
<a href="operar.html"><b>oper</b>ar</a>,
<a href="orientar.html"><b>orient</b>ar</a>,
<a href="orquestrar.html"><b>orquestr</b>ar</a>,
<a href="pecar.html"><b>pec</b>ar</a>,
<a href="pegar.html"><b>peg</b>ar</a>,
<a href="pelar.html"><b>pel</b>ar</a>,
<a href="perpetrar.html"><b>perpetr</b>ar</a>,
<a href="perseverar.html"><b>persever</b>ar</a>,
<a href="pescar.html"><b>pesc</b>ar</a>,
<a href="pregar.html"><b>preg</b>ar</a>,
<a href="preservar.html"><b>preserv</b>ar</a>,
<a href="prestar.html"><b>prest</b>ar</a>,
<a href="procesar.html"><b>proces</b>ar</a>,
<a href="profesar.html"><b>profes</b>ar</a>,
<a href="proliferar.html"><b>prolifer</b>ar</a>,
<a href="prosperar.html"><b>prosper</b>ar</a>,
<a href="protestar.html"><b>protest</b>ar</a>,
<a href="proxectar.html"><b>proxect</b>ar</a>,
<a href="quentar.html"><b>quent</b>ar</a>,
<a href="rebelar.html"><b>rebel</b>ar</a>,
<a href="reconsiderar.html"><b>reconsider</b>ar</a>,
<a href="recuperar.html"><b>recuper</b>ar</a>,
<a href="reforestar.html"><b>reforest</b>ar</a>,
<a href="refrixerar.html"><b>refrixer</b>ar</a>,
<a href="regar.html"><b>reg</b>ar</a>,
<a href="reintegrar.html"><b>reintegr</b>ar</a>,
<a href="reiterar.html"><b>reiter</b>ar</a>,
<a href="relar.html"><b>rel</b>ar</a>,
<a href="relegar.html"><b>releg</b>ar</a>,
<a href="relevar.html"><b>relev</b>ar</a>,
<a href="remodelar.html"><b>remodel</b>ar</a>,
<a href="remunerar.html"><b>remuner</b>ar</a>,
<a href="renegar.html"><b>reneg</b>ar</a>,
<a href="repregar.html"><b>repreg</b>ar</a>,
<a href="reptar.html"><b>rept</b>ar</a>,
<a href="requentar.html"><b>requent</b>ar</a>,
<a href="reservar.html"><b>reserv</b>ar</a>,
<a href="respectar.html"><b>respect</b>ar</a>,
<a href="restar.html"><b>rest</b>ar</a>,
<a href="retar.html"><b>ret</b>ar</a>,
<a href="revelar.html"><b>revel</b>ar</a>,
<a href="rexenerar.html"><b>rexener</b>ar</a>,
<a href="rezar.html"><b>rez</b>ar</a>,
<a href="salientar.html"><b>salient</b>ar</a>,
<a href="secuestrar.html"><b>secuestr</b>ar</a>,
<a href="segar.html"><b>seg</b>ar</a>,
<a href="segregar.html"><b>segreg</b>ar</a>,
<a href="serrar.html"><b>serr</b>ar</a>,
<a href="sosegar.html"><b>soseg</b>ar</a>,
<a href="soterrar.html"><b>soterr</b>ar</a>,
<a href="sublevar.html"><b>sublev</b>ar</a>,
<a href="superar.html"><b>super</b>ar</a>,
<a href="terxiversar.html"><b>terxivers</b>ar</a>,
<a href="tolerar.html"><b>toler</b>ar</a>,
<a href="tropezar.html"><b>tropez</b>ar</a>,
<a href="velar.html"><b>vel</b>ar</a>,
<a href="venerar.html"><b>vener</b>ar</a>,
<a href="vociferar.html"><b>vocifer</b>ar</a>,
<a href="vulnerar.html"><b>vulner</b>ar</a>,
<a href="xebrar.html"><b>xebr</b>ar</a>,
<a href="xerar.html"><b>xer</b>ar</a>.
</td>
</tr>
</tbody>
</table>
</dd>
<br>
<dt>
<a href="#accordion3" aria-expanded="false" aria-controls="accordion3" class="accordion-title accordionTitle js-accordionTrigger" style="font-size: 90%">Outros modelos de alternancia vocálica</a>
</dt>
<dd class="accordion-content accordionItem is-collapsed" id="accordion3" aria-hidden="true">
<table>
<tbody>
<tr>
<td style="font-size: 90%; line-height: 149%">
<ul>
<b>1ª conxugación</b>
<ul><a href="explicacións_primeira%20conxugación.html">alternancia <i><b>ɛ - e</b></a></i>
</ul>
<ul><a href="explicacións_primeira%20conxugación.html">alternancia <i><b>ɔ - o</b></a></i></ul>
<br>
<b>2ª conxugación</b>
<ul><a href="explicacións_segunda%20conxugación.html">alternancia <i><b>ɛ - e</b></i></a></ul>
<ul><a href="explicacións_segunda%20conxugación.html">alternancia <i><b>ɔ - o</b></i></a></ul>
<br>
<b>3ª conxugación</b>
<ul><a href="explicacións_modelo%20servir.html">alternancia <i><b>i - ɛ - e</b></i></a>
</ul>
<ul><a href="explicacións_modelo%20pedir.html">alternancia <i><b>i - e</b></i></a>
</ul>
<ul><a href="explicacións_modelo_subir.html">alternancia <i><b>u - ɔ</b></i></a>
</ul>
</ul>
</td>
</tr>
</tbody>
</table>
</dd>
</table>
</dl>
</div>
</div>
<script>
(function(){
var d = document,
accordionToggles = d.querySelectorAll('.js-accordionTrigger'),
setAria,
setAccordionAria,
switchAccordion,
touchSupported = ('ontouchstart' in window),
pointerSupported = ('pointerdown' in window);
skipClickDelay = function(e){
e.preventDefault();
e.target.click();
}
setAriaAttr = function(el, ariaType, newProperty){
el.setAttribute(ariaType, newProperty);
};
setAccordionAria = function(el1, el2, expanded){
switch(expanded) {
case "true":
setAriaAttr(el1, 'aria-expanded', 'true');
setAriaAttr(el2, 'aria-hidden', 'false');
break;
case "false":
setAriaAttr(el1, 'aria-expanded', 'false');
setAriaAttr(el2, 'aria-hidden', 'true');
break;
default:
break;
}
};
//function
switchAccordion = function(e) {
e.preventDefault();
var thisAnswer = e.target.parentNode.nextElementSibling;
var thisQuestion = e.target;
if(thisAnswer.classList.contains('is-collapsed')) {
setAccordionAria(thisQuestion, thisAnswer, 'true');
} else {
setAccordionAria(thisQuestion, thisAnswer, 'false');
}
thisQuestion.classList.toggle('is-collapsed');
thisQuestion.classList.toggle('is-expanded');
thisAnswer.classList.toggle('is-collapsed');
thisAnswer.classList.toggle('is-expanded');
thisAnswer.classList.toggle('animateIn');
};
for (var i=0,len=accordionToggles.length; i<len; i++) {
if(touchSupported) {
accordionToggles[i].addEventListener('touchstart', skipClickDelay, false);
}
if(pointerSupported){
accordionToggles[i].addEventListener('pointerdown', skipClickDelay, false);
}
accordionToggles[i].addEventListener('click', switchAccordion, false);
}
})();
</script>
</section>
<h5 style="text-align: center;">Presente de indicativo</h5>
</div>
<table class="table-fill">
<thead>
<!--tr>
<th class="text-left">Casus</th>
<th class="text-left">Singular</th>
<th class="text-rigth">Plural</th>
</tr-->
</thead>
<tbody class="table-hover">
<tr>
<td class="text-center">Eu</td>
<td class="text-center"><b>Ren<font color="#FE6E42">ɛ</font>g</b>o</td>
</tr>
<tr>
<td class="text-center">Ti</td>
<td class="text-center"><b>Ren<font color="#FE6E42">ɛ</font>g<font color="#52C1E5">a</font></b>s</td>
</tr>
<tr>
<td class="text-center">El ou ela</td>
<td class="text-center"><b>Ren<font color="#FE6E42">ɛ</font>g<font color="#52C1E5">a</font></b></td>
</tr>
<tr>
<td class="text-center">Nós</td>
<td class="text-center"><b>Reneg<font color="#52C1E5">a</font></b>mos</td>
</tr>
<tr>
<td class="text-center">Vós</td>
<td class="text-center"><b>Reneg<font color="#52C1E5">a</font></b>des</td>
</tr>
<tr>
<td class="text-center">Eles ou elas</td>
<td class="text-center"><b>Ren<font color="#FE6E42">ɛ</font>g<font color="#52C1E5">a</font></b>n</td>
</tr>
</tbody>
</table>
</body>
<!--segunda táboa -->
<body>
<div class="table-title">
<h5 style="text-align: center;">Presente de subxuntivo</h5>
</div>
<table class="table-fill2">
<thead>
<!--tr>
<th class="text-left">Casus</th>
<th class="text-left">Singular</th>
<th class="text-rigth">Plural</th>
</tr-->
</thead>
<tbody class="table-hover">
<tr>
<td class="text-center">Eu</td>
<td class="text-center"><b>Ren<font color="#FE6E42">ɛ</font>gu</b>e</td>
</tr>
<tr>
<td class="text-center">Ti</td>
<td class="text-center"><b>Ren<font color="#FE6E42">ɛ</font>gu</b>es</td>
</tr>
<tr>
<td class="text-center">El ou ela</td>
<td class="text-center"><b>Ren<font color="#FE6E42">ɛ</font>gu</b>e</td>
</tr>
<tr>
<td class="text-center">Nós</td>
<td class="text-center"><b>Renegu</b>emos</td>
</tr>
<tr>
<td class="text-center">Vós</td>
<td class="text-center"><b>Renegu</b>edes</td>
</tr>
<tr>
<td class="text-center">Eles ou elas</td>
<td class="text-center"><b>Ren<font color="#FE6E42">ɛ</font>gu</b>en</td>
</tr>
</tbody>
</table>
</body>
<!--segunda tabla -->
<body>
<div class="table-title">
<h5 style="text-align: center;">Imperativo</h5>
</div>
<table class="table-fill2">
<thead>
<!--tr>
<th class="text-left">Casus</th>
<th class="text-left">Singular</th>
<th class="text-rigth">Plural</th>
</tr-->
</thead>
<tbody class="table-hover">
<tr>
<td class="text-center">Ti</td>
<td class="text-center"><b>Ren<font color="#FE6E42">ɛ</font>g<font color="#52C1E5">a</font></b></td>
</tr>
<tr>
<td class="text-center">Vós</td>
<td class="text-center"><b>Reneg<font color="#52C1E5">a</font></b>de</td>
</tr>
</tbody>
</table>
</body>
</body>
</html>
| lorientado/XimnasioDosVerbos | Data/renegar.html | HTML | mit | 28,256 |
<!doctype html>
<html>
<title>npm-unpublish</title>
<meta http-equiv="content-type" value="text/html;utf-8">
<link rel="stylesheet" type="text/css" href="../../static/style.css">
<link rel="canonical" href="https://www.npmjs.org/doc/cli/npm-unpublish.html">
<script async=true src="../../static/toc.js"></script>
<body>
<div id="wrapper">
<h1><a href="../cli/npm-unpublish.html">npm-unpublish</a></h1> <p>Remove a package from the registry</p>
<h2 id="synopsis">SYNOPSIS</h2>
<pre><code>npm unpublish [@<scope>/]<name>[@<version>]
</code></pre><h2 id="warning">WARNING</h2>
<p><strong>It is generally considered bad behavior to remove versions of a library
that others are depending on!</strong></p>
<p>Consider using the <code>deprecate</code> command
instead, if your intent is to encourage users to upgrade.</p>
<p>There is plenty of room on the registry.</p>
<h2 id="description">DESCRIPTION</h2>
<p>This removes a package version from the registry, deleting its
entry and removing the tarball.</p>
<p>If no version is specified, or if all versions are removed then
the root package entry is removed from the registry entirely.</p>
<p>Even if a package version is unpublished, that specific name and
version combination can never be reused. In order to publish the
package again, a new version number must be used.</p>
<p>The scope is optional and follows the usual rules for <code><a href="../misc/npm-scope.html"><a href="../misc/npm-scope.html">npm-scope(7)</a></a></code>.</p>
<h2 id="see-also">SEE ALSO</h2>
<ul>
<li><a href="../cli/npm-deprecate.html"><a href="../cli/npm-deprecate.html">npm-deprecate(1)</a></a></li>
<li><a href="../cli/npm-publish.html"><a href="../cli/npm-publish.html">npm-publish(1)</a></a></li>
<li><a href="../misc/npm-registry.html"><a href="../misc/npm-registry.html">npm-registry(7)</a></a></li>
<li><a href="../cli/npm-adduser.html"><a href="../cli/npm-adduser.html">npm-adduser(1)</a></a></li>
<li><a href="../cli/npm-owner.html"><a href="../cli/npm-owner.html">npm-owner(1)</a></a></li>
</ul>
</div>
<table border=0 cellspacing=0 cellpadding=0 id=npmlogo>
<tr><td style="width:180px;height:10px;background:rgb(237,127,127)" colspan=18> </td></tr>
<tr><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)"> </td><td style="width:40px;height:10px;background:#fff" colspan=4> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4> </td><td style="width:40px;height:10px;background:#fff" colspan=4> </td><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)"> </td><td colspan=6 style="width:60px;height:10px;background:#fff"> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4> </td></tr>
<tr><td colspan=2 style="width:20px;height:30px;background:#fff" rowspan=3> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3> </td><td style="width:10px;height:10px;background:#fff" rowspan=3> </td><td style="width:20px;height:10px;background:#fff" rowspan=4 colspan=2> </td><td style="width:10px;height:20px;background:rgb(237,127,127)" rowspan=2> </td><td style="width:10px;height:10px;background:#fff" rowspan=3> </td><td style="width:20px;height:10px;background:#fff" rowspan=3 colspan=2> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3> </td><td style="width:10px;height:10px;background:#fff" rowspan=3> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3> </td></tr>
<tr><td style="width:10px;height:10px;background:#fff" rowspan=2> </td></tr>
<tr><td style="width:10px;height:10px;background:#fff"> </td></tr>
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
</table>
<p id="footer">npm-unpublish — npm@2.1.8</p>
| grdmunoz/peopleplusplus | node_modules/meanio/node_modules/mean-cli/node_modules/npm/html/doc/cli/npm-unpublish.html | HTML | mit | 4,233 |
<html>
<head>
<base href="/">
<title>Intelligent Systems Labs</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="lib/tether/dist/css/tether.min.css">
<link rel="stylesheet" href="lib/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="lib/@angular/material/themes/indigo-pink.css">
<link rel="stylesheet" href="css/site.css">
<!-- 1. Load libraries -->
<script src="js/core.js"></script>
<script src="lib/jquery/dist/jquery.min.js"></script>
<script src="lib/tether/dist/js/tether.min.js"></script>
<script src="lib/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="lib/zone.js"></script>
<script src="lib/Reflect.js"></script>
<script src="lib/system.src.js"></script>
<!-- 2. Configure SystemJS -->
<script src="systemjs.config.js"></script>
<script>
System.import('app').catch(function(err){ console.error(err); });
</script>
</head>
<!-- 3. Display the application -->
<body>
<my-app>
<svg class="load-icon" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<path d="M0 0h24v24H0V0z" id="a"/>
</defs>
<clipPath id="b">
<use overflow="visible" xlink:href="#a"/>
</clipPath>
<path clip-path="url(#b)" d="M23 8c0 1.1-.9 2-2 2-.18 0-.35-.02-.51-.07l-3.56 3.55c.05.16.07.34.07.52 0 1.1-.9 2-2 2s-2-.9-2-2c0-.18.02-.36.07-.52l-2.55-2.55c-.16.05-.34.07-.52.07s-.36-.02-.52-.07l-4.55 4.56c.05.16.07.33.07.51 0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2c.18 0 .35.02.51.07l4.56-4.55C8.02 9.36 8 9.18 8 9c0-1.1.9-2 2-2s2 .9 2 2c0 .18-.02.36-.07.52l2.55 2.55c.16-.05.34-.07.52-.07s.36.02.52.07l3.55-3.56C19.02 8.35 19 8.18 19 8c0-1.1.9-2 2-2s2 .9 2 2z"/>
</svg>
</my-app>
</body>
</html> | Jeanosis/IntelligentSystemsLabs | src/wwwroot/index.html | HTML | mit | 2,173 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>io-list: 17 s 🏆</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.13.2 / io-list - 1.1.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
io-list
<small>
1.1.0
<span class="label label-success">17 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-05 06:59:20 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-05 06:59:20 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 4 Virtual package relying on a GMP lib system installation
coq 8.13.2 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.06.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.06.1 Official 4.06.1 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "dev@clarus.me"
homepage: "https://github.com/clarus/io-list"
dev-repo: "git+https://github.com/clarus/io-list.git"
bug-reports: "https://github.com/clarus/io-list/issues"
authors: ["Guillaume Claret"]
license: "MIT"
build: [
["./configure.sh"]
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/Io/List.vo"]
depends: [
"ocaml"
"coq" {>= "8.4pl4"}
"coq-io" {>= "3.1.0" & < "4"}
]
synopsis: "Generic functions on lists with effects"
flags: light-uninstall
url {
src: "https://github.com/coq-io/list/archive/1.1.0.tar.gz"
checksum: "md5=5c4c7c9c32155b1ac9f49bb0fea581df"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-io-list.1.1.0 coq.8.13.2</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-io-list.1.1.0 coq.8.13.2</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>17 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 4h opam install -y -v coq-io-list.1.1.0 coq.8.13.2</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>17 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 27 K</p>
<ul>
<li>19 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Io/List.vo</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Io/List.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Io/List.v</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-io-list.1.1.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.06.1-2.0.5/released/8.13.2/io-list/1.1.0.html | HTML | mit | 6,772 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>The Nearly Uniform</title>
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Source+Sans+Pro:300,300i,600">
<link rel="stylesheet" href="/style.css">
<link rel="stylesheet" href="/custom.css">
<link rel="shortcut icon" href="https://micro.blog/curt/favicon.png" type="image/x-icon" />
<link rel="alternate" type="application/rss+xml" title="Curt Clifton" href="http://microblog.curtclifton.net/feed.xml" />
<link rel="alternate" type="application/json" title="Curt Clifton" href="http://microblog.curtclifton.net/feed.json" />
<link rel="EditURI" type="application/rsd+xml" href="/rsd.xml" />
<link rel="me" href="https://micro.blog/curt" />
<link rel="me" href="https://twitter.com/curtclifton" />
<link rel="authorization_endpoint" href="https://micro.blog/indieauth/auth" />
<link rel="token_endpoint" href="https://micro.blog/indieauth/token" />
<link rel="micropub" href="https://micro.blog/micropub" />
<link rel="webmention" href="https://micro.blog/webmention" />
<link rel="subscribe" href="https://micro.blog/users/follow" />
</head>
<body>
<div class="container">
<header class="masthead">
<h1 class="masthead-title--small">
<a href="/">Curt Clifton</a>
</h1>
</header>
<div class="content post h-entry">
<div class="post-date">
<time class="dt-published" datetime="2018-02-06 19:48:12 -0800">06 Feb 2018</time>
</div>
<div class="e-content">
<p>“The nearly uniform cowardice among elected Republicans is staggering. One is left wishing that Obamacare covered spine transplants.” —<a href="https://www.washingtonpost.com/opinions/the-cowardice-among-republicans-is-staggering/2018/02/05/41852454-0aa9-11e8-8890-372e2047c935_story.html">Michael Gerson</a></p>
</div>
</div>
</div>
</body>
</html>
| curtclifton/curtclifton.github.io | _site/2018/02/06/the-nearly-uniform.html | HTML | mit | 1,953 |
---
layout: default
---
<p class="meta"> {{ page.date | date: "%B %d, %Y" }}
<a href="/"><i class="fa fa-home"></i></a>
</p>
<h1 class="title">{{ page.title }}</h1>
<div id="post">
{{ content }}
</div>
| yinshengrong/yinshengrong.github.io | _layouts/page.html | HTML | mit | 207 |
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<title>WeDago</title>
<link rel="stylesheet" href="./assets/css/style.css">
<!-- <link rel="stylesheet" href="./css/main.css"> -->
<link rel="stylesheet" href="./assets/css/flexslider.css" type="text/css" media="screen" />
<link href='http://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Roboto+Condensed:300italic,400italic,400,300' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="body">
<div class="fixed-top">
<header id="header" class="table-row">
<div class="table-cell">
<div class="wrapper">
<div class="main-holder">
<div class="contacts">
<a href="mailto:biuro@dagocentrum.pl" class="contact-mail">biuro@dagocentrum.pl</a>
<a href="tel:+48226539530" class="contact-phone">+48 22 653 95 30</a>
</div>
<div class="logo">
<a href="" class="logoimg">
<img src="./assets/img/logowhite.png" alt="Dago Centrum">
</a>
</div>
<nav class="top-nav">
<div class="menu-main-top-nav-container">
<ul class="menu-main-top-nav">
<li id="menu-item-location" class="menu-item">
<a href="#" class="">
BIURA
</a>
</li>
<li id="menu-item-conference" class="menu-item">
<a href="./ck.html" class="">
CENTRUM KONFERENCYJNE
</a>
</li>
<a href="#" class="elomelo">
<li id="menu-item-tour" class="menu-item right">
UMÓW SIĘ
</li>
</a>
</ul>
</div>
</nav>
</div>
</div>
</div>
</header>
<div class="hero table-row">
<div class="middle-table-cell">
<div class="actions">
<h1 class="whitened">
Idealne miejsce dla twojej firmy
</h1>
<a href="#" class="button">UMÓW SIĘ</a>
<p class="whitened">Zadzwoń do nas:
</p>
<p class="whitened">+48 22 653 95 30</p>
</div>
<video id="video" autoplay="autoplay" muted="muted" poster="" loop="loop">
<!--<source src="https://www.paypalobjects.com/webstatic/mktg/wright/videos/home-signup.webm" type="video/webm; codecs='wp8, vorbis'"/>
-->
<source src="./assets/mov/wtt.mp4" type="video/mp4; codecs='avc1.42E01E, mp4a.40.2'"/>
</video>
</div>
</div>
<div class="table-row">
<div class="navcontainer">
<div class="wrapper">
<div class="raisemenu">
<ul class="locations-raisemenu">
<li id="wtt-raisemenu-location" class="location">
<a href="./wtt.html">
<div id="wttbuilding" class="building">
</div>
<div class="floor">
36 & 35 floor
</div>
<div class="name">
WTT
</div>
</a>
</li>
<li id="rondo1-raisemenu-location" class="location">
<a href="./rondo1.html">
<div id="rondo1building" class="building">
</div>
<div class="floor">
2 floor
</div>
<div class="name">
Rondo 1
</div>
</a>
</li>
<li id="atrium-raisemenu-location" class="location right">
<a href="./atrium.html">
<div id="atriumbuilding" class="building">
</div>
<div class="floor">
1 & 2 floor
</div>
<div class="name">
Atrium IBC
</div>
</a>
</li>
</div>
<div class="country-menu">
<ul class="countrylist">
<a href="#">
<li class="englishflag"></li>
</a>
<a href="#">
<li class="polishflag"></li>
</a>
</ul>
</div>
<a href="#">
<div class="get-down">
</div>
</a>
</div>
</div>
</div>
</div>
<div class="main">
</div>
</div>
<!-- jQuery -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<!-- FlexSlider -->
<script defer src="./js/jquery.flexslider.js"></script>
<script type="text/javascript">
$(window).resize(function () {
var winwidth = $(window).width(),
winheight = $(window).height(),
winratio = winwidth/winheight;
if (winratio>1.78) {
console.log("elo")
$("#video").css("width", "100%");
$("#video").css("height", "auto");
}
else {
$("#video").css("width", "auto");
$("#video").css("height", "100%");
};
var imgwidth = $(".flexslider .slides img").width(),
imgheight = $(".flexslider .slides img").height();
if (winwidth >= 1073) {
console.log(winwidth);
$(".flexslider .slides img").css("left", 0);
$(".flexslider .slides img").css("height", "auto");
$(".flexslider .slides img").css("width", "100%");
$(".flexslider .slides img").css("top", -(imgwidth * 4 / 18) + 240);
console.log(-(imgwidth * 4 / 18) + 240)
} else {
$(".flexslider .slides img").css("top", 0);
$(".flexslider .slides img").css("height", "100%");
$(".flexslider .slides img").css("width", "auto");
$(".flexslider .slides img").css("left", (winwidth / 2) - 536);
console.log(-(imgwidth / 2));
}
});
$(window).load(function () {
var winwidth = $(window).width(),
winheight = $(window).height(),
winratio = winwidth/winheight;
if (winratio>1.78) {
$("#video").css("width", "100%");
$("#video").css("height", "auto");
}
else {
$("#video").css("width", "auto");
$("#video").css("height", "100%");
};
});
</script>
<script type='text/javascript'>//<![CDATA[
;document.write("<script defer src='//HOST:3000/socket.io/socket.io.js'><\/script><script defer src='//HOST:3001/client/browser-sync-client.0.9.1.js'><\/script>".replace(/HOST/g, location.hostname));
//]]></script>
</body>
</html>
| t1du53k/wedago | index.html | HTML | mit | 7,281 |
<!DOCTYPE html>
<html lang="en" ng-app="myApp">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>My AngularJS App</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div ng-include="'../templates/navbar.html'"></div>
<main>
<div ng-if="destination == 'user' || destination == 'id'" class="col-md-2" ng-include="'../templates/user_side.html'"></div>
<div ng-if="destination != 'user' && destination != 'id'" class="col-md-3" ng-include="'../templates/tagsCloud.html'"></div>
<div class="col-md-9 col-xs-12 col-sm-12" ng-show="(['all', 'user','id'].indexOf(destination) !== -1)" ng-include="'../templates/content.html'"></div>
</main>
<script src="components/version/version.js"></script>
<script src="components/version/version-directive.js"></script>
<script src="components/version/interpolate-filter.js"></script>
</body>
</html> | Nikitzu/Final_Proj | app/main.html | HTML | mit | 984 |
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>calculations.rb</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="../../../../../../../../../../../../css/reset.css" type="text/css" media="screen" />
<link rel="stylesheet" href="../../../../../../../../../../../../css/main.css" type="text/css" media="screen" />
<link rel="stylesheet" href="../../../../../../../../../../../../css/github.css" type="text/css" media="screen" />
<script src="../../../../../../../../../../../../js/jquery-1.3.2.min.js" type="text/javascript" charset="utf-8"></script>
<script src="../../../../../../../../../../../../js/jquery-effect.js" type="text/javascript" charset="utf-8"></script>
<script src="../../../../../../../../../../../../js/main.js" type="text/javascript" charset="utf-8"></script>
<script src="../../../../../../../../../../../../js/highlight.pack.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div class="banner">
<span>Ruby on Rails 4.0.0</span><br />
<h1>
calculations.rb
</h1>
<ul class="files">
<li>
/home/jude/.gem/ruby/2.0.0/gems/activesupport-4.0.0/lib/active_support/core_ext/date_time/calculations.rb
</li>
<li>Last modified: 2013-10-17 23:38:06 +0800</li>
</ul>
</div>
<div id="bodyContent">
<div id="content">
<!-- File only: requires -->
<div class="sectiontitle">Required Files</div>
<ul>
<li>active_support/deprecation</li>
</ul>
<!-- Namespace -->
<div class="sectiontitle">Namespace</div>
<ul>
<li>
<span class="type">CLASS</span>
<a href="../../../../../../../../../../../../classes/DateTime.html">DateTime</a>
</li>
</ul>
<!-- Methods -->
</div>
</div>
</body>
</html> | zhuzhang/auc | doc/api/files/home/jude/_gem/ruby/2_0_0/gems/activesupport-4_0_0/lib/active_support/core_ext/date_time/calculations_rb.html | HTML | mit | 2,256 |
<HTML><HEAD>
<TITLE>Review for Virgin Suicides, The (1999)</TITLE>
<LINK REL="STYLESHEET" TYPE="text/css" HREF="/ramr.css">
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1 ALIGN="CENTER" CLASS="title"><A HREF="/Title?0159097">Virgin Suicides, The (1999)</A></H1><H3 ALIGN=CENTER>reviewed by<BR><A HREF="/ReviewsBy?Dennis+Schwartz">Dennis Schwartz</A></H3><HR WIDTH="40%" SIZE="4">
<P>VIRGIN SUICIDES (director/writer: Sofia Coppola; screenwriter: based on
the novel by Jeffrey Eugenides; cinematographer: Edward Lachman; editor:
James Lyons/Melissa Kent; cast: James Woods (Mr. Lisbon), Kathleen
Turner (Mrs. Lisbon), Kirsten Dunst (Lux Lisbon), Hanna Hall (Cecilia
Lisbon), Chelse Swain (Bonnie Lisbon), A. J. Cook (Mary Lisbon), Leslie
Hayman (Therese Lisbon), Danny DeVito (Dr. Horniker), Josh Hartnett
(Trip Fontaine), Giovanni Ribisi (the Narrator), Michael Paré (Trip
Fontaine '97); Runtime: 97; Paramount Classics; 1999)</P>
<PRE>Reviewed by Dennis Schwartz</PRE>
<P>An artistically moody puzzler built around the mystery of five sisters
in a wealthy small Michigan suburban town who committed suicide twenty
five years ago (the story takes place in the 1970s, as evidenced by the
background music of Styx and Electric Light Orchestra). The film is
narrated offscreen by Giovanni Ribisi, as an adult looking back at that
time with all the physical evidence the locals collected about the
girls. The recollections of the girls is by their boy classmates, the
ones who lusted after their dream girls and their perceptions are
admittedly drawn from their limited experiences with the girls and from
anything they found in the girls's house afterwards, such as Cecilia's
diary and photos of the girls. It is richly adapted from a Jeffrey
Eugenides novel by director Sofia Coppola.</P>
<P>The film is an evocative visual depiction of a typical suburban family
and community. It dwells on the sadness found under all the attractive
girls's smiling faces, leaving one with a lingering feeling of
helplessness about their situation. Adolescence is scrutinized by Sofia
Coppola in a cinematically crafted manner, finely inspired by what we
think we remember about that age when looking back at it, with the
implication that the girls at that time knew more about the boys than
the other way around. The boys, except for one, are insecure and clumsy
around the girls.</P>
<P>Edward Lachman's photography has a mesmerizing look to it, as he seems
to have his camera covered with a filter to make the shots appear fuzzy,
which complements a story that can't be completely put together because
we don't know the answers as to why the girls' did what they did. All we
are left with are some clues to what set the tragedy off and our mind
associations take over as we are left trying to rationalize what we
can't understand.</P>
<P>The first Lisbon girl to go the suicide route was the lovely but unhappy
youngest one, the 13-year-old, Cecilia (Hanna Hall), who first attempts
suicide by jumping off her house roof onto a spiked fence but fails, and
is sent to a shrink (Danny DeVito) for observation. To cheer her up, her
very strict Catholic mother (Kathleen Turner) throws her a party in the
house. At some point during the party, Cecilia retreats upstairs and
succeeds in slitting her wrists.</P>
<P>The distraught father (James Woods), a math teacher in the high school,
is viewed as a decent but unassertive weakling. He deals with the
tragedy afterwards by watching a baseball game, unable to talk with the
girls or the priest who came by to comfort the family.</P>
<P>With the girls back in school, the attractive and sexually inviting Lux
(Kirsten Dunst) has the school's lady man, the handsome guy who walks
with a swagger, Trip (Josh Hartnett), go wild over her. Their romance is
hampered by Mrs. Lisbon not allowing her daughters to go out on dates
alone. But Trip comes up with a plan so that all the girls can have
dates with his friends and attend the high school homecoming dance
together, where Mr. Lisbon will be the chaperone. The promise is made to
return before curfew, but Trip and Lux get carried away with their
passion for each other and make it on the football field, thereby
breaking the curfew. But Trip leaves her alone in the field and will
never see her again after that most perfect night, as he is now
interviewed about her as an adult and says he liked her, she was his
dream girl, and can't explain why he left her.</P>
<P>Mrs. Lisbon goes overboard on the punishment and the girls are
indefinitely grounded from all activities and forced to remain home. The
emasculated father is overwhelmed by all the women around him and
retreats from the crisis he is facing at home, by saying nothing to his
wife about the vindictive punishment dished out.</P>
<P>Within a year of the youngest Lisbon's death, the other four follow suit
after sneaking out for a car ride into the early morning hours with the
high school boys. The 15-year-old Bonnie (Chelse Swain), hangs herself;
the 16-year-old Mary (A. J. Cook) sticks her head in the oven; the
17-year-old Therese (Leslie Hayman) does it by sleeping pills, and the
narrator tells us the last one to go was the 14-year-old Lux, who
handled her confinement by sneaking boys on the house roof for random
sex, as viewed by the neighborhood boys with their expensive telescope.</P>
<P>Despite liking much about the film and respecting the eclectic approach
the director used, I still found that this film wasn't talking to me. I
felt I was asked to be a mourner at a once in a lifetime story that has
the possibility to pop up some day on the TV news as one of those
bizarre events that just happen without cause, but the story itself went
no deeper than how the TV news would cover it. The exploration of the
teens in their growing pains, their ordinary wants, and even in their
grandeur, left me scratching my head at this allegorical tale, wondering
how it was that the sunshine couldn't get inside them, why they were
symbolically cut down in life like the diseased elm tree in front of
their house was, where I could at least see the disease in the tree's
yellow leaves. As for the girls, aside from their horribly repressed,
overbearing mother, Where was the monster lurking in them that made them
feel so despondent? I don't know how much of their futility I could see,
as the more I thought about them, the more they seemed like ghosts than
real people, and they all started looking like each other, so I couldn't
distinguish one from the other, except for Lux, who for some reason in
all her boldness and sexuality, couldn't find the strength to live.
Which left me perplexed as to why the film thrived on not telling a
complete story. If I tried to know more about the girls, I would only
become like the shrink, giving off pat answers to something that was
supposed to remain a mystery. I don't know if this is a good or a bad
way for a film to leave the viewer, but I do know I felt something
profound was missing here, as the film was more revealing about the boys
and their idealization of the girls than it was about the girls and what
they were really like. This seemed misplaced storytelling, since the
girls' story should have been more compelling than the boys' awkward
adolescent tale was. What I got out of the story was a peak at life in
the suburbs and about awkward adolescent boys only looking at the girls
through what they fantasized about them. What saves this film, is the
innovative way the director filmed the story, covering up the fluff to
make the story look deeper than it was.</P>
<PRE>REVIEWED ON 1/17/2001 GRADE: B-</PRE>
<P>Dennis Schwartz: "Ozus' World Movie Reviews"</P>
<PRE><A HREF="http://www.sover.net/~ozus">http://www.sover.net/~ozus</A></PRE>
<PRE><A HREF="mailto:ozus@sover.net">ozus@sover.net</A></PRE>
<P>© ALL RIGHTS RESERVED DENNIS SCHWARTZ</P>
<HR><P CLASS=flush><SMALL>The review above was posted to the
<A HREF="news:rec.arts.movies.reviews">rec.arts.movies.reviews</A> newsgroup (<A HREF="news:de.rec.film.kritiken">de.rec.film.kritiken</A> for German reviews).<BR>
The Internet Movie Database accepts no responsibility for the contents of the
review and has no editorial control. Unless stated otherwise, the copyright
belongs to the author.<BR>
Please direct comments/criticisms of the review to relevant newsgroups.<BR>
Broken URLs inthe reviews are the responsibility of the author.<BR>
The formatting of the review is likely to differ from the original due
to ASCII to HTML conversion.
</SMALL></P>
<P ALIGN=CENTER>Related links: <A HREF="/Reviews/">index of all rec.arts.movies.reviews reviews</A></P>
</P></BODY></HTML>
| xianjunzhengbackup/code | data science/machine_learning_for_the_web/chapter_4/movie/27487.html | HTML | mit | 8,795 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Code Coverage for D:\xampp\xampp\htdocs\Music_site\src\TMS\UserJoinPageBundle/Form</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="../css/bootstrap.min.css" rel="stylesheet">
<link href="../css/style.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="../js/html5shiv.min.js"></script>
<script src="../js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<header>
<div class="container">
<div class="row">
<div class="col-md-12">
<ol class="breadcrumb">
<li><a href="../index.html">D:\xampp\xampp\htdocs\Music_site\src\TMS\UserJoinPageBundle</a></li>
<li class="active">Form</li>
<li>(<a href="dashboard.html">Dashboard</a>)</li>
</ol>
</div>
</div>
</div>
</header>
<div class="container">
<table class="table table-bordered">
<thead>
<tr>
<td> </td>
<td colspan="9"><div align="center"><strong>Code Coverage</strong></div></td>
</tr>
<tr>
<td> </td>
<td colspan="3"><div align="center"><strong>Lines</strong></div></td>
<td colspan="3"><div align="center"><strong>Functions and Methods</strong></div></td>
<td colspan="3"><div align="center"><strong>Classes and Traits</strong></div></td>
</tr>
</thead>
<tbody>
<tr>
<td class="danger">Total</td>
<td class="danger big"> <div class="progress">
<div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="0.00" aria-valuemin="0" aria-valuemax="100" style="width: 0.00%">
<span class="sr-only">0.00% covered (danger)</span>
</div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 55</div></td>
<td class="danger big"> <div class="progress">
<div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="0.00" aria-valuemin="0" aria-valuemax="100" style="width: 0.00%">
<span class="sr-only">0.00% covered (danger)</span>
</div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 6</div></td>
<td class="danger big"> <div class="progress">
<div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="0.00" aria-valuemin="0" aria-valuemax="100" style="width: 0.00%">
<span class="sr-only">0.00% covered (danger)</span>
</div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 2</div></td>
</tr>
<tr>
<td class="danger"><span class="glyphicon glyphicon-file"></span> <a href="UserType.php.html">UserType.php</a></td>
<td class="danger big"> <div class="progress">
<div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="0.00" aria-valuemin="0" aria-valuemax="100" style="width: 0.00%">
<span class="sr-only">0.00% covered (danger)</span>
</div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 18</div></td>
<td class="danger big"> <div class="progress">
<div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="0.00" aria-valuemin="0" aria-valuemax="100" style="width: 0.00%">
<span class="sr-only">0.00% covered (danger)</span>
</div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 3</div></td>
<td class="danger big"> <div class="progress">
<div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="0.00" aria-valuemin="0" aria-valuemax="100" style="width: 0.00%">
<span class="sr-only">0.00% covered (danger)</span>
</div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 1</div></td>
</tr>
<tr>
<td class="danger"><span class="glyphicon glyphicon-file"></span> <a href="UserType_org.php.html">UserType_org.php</a></td>
<td class="danger big"> <div class="progress">
<div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="0.00" aria-valuemin="0" aria-valuemax="100" style="width: 0.00%">
<span class="sr-only">0.00% covered (danger)</span>
</div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 37</div></td>
<td class="danger big"> <div class="progress">
<div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="0.00" aria-valuemin="0" aria-valuemax="100" style="width: 0.00%">
<span class="sr-only">0.00% covered (danger)</span>
</div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 3</div></td>
<td class="danger big"> <div class="progress">
<div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="0.00" aria-valuemin="0" aria-valuemax="100" style="width: 0.00%">
<span class="sr-only">0.00% covered (danger)</span>
</div>
</div>
</td>
<td class="danger small"><div align="right">0.00%</div></td>
<td class="danger small"><div align="right">0 / 1</div></td>
</tr>
</tbody>
</table>
<footer>
<hr/>
<h4>Legend</h4>
<p>
<span class="danger"><strong>Low</strong>: 0% to 50%</span>
<span class="warning"><strong>Medium</strong>: 50% to 90%</span>
<span class="success"><strong>High</strong>: 90% to 100%</span>
</p>
<p>
<small>Generated by <a href="http://github.com/sebastianbergmann/php-code-coverage" target="_top">PHP_CodeCoverage 2.0.13</a> using <a href="http://php.net/" target="_top">PHP 5.4.7</a> and <a href="http://phpunit.de/">PHPUnit 4.4.0</a> at Wed Jan 7 11:27:53 CET 2015.</small>
</p>
</footer>
</div>
<script src="../js/jquery.min.js" type="text/javascript"></script>
<script src="../js/bootstrap.min.js" type="text/javascript"></script>
<script src="../js/holder.js" type="text/javascript"></script>
</body>
</html>
| etisbew/TMS | web/cov/Form/index.html | HTML | mit | 6,705 |
<!DOCTYPE html>
<html>
<head>
<title>Welcome to Angular.js!</title>
<script src="libs/jquery/dist/jquery.js"></script>
<script src="libs/angular/angular.js"></script>
</head>
<body>
<div ng-app="MyApp">
<div ng-controller="MyCtrl">
<div my-dir></div>
</div>
</div>
<script>
angular.module("MyApp", [])
.directive("myDir", function() {
// directive definition object
return {
// template: "<div>{{message}}</div>" +
// "<ul><li ng-repeat='color in colors'>{{color}}</li></ul>",
templateUrl: "tpl/test.html",
link: function(scope, element) {
scope.message = "Hi Class!";
scope.colors = ["red","white","blue","periwinkle"];
}
};
})
.controller("MyCtrl", function($scope, $q, $timeout) {
})
.run(function($templateCache) {
$templateCache.put("tpl/test.html", "<div>{{message}}</div><ul><li ng-repeat='color in colors'>{{color}}</li></ul>");
});
</script>
</body>
</html>
| training4developers/angular_12072015 | app/www/index_dir_template.html | HTML | mit | 969 |
<!DOCTYPE html>
<html class="theme-next pisces use-motion" lang="zh-Hans">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<meta name="theme-color" content="#222">
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link href="/lib/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css" />
<link href="/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css" />
<link href="/css/main.css?v=5.1.3" rel="stylesheet" type="text/css" />
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon.png?v=5.1.3">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32.png?v=5.1.3">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16.png?v=5.1.3">
<link rel="mask-icon" href="/images/logo.svg?v=5.1.3" color="#222">
<meta name="keywords" content="Hexo, NexT" />
<meta name="description" content="Schedule2017.9.10 数学联赛2017.10.14 noip预赛2017.11.11 noip复赛">
<meta property="og:type" content="website">
<meta property="og:title" content="schedule">
<meta property="og:url" content="http://yoursite.com/schedule/index.html">
<meta property="og:site_name" content="ERROR573">
<meta property="og:description" content="Schedule2017.9.10 数学联赛2017.10.14 noip预赛2017.11.11 noip复赛">
<meta property="og:locale" content="zh-Hans">
<meta property="og:updated_time" content="2017-10-10T13:54:16.362Z">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="schedule">
<meta name="twitter:description" content="Schedule2017.9.10 数学联赛2017.10.14 noip预赛2017.11.11 noip复赛">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Pisces',
version: '5.1.3',
sidebar: {"position":"left","display":"post","offset":12,"b2t":false,"scrollpercent":false,"onmobile":false},
fancybox: true,
tabs: true,
motion: {"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},
duoshuo: {
userId: '0',
author: '博主'
},
algolia: {
applicationID: '',
apiKey: '',
indexName: '',
hits: {"per_page":10},
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
}
};
</script>
<link rel="canonical" href="http://yoursite.com/schedule/"/>
<title>schedule | ERROR573</title>
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="zh-Hans">
<div class="container sidebar-position-left page-post-detail">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-wrapper">
<div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">ERROR573</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle"></p>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section">
<i class="menu-item-icon fa fa-fw fa-home"></i> <br />
首页
</a>
</li>
<li class="menu-item menu-item-about">
<a href="/about/" rel="section">
<i class="menu-item-icon fa fa-fw fa-user"></i> <br />
关于
</a>
</li>
<li class="menu-item menu-item-tags">
<a href="/tags/" rel="section">
<i class="menu-item-icon fa fa-fw fa-tags"></i> <br />
标签
</a>
</li>
<li class="menu-item menu-item-categories">
<a href="/categories/" rel="section">
<i class="menu-item-icon fa fa-fw fa-th"></i> <br />
分类
</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives/" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive"></i> <br />
归档
</a>
</li>
<li class="menu-item menu-item-schedule">
<a href="/schedule/" rel="section">
<i class="menu-item-icon fa fa-fw fa-calendar"></i> <br />
日程表
</a>
</li>
</ul>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<div id="posts" class="posts-expand">
<div class="post-block page">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">schedule</h1>
</header>
<div class="post-body">
<h1 id="Schedule"><a href="#Schedule" class="headerlink" title="Schedule"></a>Schedule</h1><p>2017.9.10 数学联赛<br>2017.10.14 noip预赛<br>2017.11.11 noip复赛</p>
</div>
</div>
</div>
</div>
</div>
<div class="sidebar-toggle">
<div class="sidebar-toggle-line-wrap">
<span class="sidebar-toggle-line sidebar-toggle-line-first"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-middle"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-last"></span>
</div>
</div>
<aside id="sidebar" class="sidebar">
<div class="sidebar-inner">
<ul class="sidebar-nav motion-element">
<li class="sidebar-nav-toc sidebar-nav-active" data-target="post-toc-wrap">
文章目录
</li>
<li class="sidebar-nav-overview" data-target="site-overview-wrap">
站点概览
</li>
</ul>
<section class="site-overview-wrap sidebar-panel">
<div class="site-overview">
<div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person">
<img class="site-author-image" itemprop="image"
src="https://avatars3.githubusercontent.com/u/21214944?v=4&s=400&u=fc5fe1744aa9f33f1392953257522db891dcaf81"
alt="Trivial573" />
<p class="site-author-name" itemprop="name">Trivial573</p>
<p class="site-description motion-element" itemprop="description">Less is more</p>
</div>
<nav class="site-state motion-element">
<div class="site-state-item site-state-posts">
<a href="/archives/">
<span class="site-state-item-count">2</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
<div class="site-state-item site-state-categories">
<a href="/categories/index.html">
<span class="site-state-item-count">1</span>
<span class="site-state-item-name">分类</span>
</a>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags/index.html">
<span class="site-state-item-count">2</span>
<span class="site-state-item-name">标签</span>
</a>
</div>
</nav>
<div class="links-of-author motion-element">
<span class="links-of-author-item">
<a href="https://github.com/ziapro" target="_blank" title="GitHub">
<i class="fa fa-fw fa-github"></i>GitHub</a>
</span>
<span class="links-of-author-item">
<a href="mailto:ziapro@msn.com" target="_blank" title="Mail">
<i class="fa fa-fw fa-envelope"></i>Mail</a>
</span>
</div>
</div>
</section>
<!--noindex-->
<section class="post-toc-wrap motion-element sidebar-panel sidebar-panel-active">
<div class="post-toc">
<div class="post-toc-content"><ol class="nav"><li class="nav-item nav-level-1"><a class="nav-link" href="#Schedule"><span class="nav-number">1.</span> <span class="nav-text">Schedule</span></a></li></ol></div>
</div>
</section>
<!--/noindex-->
</div>
</aside>
</div>
</main>
<footer id="footer" class="footer">
<div class="footer-inner">
<div class="copyright">© <span itemprop="copyrightYear">2017</span>
<span class="with-love">
<i class="fa fa-user"></i>
</span>
<span class="author" itemprop="copyrightHolder">Trivial573</span>
</div>
<div class="powered-by">由 <a class="theme-link" target="_blank" href="https://hexo.io">Hexo</a> 强力驱动</div>
<span class="post-meta-divider">|</span>
<div class="theme-info">主题 — <a class="theme-link" target="_blank" href="https://github.com/iissnan/hexo-theme-next">NexT.Pisces</a> v5.1.3</div>
<div class="busuanzi-count">
<script async src="https://dn-lbstatics.qbox.me/busuanzi/2.3/busuanzi.pure.mini.js"></script>
<span class="site-uv">
<i class="fa fa-user"></i>
<span class="busuanzi-value" id="busuanzi_value_site_uv"></span>
</span>
<span class="site-pv">
<i class="fa fa-eye"></i>
<span class="busuanzi-value" id="busuanzi_value_site_pv"></span>
</span>
</div>
</div>
</footer>
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
</div>
</div>
<script type="text/javascript">
if (Object.prototype.toString.call(window.Promise) !== '[object Function]') {
window.Promise = null;
}
</script>
<script type="text/javascript" src="/lib/jquery/index.js?v=2.1.3"></script>
<script type="text/javascript" src="/lib/fastclick/lib/fastclick.min.js?v=1.0.6"></script>
<script type="text/javascript" src="/lib/jquery_lazyload/jquery.lazyload.js?v=1.9.7"></script>
<script type="text/javascript" src="/lib/velocity/velocity.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/lib/velocity/velocity.ui.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/lib/fancybox/source/jquery.fancybox.pack.js?v=2.1.5"></script>
<script type="text/javascript" src="/lib/canvas-nest/canvas-nest.min.js"></script>
<script type="text/javascript" src="/js/src/utils.js?v=5.1.3"></script>
<script type="text/javascript" src="/js/src/motion.js?v=5.1.3"></script>
<script type="text/javascript" src="/js/src/affix.js?v=5.1.3"></script>
<script type="text/javascript" src="/js/src/schemes/pisces.js?v=5.1.3"></script>
<script type="text/javascript" src="/js/src/scrollspy.js?v=5.1.3"></script>
<script type="text/javascript" src="/js/src/post-details.js?v=5.1.3"></script>
<script type="text/javascript" src="/js/src/bootstrap.js?v=5.1.3"></script>
</body>
</html>
| ziapro/ziapro.github.io | schedule/index.html | HTML | mit | 12,719 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hello Electron React!</title>
<link rel="stylesheet" href="../node_modules/font-awesome/css/font-awesome.min.css" />
<link rel="stylesheet" href="../libs/alloy-editor/assets/alloy-editor-ocean-min.css">
</head>
<body>
<div id="root"></div>
<script src="../libs/alloy-editor/alloy-editor-all-min.js"></script>
<script src="http://localhost:3000/dist/bundle.js"></script>
<script>
AlloyEditor.editable('editor');
</script>
</body>
</html>
| phodal/echeveria-editor | app/hot-dev-app.html | HTML | mit | 546 |
<script>
const MarksMixin = subclass =>
class MarksController extends subclass {
constructor() {
super();
this._iocInject('MarksModel');
}
_getMarks(pageId) {
return this.MarksModel.getPageMarks(pageId);
}
_getPendingMark(pageId, markId) {
return this.MarksModel.getPendingMark(pageId, markId);
}
_listenToMark(pageId, markId) {
return this.MarksModel.listenToMark(pageId, markId);
}
_addMark(pageId, mark) {
return this.MarksModel.setPending(pageId, mark);
}
_editMark(pageId, markId, mark) {
return this.MarksModel.setPending(pageId, markId, mark);
}
_voteOnMark(pageId, markId, vote) {
return this.MarksModel.votePending(pageId, markId, vote);
}
_removeMark(pageId, markId) {
return this.MarksModel.removePending(pageId, markId);
}
_pendingMarkSearch(query) {
return this.MarksModel.pendingMarkSearch(query);
}
_updateTempMark(pageId, xy) {
return this.MarksModel.updateTempMark(pageId, xy);
}
_removeTempMark() {
return this.MarksModel.removeTempMark();
}
}
</script> | UCDavisLibrary/price-the-vintage | public/elements/base/marks-controller.html | HTML | mit | 1,218 |
<!DOCTYPE html>
<html>
<head>
<title>react-google-typeahead Demo</title>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css" integrity="sha256-t2/7smZfgrST4FS1DT0bs/KotCM74XlcqZN5Vu7xlrw=" crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" integrity="sha256-NuCn4IvuZXdBaFKJOAcsU2Q3ZpwbdFisd5dux4jkQ5w=" crossorigin="anonymous" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/css/bootstrap.min.css" integrity="sha384-AysaV+vQoT3kOAXZkl02PThvDr8HYKPZhNT5h/CXfBThSRXQ6jW5DO2ekP5ViFdi" crossorigin="anonymous">
<link href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/flatly/bootstrap.min.css" rel="stylesheet" integrity="sha384-+ENW/yibaokMnme+vBLnHMphUYxHs34h9lpdbSLuAwGkOKFRl4C34WkjazBtb7eT" crossorigin="anonymous">
<link rel="stylesheet" href="app.css">
</head>
<body>
<a href="https://github.com/kenny-hibino/react-google-typeahead"><img style="position: absolute; top: 0; left: 0; border: 0;" src="https://camo.githubusercontent.com/82b228a3648bf44fc1163ef44c62fcc60081495e/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f6c6566745f7265645f6161303030302e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_left_red_aa0000.png"></a>
<div id="app" />
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCoq4_-BeKtYRIs-3FjJL721G1eP5DaU0g&libraries=places"></script>
<script src="index.min.js"></script>
</body>
</html>
| TheRusskiy/react-google-typeahead | demo/index.html | HTML | mit | 1,925 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="rustdoc">
<meta name="description" content="API documentation for the Rust `XKB_KEY_F14` constant in crate `wayland_kbd`.">
<meta name="keywords" content="rust, rustlang, rust-lang, XKB_KEY_F14">
<title>wayland_kbd::keysyms::XKB_KEY_F14 - Rust</title>
<link rel="stylesheet" type="text/css" href="../../main.css">
</head>
<body class="rustdoc">
<!--[if lte IE 8]>
<div class="warning">
This old browser is unsupported and will most likely display funky
things.
</div>
<![endif]-->
<section class="sidebar">
<p class='location'><a href='../index.html'>wayland_kbd</a>::<wbr><a href='index.html'>keysyms</a></p><script>window.sidebarCurrent = {name: 'XKB_KEY_F14', ty: 'constant', relpath: ''};</script><script defer src="sidebar-items.js"></script>
</section>
<nav class="sub">
<form class="search-form js-only">
<div class="search-container">
<input class="search-input" name="search"
autocomplete="off"
placeholder="Click or press 'S' to search, '?' for more options..."
type="search">
</div>
</form>
</nav>
<section id='main' class="content constant">
<h1 class='fqn'><span class='in-band'><a href='../index.html'>wayland_kbd</a>::<wbr><a href='index.html'>keysyms</a>::<wbr><a class='constant' href=''>XKB_KEY_F14</a></span><span class='out-of-band'><span id='render-detail'>
<a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">
[<span class='inner'>−</span>]
</a>
</span><a id='src-362' class='srclink' href='../../src/wayland_kbd/ffi/keysyms.rs.html#273' title='goto source code'>[src]</a></span></h1>
<pre class='rust const'>pub const XKB_KEY_F14: <a href='http://doc.rust-lang.org/nightly/std/primitive.u32.html'>u32</a><code> = </code><code>0xffcb</code></pre></section>
<section id='search' class="content hidden"></section>
<section class="footer"></section>
<div id="help" class="hidden">
<div class="shortcuts">
<h1>Keyboard shortcuts</h1>
<dl>
<dt>?</dt>
<dd>Show this help dialog</dd>
<dt>S</dt>
<dd>Focus the search field</dd>
<dt>⇤</dt>
<dd>Move up in search results</dd>
<dt>⇥</dt>
<dd>Move down in search results</dd>
<dt>⏎</dt>
<dd>Go to active search result</dd>
</dl>
</div>
<div class="infos">
<h1>Search tricks</h1>
<p>
Prefix searches with a type followed by a colon (e.g.
<code>fn:</code>) to restrict the search to a given type.
</p>
<p>
Accepted types are: <code>fn</code>, <code>mod</code>,
<code>struct</code>, <code>enum</code>,
<code>trait</code>, <code>typedef</code> (or
<code>tdef</code>).
</p>
<p>
Search functions by type signature (e.g.
<code>vec -> usize</code>)
</p>
</div>
</div>
<script>
window.rootPath = "../../";
window.currentCrate = "wayland_kbd";
window.playgroundUrl = "";
</script>
<script src="../../jquery.js"></script>
<script src="../../main.js"></script>
<script async src="../../search-index.js"></script>
</body>
</html> | mcanders/bevy | doc/wayland_kbd/keysyms/constant.XKB_KEY_F14.html | HTML | mit | 3,797 |
<!doctype html>
<!--[if lt IE 7]> <html class="ie6"> <![endif]-->
<!--[if IE 7]> <html class="ie7"> <![endif]-->
<!--[if IE 8]> <html class="ie8"> <![endif]-->
<!--[if gt IE 8]><!--> <html> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width">
<meta name="description" content="" />
<meta name="author" content="" />
<!-- Facebook OpenGraph Data -->
<meta property="og:title" content="Marko Bonaci's GitHub home" />
<meta property="og:description" content="mbonaci's open source projects" />
<meta property="og:image" content="https://s.gravatar.com/avatar/08cff047d246096cee251b541594a52f?s=80" />
<title>mbo</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="assets/css/style.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
<script src="assets/js/aura.js"></script>
<script src="assets/js/app.js"></script>
</head>
<body>
<section class="container">
<div id="items" class="items" onclick="mixpanel.track("Repo clicked: " + this.id);">
<header data-aura-widget="user" data-aura-user="mbonaci"></header>
<ul data-aura-widget="repos" data-aura-user="mbonaci"></ul>
</div>
<footer class="footer">
<p class="float-right"><a href="https://github.com/mbonaci/mbonaci.github.io">fork it on github</a></p>
</footer>
</section>
<script>
/* Google Analytics */
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-48325174-1', 'mbonaci.github.io');
ga('send', 'pageview');
<!-- start Mixpanel --><script type="text/javascript">(function(f,b){if(!b.__SV){var a,e,i,g;window.mixpanel=b;b._i=[];b.init=function(a,e,d){function f(b,h){var a=h.split(".");2==a.length&&(b=b[a[0]],h=a[1]);b[h]=function(){b.push([h].concat(Array.prototype.slice.call(arguments,0)))}}var c=b;"undefined"!==typeof d?c=b[d]=[]:d="mixpanel";c.people=c.people||[];c.toString=function(b){var a="mixpanel";"mixpanel"!==d&&(a+="."+d);b||(a+=" (stub)");return a};c.people.toString=function(){return c.toString(1)+".people (stub)"};i="disable track track_pageview track_links track_forms register register_once alias unregister identify name_tag set_config people.set people.set_once people.increment people.append people.union people.track_charge people.clear_charges people.delete_user".split(" ");
for(g=0;g<i.length;g++)f(c,i[g]);b._i.push([a,e,d])};b.__SV=1.2;a=f.createElement("script");a.type="text/javascript";a.async=!0;a.src="undefined"!==typeof MIXPANEL_CUSTOM_LIB_URL?MIXPANEL_CUSTOM_LIB_URL:"//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js";e=f.getElementsByTagName("script")[0];e.parentNode.insertBefore(a,e)}})(document,window.mixpanel||[]);
mixpanel.init("0afec09adf4c1d07a72e55236eb684ba");</script><!-- end Mixpanel -->
</script>
</body>
</html>
| mbonaci/mbonaci.github.io | index.html | HTML | mit | 3,349 |
<!DOCTYPE html><html><head><title>/tags/media-bias/</title><link rel="canonical" href="/tags/media-bias/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=/tags/media-bias/" /></head></html> | opoyc/partiallyrandom | public/tags/media-bias/page/1/index.html | HTML | mit | 247 |
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<title>Week 3 Day 2</title>
</head>
<body>
<script src='lecture.js'></script>
<script src='other.js'></script>
</body>
</html>
| TIY-DC-FEE-2016-Jun/lecture | week3/day2/lecture.html | HTML | mit | 240 |
<!DOCTYPE html>
<html lang="en" ng-app="colortasticApp">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Colortastic!</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="bower_components/html5-boilerplate/dist/css/normalize.css">
<link rel="stylesheet" href="bower_components/html5-boilerplate/dist/css/main.css">
<link rel="stylesheet" href="styles/app.css">
<script src="bower_components/html5-boilerplate/dist/js/vendor/modernizr-2.8.3.min.js"></script>
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap-theme.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="jumbotron">
<h1 class="text-center">
<span class="app-title">C</span>
<span class="app-title">o</span>
<span class="app-title">l</span>
<span class="app-title">o</span>
<span class="app-title">r</span>
<span class="app-title">T</span>
<span class="app-title">a</span>
<span class="app-title">s</span>
<span class="app-title">T</span>
<span class="app-title">i</span>
<span class="app-title">c</span>
<span class="app-title">!</span>
</h1>
<div id="solution-links" class="text-center">
<a ui-sref="home">First Solution</a> |
<a ui-sref="alt">Alternate Solution</a>
</div>
</div>
</div>
</div>
<div class="row">
<div ui-view></div>
</div>
</div>
<!-- In production use:
<script src="//ajax.googleapis.com/ajax/libs/angularjs/x.x.x/angular.min.js"></script>
-->
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-ui-router/release/angular-ui-router.js"></script>
<script src="bower_components/underscore/underscore.js"></script>
<script src="bower_components/angular-underscore-module/angular-underscore-module.js"></script>
<script src="app.js"></script>
<script src="scripts/controllers/home.js"></script>
<script src="scripts/controllers/alt.js"></script>
<script src="scripts/directives/color_parser.js"></script>
</body>
</html>
| nika-m/colortastic | app/index.html | HTML | mit | 2,965 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>hammer-tactics: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.7.1 / hammer-tactics - 1.1.1+8.10</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
hammer-tactics
<small>
1.1.1+8.10
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-14 16:25:14 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-14 16:25:14 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.7.1 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.04.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.04.2 Official 4.04.2 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "palmskog@gmail.com"
homepage: "https://github.com/lukaszcz/coqhammer"
dev-repo: "git+https://github.com/lukaszcz/coqhammer.git"
bug-reports: "https://github.com/lukaszcz/coqhammer/issues"
license: "LGPL-2.1-only"
synopsis: "Reconstruction tactics for the hammer for Coq"
description: """
Collection of tactics that are used by the hammer for Coq
to reconstruct proofs found by automated theorem provers. When the hammer
has been successfully applied to a project, only this package needs
to be installed; the hammer plugin is not required.
"""
build: [make "-j%{jobs}%" {ocaml:version >= "4.06"} "tactics"]
install: [
[make "install-tactics"]
[make "test-tactics"] {with-test}
]
depends: [
"ocaml"
"coq" {>= "8.10" & < "8.11~"}
]
conflicts: [
"coq-hammer" {!= version}
]
tags: [
"keyword:automation"
"keyword:hammer"
"keyword:tactics"
"logpath:Hammer"
"date:2019-10-14"
]
authors: [
"Lukasz Czajka <lukaszcz@mimuw.edu.pl>"
"Cezary Kaliszyk <cezary.kaliszyk@uibk.ac.at>"
"Burak Ekici <burak.ekici@uibk.ac.at>"
]
url {
src: "https://github.com/lukaszcz/coqhammer/archive/v1.1.1-coq8.10.tar.gz"
checksum: "sha512=c9fd9c1a997775f515850fad54edceac6572d365f1e7cc043e448d6e5c9903ccb1bea2020fbbfda3983616f9ae4181a384b933f97731a487ee5cfba7cc1543d1"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-hammer-tactics.1.1.1+8.10 coq.8.7.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.7.1).
The following dependencies couldn't be met:
- coq-hammer-tactics -> coq >= 8.10 -> ocaml >= 4.05.0
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-hammer-tactics.1.1.1+8.10</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.04.2-2.0.5/released/8.7.1/hammer-tactics/1.1.1+8.10.html | HTML | mit | 7,456 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ott: 22 s</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.5.0~camlp4 / ott - 0.30</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
ott
<small>
0.30
<span class="label label-success">22 s</span>
</small>
</h1>
<p><em><script>document.write(moment("2020-09-09 03:51:12 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-09-09 03:51:12 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp4 4.05+1 Camlp4 is a system for writing extensible parsers for programming languages
conf-findutils 1 Virtual package relying on findutils
coq 8.5.0~camlp4 Formal proof management system.
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlbuild 0.14.0 OCamlbuild is a build system with builtin rules to easily build most OCaml projects.
# opam file:
opam-version: "2.0"
maintainer: "palmskog@gmail.com"
homepage: "http://www.cl.cam.ac.uk/~pes20/ott/"
dev-repo: "git+https://github.com/ott-lang/ott.git"
bug-reports: "https://github.com/ott-lang/ott/issues"
license: "BSD-3-Clause"
synopsis: "Auxiliary Coq library for Ott, a tool for writing definitions of programming languages and calculi"
description: """
Ott takes as input a definition of a language syntax and semantics, in a concise
and readable ASCII notation that is close to what one would write in informal
mathematics. It can then generate a Coq version of the definition, which requires
this library.
"""
build: [make "-j%{jobs}%" "-C" "coq"]
install: [make "-C" "coq" "install"]
depends: [
"coq" {>= "8.5" & < "8.12~"}
]
tags: [
"category:Computer Science/Semantics and Compilation/Semantics"
"keyword:abstract syntax"
"logpath:Ott"
"date:2019-11-24"
]
authors: [
"Peter Sewell"
"Francesco Zappa Nardelli"
"Scott Owens"
]
url {
src: "https://github.com/ott-lang/ott/archive/0.30.tar.gz"
checksum: "sha512=0c988502451b442e0d5a5dbce4969723bcf2b6c3add7af3d1aea279caca5a49d5b0d7acadfd6fa17702c0f8cd1511eb445aba14b454c5263f1e0f39b80deaa00"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-ott.0.30 coq.8.5.0~camlp4</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 2h opam install -y --deps-only coq-ott.0.30 coq.8.5.0~camlp4</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>5 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 2h opam install -y -v coq-ott.0.30 coq.8.5.0~camlp4</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>22 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 754 K</p>
<ul>
<li>83 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_predicate.vo</code></li>
<li>67 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_takedrop.vo</code></li>
<li>59 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_nth.vo</code></li>
<li>58 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_distinct.vo</code></li>
<li>54 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_base.vo</code></li>
<li>48 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_mem.vo</code></li>
<li>38 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_flat_map.vo</code></li>
<li>36 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_predicate.glob</code></li>
<li>36 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_repeat.vo</code></li>
<li>32 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_support.vo</code></li>
<li>26 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_takedrop.glob</code></li>
<li>25 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list.vo</code></li>
<li>19 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_nth.glob</code></li>
<li>19 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_distinct.glob</code></li>
<li>18 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_core.vo</code></li>
<li>18 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_eq_dec.vo</code></li>
<li>17 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_base.glob</code></li>
<li>16 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_mem.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_predicate.v</code></li>
<li>10 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_takedrop.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_flat_map.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_base.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_core.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_distinct.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_nth.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_repeat.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_mem.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_support.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_eq_dec.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_flat_map.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_core.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_repeat.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_eq_dec.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list_support.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Ott/ott_list.glob</code></li>
</ul>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-ott.0.30</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.05.0-2.0.6/released/8.5.0~camlp4/ott/0.30.html | HTML | mit | 11,160 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>geocoq: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.8.0 / geocoq - 2.2.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
geocoq
<small>
2.2.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-24 18:15:59 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-24 18:15:59 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.8.0 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.04.2 The OCaml compiler (virtual package)
ocaml-base-compiler 4.04.2 Official 4.04.2 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Julien Narboux <julien@narboux.fr>"
homepage: "http://geocoq.github.io/GeoCoq/"
bug-reports: "https://github.com/GeoCoq/GeoCoq/issues"
authors: ["Gabriel Braun <gabriel.braun@unistra.fr>" "Pierre Boutry <pierre.boutry@unistra.fr>" "Charly Gries <Charly.Gries@etu.unistra.fr>" "Julien Narboux <narboux@unistra.fr>"]
license: "LGPL 3"
build: [
["./configure.sh"]
[make "-j%{jobs}%"]
]
install: [
[make "install"]
]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/GeoCoq"]
depends: [
"ocaml"
"coq" {>= "8.4pl4" & < "8.6~beta1"}
]
tags: [
"keyword:geometry"
"keyword:neutral geometry"
"keyword:euclidean geometry"
"keyword:foundations"
"keyword:Tarski"
"keyword:Hilbert"
"keyword:Pappus"
"keyword:Desargues"
"keyword:parallel postulates"
"category:Mathematics/Geometry/General"
]
synopsis: "A formalization of foundations of geometry in Coq"
flags: light-uninstall
url {
src: "https://github.com/GeoCoq/GeoCoq/archive/v2.2.0.tar.gz"
checksum: "md5=902d6708050b6c3edf4ec19dbcca9494"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-geocoq.2.2.0 coq.8.8.0</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.8.0).
The following dependencies couldn't be met:
- coq-geocoq -> coq < 8.6~beta1 -> ocaml < 4.03.0
base of this switch (use `--unlock-base' to force)
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-geocoq.2.2.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
| coq-bench/coq-bench.github.io | clean/Linux-x86_64-4.04.2-2.0.5/released/8.8.0/geocoq/2.2.0.html | HTML | mit | 7,250 |
<div id="login">
<div class="loginBackDrop"></div>
<div class="loginContent container">
<div class="row">
<div class="col-md-12">
<div class="panel panel-default panel-custom login-panel">
<div class="panel-body">
<!-- <img src="assets/images/userLogo.png" class="img-responsive loginLogo"> -->
<img src="assets/images/snapadmin.png" class="img-responsive loginLogo">
<br />
<form class="form" name="loginform" ng-submit="vm.signIn()" >
<fieldset>
<div class="form-group" ng-class="{'has-error': loginform.username.$error.email}">
<input type="email"
class="form-control"
name="username"
placeholder="Email"
ng-model="vm.username"
ng-model-options="{debounce: 200}"
required>
<div class="text-danger help-text" ng-show="loginform.username.$error.email"><em>This is not a valid email</em></div>
</div>
<div class="form-group">
<input type="password"
class="form-control"
name="password"
placeholder="Password"
ng-model="vm.password"
ng-model-options="{debounce: 200}"
required>
</div>
<div class="form-group">
<button type="submit" class="btn btn-success btn-lg btn-block">Log in</button>
</div>
</fieldset>
</form>
<div ng-show="error" class="alert alert-danger">{{vm.error}}</div>
</div>
</div>
</div>
</div>
</div>
</div>
| Sartxi/ngezadmin | app/views/login.html | HTML | mit | 2,400 |
<!DOCTYPE html>
<html lang="en">
<head>
<title> Testing Maps </title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<style type="text/css">
html { height: 100% }
body { height: 100%; margin: 0; padding: 0 }
#map-canvas { height: 100% }
</style>
<script type="text/javascript">
$(document).ready(function(){
$(document).on('click', $("#k"), function() {
window.parent.bridge(function(b, me){
b.renderMapObj(me.RenderData.selectByMName("krupp"));
});
});
$(document).on('click', $("#m"), function() {
window.parent.bridge(function(b, me){
b.renderMapObj(me.RenderData.selectByMName("mercator"));
});
});
$(document).on('click', $("#c"), function() {
window.parent.bridge(function(b, me){
b.renderMapObj(me.RenderData.selectByMName("c3"));
});
});
$(document).on('click', $("#n"), function() {
window.parent.bridge(function(b, me){
b.renderMapObj(me.RenderData.selectByMName("nordmetall"));
});
});
}
</script>
<link rel="stylesheet" href="../../libs/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="../../libs/bootstrap/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="../../css/renderer.css">
</head>
<body>
<script src="../../libs/jquery/jquery.js"></script>
<script src="../../libs/bootstrap/js/bootstrap.min.js"></script>
<script src="../../js/util.js"></script>
<script src="../../js/remote.js"></script>
<script src="../../js/navbar.js"></script>
<h3> Please choose which college you would like to explore by clicking on the appropriate marker </h3>
<br>
<h2 id="k"> Krupp </h2>
<h2 id="m"> Mercator </h2>
<h2 id="c"> C3 </h2>
<h2 id="n"> Nordmetall </h2>
</body>
</html>
| tkw1536/jMap | components/start/index.html | HTML | mit | 1,899 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.9.1"/>
<title>V8 API Reference Guide for node.js v0.1.27 - v0.1.29: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">V8 API Reference Guide for node.js v0.1.27 - v0.1.29
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.9.1 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespacev8.html">v8</a></li><li class="navelem"><a class="el" href="classv8_1_1_data.html">Data</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">v8::Data Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="classv8_1_1_data.html">v8::Data</a>, including all inherited members.</p>
<table class="directory">
</table></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Tue Aug 11 2015 23:44:28 for V8 API Reference Guide for node.js v0.1.27 - v0.1.29 by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.9.1
</small></address>
</body>
</html>
| v8-dox/v8-dox.github.io | c7cb4da/html/classv8_1_1_data-members.html | HTML | mit | 4,452 |
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Test react and backbone</title>
<meta name="description" content="Test de react et Backbone">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" />
<link rel="stylesheet" href="css/custom.css"/>
</head>
<body>
<div id="example"></div>
<!-- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>-->
<script src="js/react-backbone.js"></script>
</body>
</html>
| pierr/r-component | example/index.html | HTML | mit | 714 |
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="none">
<title>404 Not Found – A-Frame Link Demo</title>
<style>
html {
background: rgb(239,94,45);
font-size: 16px;
}
body {
color: rgba(255,255,255,.75);
font: 1.25rem/1.5 Consolas, Andale Mono, Monaco, Courier New, monospace;
font-size: calc(1rem + .5vw);
max-width: 760px;
padding: 3%;
}
a {
border-bottom: 1px solid rgba(255,255,255,.5);
color: #fff;
font-weight: 600;
padding-bottom: 2px;
text-decoration: none;
}
a:hover {
border-bottom-color: #fff;
}
h1, p {
margin: 1rem 0;
}
h1 {
color: #fff;
margin-top: 0;
}
</style>
</head>
<body>
<h1>404 Not Found</h1>
<p>Sorry, we could not find the page or file you requested.</p>
<p>It's possible that the link you clicked is out of date or the address was typed incorrectly.</p>
<p>Visit <a href="./" id="home-link">home</a>.</p>
<script>
(function () {
// Check if we are being served from GitHub Pages.
if (window.location.pathname.indexOf('/aframe-link-demo/') === 0) {
var homeLink = document.querySelector('#home-link');
if (homeLink) {
// Change URL for the "home" page.
homeLink.setAttribute('href', '/aframe-link-demo/');
}
}
})();
</script>
</body>
</html>
| 321C4/aframe-link-demo | 404.html | HTML | mit | 1,621 |
<!DOCTYPE html>
<html lang="en"><meta charset="utf-8" />
<title>Symphony CMS - Reflections</title>
<meta name="description" content="Default Page Description" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="http://blog.shiv.me/css/latex.css" />
<link rel="stylesheet" href="http://blog.shiv.me/css/main.css" />
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
<meta name="generator" content="Hugo 0.75.1" /><body>
<header>
<nav class="navbar">
<div class="nav">
<ul class="nav-links">
</ul>
</div>
</nav>
<div class="intro-header">
<div class="container">
<div class="tags-heading">
<h1>Symphony CMS</h1>
</div>
</div>
</div>
</header>
<div id="content">
<div class="container" role="main">
<div class="posts-list">
<article class="post-preview">
<a href="http://blog.shiv.me/2010/11/20/barcamp-vancouver-2010-roundup/">
<h2 class="post-title">Barcamp Vancouver 2010 - Roundup</h2>
</a>
<div class="postmeta">
<span class="meta-post">
<i class="fa fa-calendar-alt"></i>Nov 20, 2010
</span>
</div>
<div class="post-entry">
<p>Phew! What an awesome 23 hours! I’m just back from Barcamp Vancouver 2010 #bcv10. (Check out some pictures from the event). It’s been a while, since I have been this tired and excited at the same time. There are a thousand threads competing for the processor(s) in my head right now. I met a lot of very interesting people, and learnt about some great ideas. It has been a very educational weekend, in general.</p>
<a href="http://blog.shiv.me/2010/11/20/barcamp-vancouver-2010-roundup/" class="post-read-more">Read More</a>
</div>
</article>
</div>
</div>
</div><footer>
<div class="container">
<p class="credits copyright">
<p class="credits theme-by">
Powered By <a href="https://gohugo.io">Hugo</a> / Theme <a href="https://github.com/7ma7X/HugoTeX">HugoTeX</a>
<br>
<a href="http://blog.shiv.me/about">Shiva Velmurugan</a>
©
2016
</p>
</div>
</footer></body>
</html>
| shiva/shiva.github.io | tags/symphony-cms/index.html | HTML | mit | 2,388 |
{{<govuk_template}}
{{$head}}
{{>includes/head}}
{{/head}}
{{$propositionHeader}}
{{>includes/propositional_navigation}}
{{/propositionHeader}}
{{$headerClass}}with-proposition{{/headerClass}}
{{$content}}
<main id="content" role="main">
{{>includes/phase_banner}}
<div class="grid-row">
<div class="column-two-thirds">
<form action="thank-you" method="#" class="form">
<!--<a href="s4" class="example-back-link">Back</a>-->
<h1 class="form-title heading-large">
Declaration
</h1>
<p>By sending this application you agree:</p>
<ul class="list-bullet">
<li>the information in this application is complete and correct</li>
<li>to report any changes
to your circumstances</li>
</ul>
<div class="application-notice help-notice">
<p>You could have to pay a penalty if you deliberately give the wrong information, leave out information that would affect your claim, or don't report changes.</p>
</div>
<p id="get-started" class="get-started-group">
<a class="button" rel="external" href"https://pip-sprint1.herokuapp.com/pip/guard-page"> I agree - send my application </a>
</p>
</form>
</div>
<div class="column-third">
</div>
</div>
</main><!-- / #page-container -->
{{/content}}
{{$bodyEnd}}
{{>includes/elements_scripts}}
{{/bodyEnd}}
{{/govuk_template}}
| gup-dwp/pip-prototype | app/views/pip3/declaration.html | HTML | mit | 1,364 |
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>PositionSticky Demo | Multiple Floats</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="content">
<h2 class="sticky float--left">float: left</h2>
<h2 class="sticky float--left">float: left</h2>
<h2 class="sticky float--right">float: right</h2>
<h2 class="sticky float--right">float: right</h2>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.</p>
<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.</p>
<p>Nulla malesuada malesuada libero, vitae elementum leo pharetra non. Nullam in ullamcorper eros. Suspendisse elementum risus odio, eu imperdiet nisi condimentum ac. Suspendisse lobortis nunc et placerat mollis. Morbi ac tortor viverra, tincidunt tellus sed, pulvinar lectus. Etiam condimentum eros ac viverra hendrerit. Nam sagittis tortor sed ipsum luctus, at hendrerit odio malesuada. Nunc eu massa vel odio viverra imperdiet. Duis lobortis ornare velit, eu dignissim massa dapibus id. Etiam aliquet at justo nec consectetur. Mauris rutrum consequat luctus. Sed sit amet nibh diam. Proin consequat, risus vitae tincidunt sagittis, libero neque fermentum sapien, viverra dignissim leo mi vitae nibh. In nec neque et elit dignissim lobortis. Donec in aliquet quam, eget condimentum lectus.</p>
</div>
<script src="lib/jquery/dist/jquery.js"></script>
<script src="lib/PositionSticky/dist/PositionSticky.js"></script>
<script src="../dist/jQuery.positionSticky.js"></script>
<script>
jQuery('.sticky').positionSticky();
</script>
</body>
</html> | katranci/jQuery.positionSticky | demos/multiple-floats.html | HTML | mit | 2,568 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>${title}</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" />
<style>
/* Sticky footer styles */
html {
position: relative;
min-height: 100%;
}
body {
/* Margin bottom by footer height */
margin-bottom: 60px;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
/* Set the fixed height of the footer here */
height: 60px;
background-color: #f5f5f5;
}
.container .text-muted {
margin: 20px 0;
}
</style>
</head>
<body>
<!-- Static navbar -->
<nav class="navbar navbar-default navbar-static-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Your App</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav" data-hole="menubar"></ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="http://websharper.com">websharper.com</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="container">
<div data-replace="body">
</div>
</div>
<footer class="footer">
<div class="container">
<p class="text-muted">
For an enhanced template that provides automatic GitHub deployment to Azure, fork from <a href="https://github.com/intellifactory/ClientServer.Azure">GitHub</a>, or
read more <a href="http://websharper.com/blog-entry/4368/deploying-websharper-apps-to-azure-via-github">here</a>.
</p>
</div>
</footer>
<script data-replace="scripts"></script>
</body>
</html>
| carbon-twelve/Awamanju | Awamanju/Main.html | HTML | mit | 2,476 |
<html>
<head>
<script type="text/javascript" src="../resources/sylvester.js"></script>
<script type="text/javascript" src="../resources/glUtils.js"></script>
<script id="shader-fs" type="x-shader/x-fragment">
#ifdef GL_ES
precision highp float;
#endif
varying vec2 vTextureCoord;
varying vec3 vLightWeighting;
uniform float uAlpha;
uniform sampler2D uSampler;
void main(void) {
vec4 textureColor = texture2D(uSampler, vec2(vTextureCoord.s, vTextureCoord.t));
gl_FragColor = vec4(textureColor.rgb * vLightWeighting, textureColor.a * uAlpha);
}
</script>
<script id="shader-vs" type="x-shader/x-vertex">
attribute vec3 aVertexPosition;
attribute vec3 aVertexNormal;
attribute vec2 aTextureCoord;
uniform mat4 uMVMatrix;
uniform mat4 uPMatrix;
uniform mat4 uNMatrix;
uniform vec3 uAmbientColor;
uniform vec3 uLightingDirection;
uniform vec3 uDirectionalColor;
uniform bool uUseLighting;
varying vec2 vTextureCoord;
varying vec3 vLightWeighting;
void main(void) {
gl_Position = uPMatrix * uMVMatrix * vec4(aVertexPosition, 1.0);
vTextureCoord = aTextureCoord;
if (!uUseLighting) {
vLightWeighting = vec3(1.0, 1.0, 1.0);
} else {
vec4 transformedNormal = uNMatrix * vec4(aVertexNormal, 1.0);
float directionalLightWeighting = max(dot(transformedNormal.xyz, uLightingDirection), 0.0);
vLightWeighting = uAmbientColor + uDirectionalColor * directionalLightWeighting;
}
}
</script>
<script type="text/javascript">
var useBlending = true;
var alphaVal = 0.1;
var useLighting = true;
var lightDirX = -0.25;
var lightDirY = -0.25;
var lightDirZ = -1.0;
var lightColR = 1.0;
var lightColG = 1.0;
var lightColB = 1.0;
var ambLightDirR = 0.2;
var ambLightDirG = 0.2;
var ambLightDirB = 0.2;
var gl;
function initGL(canvas) {
try {
gl = canvas.getContext("experimental-webgl");
gl.viewportWidth = canvas.width;
gl.viewportHeight = canvas.height;
} catch(e) {
}
if (!gl) {
alert("Could not initialise WebGL, sorry :-(");
}
}
function getShader(gl, id) {
var shaderScript = document.getElementById(id);
if (!shaderScript) {
return null;
}
var str = "";
var k = shaderScript.firstChild;
while (k) {
if (k.nodeType == 3) {
str += k.textContent;
}
k = k.nextSibling;
}
var shader;
if (shaderScript.type == "x-shader/x-fragment") {
shader = gl.createShader(gl.FRAGMENT_SHADER);
} else if (shaderScript.type == "x-shader/x-vertex") {
shader = gl.createShader(gl.VERTEX_SHADER);
} else {
return null;
}
gl.shaderSource(shader, str);
gl.compileShader(shader);
if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS)) {
alert(gl.getShaderInfoLog(shader));
return null;
}
return shader;
}
var shaderProgram;
function initShaders() {
var fragmentShader = getShader(gl, "shader-fs");
var vertexShader = getShader(gl, "shader-vs");
shaderProgram = gl.createProgram();
gl.attachShader(shaderProgram, vertexShader);
gl.attachShader(shaderProgram, fragmentShader);
gl.linkProgram(shaderProgram);
if (!gl.getProgramParameter(shaderProgram, gl.LINK_STATUS)) {
alert("Could not initialise shaders");
}
gl.useProgram(shaderProgram);
shaderProgram.vertexPositionAttribute = gl.getAttribLocation(shaderProgram, "aVertexPosition");
gl.enableVertexAttribArray(shaderProgram.vertexPositionAttribute);
shaderProgram.vertexNormalAttribute = gl.getAttribLocation(shaderProgram, "aVertexNormal");
gl.enableVertexAttribArray(shaderProgram.vertexNormalAttribute);
shaderProgram.textureCoordAttribute = gl.getAttribLocation(shaderProgram, "aTextureCoord");
gl.enableVertexAttribArray(shaderProgram.textureCoordAttribute);
shaderProgram.pMatrixUniform = gl.getUniformLocation(shaderProgram, "uPMatrix");
shaderProgram.mvMatrixUniform = gl.getUniformLocation(shaderProgram, "uMVMatrix");
shaderProgram.nMatrixUniform = gl.getUniformLocation(shaderProgram, "uNMatrix");
shaderProgram.samplerUniform = gl.getUniformLocation(shaderProgram, "uSampler");
shaderProgram.useLightingUniform = gl.getUniformLocation(shaderProgram, "uUseLighting");
shaderProgram.ambientColorUniform = gl.getUniformLocation(shaderProgram, "uAmbientColor");
shaderProgram.lightingDirectionUniform = gl.getUniformLocation(shaderProgram, "uLightingDirection");
shaderProgram.directionalColorUniform = gl.getUniformLocation(shaderProgram, "uDirectionalColor");
shaderProgram.alphaUniform = gl.getUniformLocation(shaderProgram, "uAlpha");
}
function handleLoadedTexture(texture) {
gl.pixelStorei(gl.UNPACK_FLIP_Y_WEBGL, true);
gl.bindTexture(gl.TEXTURE_2D, texture);
gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, gl.RGBA, gl.UNSIGNED_BYTE, texture.image);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR_MIPMAP_NEAREST);
gl.generateMipmap(gl.TEXTURE_2D);
gl.bindTexture(gl.TEXTURE_2D, null);
}
var glassTexture;
function initTexture() {
glassTexture = gl.createTexture();
glassTexture.image = new Image();
glassTexture.image.onload = function() {
handleLoadedTexture(glassTexture)
}
glassTexture.image.src = "glass.gif";
}
var mvMatrix;
var mvMatrixStack = [];
function mvPushMatrix(m) {
if (m) {
mvMatrixStack.push(m.dup());
mvMatrix = m.dup();
} else {
mvMatrixStack.push(mvMatrix.dup());
}
}
function mvPopMatrix() {
if (mvMatrixStack.length == 0) {
throw "Invalid popMatrix!";
}
mvMatrix = mvMatrixStack.pop();
return mvMatrix;
}
function loadIdentity() {
mvMatrix = Matrix.I(4);
}
function multMatrix(m) {
mvMatrix = mvMatrix.x(m);
}
function mvTranslate(v) {
var m = Matrix.Translation($V([v[0], v[1], v[2]])).ensure4x4();
multMatrix(m);
}
function mvRotate(ang, v) {
var arad = ang * Math.PI / 180.0;
var m = Matrix.Rotation(arad, $V([v[0], v[1], v[2]])).ensure4x4();
multMatrix(m);
}
var pMatrix;
function perspective(fovy, aspect, znear, zfar) {
pMatrix = makePerspective(fovy, aspect, znear, zfar);
}
function setMatrixUniforms() {
gl.uniformMatrix4fv(shaderProgram.pMatrixUniform, false, new Float32Array(pMatrix.flatten()));
gl.uniformMatrix4fv(shaderProgram.mvMatrixUniform, false, new Float32Array(mvMatrix.flatten()));
var normalMatrix = mvMatrix.inverse();
normalMatrix = normalMatrix.transpose();
gl.uniformMatrix4fv(shaderProgram.nMatrixUniform, false, new Float32Array(normalMatrix.flatten()));
}
var xRot = 0;
var xSpeed = 3;
var yRot = 0;
var ySpeed = -3;
var z = -10.0;
var currentlyPressedKeys = Object();
function handleKeyDown(event) {
currentlyPressedKeys[event.keyCode] = true;
}
function handleKeyUp(event) {
currentlyPressedKeys[event.keyCode] = false;
}
function handleKeys() {
if (currentlyPressedKeys[33]) {
// Page Up
z -= 0.05;
}
if (currentlyPressedKeys[34]) {
// Page Down
z += 0.05;
}
if (currentlyPressedKeys[37]) {
// Left cursor key
ySpeed -= 1;
}
if (currentlyPressedKeys[39]) {
// Right cursor key
ySpeed += 1;
}
if (currentlyPressedKeys[38]) {
// Up cursor key
xSpeed -= 1;
}
if (currentlyPressedKeys[40]) {
// Down cursor key
xSpeed += 1;
}
}
var cubeVertexPositionBuffer;
var cubeVertexNormalBuffer;
var cubeVertexTextureCoordBuffer;
var cubeVertexIndexBuffer;
function initBuffers() {
cubeVertexPositionBuffer = gl.createBuffer();
gl.bindBuffer(gl.ARRAY_BUFFER, cubeVertexPositionBuffer);
vertices = [
// Front face
-1.0, -1.0, 1.0,
1.0, -1.0, 1.0,
1.0, 1.0, 1.0,
-1.0, 1.0, 1.0,
// Back face
-1.0, -1.0, -1.0,
-1.0, 1.0, -1.0,
1.0, 1.0, -1.0,
1.0, -1.0, -1.0,
// Top face
-1.0, 1.0, -1.0,
-1.0, 1.0, 1.0,
1.0, 1.0, 1.0,
1.0, 1.0, -1.0,
// Bottom face
-1.0, -1.0, -1.0,
1.0, -1.0, -1.0,
1.0, -1.0, 1.0,
-1.0, -1.0, 1.0,
// Right face
1.0, -1.0, -1.0,
1.0, 1.0, -1.0,
1.0, 1.0, 1.0,
1.0, -1.0, 1.0,
// Left face
-1.0, -1.0, -1.0,
-1.0, -1.0, 1.0,
-1.0, 1.0, 1.0,
-1.0, 1.0, -1.0,
];
gl.bufferData(gl.ARRAY_BUFFER, new Float32Array(vertices), gl.STATIC_DRAW);
cubeVertexPositionBuffer.itemSize = 3;
cubeVertexPositionBuffer.numItems = 24;
cubeVertexNormalBuffer = gl.createBuffer();
gl.bindBuffer(gl.ARRAY_BUFFER, cubeVertexNormalBuffer);
var vertexNormals = [
// Front face
0.0, 0.0, 1.0,
0.0, 0.0, 1.0,
0.0, 0.0, 1.0,
0.0, 0.0, 1.0,
// Back face
0.0, 0.0, -1.0,
0.0, 0.0, -1.0,
0.0, 0.0, -1.0,
0.0, 0.0, -1.0,
// Top face
0.0, 1.0, 0.0,
0.0, 1.0, 0.0,
0.0, 1.0, 0.0,
0.0, 1.0, 0.0,
// Bottom face
0.0, -1.0, 0.0,
0.0, -1.0, 0.0,
0.0, -1.0, 0.0,
0.0, -1.0, 0.0,
// Right face
1.0, 0.0, 0.0,
1.0, 0.0, 0.0,
1.0, 0.0, 0.0,
1.0, 0.0, 0.0,
// Left face
-1.0, 0.0, 0.0,
-1.0, 0.0, 0.0,
-1.0, 0.0, 0.0,
-1.0, 0.0, 0.0,
];
gl.bufferData(gl.ARRAY_BUFFER, new Float32Array(vertexNormals), gl.STATIC_DRAW);
cubeVertexNormalBuffer.itemSize = 3;
cubeVertexNormalBuffer.numItems = 24;
cubeVertexTextureCoordBuffer = gl.createBuffer();
gl.bindBuffer(gl.ARRAY_BUFFER, cubeVertexTextureCoordBuffer);
var textureCoords = [
// Front face
0.0, 0.0,
1.0, 0.0,
1.0, 1.0,
0.0, 1.0,
// Back face
1.0, 0.0,
1.0, 1.0,
0.0, 1.0,
0.0, 0.0,
// Top face
0.0, 1.0,
0.0, 0.0,
1.0, 0.0,
1.0, 1.0,
// Bottom face
1.0, 1.0,
0.0, 1.0,
0.0, 0.0,
1.0, 0.0,
// Right face
1.0, 0.0,
1.0, 1.0,
0.0, 1.0,
0.0, 0.0,
// Left face
0.0, 0.0,
1.0, 0.0,
1.0, 1.0,
0.0, 1.0,
];
gl.bufferData(gl.ARRAY_BUFFER, new Float32Array(textureCoords), gl.STATIC_DRAW);
cubeVertexTextureCoordBuffer.itemSize = 2;
cubeVertexTextureCoordBuffer.numItems = 24;
cubeVertexIndexBuffer = gl.createBuffer();
gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, cubeVertexIndexBuffer);
var cubeVertexIndices = [
0, 1, 2, 0, 2, 3, // Front face
4, 5, 6, 4, 6, 7, // Back face
8, 9, 10, 8, 10, 11, // Top face
12, 13, 14, 12, 14, 15, // Bottom face
16, 17, 18, 16, 18, 19, // Right face
20, 21, 22, 20, 22, 23 // Left face
]
gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, new Uint16Array(cubeVertexIndices), gl.STATIC_DRAW);
cubeVertexIndexBuffer.itemSize = 1;
cubeVertexIndexBuffer.numItems = 36;
}
function drawScene(doClear, zz, aa) {
if(doClear) {
gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT)
}
perspective(45, window.innerWidth/window.innerHeight, 0.1, 100.0);
loadIdentity();
mvTranslate([0.0, 0.0, zz]);
mvRotate(xRot, [1, 0, 0]);
mvRotate(yRot, [0, 1, 0]);
gl.bindBuffer(gl.ARRAY_BUFFER, cubeVertexPositionBuffer);
gl.vertexAttribPointer(shaderProgram.vertexPositionAttribute, cubeVertexPositionBuffer.itemSize, gl.FLOAT, false, 0, 0);
gl.bindBuffer(gl.ARRAY_BUFFER, cubeVertexNormalBuffer);
gl.vertexAttribPointer(shaderProgram.vertexNormalAttribute, cubeVertexNormalBuffer.itemSize, gl.FLOAT, false, 0, 0);
gl.bindBuffer(gl.ARRAY_BUFFER, cubeVertexTextureCoordBuffer);
gl.vertexAttribPointer(shaderProgram.textureCoordAttribute, cubeVertexTextureCoordBuffer.itemSize, gl.FLOAT, false, 0, 0);
gl.activeTexture(gl.TEXTURE0);
gl.bindTexture(gl.TEXTURE_2D, glassTexture);
gl.uniform1i(shaderProgram.samplerUniform, 0);
if (useBlending) {
gl.blendFunc(gl.SRC_ALPHA, gl.ONE);
gl.enable(gl.BLEND);
gl.disable(gl.DEPTH_TEST);
gl.uniform1f(shaderProgram.alphaUniform, aa);
} else {
gl.disable(gl.BLEND);
gl.enable(gl.DEPTH_TEST);
}
gl.uniform1i(shaderProgram.useLightingUniform, useLighting);
if (useLighting) {
gl.uniform3f(
shaderProgram.ambientColorUniform,
ambLightDirR,
ambLightDirG,
ambLightDirB
);
var lightingDirection = Vector.create([
lightDirX,
lightDirY,
lightDirZ
]);
var adjustedLD = lightingDirection.toUnitVector().x(-1);
var flatLD = adjustedLD.flatten();
gl.uniform3f(
shaderProgram.lightingDirectionUniform,
flatLD[0], flatLD[1], flatLD[2]
);
gl.uniform3f(
shaderProgram.directionalColorUniform,
lightColR,
lightColG,
lightColB
);
}
gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, cubeVertexIndexBuffer);
setMatrixUniforms();
gl.drawElements(gl.TRIANGLES, cubeVertexIndexBuffer.numItems, gl.UNSIGNED_SHORT, 0);
}
var lastTime = 0;
function animate() {
var timeNow = new Date().getTime();
if (lastTime != 0) {
var elapsed = timeNow - lastTime;
xRot += (xSpeed * elapsed) / 1000.0;
yRot += (ySpeed * elapsed) / 1000.0;
}
lastTime = timeNow;
}
function tick() {
handleKeys();
drawScene(true, z, alphaVal);
var zz = z;
var aa = alphaVal;
for(var i = 0; i < 7; i+=0.2) {
drawScene(false, zz+i, aa);
aa = aa * 0.99;
}
animate();
}
function webGLStart() {
try {
var canvas = document.getElementById("lesson08-canvas");
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
initGL(canvas);
initShaders();
initBuffers();
initTexture();
gl.clearColor(0.0, 0.0, 0.0, 1.0);
gl.clearDepth(1.0);
gl.enable(gl.DEPTH_TEST);
gl.depthFunc(gl.LEQUAL);
document.onkeydown = handleKeyDown;
document.onkeyup = handleKeyUp;
setInterval(tick, 15);
} catch(ex) {
alert(ex);
}
}
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-24008188-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body onload="webGLStart();">
<div style="position: absolute; top: 0px; left: 0px;">
<canvas id="lesson08-canvas" style="border: none;" width="500" height="500"></canvas>
</div>
</body>
</html>
| DanielPettersson/danielpettersson.github.io | 3d/index.html | HTML | mit | 15,645 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.12"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Application Server: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">Application Server
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.12 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
initMenu('',true,'Search');
$(document).ready(function() { init_search(); });
});
</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('classRespuestaDelRegistro.html','');});
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="headertitle">
<div class="title">RespuestaDelRegistro Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="classRespuestaDelRegistro.html">RespuestaDelRegistro</a>, including all inherited members.</p>
<table class="directory">
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>respuesta</b> (defined in <a class="el" href="classRespuestaDelServicio.html">RespuestaDelServicio</a>)</td><td class="entry"><a class="el" href="classRespuestaDelServicio.html">RespuestaDelServicio</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>RespuestaDelRegistro</b>() (defined in <a class="el" href="classRespuestaDelRegistro.html">RespuestaDelRegistro</a>)</td><td class="entry"><a class="el" href="classRespuestaDelRegistro.html">RespuestaDelRegistro</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>RespuestaDelServicio</b>() (defined in <a class="el" href="classRespuestaDelServicio.html">RespuestaDelServicio</a>)</td><td class="entry"><a class="el" href="classRespuestaDelServicio.html">RespuestaDelServicio</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>setRespuestaErrorDelSharedServer</b>() (defined in <a class="el" href="classRespuestaDelRegistro.html">RespuestaDelRegistro</a>)</td><td class="entry"><a class="el" href="classRespuestaDelRegistro.html">RespuestaDelRegistro</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>setRespuestaRegistroCorrecto</b>() (defined in <a class="el" href="classRespuestaDelRegistro.html">RespuestaDelRegistro</a>)</td><td class="entry"><a class="el" href="classRespuestaDelRegistro.html">RespuestaDelRegistro</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>setRespuestaUsuarioExistente</b>() (defined in <a class="el" href="classRespuestaDelRegistro.html">RespuestaDelRegistro</a>)</td><td class="entry"><a class="el" href="classRespuestaDelRegistro.html">RespuestaDelRegistro</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>toString</b>() (defined in <a class="el" href="classRespuestaDelServicio.html">RespuestaDelServicio</a>)</td><td class="entry"><a class="el" href="classRespuestaDelServicio.html">RespuestaDelServicio</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>~RespuestaDelRegistro</b>() (defined in <a class="el" href="classRespuestaDelRegistro.html">RespuestaDelRegistro</a>)</td><td class="entry"><a class="el" href="classRespuestaDelRegistro.html">RespuestaDelRegistro</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>~RespuestaDelServicio</b>() (defined in <a class="el" href="classRespuestaDelServicio.html">RespuestaDelServicio</a>)</td><td class="entry"><a class="el" href="classRespuestaDelServicio.html">RespuestaDelServicio</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
</table></div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="footer">Generated by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.12 </li>
</ul>
</div>
</body>
</html>
| seguijoaquin/taller2-appserver | Documentacion/html/classRespuestaDelRegistro-members.html | HTML | mit | 6,451 |
<!DOCTYPE HTML>
<!-- skel-baseline v2.0.3 | (c) n33 | getskel.com | MIT licensed -->
<html>
<head>
<title>Baseline</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<!--[if lte IE 8]><script src="js/html5shiv.js"></script><![endif]-->
<script src="js/jquery.min.js"></script>
<script src="js/skel.min.js"></script>
<script src="js/skel-layers.min.js"></script>
<script src="js/init.js"></script>
<noscript>
<link rel="stylesheet" href="css/skel.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/style-xlarge.css" />
</noscript>
<link href='http://fonts.googleapis.com/css?family=Orbitron:900,700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Source+Code+Pro:300,400,600,900,200' rel='stylesheet' type='text/css'>
</head>
<body id="top">
<div class="row">
<div id="logo" class="12u$">
<h1> FOXDIE_</h1>
</div>
</div>
<!-- Header -->
<header id="header" class="skel-layers">
<nav id="nav">
<ul>
<li class="2u"><a class="wobble currentpage" href="#top">>Home</a>
</li>
<li class="2u"><a class="wobble" href="#content">Blog</a>
</li>
<li class="2u"><a class="wobble" href="#elements">Gallery</a>
</li>
<li class="2u"><a class="wobble" href="#elements">Contact</a>
</li>
</ul>
</nav>
</header>
<!-- Banner -->
<section id="banner">
<p>----------------------------</p>
<h3>Check out our new ep <a href="">FUTURE PRIMITIVE</a></h3>
<ul class="actions">
<li>
<a href="#elements" class="button"> <i class="fa fa-play fa-2x"></i> </a>
</li>
</ul>
<p>----------------------------</p>
</section>
<!-- Main -->
<div id="main" class="container">
<!-- Intro -->
<!-- Content -->
<div class="row 50%">
<div class="8u 12u$(small) news-cont">
<div class="news">
<h2 id="content">>BLOG</h2>
<div class="newsitem">
<h4>12-01-2015 | We are now the mascots for the Mayo under 21s</h4>
<p><span class="image left"><img src="images/pic02.jpg" alt="" /></span> First gig for us, and first gig for Smiddys! Great to see the turn out, we all had an amazing time, next stop Dublin! </p>
<p class="align-right"><a href="">Read more..</a>
</p>
</div>
<div class="newsitem">
<h4>09-01-2015 | I'm on the radio. The others are too, I guess</h4>
<p><span class="image left"><img src="images/pic02.jpg" alt="" /></span>Science has not yet mastered prophecy. We predict too much for the next year and yet far too little for the next 10. Spaceflights cannot be stopped. This is not the work of any one man or even a group of men. It is a historical process which mankind is carrying out in accordance with the natural laws of human development.</p>
<p class="align-right"><a href="">Read more..</a>
</p>
</div>
<div class="newsitem">
<h4>Heres some old sketch videos I used to too. Tesco bag, eh? | 03-01-2015</h4>
<p><span class="image left"><img src="images/pic02.jpg" alt="" /></span>Science has not yet mastered prophecy. We predict too much for the next year and yet far too little for the next 10. Spaceflights cannot be stopped. This is not the work of any one man or even a group of men. It is a historical process which mankind is carrying out in accordance with the natural laws of human development.</p>
<p class="align-right"><a href="">Read more..</a>
</p>
</div>
<div class="newsitem">
<h4>Interviewed on the internet? Shit nigga | 02-01-2015</h4>
<p><span class="image left"><img src="images/pic02.jpg" alt="" /></span>As we got further and further away, the Earth diminished in size. Finally it shrank to the size of a marble, the most beautiful you can imagine. That beautiful, warm, living object looked so fragile, so delicate, that if you touched it with a finger it would crumble and fall apart. Seeing this has to change a man.</p>
<p class="align-right"><a href="">Read more..</a>
</p>
</div>
</div>
</div>
<div class="4u 12u$(small) news-cont">
<div class="gigs">
<h2 id="content">>GIGS</h2>
<!-- <ul class="alt">
<li><h5>The Stables - Mullingar</h5> <p>30th September </br> Doors 5:30pm</p></li>
<li><h5>CBGB'S - New York</h5> <p>31st September </br> Doors 8:30pm</p></li>
<li><h5>Lidl Warehouse - Germany</h5> <p>32nd September </br> Doors 7:00pm</p></li>
<li><h5>Rochforts - Mullingar</h5> <p>33rd September </br> Doors 9:00pm</p></li>
</ul> -->
<div class="newsitem">
<h5>The Stables - Mullingar</h5>
<p>30th September </br> Doors 5:30pm</p>
</div>
<div class="newsitem">
<h5>Lidl Warehouse - Munich</h5>
<p>31st September </br> Doors 7:30pm</p>
</div>
<div class="newsitem">
<h5>CBGB'S - New York</h5>
<p>32nd September </br> Doors 9:00pm</p>
</div>
<div class="newsitem">
<h5>Rochforts - Mullingar</h5>
<p>33rd September </br> Doors 8:00pm</p>
</div>
</div>
</div>
<div class= "4u 12u$(small) news-cont media">
<div class="gigs">
<h2 id="content">>MEDIA</h2>
<div class="newsitem">
<h5>The Stables - Mullingar</h5>
<p>30th September </br> Doors 5:30pm</p>
</div>
<div class="newsitem">
<h5>Lidl Warehouse - Munich</h5>
<p>31st September </br> Doors 7:30pm</p>
</div>
<div class="newsitem">
<h5>CBGB'S - New York</h5>
<p>32nd September </br> Doors 9:00pm</p>
</div>
<div class="newsitem">
<h5>Rochforts - Mullingar</h5>
<p>33rd September </br> Doors 8:00pm</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer id="footer">
<div class="container">
<div class="row double">
<div class="6u 12u$(medium)">
<h2>About Us</h2>
<p>Foxdie are a cyber metal band based in Mullingar, Ireland. Although we all have a wide range of influences, we have one objective: To breathe some life back into the Irish metal scene.</p>
</div>
<div class="3u 6u(medium) 12u$(small)">
<h3>Contact</h3>
<ul class="alt">
<li>Facebook</li>
<li>Instagram</li>
<li>Twitter</li>
<li>Soundcloud</li>
</ul>
</div>
<div class="3u$ 6u$(medium) 12u$(small)">
<h3>Sitemap</h3>
<ul class="alt">
<li>Homepage</li>
<li>Contact</li>
</ul>
</div>
</div>
</div>
<div class="copyright">
© Untitled. All rights reserved.
</div>
</footer>
</body>
</html>
| Marcmurray92/Cyber-Theme | index.html | HTML | mit | 7,214 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.4.2_05) on Thu Sep 30 22:15:53 GMT+01:00 2004 -->
<TITLE>
Uses of Class org.springframework.web.servlet.mvc.UrlFilenameViewController (Spring Framework)
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="Uses of Class org.springframework.web.servlet.mvc.UrlFilenameViewController (Spring Framework)";
}
</SCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/springframework/web/servlet/mvc/UrlFilenameViewController.html" title="class in org.springframework.web.servlet.mvc"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html" target="_top"><B>FRAMES</B></A>
<A HREF="UrlFilenameViewController.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.springframework.web.servlet.mvc.UrlFilenameViewController</B></H2>
</CENTER>
No usage of org.springframework.web.servlet.mvc.UrlFilenameViewController
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/springframework/web/servlet/mvc/UrlFilenameViewController.html" title="class in org.springframework.web.servlet.mvc"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html" target="_top"><B>FRAMES</B></A>
<A HREF="UrlFilenameViewController.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<i>Copyright (C) 2003-2004 The Spring Framework Project.</i>
</BODY>
</HTML>
| dachengxi/spring1.1.1_source | docs/api/org/springframework/web/servlet/mvc/class-use/UrlFilenameViewController.html | HTML | mit | 5,996 |
<div>
<div ng-repeat="menuItm in menuList">
<!-- ui-sref=" {{ menuItm.uisref || state.current.name }} " -->
<div class="menubar-menuItm-box-wrapper" ng-click=" menuItmClicked( $event, menuItm )" >
<div class=" menubar-menuItm-box " ng-style="{ 'background-color': menuItm.color }" ng-class=" { dropdownOpen: menuItm.dropdownState }">
<div class="menubar-menuItm-caret " ng-if="menuItm.dropdown" ng-class=" { dropdownOpen: menuItm.dropdownState }">
<span class="fa fa-caret-right absolute-centered"></span>
</div>
<!-- {{ dropdownState }} -->
<div ng-class=" menuItm.icon " class=" menubar-menuItm-icon "></div>
<div ng-bind=" menuItm.caption " class=" menubar-menuItm-caption "></div>
</div>
</div>
<div class="menubar-menuItm-dropdown-box" ng-if="menuItm.dropdown" slide-toggle="menuItm.dropdownState">
<div ng-repeat=" menuSubItm in menuItm.dropdown">
<p class="mt-15" ui-sref-active="active">
<a ui-sref=" {{ menuSubItm.uisref || state.current.name }} " ng-bind="menuSubItm.caption"></a>
</p>
</div>
</div>
</div>
</div> | EmprendedoresLA/emprendevs-equipo-1 | webapp2/app/common/web_component/menubar/directive/menubar/menubar.html | HTML | mit | 1,098 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.